{"info":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","description":"<html><head></head><body><p>Welcome to Odin API</p>\n<h1 id=\"access-tokens\">Access Tokens</h1>\n<p>ODiN API uses JSON Web Tokens to authenticate API requests.</p>\n<h2 id=\"access-token-request\">Access Token Request</h2>\n<p>To request an access token, you must POST to the Session endpoint, with a payload containing the username, password, and encryption type of the user you wish to login with.</p>\n<p>The encryption type is only applicable to versions prior to R22. R22 and above <strong>must</strong> use plain passwords.</p>\n<p>The encryption type defaults to plain and may be ommitted. If you wish to encrypt the password, you may encrypt it with SHA1 and set the encryption type to \"sha1\".</p>\n<p>In multi-cluster mode the XSP address is automatically associated with a particular hostname of your API endpoint. eg: cluster1.mydomain.com vs cluster2.mydomain.com.</p>\n<p>However, you may also explicitly request a particular XSP address by sending the xsp parameter in the Access Token Request.</p>\n<h4 id=\"create-an-sha1-password-from-shell\">Create an sha1 password from shell</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">$ echo -n 'My Password' | shasum -\n933257a3349a248d1e0fb19d7c953a00ff004a1d -\n$ echo -n 'My Password' | openssl dgst -sha1\n933257a3349a248d1e0fb19d7c953a00ff004a1d\n\n</code></pre>\n<h4 id=\"example-http-post\">Example HTTP POST</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">POST /api/v2/auth/token HTTP/1.1\nHost: odinapi.net\nContent-Type: application/json\n{ \"username\": \"myusername\", \"password\": \"plainpassword\" }\n\n</code></pre>\n<h4 id=\"example-http-post-with-encryption\">Example HTTP POST with Encryption</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">POST /api/v2/auth/token HTTP/1.1\nHost: odinapi.net\nContent-Type: application/json\n{ \"username\": \"myusername\", \"password\": \"hash\", \"encryption\": \"sha1\" }\n\n</code></pre>\n<h4 id=\"example-http-post-with-xsp\">Example HTTP POST with XSP</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">POST /api/v2/auth/token HTTP/1.1\nHost: odinapi.net\nContent-Type: application/json\n{ \"username\": \"myusername\", \"password\": \"plain\", \"xsp\": \"prefix://myxsp.com:port\" }\n\n</code></pre>\n<h2 id=\"access-token-response\">Access Token Response</h2>\n<h3 id=\"successful-responses\">Successful Responses</h3>\n<p>A successful response from the Access Token Request contain a <strong>200</strong> status code with a JSON payload containing the Access Token.</p>\n<h4 id=\"example-successful-response\">Example Successful Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">HTTP/1.1 200 OK\nDate: Sun, 04 Dec 2016 20:10:14 GMT\nContent-Length: 1571\nContent-Type: application/json\nConnection: close\n{ \"token\": \"TOKEN\" }\n\n</code></pre>\n<h3 id=\"error-responses\">Error Responses</h3>\n<p>Error Responses will contain a <strong>40x</strong> status code and a message that describes what the error was.</p>\n<p>Possible Errors are:</p>\n<ul>\n<li>401: Invalid Parameters</li>\n<li>402: Password Expired</li>\n<li>403: Invalid Credentials</li>\n</ul>\n<h4 id=\"example-error-response\">Example Error Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">HTTP/1.1 403 Forbidden\nDate: Sun, 04 Dec 2016 20:33:20 GMT\nContent-Length: 65\nContent-Type: application/json\nConnection: close\n{ \"error\": \"[Error 4962] Invalid password\", \"status\": 403, \"path\": \"api/v2/auth/token\", \"details\": \"ODIN API Error\" }\n\n</code></pre>\n<h1 id=\"api-requests\">API Requests</h1>\n<p>The Access Token that is returned from this operation MUST be used on most* API requests as a Bearer Token in an Authorization header.</p>\n<p>*Access Tokens are not required to obtain a token or to check the status of the application.</p>\n<p><strong>NOTE</strong>:</p>\n<p>The Authorization header will contain two words Bearer followed by a space followed by the Access Token. Below we are using TOKEN as an example, although the real token will be much longer.</p>\n<h3 id=\"example-api-request\">Example API Request</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/users?userId=someuser@somedomain.com HTTP/1.1\nHost: odinapi.net\nContent-Type: application/json\nAuthorization: Bearer TOKEN\nConnection: close\n\n</code></pre>\n<h3 id=\"example-api-flow\">Example API Flow</h3>\n<h4 id=\"obtain-a-token\">Obtain a token</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --request POST \\\n  --url 'https://odinapi.net/api/v2/auth/token' \\\n  --header 'Content-Type: application/json' \\\n  --data '{\"username\": \"MYUSER\", \"password\": \"MYPASS\", \"encryption\": \"plain\"}'\n{\n  \"token\": \"THISISANEXAMPLETOKEN\"\n}\n\n</code></pre><h4 id=\"use-that-token\">Use that token</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --request GET \\\n  --url 'https://odinapi.net/api/v2/service-providers' \\\n  --header 'Authorization: Bearer THISISANEXAMPLETOKEN'\n[\n  {\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"serviceProviderName\": \"Odin Mock Enterprise 1\",\n    \"isEnterprise\": true\n  },\n  {\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"serviceProviderName\": \"Odin Mock Service Provider 1\",\n    \"isEnterprise\": false\n  }\n]\n\n</code></pre><h2 id=\"token-expiration\">Token Expiration</h2>\n<p>By default all tokens are <em>expendable</em> and expire after 24 hours. You may re-use a token before the expiration. There are several options you have to handle token expiration.</p>\n<h3 id=\"request-a-new-token-each-time\">Request a new token each time.</h3>\n<p>You may prefix a command or a batch of commands with a token request and add the returned token to the headers for each API call in that batch.</p>\n<h3 id=\"inspect-the-expiration-time\">Inspect the expiration time</h3>\n<p>You may use a JWT library (<a href=\"https://jwt.io/\">https://jwt.io/</a>) to inspect the expiration time of the current token. If the token has or is about to expire, then request a new token before sending an API call.</p>\n<h3 id=\"intercept-authentication-errors\">Intercept authentication errors</h3>\n<p>When a token is expired, you will receive a 401 error with a message indicating so. You may choose to intercept authentication errors and if the conditions show the token is expired, obtain a new token, and then retry the request.<br>eg:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"error\": \"Expired token\",\n    \"status\": 401,\n    \"path\": \"api/v2/service-providers\",\n    \"details\": \"ODIN API Error\"\n}\n\n</code></pre><h1 id=\"successful-responses\">Successful Responses</h1>\n<p>Successful API responses will contain a <strong>20x</strong> status code and a JSON payload.</p>\n<h4 id=\"example-successful-api-response\">Example Successful API Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">HTTP/1.1 200 OK\nDate: Sun, 04 Dec 2016 20:10:15 GMT\nContent-Length: 429\nContent-Type: application/json\nConnection: close\n{ \"status\": \"ok\" }\n\n</code></pre>\n<h1 id=\"error-responses\">Error Responses</h1>\n<p>Error responses will contain a <strong>40x</strong> status code and a JSON payload describing the error.</p>\n<p>Some potential Error responses are:</p>\n<ul>\n<li>400: Invalid Parameters</li>\n<li>401: Token Required</li>\n<li>402: Password Expired</li>\n<li>403: Login Failed</li>\n<li>404: Not Found</li>\n</ul>\n<h4 id=\"example-error-response-1\">Example Error Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">HTTP/1.1 404 Not Found\nDate: Sun, 04 Dec 2016 20:33:20 GMT\nContent-Length: 194\nContent-Type: application/json\nConnection: close\n{ \"error\": \"[Error 4505] Access Device not found: invalid-device\", \"status\": 404,\"path\": \"api/v2/service-providers/devices?serviceProviderId=somesp&amp;groupId=somegrp&amp;deviceName=invalid-device\", \"details\": \"ODIN API Error\" }\n\n</code></pre>\n<h1 id=\"sso\">SSO</h1>\n<p>ODiN Portal offers single sign-on utilizing the JWT tokens that were described in the Access Tokens section. The 3rd party that is accessing ODiN must have the username and password of the user.</p>\n<p>The steps are as follows:</p>\n<ul>\n<li>Obtain an access token using the Authentication method</li>\n<li>Redirect the user to /app/#!/sso?token=xxx, appending the token in a query parameter</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<p>The following example is using curl and the open command available in OSX terminal.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">URL='https://demo.odinapi.net'\nUSER=username\nPASS=password\nJSON=\"{\\\"username\\\": \\\"$USER\\\", \\\"password\\\": \\\"$PASS\\\"}\"\nRESP=`curl -s -f -H \"Accept: application/json\" -H \"Content-Type: application/json\" -d \"$JSON\" ${URL}/api/v2/auth/token`\nTOKEN=`echo \"$RESP\" | awk -F':' '{print $2}' | sed 's/}$//g' | sed 's/^\"//g' | sed 's/\"$//g'`\nopen \"$URL/app/#!/sso?token=${TOKEN}\"\n\n</code></pre>\n<p><strong>NOTE</strong> :</p>\n<ul>\n<li>r = required</li>\n<li>o = optional</li>\n<li>n = nullable <strong>example :</strong> __ { \"description\" : \"\" }</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Access Tokens","slug":"access-tokens"},{"content":"API Requests","slug":"api-requests"},{"content":"Successful Responses","slug":"successful-responses"},{"content":"Error Responses","slug":"error-responses"},{"content":"SSO","slug":"sso"}],"owner":"427160","collectionId":"da03ee56-5026-472f-93e2-30592520338a","publishedId":"RWTsrFXj","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-06-25T12:26:19.000Z"},"item":[{"name":"Session","item":[{"name":"Session","id":"834f2703-859f-4f21-91b5-612bf7cc2b53","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/auth/session","description":"<p>Shows session information for currently logged in user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","auth","session"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f3910a87-bffb-4e53-9333-25c19dcdf4d4","name":"Session","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/auth/session"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Nov 2018 22:12:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"365"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"mock.user@as3.xdp.broadsoft.com\",\n    \"groupId\": null,\n    \"serviceProviderId\": null,\n    \"isEnterprise\": false,\n    \"loginType\": \"Provisioning\",\n    \"userDomain\": \"as3.xdp.broadsoft.com\",\n    \"passwordExpiresDays\": 2147483647,\n    \"local\": \"en_US\",\n    \"encoding\": null,\n    \"systemDomain\": \"as3.xdp.broadsoft.com\",\n    \"softwareVersion\": \"21sp1\",\n    \"isSystemAdmin\": true,\n    \"readOnly\": false,\n    \"policy\": [],\n    \"version\": \"latest\"\n}"}],"_postman_id":"834f2703-859f-4f21-91b5-612bf7cc2b53"},{"name":"Session","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","console.log('auth', jsonData)","postman.setEnvironmentVariable(\"authToken\", jsonData.token);","postman.setEnvironmentVariable(\"session_id\", jsonData.token);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript","packages":{}}}],"id":"c8adbb15-de6e-4036-89fb-5f37463fbea9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\"\n}"},"url":"{{url}}/api/v2/auth/token","description":"<p>Request an Access Token</p>\n","urlObject":{"path":["api","v2","auth","token"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"39b0d9fd-4942-4a4d-9d79-e1fd52161137","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"xsp\": \"{{xsp}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQ2ODg5NDU0LCJuYnAiOjE1NDY4ODk0NTQsImV4cCI6MTU0NjkzMjY1NCwiZGF0YSI6ImV5SnBkaUk2SWpoeFpVWnhjVEZITWxwVFNtODVhV2NySzB0VlQwRTlQU0lzSW5aaGJIVmxJam9pUzJGVFZWRjJObkJDZDFjeE5WQmNMMUJUUjBWTVdHTjRWRVpoV2pNclkwSk5iVEphU2pneFVURnpNVGc1TjBwYVdrNWFjVkZDV25od1ZUUlRaMHhvY0dReE5IRlVlVGswZHpWcGNsRjJSMnB6YkdKSE5rdzNhVzFYVVZkU2EydFlhR1Z3U1d0Wk1Gd3ZLMnN6WnowaUxDSnRZV01pT2lJMFlqRmhPREk0WTJVM05tRXdOR0prWm1Kak16azVNMk0xTkRVMk5qRXpaV015TlRBNE9EVTBNelprTXpFNFpUZ3pNV0ptWWpGbE56UTVPVFl4WkdNNUluMD0ifQ.6YCC4jVoWzzIjhOjgXC8dTQd7rGkFSwZBan-UlkzUy0\"\n}"},{"id":"a4488c9b-f135-4d6c-8d0c-2d683c068b35","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"mreverman\",\n    \"primaryUserId\": \"mreverman\",\n    \"alternateUserId\": null,\n    \"groupId\": null,\n    \"serviceProviderId\": null,\n    \"resellerId\": null,\n    \"isEnterprise\": false,\n    \"loginType\": \"System\",\n    \"userDomain\": \"odinapi.net\",\n    \"passwordExpiresDays\": 2147483647,\n    \"ssoType\": null,\n    \"ssoEnabled\": false,\n    \"ssoActive\": false,\n    \"hostnameId\": 78,\n    \"allowMultipleBwUsers\": null,\n    \"switchingUser\": null,\n    \"switchingUserErrors\": null,\n    \"idpLoginUrl\": null,\n    \"sessionIndex\": null,\n    \"nameId\": null,\n    \"local\": \"en_US\",\n    \"encoding\": \"ISO-8859-1\",\n    \"systemDomain\": \"odinapi.net\",\n    \"softwareVersion\": \"23\",\n    \"xsiUrl\": \"https://10.142.0.49\",\n    \"announcementUrl\": \"http://10.142.0.49/odin/servlet/CPRCMF\",\n    \"readOnly\": false,\n    \"policy\": [],\n    \"administratorType\": null,\n    \"groupDepartmentName\": null,\n    \"groupDepartmentPathName\": null,\n    \"hostnameForPrimary\": \"broadworks-as1\",\n    \"version\": \"\",\n    \"isPaasAdmin\": true,\n    \"alternateIdenties\": [],\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNjYwODQyNzc4LCJuYnAiOjE2NjA4NDI3NzgsImV4cCI6MTY2MDg4NTk3OCwiZGF0YSI6ImV5SnBkaUk2SWtFeFF6aHBPVTlRV2xaeGQxVlVkR3hwY1ZCT00xRTlQU0lzSW5aaGJIVmxJam9pVEU0d05uSnZjR3Q1TW1WV09IaE1lVXRDWWtaQ1ZYVkxaekF3UVRoMlVGaDVWamRwUkRoVFFtWXZWeTlEUlRob1pWSmtOVzAyTDFKTVJuWmthR1pZUm5kQmFrZFhLemd3WW1NdlNVaEdPQzkxUlRZMlQxYzNXVlZWTkRGclQwbzNOV0VyVEdsVk5ESm5ha0ZUWm1KNU1IWnNkMnAyWm5ScE5XMHhXV2gzZVRKbFVWaDZRbE5TWjBKa2VXSnZNVmhoY201dWJGZHFieXRzZUhwQlVtOXdlWE51UWt0R1ZURXJPRkJRYjNwbVVIQkRhRWxWVFZjM1dHSm5UMk5JVml0UGIydDZLMmN5WTIxTGVWb3dlbkJDY3pBeFZtUkZSRUZrUlhSQmVGcFpjV3hhZDBKS2EwODFSRkphVVZkc2JrbHpPVUpuTldrMlIyTkRSblZZTmtkT05VUjNTVFZJWW5ZdlVVMU9MMVZtVWxWNFNGSmlRbnBrUVhoM05WQlRhRXRLUW1neGNuRXpjSEp6WVVOdVprNUtORzlWYWswelNHOHJTa1UzY2tGNE1GTkxUWGwwZFROM2VrNUhZakU0U0ZKdlJVZEhZV2h6TUd0RlZUWTVOR3MxWldaVFpVRnpjbVJ0ZHpoUVNEazFUWGRxUnk4M1FXdE1NemwyWVZwalJrMXJkMmhUUzFOdmFERTNXazEyY2xSUmJYTnNXRmxGUkZaRVdrUjRURzFxUXpsVFRsbEtiRU4zVVhGT01tVm9VRE5xVEhSMFF6STFhMmxRUjBOdVpHVnJhM0ZrTUZKNGJqZHhZM2RSV1dWd0sxcDNabkZWTkRoa1pHSkpUV05PZDFCNlZHTndaV2hWZUVKNUwwNHhPV012UzFGV1ZXOXBSSEJzU0c5dE9IbG9iazB2Wms4NU5tTnJRbEZoU2pCaVdVc3paV04yVEVKVmJGbHZiemhzUm1vNWRtRktlVVJWT1hKc1FrbG5iRkk0ZWxoNmFtdEVablV3YjFRelEwZFlSVVZITUVjMVZtNVNhbVpLYTJrNU4xbHhVR2xqVWpGb1VHNXdiRGxQUVVKRVdrbHZla2RvVnpSMGJsSXJXV0prZUVwclFtWm5VRzR2TjJKVVQwZHhTVXRIVjFaalRqSmpSbFp5UmpCbWNIRlpTMVJ5WkdOekswWjRhemRpVDNoYVZtTnlTazlvUlVaUlptWjJZbTFVVm0xTVdVMWpVMUUxTmtkQ1ZVNU5PSGxHYkd3eE5UVTBZWE56Z\",\n    \"odinWebexPreferences\": null\n}"}],"_postman_id":"c8adbb15-de6e-4036-89fb-5f37463fbea9"},{"name":"Session Switch","event":[{"listen":"test","script":{"id":"65ab5734-c46b-453c-a045-35db4965f7ac","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","if (jsonData && jsonData.token) {","    console.log('authToken', jsonData.token)","    postman.setEnvironmentVariable(\"authToken\", jsonData.token);","}","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"bddc8712-1eee-419c-9180-7994916c582e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"slatsa-reseller@odinapi.net\"\n}"},"url":"{{url}}/api/v2/auth/switch-user","description":"<p>Refresh a token</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","auth","switch-user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bddc8712-1eee-419c-9180-7994916c582e"},{"name":"Session Logout","event":[{"listen":"test","script":{"id":"a7bbdad1-9f89-408b-bed1-7bf0c72d90ae","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","console.log('auth', jsonData)","postman.setEnvironmentVariable(\"authToken\", jsonData.token);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"4a7d42bc-cb68-459b-8239-1bc7932cd926","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"token\": \"{{authToken}}\"\n}"},"url":"{{url}}/api/v2/auth/token/logout","description":"<p>Request an Access Token</p>\n","urlObject":{"path":["api","v2","auth","token","logout"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3ede58dc-01e8-4ce9-a6e8-8f87b08baf36","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"xsp\": \"{{xsp}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQ2ODg5NDU0LCJuYnAiOjE1NDY4ODk0NTQsImV4cCI6MTU0NjkzMjY1NCwiZGF0YSI6ImV5SnBkaUk2SWpoeFpVWnhjVEZITWxwVFNtODVhV2NySzB0VlQwRTlQU0lzSW5aaGJIVmxJam9pUzJGVFZWRjJObkJDZDFjeE5WQmNMMUJUUjBWTVdHTjRWRVpoV2pNclkwSk5iVEphU2pneFVURnpNVGc1TjBwYVdrNWFjVkZDV25od1ZUUlRaMHhvY0dReE5IRlVlVGswZHpWcGNsRjJSMnB6YkdKSE5rdzNhVzFYVVZkU2EydFlhR1Z3U1d0Wk1Gd3ZLMnN6WnowaUxDSnRZV01pT2lJMFlqRmhPREk0WTJVM05tRXdOR0prWm1Kak16azVNMk0xTkRVMk5qRXpaV015TlRBNE9EVTBNelprTXpFNFpUZ3pNV0ptWWpGbE56UTVPVFl4WkdNNUluMD0ifQ.6YCC4jVoWzzIjhOjgXC8dTQd7rGkFSwZBan-UlkzUy0\"\n}"}],"_postman_id":"4a7d42bc-cb68-459b-8239-1bc7932cd926"},{"name":"Session","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","if (jsonData && jsonData.token) {","    console.log('authToken', jsonData.token)","    postman.setEnvironmentVariable(\"authToken\", jsonData.token);","}","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"be9f5be3-0f11-47fa-8280-6bc6dec9c022","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/auth/token","description":"<p>Refresh a token</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","auth","token"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"be9f5be3-0f11-47fa-8280-6bc6dec9c022"},{"name":"Change Password","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":[""],"type":"text/javascript"}}],"id":"87cfd00a-e029-45cb-920a-f8b0e9653840","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"4001@parkbenchsolutions.com\",\n\t\"newPassword\": \"OldPassw0rd123!@#\"\n}"},"url":"{{url}}/api/v2/users/passwords","description":"<p>Change the password of a user and return a new token.</p>\n","urlObject":{"path":["api","v2","users","passwords"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5ee528d2-a25d-4964-8f29-54919d4f07e9","name":"User Password","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"9709580001@microv-works.com\",\n\t\"oldPassword\": \"OldPassw0rd123!\",\n\t\"newPassword\": \"NewPassw0rd123!\"\n}"},"url":"{{url}}/api/v2/auth/password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 16:10:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=98","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"87cfd00a-e029-45cb-920a-f8b0e9653840"},{"name":"Password","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":[""],"type":"text/javascript"}}],"id":"a49a6b00-1a18-4ce7-9333-18fe9e2c5842","request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"9709580001@microv-works.com\",\n\t\"oldPassword\": \"OldPassw0rd123!\",\n\t\"newPassword\": \"NewPassw0rd123!\"\n}"},"url":"{{url}}/api/v2/auth/password","description":"<p>Change the password of a user and return a new token.</p>\n","urlObject":{"path":["api","v2","auth","password"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"47b80884-a003-4b52-9618-10d5d436808b","name":"User Password","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"9709580001@microv-works.com\",\n\t\"oldPassword\": \"OldPassw0rd123!\",\n\t\"newPassword\": \"NewPassw0rd123!\"\n}"},"url":"{{url}}/api/v2/auth/password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 16:10:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=98","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a49a6b00-1a18-4ce7-9333-18fe9e2c5842"},{"name":"My Password","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","if (jsonData && jsonData.token) {","    console.log('authToken', jsonData.token)","    postman.setEnvironmentVariable(\"authToken\", jsonData.token);","}","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"8125675d-81d4-415d-b623-5e20a816538f","request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"oldPassword\": \"OldPassw0rd123!\",\n\t\"newPassword\": \"NewPassw0rd123!\"\n}"},"url":"{{url}}/api/v2/auth/password","description":"<p>Change the password of the current user and return a new token.</p>\n","urlObject":{"path":["api","v2","auth","password"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c2b7e8f2-c8b1-4603-9c1f-097c2c8b57de","name":"User Password","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"oldPassword\": \"OldPassw0rd123!\",\n\t\"newPassword\": \"NewPassw0rd123!\"\n}"},"url":"{{url}}/api/v2/auth/password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 16:10:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=98","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8125675d-81d4-415d-b623-5e20a816538f"}],"id":"03eabf44-6674-4996-8367-50896869f7bd","_postman_id":"03eabf44-6674-4996-8367-50896869f7bd","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Account Authorization Codes","item":[{"name":"Group Account Authorization Codes","id":"910660fe-c230-425c-bda7-34c3022f348c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/account-authorization-codes?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","account-authorization-codes"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"02d90ad5-346e-4630-8e79-943977bf33c2","name":"Group Account Authorization Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/account-authorization-codes?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","account-authorization-codes"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"100001\",\n            \"description\": \"100001\"\n        }\n    ]\n}"}],"_postman_id":"910660fe-c230-425c-bda7-34c3022f348c"},{"name":"Group Account Authorization Codes Available Users","id":"d3f17e3e-87eb-49c6-960b-e9042d178b73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/account-authorization-codes/available-users?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","account-authorization-codes","available-users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"b1c143a4-a59b-4348-991f-f8ff0274023c","name":"Group Account Authorization Codes Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/account-authorization-codes/available-users?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","account-authorization-codes","available-users"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"users\": [\n        {\n            \"userId\": 9871515000,\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"+1-9871515000\",\n            \"extension\": 5000,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@pbs.com\"\n        },\n        {\n            \"userId\": 9871515001,\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": \"+1-9871515001\",\n            \"extension\": 5001,\n            \"department\": null,\n            \"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"user.mtribbe\",\n            \"lastName\": \"Tribbe User\",\n            \"firstName\": \"Marc\",\n            \"hiraganaLastName\": \"Tribbe User\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"phoneNumber\": null,\n            \"extension\": 5005,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"8783449000_met\",\n            \"lastName\": 1,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449000\",\n            \"extension\": 9000,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"8783449001_met\",\n            \"lastName\": 2,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449001\",\n            \"extension\": 9001,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"8783449002_met\",\n            \"lastName\": 3,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449002\",\n            \"extension\": 9002,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"8783449003_met\",\n            \"lastName\": 4,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449003\",\n            \"extension\": 9003,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"8783449004_met\",\n            \"lastName\": 5,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449004\",\n            \"extension\": 9004,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 19871514011,\n            \"lastName\": \"4011 Last\",\n            \"firstName\": \"4011 First\",\n            \"hiraganaLastName\": \"4011 Last\",\n            \"hiraganaFirstName\": \"4011 First\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 19871514012,\n            \"lastName\": \"4012 Last\",\n            \"firstName\": \"4012 First\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 19871514013,\n            \"lastName\": \"4013 Last\",\n            \"firstName\": \"4013 First\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 19871514014,\n            \"lastName\": \"4014 Last\",\n            \"firstName\": \"4014 First\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 19871514015,\n            \"lastName\": \"4015 Last\",\n            \"firstName\": \"4015 First\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 19871514016,\n            \"lastName\": \"4016 Last\",\n            \"firstName\": \"4016 First\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 5133825000,\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-5133825000\",\n            \"extension\": 5512,\n            \"department\": null,\n            \"emailAddress\": \"5133825000@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"mark.reverman2\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": \"reverman\",\n            \"hiraganaFirstName\": \"mark\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": \"foo4@pbs.com\"\n        },\n        {\n            \"userId\": \"1grp.odin\",\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": \"1grp.odin\",\n            \"hiraganaFirstName\": \"1grp.odin\",\n            \"phoneNumber\": null,\n            \"extension\": 1231,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"2grp.odin\",\n            \"lastName\": \"2grp.odin\",\n            \"firstName\": \"2grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9871515004,\n            \"lastName\": \"2.grp.odin.lastname\",\n            \"firstName\": \"2.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515004\",\n            \"extension\": 5004,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515006,\n            \"lastName\": \"4.grp.odin.lastname\",\n            \"firstName\": \"4.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515006\",\n            \"extension\": 5006,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515003,\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"d3f17e3e-87eb-49c6-960b-e9042d178b73"},{"name":"Group Account Authorization Codes Details","id":"8cef9bc4-a456-4181-a5d9-73a8f536340a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/account-authorization-codes/details?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","account-authorization-codes","details"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"08dfd81a-747f-48ab-9c24-2f56450975ff","name":"Account Authorization Codes Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/account-authorization-codes/details?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","account-authorization-codes","details"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Jul 2020 20:16:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"184"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"Deactivated\",\n    \"numberOfDigits\": 6,\n    \"allowLocalAndTollFreeCalls\": true,\n    \"mandatoryUsageUserTable\": [],\n    \"optionalUsageUserTable\": [],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"8cef9bc4-a456-4181-a5d9-73a8f536340a"},{"name":"Group Account Authorization Codes","id":"0128adbb-a5d6-45d6-ba96-3d43ecc08d8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"100006\",\n            \"description\": \"100006\"\n        },\n        {\n            \"code\": \"100007\",\n            \"description\": \"100006\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","account-authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"94e79b05-1dac-49be-b4df-729155ac968a","name":"Group Account Authorization Codes","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"100006\",\n            \"description\": \"100004\"\n        },\n        {\n            \"code\": \"100007\",\n            \"description\": \"100005\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"100001\",\n            \"description\": \"100001\"\n        },\n        {\n            \"code\": \"100002\",\n            \"description\": \"100002\"\n        },\n        {\n            \"code\": \"100003\",\n            \"description\": \"100003\"\n        },\n        {\n            \"code\": \"100004\",\n            \"description\": \"100004\"\n        },\n        {\n            \"code\": \"100005\",\n            \"description\": \"100005\"\n        },\n        {\n            \"code\": \"100006\",\n            \"description\": \"100004\"\n        },\n        {\n            \"code\": \"100007\",\n            \"description\": \"100005\"\n        }\n    ]\n}"}],"_postman_id":"0128adbb-a5d6-45d6-ba96-3d43ecc08d8e"},{"name":"Group Account Authorization Codes","id":"0f39685e-22d6-4a0e-b464-a5d1711b2c8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Account Code\",\n    \"numberOfDigits\": 6,\n    \"allowLocalAndTollFreeCalls\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"mandatoryUsers\": [\n        {\n            \"userId\": 9871515004,\n            \"lastName\": \"2.grp.odin.lastname\",\n            \"firstName\": \"2.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515004\",\n            \"extension\": 5004,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"mark.reverman2\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": \"reverman\",\n            \"hiraganaFirstName\": \"mark\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": \"foo4@pbs.com\"\n        },\n        {\n            \"userId\": 5133825000,\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-5133825000\",\n            \"extension\": 5512,\n            \"department\": null,\n            \"emailAddress\": \"5133825000@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"8783449001_met\",\n            \"lastName\": 2,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449001\",\n            \"extension\": 9001,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"2grp.odin\",\n            \"lastName\": \"2grp.odin\",\n            \"firstName\": \"2grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ],\n    \"optionalUsers\": [\n        {\n            \"userId\": 9871515000,\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"+1-9871515000\",\n            \"extension\": 5000,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@pbs.com\"\n        },\n        {\n            \"userId\": 9871515001,\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": \"+1-9871515001\",\n            \"extension\": 5001,\n            \"department\": null,\n            \"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515003,\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"user.mtribbe\",\n            \"lastName\": \"Tribbe User\",\n            \"firstName\": \"Marc\",\n            \"hiraganaLastName\": \"Tribbe User\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"phoneNumber\": null,\n            \"extension\": 5005,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","account-authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"af4d1ae8-4dda-4b53-a2a4-f066148f4ab1","name":"Group Account Authorization Codes","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Account Code\",\n    \"numberOfDigits\": 6,\n    \"allowLocalAndTollFreeCalls\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"mandatoryUsers\": [\n        {\n            \"userId\": 9871515004,\n            \"lastName\": \"2.grp.odin.lastname\",\n            \"firstName\": \"2.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515004\",\n            \"extension\": 5004,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"mark.reverman2\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": \"reverman\",\n            \"hiraganaFirstName\": \"mark\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": \"foo4@pbs.com\"\n        },\n        {\n            \"userId\": 5133825000,\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-5133825000\",\n            \"extension\": 5512,\n            \"department\": null,\n            \"emailAddress\": \"5133825000@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"8783449001_met\",\n            \"lastName\": 2,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449001\",\n            \"extension\": 9001,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"2grp.odin\",\n            \"lastName\": \"2grp.odin\",\n            \"firstName\": \"2grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ],\n    \"optionalUsers\": [\n        {\n            \"userId\": 9871515000,\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"+1-9871515000\",\n            \"extension\": 5000,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@pbs.com\"\n        },\n        {\n            \"userId\": 9871515001,\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": \"+1-9871515001\",\n            \"extension\": 5001,\n            \"department\": null,\n            \"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515003,\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"user.mtribbe\",\n            \"lastName\": \"Tribbe User\",\n            \"firstName\": \"Marc\",\n            \"hiraganaLastName\": \"Tribbe User\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"phoneNumber\": null,\n            \"extension\": 5005,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"Account Code\",\n    \"numberOfDigits\": 6,\n    \"allowLocalAndTollFreeCalls\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"mandatoryUsers\": [\n        {\n            \"userId\": 9871515004,\n            \"lastName\": \"2.grp.odin.lastname\",\n            \"firstName\": \"2.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515004\",\n            \"extension\": 5004,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"mark.reverman2\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": \"reverman\",\n            \"hiraganaFirstName\": \"mark\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": \"foo4@pbs.com\"\n        },\n        {\n            \"userId\": 5133825000,\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-5133825000\",\n            \"extension\": 5512,\n            \"department\": null,\n            \"emailAddress\": \"5133825000@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"8783449001_met\",\n            \"lastName\": 2,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449001\",\n            \"extension\": 9001,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"2grp.odin\",\n            \"lastName\": \"2grp.odin\",\n            \"firstName\": \"2grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ],\n    \"optionalUsers\": [\n        {\n            \"userId\": 9871515000,\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"+1-9871515000\",\n            \"extension\": 5000,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@pbs.com\"\n        },\n        {\n            \"userId\": 9871515001,\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": \"+1-9871515001\",\n            \"extension\": 5001,\n            \"department\": null,\n            \"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515003,\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"user.mtribbe\",\n            \"lastName\": \"Tribbe User\",\n            \"firstName\": \"Marc\",\n            \"hiraganaLastName\": \"Tribbe User\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"phoneNumber\": null,\n            \"extension\": 5005,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"0f39685e-22d6-4a0e-b464-a5d1711b2c8e"},{"name":"Group Account Authorization Codes Copy","id":"aa7a0fb5-f05d-40e2-b776-cf33ebbfde90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Account Code\",\n    \"numberOfDigits\": 6,\n    \"allowLocalAndTollFreeCalls\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"mandatoryUsers\": [\n        {\n            \"userId\": 9871515004,\n            \"lastName\": \"2.grp.odin.lastname\",\n            \"firstName\": \"2.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515004\",\n            \"extension\": 5004,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"mark.reverman2\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": \"reverman\",\n            \"hiraganaFirstName\": \"mark\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": \"foo4@pbs.com\"\n        },\n        {\n            \"userId\": 5133825000,\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-5133825000\",\n            \"extension\": 5512,\n            \"department\": null,\n            \"emailAddress\": \"5133825000@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"8783449001_met\",\n            \"lastName\": 2,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449001\",\n            \"extension\": 9001,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"2grp.odin\",\n            \"lastName\": \"2grp.odin\",\n            \"firstName\": \"2grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ],\n    \"optionalUsers\": [\n        {\n            \"userId\": 9871515000,\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"+1-9871515000\",\n            \"extension\": 5000,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@pbs.com\"\n        },\n        {\n            \"userId\": 9871515001,\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": \"+1-9871515001\",\n            \"extension\": 5001,\n            \"department\": null,\n            \"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515003,\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"user.mtribbe\",\n            \"lastName\": \"Tribbe User\",\n            \"firstName\": \"Marc\",\n            \"hiraganaLastName\": \"Tribbe User\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"phoneNumber\": null,\n            \"extension\": 5005,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","account-authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f84dcda9-482f-4999-b04e-4281a3d8cc6b","name":"Group Account Authorization Codes","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Account Code\",\n    \"numberOfDigits\": 6,\n    \"allowLocalAndTollFreeCalls\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"mandatoryUsers\": [\n        {\n            \"userId\": 9871515004,\n            \"lastName\": \"2.grp.odin.lastname\",\n            \"firstName\": \"2.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515004\",\n            \"extension\": 5004,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"mark.reverman2\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": \"reverman\",\n            \"hiraganaFirstName\": \"mark\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": \"foo4@pbs.com\"\n        },\n        {\n            \"userId\": 5133825000,\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-5133825000\",\n            \"extension\": 5512,\n            \"department\": null,\n            \"emailAddress\": \"5133825000@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"8783449001_met\",\n            \"lastName\": 2,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449001\",\n            \"extension\": 9001,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"2grp.odin\",\n            \"lastName\": \"2grp.odin\",\n            \"firstName\": \"2grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ],\n    \"optionalUsers\": [\n        {\n            \"userId\": 9871515000,\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"+1-9871515000\",\n            \"extension\": 5000,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@pbs.com\"\n        },\n        {\n            \"userId\": 9871515001,\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": \"+1-9871515001\",\n            \"extension\": 5001,\n            \"department\": null,\n            \"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515003,\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"user.mtribbe\",\n            \"lastName\": \"Tribbe User\",\n            \"firstName\": \"Marc\",\n            \"hiraganaLastName\": \"Tribbe User\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"phoneNumber\": null,\n            \"extension\": 5005,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"Account Code\",\n    \"numberOfDigits\": 6,\n    \"allowLocalAndTollFreeCalls\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"mandatoryUsers\": [\n        {\n            \"userId\": 9871515004,\n            \"lastName\": \"2.grp.odin.lastname\",\n            \"firstName\": \"2.grp.odin.firstname\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-9871515004\",\n            \"extension\": 5004,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"mark.reverman2\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": \"reverman\",\n            \"hiraganaFirstName\": \"mark\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": \"foo4@pbs.com\"\n        },\n        {\n            \"userId\": 5133825000,\n            \"lastName\": \"1grp.odin\",\n            \"firstName\": \"1grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-5133825000\",\n            \"extension\": 5512,\n            \"department\": null,\n            \"emailAddress\": \"5133825000@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"8783449001_met\",\n            \"lastName\": 2,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8783449001\",\n            \"extension\": 9001,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"2grp.odin\",\n            \"lastName\": \"2grp.odin\",\n            \"firstName\": \"2grp.odin\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ],\n    \"optionalUsers\": [\n        {\n            \"userId\": 9871515000,\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"+1-9871515000\",\n            \"extension\": 5000,\n            \"department\": null,\n            \"emailAddress\": \"mreverman@pbs.com\"\n        },\n        {\n            \"userId\": 9871515001,\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": \"+1-9871515001\",\n            \"extension\": 5001,\n            \"department\": null,\n            \"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": 9871515003,\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"user.mtribbe\",\n            \"lastName\": \"Tribbe User\",\n            \"firstName\": \"Marc\",\n            \"hiraganaLastName\": \"Tribbe User\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"phoneNumber\": null,\n            \"extension\": 5005,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"aa7a0fb5-f05d-40e2-b776-cf33ebbfde90"},{"name":"Group Account Authorization Codes","id":"550dad08-c72a-4449-b8d2-11a785890bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"100006\",\n            \"description\": \"100004\"\n        },\n        {\n            \"code\": \"100007\",\n            \"description\": \"100005\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","account-authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b568f431-be4b-40d8-bdeb-768145537738","name":"Group Account Authorization Codes","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"100006\",\n            \"description\": \"100004\"\n        },\n        {\n            \"code\": \"100007\",\n            \"description\": \"100005\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/account-authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"100001\",\n            \"description\": \"100001\"\n        },\n        {\n            \"code\": \"100002\",\n            \"description\": \"100002\"\n        },\n        {\n            \"code\": \"100003\",\n            \"description\": \"100003\"\n        }\n    ]\n}"}],"_postman_id":"550dad08-c72a-4449-b8d2-11a785890bff"}],"id":"21c055ea-ae7f-40e1-a495-cb3a4476845b","description":"<p>Group Account Authorization Codes.</p>\n","_postman_id":"21c055ea-ae7f-40e1-a495-cb3a4476845b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Administatrators","item":[{"name":"Service Provider Admins","id":"20247762-bd04-4d37-a73d-6cb9a22407d4","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/service-providers/admins?extended=true","description":"<p>Get a list of service provider administrators.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","admins"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"key":"extended","value":"true"}],"variable":[]}},"response":[{"id":"3922b88b-d2ed-4b83-9cb7-d0a9ab2e3a67","name":"Service Provider Admins","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/admins?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","admins"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:02:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"167"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"lastName\": \"Last 2\",\n        \"firstName\": \"First Name\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"userId\": \"odin.mock.ent1.admin\"\n    }\n]"},{"id":"27777509-be94-4b05-b780-634b9e310ee1","name":"Service Provider Admins","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/admins?extended=true","host":["{{url}}"],"path":["api","v2","service-providers","admins"],"query":[{"key":"serviceProviderId","value":"ent.odin","disabled":true},{"key":"extended","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src       'none';     script-src       'self'       https://*.google-analytics.com       https://www.google.com;     connect-src       'self'       https://www.google-analytics.com;     img-src       'self'       data:       https://www.google-analytics.com;     style-src       'self'       'unsafe-inline';     font-src       'self';     frame-ancestors       teams.microsoft.com       *.teams.microsoft.com       *.skype.com;"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 03 Apr 2024 20:38:33 GMT"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Server","value":"Caddy"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Authorization"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"ALLOW-FROM https://teams.microsoft.com/"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"614"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"lastName\": \"Admin\",\n        \"firstName\": \"Enterprise Admin\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": \"5rings.reseller\",\n        \"serviceProviderId\": \"reseller.customer1\",\n        \"userId\": \"reseller.customer1.ent.admin\"\n    },\n    {\n        \"lastName\": \"Shuck\",\n        \"firstName\": \"Bill\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"BillShuck\"\n    },\n    {\n        \"lastName\": null,\n        \"firstName\": null,\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"OPSTest\"\n    },\n    {\n        \"lastName\": null,\n        \"firstName\": null,\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"PrithwitestAdmin\"\n    },\n    {\n        \"lastName\": \"lastname\",\n        \"firstName\": \"firstname\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"TestEntEntAdmin\"\n    },\n    {\n        \"lastName\": null,\n        \"firstName\": null,\n        \"administratorType\": \"Customer\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"andrew.torbeck2.ent.odin\"\n    },\n    {\n        \"lastName\": null,\n        \"firstName\": null,\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"atorbeck.entodin\"\n    },\n    {\n        \"lastName\": \"zak\",\n        \"firstName\": \"mayfield\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"ent.admin.mayfield\"\n    },\n    {\n        \"lastName\": \"Wilkins\",\n        \"firstName\": \"Harley\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"ent.hwilkins\"\n    },\n    {\n        \"lastName\": \"Burcham\",\n        \"firstName\": \"Ken\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"ken-admin-ent\"\n    },\n    {\n        \"lastName\": \"Tribbe Ent\",\n        \"firstName\": \"Marc\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"marc.tribbe.ent.odin\"\n    },\n    {\n        \"lastName\": \"mark\",\n        \"firstName\": \"reverman\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"mark.reverman.ent.odin\"\n    },\n    {\n        \"lastName\": \"Mark\",\n        \"firstName\": \"Reverman\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"mreverman.ent.admin\"\n    },\n    {\n        \"lastName\": null,\n        \"firstName\": null,\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"sandeshent1\"\n    },\n    {\n        \"lastName\": \"Latsa\",\n        \"firstName\": \"Scott\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"slatsa-ent\"\n    },\n    {\n        \"lastName\": null,\n        \"firstName\": null,\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"test-admin-1\"\n    },\n    {\n        \"lastName\": \"test.ent.odin.1\",\n        \"firstName\": \"test.ent.odin.1\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"test.ent.odin.1\"\n    },\n    {\n        \"lastName\": \"Mayfield\",\n        \"firstName\": \"Zak\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"userId\": \"zak-sp-admin\"\n    },\n    {\n        \"lastName\": \"OdinTest\",\n        \"firstName\": \"EntAdmin\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"00483\",\n        \"userId\": \"Odin.entadmintest\"\n    },\n    {\n        \"lastName\": \"Wilkins\",\n        \"firstName\": \"Harley\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"00483\",\n        \"userId\": \"ent.hwilkins.00483\"\n    },\n    {\n        \"lastName\": \"Regresison\",\n        \"firstName\": \"Admin Ent 1\",\n        \"administratorType\": \"Customer\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"Lexcen.Ent\",\n        \"userId\": \"Regresion.ent.admin.1\"\n    },\n    {\n        \"lastName\": \"Regression\",\n        \"firstName\": \"Admin Ent 2\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"Lexcen.Ent\",\n        \"userId\": \"Regresion.ent.admin.2\"\n    },\n    {\n        \"lastName\": \"Admin\",\n        \"firstName\": \"Lexcen\",\n        \"administratorType\": \"Normal\",\n        \"language\": \"English\",\n        \"locale\": \"en_US\",\n        \"encoding\": \"ISO-8859-1\",\n        \"resellerId\": null,\n        \"serviceProviderId\": \"Lexcen.Ent\",\n        \"userId\": \"lexcen.ent.admin\"\n    }\n]"}],"_postman_id":"20247762-bd04-4d37-a73d-6cb9a22407d4"},{"name":"Service Provider Admin","id":"7753ed32-f12a-41e8-b76e-e7a527c7c782","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"language\": \"English\",\n\t\"administratorType\": \"Normal\",\n\t\"userId\": \"odin.mock.ent1.admin\",\n\t\"password\": \"Password123!!\",\n\t\"lastName\": \"odinmock\",\n\t\"firstName\": \"ent1 admin\"\n}"},"url":"{{url}}/api/v2/service-providers/admins","description":"<p>Add a service provider administrator.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"36497245-0d1a-49af-b31f-62604c3ae378","name":"Service Provider Admin","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"language\": \"English\",\n\t\"administratorType\": \"Normal\",\n\t\"userId\": \"odin.mock.ent1.admin\",\n\t\"password\": \"Password123!!\",\n\t\"lastName\": \"odinmock\",\n\t\"firstName\": \"ent1 admin\"\n}"},"url":"{{url}}/api/v2/service-providers/admins"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:04:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"7753ed32-f12a-41e8-b76e-e7a527c7c782"},{"name":"Service Provider Admin","id":"6637fe31-d990-4132-8801-f6542b924b68","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/service-providers/admins?userId=odin.mock.ent1.admin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","admins"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin.mock.ent1.admin"}],"variable":[]}},"response":[{"id":"ba1c5a31-28cf-4ff0-89a0-fd55b87a4417","name":"Service Provider Admin","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/admins?userId=odin.mock.ent1.admin","host":["{{url}}"],"path":["api","v2","service-providers","admins"],"query":[{"key":"userId","value":"odin.mock.ent1.admin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:06:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"167"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"firstName\": \"ent1 admin\",\n    \"lastName\": \"odinmock\",\n    \"language\": \"English\",\n    \"administratorType\": \"Normal\",\n    \"userId\": \"odin.mock.ent1.admin\"\n}"}],"_postman_id":"6637fe31-d990-4132-8801-f6542b924b68"},{"name":"Service Provider Admin","id":"b04ad246-efa1-49d0-b20d-3f7d4b272430","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"odin.mock.ent1.admin\",\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"lastName\": \"lastname\",\n\t\"firstName\": \"firstname\",\n\t\"administratorType\": \"Normal\",\n\t\"language\": \"English\",\n\t\"password\": \"nh9pc)vI\"\n}"},"url":"{{url}}/api/v2/service-providers/admins","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bb40a60f-91e6-4249-8c32-088ee563b2b6","name":"Service Provider Admin","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"odin.mock.ent1.admin\",\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"lastName\": \"lastname\",\n\t\"firstName\": \"firstname\",\n\t\"administratorType\": \"Normal\",\n\t\"language\": \"English\",\n\t\"password\": \"nh9pc)vI\"\n}"},"url":"{{url}}/api/v2/service-providers/admins"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:07:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b04ad246-efa1-49d0-b20d-3f7d4b272430"},{"name":"Service Provider Admin","id":"baf4778a-6a93-45fc-b352-841decdfd3fd","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/service-providers/admins?serviceProviderId=odin.mock.ent1&userId=odin.mock.ent1.admin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","admins"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"userId","value":"odin.mock.ent1.admin"}],"variable":[]}},"response":[{"id":"00d3cf6d-6438-49ff-ae66-78dac028c504","name":"Service Provider Admin","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/admins?serviceProviderId=odin.mock.ent1&userId=odin.mock.ent1.admin","host":["{{url}}"],"path":["api","v2","service-providers","admins"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"userId","value":"odin.mock.ent1.admin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:07:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"baf4778a-6a93-45fc-b352-841decdfd3fd"},{"name":"Service Provider Admin Policies","id":"f0373c4e-1a70-4669-86e9-acf2a535f541","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/service-providers/admins/policies?userId=odin.mock.ent1.admin","description":"<p>Contains the policy settings for the service provider administrator</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>profileAccess: ['Full', 'Read-Only', 'None']\ngroupAccess: ['Full', '', 'Restricted from Adding or Removing Groups', 'None']\nuserAccess: ['Full', 'Full Profile', 'Read-Only Profile', 'No Profile', 'None']\nadminAccess: ['Full', 'Read-Only', 'None']\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","admins","policies"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin.mock.ent1.admin"}],"variable":[]}},"response":[{"id":"e89a596a-3ddc-4a97-be3f-d668fe9e4b90","name":"Service Provider Admin Policies","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/admins/policies?userId=odin.mock.ent1.admin","host":["{{url}}"],"path":["api","v2","service-providers","admins","policies"],"query":[{"key":"userId","value":"odin.mock.ent1.admin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:10:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"534"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"profileAccess\": \"Full\",\n    \"groupAccess\": \"Full\",\n    \"userAccess\": \"Full\",\n    \"adminAccess\": \"Full\",\n    \"departmentAccess\": \"Full\",\n    \"accessDeviceAccess\": \"Full\",\n    \"phoneNumberExtensionAccess\": \"Full\",\n    \"callingLineIdNumberAccess\": \"Full\",\n    \"serviceAccess\": \"Full\",\n    \"servicePackAccess\": \"Full\",\n    \"sessionAdmissionControlAccess\": \"Read-Only\",\n    \"webBrandingAccess\": \"Full\",\n    \"officeZoneAccess\": \"Read-Only\",\n    \"communicationBarringAccess\": \"Read-Only\",\n    \"networkPolicyAccess\": \"Full\",\n    \"numberActivationAccess\": \"Read-Only\",\n    \"dialableCallerIDAccess\": \"Full\",\n    \"userId\": \"odin.mock.ent1.admin\"\n}"}],"_postman_id":"f0373c4e-1a70-4669-86e9-acf2a535f541"},{"name":"Service Provider Admin Policies","id":"d1bdca40-d6b9-40d4-8534-d34d9a0f7485","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"odin.mock.ent1.admin\",\n\t\"profileAccess\": \"Read-Only\",\n\t\"groupAccess\": \"None\",\n\t\"userAccess\": \"Full Profile\",\n\t\"adminAccess\": \"Full\",\n\t\"departmentAccess\": \"Full\",\n\t\"accessDeviceAccess\": \"Associate User With Device\",\n\t\"phoneNumberExtensionAccess\": \"Assign To Services and Users\",\n\t\"callingLineIdNumberAccess\": \"Full\",\n\t\"serviceAccess\": \"No Authorization\",\n\t\"servicePackAccess\": \"None\",\n\t\"sessionAdmissionControlAccess\": \"Read-Only\",\n\t\"webBrandingAccess\": \"None\",\n\t\"officeZoneAccess\": \"Read-Only\",\n\t\"communicationBarringAccess\": \"Read-Only\",\n\t\"networkPolicyAccess\": \"Full\",\n\t\"numberActivationAccess\": \"Read-Only\",\n\t\"dialableCallerIDAccess\": \"Full\"\n}"},"url":"{{url}}/api/v2/service-providers/admins/policies","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","admins","policies"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"80df6b79-636b-4920-ad27-857f39ab2d06","name":"Service Provider Admin Policies","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"odin.mock.ent1.admin\",\n\t\"profileAccess\": \"Read-Only\",\n\t\"groupAccess\": \"None\",\n\t\"userAccess\": \"Full Profile\",\n\t\"adminAccess\": \"Full\",\n\t\"departmentAccess\": \"Full\",\n\t\"accessDeviceAccess\": \"Associate User With Device\",\n\t\"phoneNumberExtensionAccess\": \"Assign To Services and Users\",\n\t\"callingLineIdNumberAccess\": \"Full\",\n\t\"serviceAccess\": \"No Authorization\",\n\t\"servicePackAccess\": \"None\",\n\t\"sessionAdmissionControlAccess\": \"Read-Only\",\n\t\"webBrandingAccess\": \"None\",\n\t\"officeZoneAccess\": \"Read-Only\",\n\t\"communicationBarringAccess\": \"Read-Only\",\n\t\"networkPolicyAccess\": \"Full\",\n\t\"numberActivationAccess\": \"Read-Only\",\n\t\"dialableCallerIDAccess\": \"Full\"\n}"},"url":"{{url}}/api/v2/service-providers/admins/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:11:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"d1bdca40-d6b9-40d4-8534-d34d9a0f7485"},{"name":"Group Admins","id":"d0736d7a-d6b6-4d1e-93cc-ec7436b7f155","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/admins?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","description":"<p>Get a list of group and department administrators within the group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins"],"host":["{{url}}"],"query":[{"description":{"content":"<p>(service provider id)</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"},{"description":{"content":"<p>(group id)</p>\n","type":"text/plain"},"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"bd0543a9-a6e9-4d4a-b0eb-b34dc33122db","name":"Group Admins","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/admins?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","admins"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"admins\": [\n        {\n            \"lastName\": \"mock\",\n            \"firstName\": \"admin\",\n            \"department\": null,\n            \"language\": \"English\",\n            \"userId\": \"mock.grp.admin\"\n        },\n        {\n            \"lastName\": \"test\",\n            \"firstName\": \"admin\",\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Test / Department\",\n                \"fullPathName\": \"Test / Department (odin.mock.grp1)\"\n            },\n            \"language\": \"English\",\n            \"userId\": \"test-admin-1\"\n        }\n    ]\n}"}],"_postman_id":"d0736d7a-d6b6-4d1e-93cc-ec7436b7f155"},{"name":"Group Admin","id":"79c5438a-f11c-447b-bdba-008877f7df21","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"userId\": \"mock.grp1.admin1@microv-works.com\",\n\t\"lastName\": \"mock.grp1.admin1\",\n\t\"firstName\": \"mock.grp1.admin1\",\n\t\"password\": \"^hqw1A\",\n\t\"language\": \"English\"\n}"},"url":"{{url}}/api/v2/groups/admins","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f8c9e95c-9338-4df1-881e-26a110f11132","name":"Group Admin","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"userId\": \"mock.grp1.admin1@microv-works.com\",\n\t\"lastName\": \"mock.grp1.admin1\",\n\t\"firstName\": \"mock.grp1.admin1\",\n\t\"password\": \"^hqw1A\",\n\t\"language\": \"English\"\n}"},"url":"{{url}}/api/v2/groups/admins"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:23:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"79c5438a-f11c-447b-bdba-008877f7df21"},{"name":"Group Admin","id":"cae0566e-4520-4444-bafe-2ca55088f42d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/admins?userId=grp.mreverman.2","description":"<p>Get a list of group and department administrators within the group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins"],"host":["{{url}}"],"query":[{"description":{"content":"<p>(user id)</p>\n","type":"text/plain"},"key":"userId","value":"grp.mreverman.2"},{"disabled":true,"description":{"content":"<p>(group id)</p>\n","type":"text/plain"},"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"7e90f05c-4981-4624-9266-ed9e7355d299","name":"Group Admin","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/admins?userId=mock.grp1.admin1","host":["{{url}}"],"path":["api","v2","groups","admins"],"query":[{"key":"userId","value":"mock.grp1.admin1","description":"(service provider id)"},{"key":"groupId","value":"odin.mock.grp1","description":"(group id)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:36:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"175"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"mock.grp1.admin1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"firstName\": \"mock.grp1.admin1\",\n    \"lastName\": \"mock.grp1.admin1\",\n    \"language\": \"English\"\n}"}],"_postman_id":"cae0566e-4520-4444-bafe-2ca55088f42d"},{"name":"Group Admin","id":"c606fd0b-b6eb-491d-b97e-bdd258758081","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n\t\"userId\": \"mock.grp1.admin1@microv-works.com\",\n\t\"lastName\": \"First Name Changed\",\n\t\"firstName\": \"mock.grp1.admin1\",\n\t\"department\": null,\n\t\"language\": \"English\"\n}"},"url":"{{url}}/api/v2/groups/admins","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"eb3ea573-ad27-4b94-bdec-dd18623f4e0a","name":"Group Admin","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n\t\"userId\": \"mock.grp1.admin1@microv-works.com\",\n\t\"lastName\": \"First Name Changed\",\n\t\"firstName\": \"mock.grp1.admin1\",\n\t\"department\": null,\n\t\"language\": \"English\"\n}"},"url":"{{url}}/api/v2/groups/admins"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:24:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c606fd0b-b6eb-491d-b97e-bdd258758081"},{"name":"Group Admin","id":"119e74e4-9d21-41ce-9a51-c4186ea62cf0","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/admins?userId=mock.grp1.admin1@microv-works.com","description":"<p>Get a list of group and department administrators within the group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins"],"host":["{{url}}"],"query":[{"key":"userId","value":"mock.grp1.admin1@microv-works.com"},{"disabled":true,"description":{"content":"<p>(group id)</p>\n","type":"text/plain"},"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"10329472-e23d-4f01-bf46-e0e1f67b52cb","name":"Group Admin","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/admins?userId=mock.grp1.admin1@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","admins"],"query":[{"key":"userId","value":"mock.grp1.admin1@microv-works.com"},{"description":"(group id)","key":"groupId","value":"odin.mock.grp1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:25:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"119e74e4-9d21-41ce-9a51-c4186ea62cf0"},{"name":"Group Admin Policies Bulk","id":"3c7e5103-de2f-4bea-9b2c-da17f4754e7a","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"mock.grp1.admin1\"\n        }\n    ],\n    \"data\": {\n        \"profileAccess\": \"Read-Only\",\n        \"userAccess\": \"Full Profile\",\n        \"adminAccess\": \"Read-Only\",\n        \"departmentAccess\": \"Full\",\n        \"accessDeviceAccess\": \"Associate User With Device\",\n        \"enhancedServiceInstanceAccess\": \"Full\",\n        \"featureAccessCodeAccess\": \"Full\",\n        \"phoneNumberExtensionAccess\": \"Full\",\n        \"callingLineIdNumberAccess\": \"Full\",\n        \"serviceAccess\": \"Full\",\n        \"trunkGroupAccess\": \"Full\",\n        \"sessionAdmissionControlAccess\": \"Read-Only\",\n        \"officeZoneAccess\": \"Read-Only\",\n        \"numberActivationAccess\": \"None\",\n        \"dialableCallerIDAccess\": \"Full\"\n    }\n}"},"url":"{{url}}/api/v2/groups/admins/policies/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins","policies","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5f27b030-d32c-4e7e-a929-1006b89c594c","name":"Group Admins Policies Bulk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"mock.grp1.admin1\"\n        }\n    ],\n    \"data\": {\n        \"profileAccess\": \"Read-Only\",\n        \"userAccess\": \"Full Profile\",\n        \"adminAccess\": \"Read-Only\",\n        \"departmentAccess\": \"Full\",\n        \"accessDeviceAccess\": \"Associate User With Device\",\n        \"enhancedServiceInstanceAccess\": \"Full\",\n        \"featureAccessCodeAccess\": \"Full\",\n        \"phoneNumberExtensionAccess\": \"Full\",\n        \"callingLineIdNumberAccess\": \"Full\",\n        \"serviceAccess\": \"Full\",\n        \"trunkGroupAccess\": \"Full\",\n        \"sessionAdmissionControlAccess\": \"Read-Only\",\n        \"officeZoneAccess\": \"Read-Only\",\n        \"numberActivationAccess\": \"None\",\n        \"dialableCallerIDAccess\": \"Full\"\n    }\n}"},"url":"{{url}}/api/v2/groups/admins/policies/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:37:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"539"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"mock.grp1.admin1\"\n        }\n    ],\n    \"data\": {\n        \"profileAccess\": \"Read-Only\",\n        \"userAccess\": \"Full Profile\",\n        \"adminAccess\": \"Read-Only\",\n        \"departmentAccess\": \"Full\",\n        \"accessDeviceAccess\": \"Associate User With Device\",\n        \"enhancedServiceInstanceAccess\": \"Full\",\n        \"featureAccessCodeAccess\": \"Full\",\n        \"phoneNumberExtensionAccess\": \"Full\",\n        \"callingLineIdNumberAccess\": \"Full\",\n        \"serviceAccess\": \"Full\",\n        \"trunkGroupAccess\": \"Full\",\n        \"sessionAdmissionControlAccess\": \"Read-Only\",\n        \"officeZoneAccess\": \"Read-Only\",\n        \"numberActivationAccess\": \"None\",\n        \"dialableCallerIDAccess\": \"Full\"\n    }\n}"}],"_postman_id":"3c7e5103-de2f-4bea-9b2c-da17f4754e7a"},{"name":"Group Admin Policies","id":"3bd6444a-8976-490c-86e4-1a8198f9b713","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/admins/policies?userId=mock.grp1.admin1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins","policies"],"host":["{{url}}"],"query":[{"key":"userId","value":"mock.grp1.admin1"}],"variable":[]}},"response":[{"id":"2241ad65-0f59-40cc-b819-d77db7a55042","name":"Group Admin Policies","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/admins/policies?userId=mock.grp1.admin1","host":["{{url}}"],"path":["api","v2","groups","admins","policies"],"query":[{"key":"userId","value":"mock.grp1.admin1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:31:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"478"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"profileAccess\": \"Full\",\n    \"userAccess\": \"Full\",\n    \"adminAccess\": \"Full\",\n    \"departmentAccess\": \"Full\",\n    \"accessDeviceAccess\": \"Full\",\n    \"enhancedServiceInstanceAccess\": \"Full\",\n    \"featureAccessCodeAccess\": \"Full\",\n    \"phoneNumberExtensionAccess\": \"Full\",\n    \"callingLineIdNumberAccess\": \"Full\",\n    \"serviceAccess\": \"Full\",\n    \"trunkGroupAccess\": \"Full\",\n    \"sessionAdmissionControlAccess\": \"Read-Only\",\n    \"officeZoneAccess\": \"Read-Only\",\n    \"numberActivationAccess\": \"None\",\n    \"dialableCallerIDAccess\": \"Full\",\n    \"userId\": \"mock.grp1.admin1\"\n}"}],"_postman_id":"3bd6444a-8976-490c-86e4-1a8198f9b713"},{"name":"Group Admin Policies","id":"81303319-9355-4ba4-9656-63e0e1339535","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"mock.grp1.admin1\",\n\t\"profileAccess\": \"Read-Only\",\n\t\"userAccess\": \"Full Profile\",\n\t\"adminAccess\": \"Read-Only\",\n\t\"departmentAccess\": \"Full\",\n\t\"accessDeviceAccess\": \"Associate User With Device\",\n\t\"enhancedServiceInstanceAccess\": \"Full\",\n\t\"featureAccessCodeAccess\": \"Full\",\n\t\"phoneNumberExtensionAccess\": \"Full\",\n\t\"callingLineIdNumberAccess\": \"Full\",\n\t\"serviceAccess\": \"Full\",\n\t\"trunkGroupAccess\": \"Full\",\n\t\"sessionAdmissionControlAccess\": \"Read-Only\",\n\t\"officeZoneAccess\": \"Read-Only\",\n\t\"numberActivationAccess\": \"None\",\n\t\"dialableCallerIDAccess\": \"Full\"\n}"},"url":"{{url}}/api/v2/groups/admins/policies","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","admins","policies"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"09aa7ab4-ac2f-4224-ab65-20fb77ace976","name":"Group Admin Policies","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"mock.grp1.admin1\",\n\t\"profileAccess\": \"Read-Only\",\n\t\"userAccess\": \"Full Profile\",\n\t\"adminAccess\": \"Read-Only\",\n\t\"departmentAccess\": \"Full\",\n\t\"accessDeviceAccess\": \"Associate User With Device\",\n\t\"enhancedServiceInstanceAccess\": \"Full\",\n\t\"featureAccessCodeAccess\": \"Full\",\n\t\"phoneNumberExtensionAccess\": \"Full\",\n\t\"callingLineIdNumberAccess\": \"Full\",\n\t\"serviceAccess\": \"Full\",\n\t\"trunkGroupAccess\": \"Full\",\n\t\"sessionAdmissionControlAccess\": \"Read-Only\",\n\t\"officeZoneAccess\": \"Read-Only\",\n\t\"numberActivationAccess\": \"None\",\n\t\"dialableCallerIDAccess\": \"Full\"\n}"},"url":"{{url}}/api/v2/groups/admins/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 18:31:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"81303319-9355-4ba4-9656-63e0e1339535"},{"name":"Reseller Admins","id":"fe66a509-b9c5-4502-807b-1a351be622a9","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/reseller/admins?resellerId=reseller.odin","description":"<p>Get a list of service provider administrators.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reseller","admins"],"host":["{{url}}"],"query":[{"key":"resellerId","value":"reseller.odin"}],"variable":[]}},"response":[{"id":"7908aef3-ec40-419e-abe9-1ffc8e03ee1d","name":"Reseller Admins","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/reseller/admins?resellerId=reseller.odin","host":["{{url}}"],"path":["api","v2","reseller","admins"],"query":[{"key":"resellerId","value":"reseller.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"resellers\": [\n        {\n            \"administratorID\": \"odin.reseller\",\n            \"lastName\": \"odin\",\n            \"firstName\": \"reseller\",\n            \"language\": \"English\"\n        },\n        {\n            \"administratorID\": \"odin.reseller.admin.1\",\n            \"lastName\": \"odin.reseller\",\n            \"firstName\": \"admin.1\",\n            \"language\": \"English\"\n        },\n        {\n            \"administratorID\": \"odin.reseller.admin.2\",\n            \"lastName\": \"odin.reseller\",\n            \"firstName\": \"admin.2\",\n            \"language\": \"English\"\n        }\n    ]\n}"}],"_postman_id":"fe66a509-b9c5-4502-807b-1a351be622a9"},{"name":"Reseller Admin","id":"fd5e064c-60d3-4531-b739-dcd718ba7099","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"resellerId\" : \"odin.mock.reseller1\",\n\t\"userId\": \"odin.mock.reseller1.admin\",\n\t\"language\": \"English\",\n\t\"password\": \"Password123!!\",\n\t\"lastName\": \"odinmock\",\n\t\"firstName\": \"reseller1 admin\"\n}"},"url":"{{url}}/api/v2/reseller/admins","description":"<p>Add a service provider administrator.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reseller","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd5e064c-60d3-4531-b739-dcd718ba7099"},{"name":"Reseller Admin","id":"ffb8b12b-0afa-4ac1-ac78-7d38140d1c7a","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/reseller/admins?userId=odin.mock.reseller1.admin","description":"<p>Get a list of service provider administrators.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reseller","admins"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin.mock.reseller1.admin"}],"variable":[]}},"response":[],"_postman_id":"ffb8b12b-0afa-4ac1-ac78-7d38140d1c7a"},{"name":"Reseller Admin","id":"38b383db-63b1-4fbd-a8d1-7cb37ac87477","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"odin.mock.reseller1.admin\",\n\t\"language\": \"English\",\n\t\"password\": \"Password123!!\",\n\t\"lastName\": \"odinmock\",\n\t\"firstName\": \"reseller1 admin\"\n}"},"url":"{{url}}/api/v2/reseller/admins","description":"<p>Add a service provider administrator.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reseller","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"38b383db-63b1-4fbd-a8d1-7cb37ac87477"},{"name":"Reseller Admin","id":"476f1b3c-4742-4374-a94a-f8c2d4c25b1f","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/reseller/admins?userId=odin.mock.reseller1.admin","description":"<p>Get a list of service provider administrators.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reseller","admins"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin.mock.reseller1.admin"}],"variable":[]}},"response":[],"_postman_id":"476f1b3c-4742-4374-a94a-f8c2d4c25b1f"},{"name":"System Admin","id":"68dab7e1-2bcc-4041-96e9-92b50321b343","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/admins?userId=sys.odin.lab","description":"<p>Get a list of service provider administrators.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","admins"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"odin.lab.scott.prov2"},{"key":"userId","value":"sys.odin.lab"}],"variable":[]}},"response":[],"_postman_id":"68dab7e1-2bcc-4041-96e9-92b50321b343"},{"name":"System Admin","id":"c5707079-0ae9-406e-a86f-9997379bf4fd","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"tmp.scott.prov\",\n    \"password\": \"KKK!!!aaa111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/admins","description":"<p>Get a list of service provider administrators.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5707079-0ae9-406e-a86f-9997379bf4fd"}],"id":"4925816c-f9db-43f2-9716-4c16cb2d1117","_postman_id":"4925816c-f9db-43f2-9716-4c16cb2d1117","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Advice Of Charge","item":[{"name":"System Advice Of Charge Cost Information Source","id":"c2a4a602-d092-4bcb-acd6-4990f22cc1bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/advice-of-charge-cost-information-source","description":"<ul>\n<li><strong><em>peerIdentity</em></strong> : <em>net address of the peer.</em>  <ul>\n<li>ex: 10.10.10.1</li>\n</ul>\n</li>\n<li><strong><em>priority</em></strong> : <em>No two peer identities can have the same priority.</em><ul>\n<li>0-9</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","advice-of-charge-cost-information-source"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b25ccb2d-032a-4f82-a9fd-29a8a4a57e61","name":"System Advice Of Charge Cost Information Source","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/advice-of-charge-cost-information-source"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"costs\": [\n        {\n            \"peerIdentity\": \"10.10.10.2\",\n            \"priority\": 1\n        },\n        {\n            \"peerIdentity\": \"10.10.10.1\",\n            \"priority\": 2\n        }\n    ]\n}"}],"_postman_id":"c2a4a602-d092-4bcb-acd6-4990f22cc1bf"},{"name":"System Advice Of Charge Cost Information Source","id":"6f1d4c0c-8e49-46eb-bad4-2550f4a204f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"peerIdentity\": \"10.10.10.2\",\n    \"priority\": 1\n}"},"url":"{{url}}/api/v2/system/advice-of-charge-cost-information-source","description":"<ul>\n<li><strong><em>peerIdentity</em></strong> : <em>net address of the peer.</em>  <ul>\n<li>ex: 10.10.10.1</li>\n</ul>\n</li>\n<li><strong><em>priority</em></strong> : <em>No two peer identities can have the same priority.</em><ul>\n<li>0-9</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","advice-of-charge-cost-information-source"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f5bd822a-7a4c-40f6-a47f-4e7c9ff952df","name":"System Advice Of Charge Cost Information Source","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"peerIdentity\": \"10.10.10.2\",\n    \"priority\": 1\n}"},"url":"{{url}}/api/v2/system/advice-of-charge-cost-information-source"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"costs\": [\n        {\n            \"peerIdentity\": \"10.10.10.2\",\n            \"priority\": 1\n        },\n        {\n            \"peerIdentity\": \"10.10.10.1\",\n            \"priority\": 2\n        }\n    ]\n}"}],"_postman_id":"6f1d4c0c-8e49-46eb-bad4-2550f4a204f8"},{"name":"System Advice Of Charge Cost Information Source","id":"3e90b098-4626-443c-9aee-53e890caa83e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"peerIdentity\": \"10.10.10.2\",\n    \"priority\": 3\n}"},"url":"{{url}}/api/v2/system/advice-of-charge-cost-information-source","description":"<ul>\n<li><strong><em>peerIdentity</em></strong> : <em>net address of the peer.</em>  <ul>\n<li>ex: 10.10.10.1</li>\n</ul>\n</li>\n<li><strong><em>priority</em></strong> : <em>No two peer identities can have the same priority.</em><ul>\n<li>0-9</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","advice-of-charge-cost-information-source"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a7595316-0ee5-467e-bd34-33a05118fa7e","name":"System Advice Of Charge Cost Information Source","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"peerIdentity\": \"10.10.10.2\",\n    \"priority\": 3\n}"},"url":"{{url}}/api/v2/system/advice-of-charge-cost-information-source"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"costs\": [\n        {\n            \"peerIdentity\": \"10.10.10.1\",\n            \"priority\": 2\n        },\n        {\n            \"peerIdentity\": \"10.10.10.2\",\n            \"priority\": 3\n        }\n    ]\n}"}],"_postman_id":"3e90b098-4626-443c-9aee-53e890caa83e"},{"name":"System Advice Of Charge Cost Information Source","id":"e89fd851-c799-44a5-8bb2-62215b771ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/advice-of-charge-cost-information-source?peerIdentity=10.10.10.1","description":"<ul>\n<li><strong><em>peerIdentity</em></strong> : <em>net address of the peer.</em>  <ul>\n<li>ex: 10.10.10.1</li>\n</ul>\n</li>\n<li><strong><em>priority</em></strong> : <em>No two peer identities can have the same priority.</em><ul>\n<li>0-9</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","advice-of-charge-cost-information-source"],"host":["{{url}}"],"query":[{"key":"peerIdentity","value":"10.10.10.1"}],"variable":[]}},"response":[{"id":"1443c5d0-8d50-4210-aa6a-4e379249d78e","name":"System Advice Of Charge Cost Information Source","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/system/advice-of-charge-cost-information-source?peerIdentity=10.10.10.1","host":["{{url}}"],"path":["api","v2","system","advice-of-charge-cost-information-source"],"query":[{"key":"peerIdentity","value":"10.10.10.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"costs\": [\n        {\n            \"peerIdentity\": \"10.10.10.2\",\n            \"priority\": 3\n        }\n    ]\n}"},{"id":"ab4dacb3-6e4c-4415-8854-798e7ffdc5df","name":"System Advice Of Charge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/advice-of-charge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"delayBetweenNotificationSeconds\": 60,\n    \"incomingAocHandling\": \"Charge\",\n    \"useOCSEnquiry\": false,\n    \"OCSEnquiryType\": \"Service Price\"\n}"}],"_postman_id":"e89fd851-c799-44a5-8bb2-62215b771ae8"},{"name":"System Advice Of Charge","id":"2b70dc91-a270-4fa0-8d91-5ce666df5c83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/advice-of-charge","description":"<ul>\n<li><strong><em>delayBetweenNotificationSeconds</em></strong> : <em>The time in seconds used for the interval for sending AoC-D information to the caller.</em>  <ul>\n<li>minimum value : 5</li>\n<li>maximum value : 1800</li>\n</ul>\n</li>\n<li><strong><em>incomingAocHandling</em></strong>             : <em>Choices for method of how the Advice of Charge is processed.</em><ul>\n<li>Ignore </li>\n<li>Charge</li>\n</ul>\n</li>\n<li><strong><em>useOCSEnquiry</em></strong>                   : <em>Use of OCS Enquiry true or false.</em><ul>\n<li>true </li>\n<li>false</li>\n</ul>\n</li>\n<li><strong><em>OCSEnquiryType</em></strong>                  : <em>Choices for type of OCS enquiry that Advice Of Charge Services sends to OCS.</em><ul>\n<li>Service Price </li>\n<li>Advice Of Charge</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","advice-of-charge"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"894d43b2-bd97-4963-8095-1d463e1535d5","name":"System Advice Of Charge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/advice-of-charge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"delayBetweenNotificationSeconds\": 60,\n    \"incomingAocHandling\": \"Charge\",\n    \"useOCSEnquiry\": false,\n    \"OCSEnquiryType\": \"Service Price\"\n}"}],"_postman_id":"2b70dc91-a270-4fa0-8d91-5ce666df5c83"},{"name":"System Advice Of Charge","id":"d28343eb-2ac3-4707-9af6-d4abf7a291a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"delayBetweenNotificationSeconds\": 60,\n    \"incomingAocHandling\": \"Charge\",\n    \"useOCSEnquiry\": false,\n    \"OCSEnquiryType\": \"Service Price\"\n}"},"url":"{{url}}/api/v2/system/advice-of-charge","description":"<ul>\n<li><strong><em>delayBetweenNotificationSeconds</em></strong> : <em>The time in seconds used for the interval for sending AoC-D information to the caller.</em>  <ul>\n<li>minimum value : 5</li>\n<li>maximum value : 1800</li>\n</ul>\n</li>\n<li><strong><em>incomingAocHandling</em></strong>             : <em>Choices for method of how the Advice of Charge is processed.</em><ul>\n<li>Ignore </li>\n<li>Charge</li>\n</ul>\n</li>\n<li><strong><em>useOCSEnquiry</em></strong>                   : <em>Use of OCS Enquiry true or false.</em><ul>\n<li>true </li>\n<li>false</li>\n</ul>\n</li>\n<li><strong><em>OCSEnquiryType</em></strong>                  : <em>Choices for type of OCS enquiry that Advice Of Charge Services sends to OCS.</em><ul>\n<li>Service Price </li>\n<li>Advice Of Charge</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","advice-of-charge"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aabeb8e1-4a75-4209-bad0-ee102d721cff","name":"System Advice Of Charge","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"delayBetweenNotificationSeconds\": 60,\n    \"incomingAocHandling\": \"Charge\",\n    \"useOCSEnquiry\": false,\n    \"OCSEnquiryType\": \"Service Price\"\n}"},"url":"{{url}}/api/v2/system/advice-of-charge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"delayBetweenNotificationSeconds\": 60,\n    \"incomingAocHandling\": \"Charge\",\n    \"useOCSEnquiry\": false,\n    \"OCSEnquiryType\": \"Service Price\"\n}"}],"_postman_id":"d28343eb-2ac3-4707-9af6-d4abf7a291a4"},{"name":"Service Provider Advice Of Charge","id":"d7e4da57-9c8d-44a5-8c1e-3da633da9b0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/advice-of-charge?serviceProviderId=ent.odin","description":"<ul>\n<li><strong><em>useSPLevelAoCSettings</em></strong>        : <em>when set to true use the delay between notifications set at the service provider level.</em><ul>\n<li>true or false</li>\n</ul>\n</li>\n<li><strong><em>delayBetweenNotificationSeconds</em></strong> : <em>The time in seconds used for the interval for sending AoC-D information to the caller.</em>  <ul>\n<li>minimum value : 5</li>\n<li>maximum value : 1800</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","advice-of-charge"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"d72b68ad-d9d0-4292-af67-769c797aaf19","name":"Service Provider Advice Of Charge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/advice-of-charge?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","advice-of-charge"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"useSPLevelAoCSettings\": true,\n    \"delayBetweenNotificationSeconds\": 60\n}"}],"_postman_id":"d7e4da57-9c8d-44a5-8c1e-3da633da9b0d"},{"name":"Service Provider Advice Of Charge","id":"8e4db40d-49a8-4c73-bd51-5104ead74bc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"useSPLevelAoCSettings\": false,\n    \"delayBetweenNotificationSeconds\": 160\n}"},"url":"{{url}}/api/v2/service-providers/advice-of-charge","description":"<ul>\n<li><strong><em>useSPLevelAoCSettings</em></strong>        : <em>when set to true use the delay between notifications set at the service provider level.</em><ul>\n<li>true or false</li>\n</ul>\n</li>\n<li><strong><em>delayBetweenNotificationSeconds</em></strong> : <em>The time in seconds used for the interval for sending AoC-D information to the caller.</em>  <ul>\n<li>minimum value : 5</li>\n<li>maximum value : 1800</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","advice-of-charge"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d248170c-524a-4abe-ab9d-fb68e0ee3c48","name":"Service Provider Advice Of Charge","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"useSPLevelAoCSettings\": false,\n    \"delayBetweenNotificationSeconds\": 160\n}"},"url":"{{url}}/api/v2/service-providers/advice-of-charge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"useSPLevelAoCSettings\": false,\n    \"delayBetweenNotificationSeconds\": 160\n}"}],"_postman_id":"8e4db40d-49a8-4c73-bd51-5104ead74bc6"},{"name":"Group Advice Of Charge","id":"7b124e4f-f8a0-40cb-a5c8-3dac42e644dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/advice-of-charge?serviceProviderId=ent.odin&groupId=grp.odin","description":"<ul>\n<li><strong><em>useGroupLevelAoCSettings</em></strong>        : <em>when set to true use the delay between notifications set at the group level.</em><ul>\n<li>true or false</li>\n</ul>\n</li>\n<li><strong><em>delayBetweenNotificationSeconds</em></strong> : <em>The time in seconds used for the interval for sending AoC-D information to the caller.</em>  <ul>\n<li>minimum value : 5</li>\n<li>maximum value : 1800</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","advice-of-charge"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"68758139-ed7f-4d0d-8171-7499f9cc7540","name":"Group Advice Of Charge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/advice-of-charge?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","advice-of-charge"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"useGroupLevelAoCSettings\": true,\n    \"delayBetweenNotificationSeconds\": 60\n}"}],"_postman_id":"7b124e4f-f8a0-40cb-a5c8-3dac42e644dc"},{"name":"Group Advice Of Charge","id":"b77316c7-101e-49c8-baee-0ec4b5d3ada9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"useGroupLevelAoCSettings\": false,\n    \"delayBetweenNotificationSeconds\": 60\n}"},"url":"{{url}}/api/v2/groups/advice-of-charge","description":"<ul>\n<li><strong><em>useGroupLevelAoCSettings</em></strong>        : <em>when set to true use the delay between notifications set at the group level.</em><ul>\n<li>true or false</li>\n</ul>\n</li>\n<li><strong><em>delayBetweenNotificationSeconds</em></strong> : <em>The time in seconds used for the interval for sending AoC-D information to the caller.</em>  <ul>\n<li>minimum value : 5</li>\n<li>maximum value : 1800</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","advice-of-charge"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"72cf983d-bbef-4400-a17d-8f6a52838861","name":"Group Advice Of Charge","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"useGroupLevelAoCSettings\": false,\n    \"delayBetweenNotificationSeconds\": 60\n}"},"url":"{{url}}/api/v2/groups/advice-of-charge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"useGroupLevelAoCSettings\": false,\n    \"delayBetweenNotificationSeconds\": 60\n}"}],"_postman_id":"b77316c7-101e-49c8-baee-0ec4b5d3ada9"},{"name":"User Advice Of Charge","id":"8a4d499b-bd7a-4f21-89dc-97859309cbb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/advice-of-charge?userId=4001@parkbenchsolutions.com","description":"<p>The choices for advice of charge (<em>aocType</em>) types are listed below:</p>\n<ul>\n<li><strong>During Call</strong></li>\n<li><strong>End of Call</strong></li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","advice-of-charge"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"76b26154-ef4f-4d24-9183-376e1bd33b9c","name":"User Advice Of Charge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/advice-of-charge?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","advice-of-charge"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"aocType\": \"During Call\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"8a4d499b-bd7a-4f21-89dc-97859309cbb0"},{"name":"User Advice Of Charge","id":"dff14309-753b-4ed4-baa8-cdf30ee2dc5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"aocType\": \"During Call\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/advice-of-charge?userId=4001@parkbenchsolutions.com","description":"<p>The choices for advice of charge (<em>aocType</em>) types are listed below:</p>\n<ul>\n<li><strong>During Call</strong></li>\n<li><strong>End Of Call</strong></li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","advice-of-charge"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"e965a8ca-826e-4735-a811-fce3bfb26cee","name":"User Advice Of Charge","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"aocType\": \"During Call\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":{"raw":"{{url}}/api/v2/users/advice-of-charge?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","advice-of-charge"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"aocType\": \"During Call\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5014\n}"}],"_postman_id":"dff14309-753b-4ed4-baa8-cdf30ee2dc5e"}],"id":"3d3b55d9-fcec-4205-929d-a3bd117cc1f7","description":"<h6 id=\"advice-of-charge-advanced-call-control-feature\">Advice of Charge (Advanced Call Control Feature):</h6>\n<p>Allows you to get charge information messages to your phone in different ways based on the service configuration.  </p>\n","event":[{"listen":"prerequest","script":{"id":"9e1b06d4-ea72-4da3-897a-6225caa2d595","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7a4dc6dc-aa5f-486b-b5fd-fca0d4ae6b25","type":"text/javascript","exec":[""]}}],"_postman_id":"3d3b55d9-fcec-4205-929d-a3bd117cc1f7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Alternate Numbers","item":[{"name":"User Alternate Numbers","id":"e2a5ccf2-12e0-47aa-ac9a-1146759dcab3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/alternate-numbers?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","alternate-numbers"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"12d78f14-d935-43a4-a679-c88a7ab6d212","name":"User Alternate Numbers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/alternate-numbers?userId=9546547216@microv-works.com","host":["{{url}}"],"path":["api","v2","users","alternate-numbers"],"query":[{"key":"userId","value":"9546547216@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"890","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 15:56:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"userId\":\"9546547216@microv-works.com\",\"distinctiveRing\":false,\"alternateEntries\":[{\"phoneNumber\":\"5131111112\",\"extension\":\"1112\",\"ringPattern\":\"Short-Short-Long\",\"alternateEntryId\":1},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":2},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":3},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":4},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":5},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":6},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":7},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":8},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":9},{\"phoneNumber\":null,\"extension\":null,\"ringPattern\":null,\"alternateEntryId\":10}]}"}],"_postman_id":"e2a5ccf2-12e0-47aa-ac9a-1146759dcab3"},{"name":"User Alternate Numbers","id":"6c953bab-c9c5-4c08-9d57-73fed6828808","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"5134004006@lab.tekvoice.net\",\n    \"distinctiveRing\": true,\n    \"alternateEntries\": [\n        {\n            \"phoneNumber\": \"5134004004\",\n            \"extension\": \"1005\",\n            \"ringPattern\": \"Normal\",\n            \"alternateEntryId\": 1\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 2\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 3\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 4\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 5\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 6\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 7\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 8\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 9\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 10\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/alternate-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","alternate-numbers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8f53b25f-82c1-4f25-a25b-89449badd903","name":"User Alternate Numbers","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"distinctiveRing\": true,\n    \"alternateEntries\": [\n        {\n            \"phoneNumber\": \"8135551005\",\n            \"extension\": \"1005\",\n            \"ringPattern\": \"Normal\",\n            \"alternateEntryId\": 1\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 2\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 3\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 4\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 5\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 6\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 7\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 8\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 9\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 10\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/alternate-numbers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"distinctiveRing\": true,\n    \"alternateEntries\": [\n        {\n            \"phoneNumber\": \"8135551005\",\n            \"extension\": \"1005\",\n            \"ringPattern\": \"Normal\",\n            \"alternateEntryId\": 1\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 2\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 3\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 4\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 5\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 6\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 7\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 8\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 9\n        },\n        {\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"ringPattern\": null,\n            \"alternateEntryId\": 10\n        }\n    ],\n    \"_eventId\": 7896\n}"}],"_postman_id":"6c953bab-c9c5-4c08-9d57-73fed6828808"}],"id":"9b2035b1-4483-48ab-9c31-43086567aa1e","_postman_id":"9b2035b1-4483-48ab-9c31-43086567aa1e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Answer Confirmation","item":[{"name":"Service Provider Answer Confirmation","id":"ce3b7110-e71e-4e1d-a530-b8b20349cf43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-provider/answerconfirmation?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-provider","answerconfirmation"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"8a3fa9cb-c486-4bbc-8f9f-f37480b5e9e6","name":"Service Provider Answer Confirmation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-provider/answerconfirmation?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-provider","answerconfirmation"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Mar 2022 16:12:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"71"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"announcementMessageSelection\": \"System\",\n    \"confirmationTimoutSeconds\": 5\n}"}],"_postman_id":"ce3b7110-e71e-4e1d-a530-b8b20349cf43"},{"name":"Service Provider Answer Confirmation","id":"9f6141a3-10c2-4a30-bcdc-3fac1d32e623","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"announcementMessageSelection\": \"Custom\",\n    \"confirmationMessageAudioFileDescription\": \"fred8 2.wav\",\n    \"confirmationMessageMediaType\": \"WAV\",\n    \"confirmationTimoutSeconds\": 10\n}"},"url":"{{url}}/api/v2/service-provider/answerconfirmation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-provider","answerconfirmation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5f5015b3-0af3-4bb4-87ab-f97b22e89a7a","name":"Service Provider Answer Confirmation","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"announcementMessageSelection\": \"Custom\",\n    \"confirmationMessageAudioFileDescription\": \"fred8 2.wav\",\n    \"confirmationMessageMediaType\": \"WAV\",\n    \"confirmationTimoutSeconds\": 10\n}"},"url":"{{url}}/api/v2/service-provider/answerconfirmation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 11 Mar 2022 22:26:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"165"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"announcementMessageSelection\": \"Custom\",\n    \"confirmationMessageAudioFileDescription\": \"fred8 2.wav\",\n    \"confirmationMessageMediaType\": \"WAV\",\n    \"confirmationTimoutSeconds\": 10\n}"}],"_postman_id":"9f6141a3-10c2-4a30-bcdc-3fac1d32e623"}],"id":"299a3383-6e6e-41d7-9293-26e7d89f56a2","description":"<p>Configure the answer confirmation prompt for the enterprise.</p>\n","_postman_id":"299a3383-6e6e-41d7-9293-26e7d89f56a2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Alternate User Id","item":[{"name":"System Alternate User Ids","id":"49f9bfa5-0030-4633-98b3-01f29f0db7c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/alternate-user-id?alternateUserId=*user*","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","alternate-user-id"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"groupId","value":"grp.odin"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"alternateUserId","value":"*user*"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"userId","value":"*user*"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"resellerId","value":"*reseller*"}],"variable":[]}},"response":[{"id":"0b2ce891-a168-4246-9c36-30f67b78e1e3","name":"System Alternate User Ids","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/system/alternate-user-id?alternateUserId=*user*","host":["{{url}}"],"path":["api","v2","system","alternate-user-id"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional","disabled":true},{"key":"groupId","value":"grp.odin","description":"optional","disabled":true},{"key":"alternateUserId","value":"*user*","description":"optional"},{"key":"userId","value":"*user*","description":"optional","disabled":true},{"key":"resellerId","value":"*reseller*","description":"optional","type":"default","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"user-1@voicecci.net\",\n        \"groupId\": \"grp.odin\",\n        \"resellerId\": null,\n        \"userType\": \"Normal\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"alternateUserID\": \"user-1@voicecci.com\",\n        \"lastName\": \"reverman\",\n        \"firstName\": \"mark\",\n        \"callingLineIdLastName\": \"reverman\",\n        \"callingLineIdFirstName\": \"mark\",\n        \"nameDialingName\": {\n            \"nameDialingLastName\": \"name-dialing-lastname\",\n            \"nameDialingFirstName\": \"name-dialing-firstname\"\n        },\n        \"hiraganaLastName\": \"reverman\",\n        \"hiraganaFirstName\": \"mark\",\n        \"phoneNumber\": \"5139228863\",\n        \"callingLineIdPhoneNumber\": \"+15139228863\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\",\n        \"defaultAlias\": \"user-1@voicecci.net\",\n        \"countryCode\": \"1\",\n        \"alternateUserId\": [\n            {\n                \"alternateUserId\": \"user-1@voicecci.com\",\n                \"description\": \"user-1@voicecci.com\"\n            },\n            {\n                \"alternateUserId\": \"user-1@voicecci.co\",\n                \"description\": \"user-1@voicecci.co\"\n            }\n        ],\n        \"allowVideo\": true,\n        \"extension\": \"\",\n        \"domain\": \"voicecci.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"userId\": \"user-1@voicecci.net\",\n        \"groupId\": \"grp.odin\",\n        \"resellerId\": null,\n        \"userType\": \"Normal\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"alternateUserID\": \"user-1@voicecci.co\",\n        \"lastName\": \"reverman\",\n        \"firstName\": \"mark\",\n        \"callingLineIdLastName\": \"reverman\",\n        \"callingLineIdFirstName\": \"mark\",\n        \"nameDialingName\": {\n            \"nameDialingLastName\": \"name-dialing-lastname\",\n            \"nameDialingFirstName\": \"name-dialing-firstname\"\n        },\n        \"hiraganaLastName\": \"reverman\",\n        \"hiraganaFirstName\": \"mark\",\n        \"phoneNumber\": \"5139228863\",\n        \"callingLineIdPhoneNumber\": \"+15139228863\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\",\n        \"defaultAlias\": \"user-1@voicecci.net\",\n        \"countryCode\": \"1\",\n        \"alternateUserId\": [\n            {\n                \"alternateUserId\": \"user-1@voicecci.com\",\n                \"description\": \"user-1@voicecci.com\"\n            },\n            {\n                \"alternateUserId\": \"user-1@voicecci.co\",\n                \"description\": \"user-1@voicecci.co\"\n            }\n        ],\n        \"allowVideo\": true,\n        \"extension\": \"\",\n        \"domain\": \"voicecci.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"userId\": \"user-2@voicecci.net\",\n        \"groupId\": \"grp.odin\",\n        \"resellerId\": null,\n        \"userType\": \"Normal\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"alternateUserID\": \"odin.lab.slatsa.user\",\n        \"lastName\": \"Latsa\",\n        \"firstName\": \"Scott\",\n        \"callingLineIdLastName\": \"Latsa\",\n        \"callingLineIdFirstName\": \"Scott\",\n        \"hiraganaLastName\": \"Latsa\",\n        \"hiraganaFirstName\": \"Scott\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\",\n        \"defaultAlias\": \"user-2@voicecci.net\",\n        \"countryCode\": \"1\",\n        \"alternateUserId\": [\n            {\n                \"alternateUserId\": \"odin.lab.slatsa.user\",\n                \"description\": \"odin.lab.slatsa.user\"\n            }\n        ],\n        \"allowVideo\": true,\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"voicecci.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    }\n]"}],"_postman_id":"49f9bfa5-0030-4633-98b3-01f29f0db7c4"},{"name":"User Alternate User Id","id":"2710191d-8ca8-4a5f-9f83-646802cd6629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/alternate-user-id?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","alternate-user-id"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"e0198344-b4e0-4d17-97b3-58ba35a99026","name":"User Alternate User Id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/alternate-user-id?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","alternate-user-id"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"4001-1\",\n            \"alternate\": true,\n            \"description\": \"4001-1\"\n        },\n        {\n            \"userId\": \"4001-2\",\n            \"alternate\": true,\n            \"description\": \"4001-2\"\n        },\n        {\n            \"userId\": \"4001-3\",\n            \"alternate\": true\n        },\n        {\n            \"userId\": \"4001-5\",\n            \"alternate\": true\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"2710191d-8ca8-4a5f-9f83-646802cd6629"},{"name":"User Alternate User Id","id":"2395d449-b2ed-4acc-a588-82f5a7b0d713","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"4001-1\",\n            \"description\": \"4001-1\"\n        },\n        {\n            \"userId\": \"4001-2\",\n            \"description\" : \"4001-2\"\n        },\n        {\n            \"userId\": \"4001-3\"\n        },\n        {\n            \"userId\": \"4001-5\"\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/alternate-user-id","description":"<p>Request to modify an alternate user id of a user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","alternate-user-id"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3b7acf8c-d420-45a5-a575-d48c19f83f70","name":"User Alternate User Id","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"4001-1\",\n            \"description\": \"4001-1\"\n        },\n        {\n            \"userId\": \"4001-2\"\n        },\n        {\n            \"userId\": \"4001-3\"\n        },\n        {\n            \"userId\": \"4001-5\"\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/alternate-user-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"4001-1\",\n            \"alternate\": true,\n            \"description\": \"4001-1\"\n        },\n        {\n            \"userId\": \"4001-2\",\n            \"alternate\": true\n        },\n        {\n            \"userId\": \"4001-3\",\n            \"alternate\": true\n        },\n        {\n            \"userId\": \"4001-5\",\n            \"alternate\": true\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"2395d449-b2ed-4acc-a588-82f5a7b0d713"}],"id":"68d61280-43a9-4b8a-b0bc-5fff89a2849d","description":"<h6 id=\"get-the-user-id-and-the-list-of-alternate-user-ids-of-an-user\">Get the user id and the list of alternate user ids of an user.</h6>\n<h6 id=\"modifyadd-an-alternate-user-id-of-a-user\">Modify/Add an alternate user id of a user;</h6>\n<p>Contains a table of the the alternate user ids.<br />ODIN-API only returns the alternate user ids in the table.\nThe main userId is is filtered from the table and returned in the root of the json object as <strong>userId</strong>.</p>\n<p>the column headings are: \n    1. userId\n    2. alternate (possible values 'true' and 'false').\n    3. description (Optional)</p>\n","event":[{"listen":"prerequest","script":{"id":"6dc2c12d-74cf-486d-ace2-7c1388667e6e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ab4788e3-8b52-45ad-b632-8509e4f4d80b","type":"text/javascript","exec":[""]}}],"_postman_id":"68d61280-43a9-4b8a-b0bc-5fff89a2849d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Announcements","item":[{"name":"User Announcements Available","id":"b09351b2-6443-4389-a4fe-006e3f03bd3d","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/users/announcements?userId=9589582000@as3.xdp.broadsoft.com&available=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"},{"key":"available","value":"true"}],"variable":[]}},"response":[{"id":"ca8f8847-3e33-4164-af81-bef2887194f3","name":"User Announcements Available","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/users/announcements?userId=mock.cc.1&available=true","host":["{{url}}"],"path":["api","v2","users","announcements"],"query":[{"key":"userId","value":"mock.cc.1"},{"key":"available","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 23:21:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"220"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"mock.cc.1\",\n    \"announcementType\": null,\n    \"announcements\": [\n        {\n            \"name\": \"letsgo.wav\",\n            \"mediaType\": \"WAV\",\n            \"fileSize\": 88,\n            \"repositoryType\": \"User\"\n        },\n        {\n            \"name\": \"moh.wav\",\n            \"mediaType\": \"WAV\",\n            \"fileSize\": 1253,\n            \"repositoryType\": \"Group\"\n        }\n    ]\n}"}],"_postman_id":"b09351b2-6443-4389-a4fe-006e3f03bd3d"},{"name":"User Announcements","id":"10f76cbc-d66a-4cb4-9268-74589a92be44","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/users/announcements?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"84d150b5-76a8-4ce0-9be2-66e7f884903c","name":"User Announcements","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/users/announcements?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","announcements"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalFileSize\": 1253,\n    \"maxFileSize\": 1000,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"announcementType\": null,\n    \"announcements\": [\n        {\n            \"name\": \"beaky\",\n            \"mediaType\": \"WAV\",\n            \"fileSize\": 1253,\n            \"level\": \"User\"\n        }\n    ]\n}"}],"_postman_id":"10f76cbc-d66a-4cb4-9268-74589a92be44"},{"name":"User Announcement","id":"6725485b-575c-4d32-873d-cfd5b1f2b0ce","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"level\":\"User\",\n\t\"userId\":\"mock.cc.1\",\n\t\"name\":\"letsgo2.wav\",\n\t\"mediaType\":\"WAV\",\n\t\"description\":\"letsgo2.wav\",\n\t\"content\":\"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n}"},"url":"{{url}}/api/v2/users/announcements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4c5b1259-a5d8-425d-aa8d-033168a7c55f","name":"User Announcement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"level\":\"User\",\n\t\"userId\":\"mock.cc.1\",\n\t\"name\":\"letsgo2.wav\",\n\t\"mediaType\":\"WAV\",\n\t\"description\":\"letsgo2.wav\",\n\t\"content\":\"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n}"},"url":"{{url}}/api/v2/users/announcements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 23:24:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6725485b-575c-4d32-873d-cfd5b1f2b0ce"},{"name":"User Announcement Copy","id":"b32dc8d0-8824-4fc8-a2f8-50643e87a07d","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"level\":\"User\",\n\t\"userId\":\"mock.cc.1\",\n\t\"name\":\"letsgo2.wav\",\n\t\"mediaType\":\"WAV\",\n\t\"description\":\"letsgo2.wav\",\n\t\"content\":\"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n}"},"url":"{{url}}/api/v2/users/announcements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"16fafa71-c1b0-4100-ab04-4cfb4d3474db","name":"User Announcement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"level\":\"User\",\n\t\"userId\":\"mock.cc.1\",\n\t\"name\":\"letsgo2.wav\",\n\t\"mediaType\":\"WAV\",\n\t\"description\":\"letsgo2.wav\",\n\t\"content\":\"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n}"},"url":"{{url}}/api/v2/users/announcements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 23:24:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b32dc8d0-8824-4fc8-a2f8-50643e87a07d"},{"name":"User Announcement","id":"33aaf9de-5560-44a0-b051-a2f031b3fa33","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/announcements?mediaType=WAV&name=letsgo.wav&userId=odin.test.user.1@hwcvoice.local","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements"],"host":["{{url}}"],"query":[{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"userId","value":"odin.test.user.1@hwcvoice.local"}],"variable":[]}},"response":[{"id":"5a8ae688-2037-4583-989f-9882fc379be3","name":"User Announcement","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/announcements?mediaType=WAV&name=letsgo.wav&userId=mock.cc.1","host":["{{url}}"],"path":["api","v2","users","announcements"],"query":[{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"userId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 23:24:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"325"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"description\": \"letsgo.wav\",\n    \"lastUploaded\": \"2018-10-09T19:42:05.429-04:00\",\n    \"usage\": [\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"criteriaName\": null,\n            \"instanceName\": null\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"criteriaName\": null,\n            \"instanceName\": \"mock.cc.1\"\n        }\n    ],\n    \"fileSize\": 88,\n    \"userId\": \"mock.cc.1\",\n    \"name\": \"letsgo.wav\",\n    \"mediaType\": \"WAV\"\n}"}],"_postman_id":"33aaf9de-5560-44a0-b051-a2f031b3fa33"},{"name":"User Announcement Download - test file","id":"e9ea1407-391a-46d7-954c-f5a8f94e6860","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/announcements/download?mediaType=WAV&name=bb.mp3&userId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements","download"],"host":["{{url}}"],"query":[{"key":"mediaType","value":"WAV"},{"key":"name","value":"bb.mp3"},{"key":"userId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[],"_postman_id":"e9ea1407-391a-46d7-954c-f5a8f94e6860"},{"name":"User Announcement","id":"0be44e51-5ed9-473e-98bb-29af733a020f","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"description\":\"letsgo2a.wav\",\n\t\"userId\":\"mock.cc.1\",\n\t\"name\":\"letsgo2.wav\",\n\t\"mediaType\":\"WAV\",\n\t\"newName\":\"letsgo2a.wav\"\n}"},"url":"{{url}}/api/v2/users/announcements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e7ee83ba-6c1e-4157-8f25-a93be67aa697","name":"User Announcement","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"description\":\"letsgo2a.wav\",\n\t\"userId\":\"mock.cc.1\",\n\t\"name\":\"letsgo2.wav\",\n\t\"mediaType\":\"WAV\",\n\t\"newName\":\"letsgo2a.wav\"\n}"},"url":"{{url}}/api/v2/users/announcements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 23:25:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0be44e51-5ed9-473e-98bb-29af733a020f"},{"name":"User Announcement","id":"5ca95c2e-91e3-49eb-aa11-e7f37791ac09","request":{"method":"DELETE","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5Mjk5MzIwLCJuYnAiOjE1MzkyOTkzMjAsImV4cCI6MTUzOTM0MjUyMCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa3hGYzJKUE1IQnRjMlo0VEd4Y0wzcDZhbW8wUkVKQlBUMGlMQ0oyWVd4MVpTSTZJako1VVRWSGNHUldOREZFZDBsalYzUnlSbFI0SzI5WWRTczRhMHBIZFRSclptcERaM2RYZFhVelZUaEVSRmQzWkRkdFN6VlRiMFZEZVdGclVIZGFNMFFpTENKdFlXTWlPaUkzTkdRNVpEUmhOVGhpWWpabE5UZzFZVFkyTkROak16RmtZVFZoT0RGaFl6WTBZMlU1WVRBMVlXVTNOVGc1WWpWak9UazVZV1JrWVRJelltTXpNbVprSW4wPSIsInAiOiJleUpwZGlJNklqQm1OMXd2TXpNMmMxQmFUSG8wWWpGTlJGRTBhVVJCUFQwaUxDSjJZV3gxWlNJNklsbERjREpzTVRCS05tNTJiMU15TmtwUlNqTk5SR3hqUTBSUVhDOWpjMU01ZVROMFQwaHdOMjVyWW5CamFITmhjbkkzVFhGalJERXdXbVF5ZFRrelFVTkdVMmt6TjFOVFptSlBRbGhaV21rM1QwTjBNVXRTUVQwOUlpd2liV0ZqSWpvaU5XWXdOREZoTURCaE5EWmtOekV5T1dWa01XUXpPR1kyT0RjNE5HTXdNekEwTldRMlltRXhPRFE0TlRFeU1HSXlPR1ZoT0RKbE5EQmhOVFF5WlRNek5DSjkiLCJlIjoiZXlKcGRpSTZJamxRWEM5elRHWk1ZV2h0ZEVaSmNYcDZRMVZTTVVSblBUMGlMQ0oyWVd4MVpTSTZJa1JwY0daa1NrRkliVGRIZVdORmFtOVljbTgxUTBFOVBTSXNJbTFoWXlJNklqWmpPREZoWmpVME16aGhNemt4TmprelpXWXpaalJtWWpVNVl6UXdNbUl5WTJObU5ESTNZVGRrWlRGbE1tRXpaakF6TVdFeE1ETTBPR1ZpT1dabE5XWWlmUT09In19.l-vzvczVZm-HOVMghpaT-qnrQD4UYAQyYxa0WXGITwk"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:62.0) Gecko/20100101 Firefox/62.0"}],"url":"{{url}}/api/v2/users/announcements?mediaType=WAV&name=letsgo2a.wav&userId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","announcements"],"host":["{{url}}"],"query":[{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo2a.wav"},{"key":"userId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"1c2105a3-7c96-477d-8dbb-8888163f647a","name":"User Announcement","originalRequest":{"method":"DELETE","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5Mjk5MzIwLCJuYnAiOjE1MzkyOTkzMjAsImV4cCI6MTUzOTM0MjUyMCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa3hGYzJKUE1IQnRjMlo0VEd4Y0wzcDZhbW8wUkVKQlBUMGlMQ0oyWVd4MVpTSTZJako1VVRWSGNHUldOREZFZDBsalYzUnlSbFI0SzI5WWRTczRhMHBIZFRSclptcERaM2RYZFhVelZUaEVSRmQzWkRkdFN6VlRiMFZEZVdGclVIZGFNMFFpTENKdFlXTWlPaUkzTkdRNVpEUmhOVGhpWWpabE5UZzFZVFkyTkROak16RmtZVFZoT0RGaFl6WTBZMlU1WVRBMVlXVTNOVGc1WWpWak9UazVZV1JrWVRJelltTXpNbVprSW4wPSIsInAiOiJleUpwZGlJNklqQm1OMXd2TXpNMmMxQmFUSG8wWWpGTlJGRTBhVVJCUFQwaUxDSjJZV3gxWlNJNklsbERjREpzTVRCS05tNTJiMU15TmtwUlNqTk5SR3hqUTBSUVhDOWpjMU01ZVROMFQwaHdOMjVyWW5CamFITmhjbkkzVFhGalJERXdXbVF5ZFRrelFVTkdVMmt6TjFOVFptSlBRbGhaV21rM1QwTjBNVXRTUVQwOUlpd2liV0ZqSWpvaU5XWXdOREZoTURCaE5EWmtOekV5T1dWa01XUXpPR1kyT0RjNE5HTXdNekEwTldRMlltRXhPRFE0TlRFeU1HSXlPR1ZoT0RKbE5EQmhOVFF5WlRNek5DSjkiLCJlIjoiZXlKcGRpSTZJamxRWEM5elRHWk1ZV2h0ZEVaSmNYcDZRMVZTTVVSblBUMGlMQ0oyWVd4MVpTSTZJa1JwY0daa1NrRkliVGRIZVdORmFtOVljbTgxUTBFOVBTSXNJbTFoWXlJNklqWmpPREZoWmpVME16aGhNemt4TmprelpXWXpaalJtWWpVNVl6UXdNbUl5WTJObU5ESTNZVGRrWlRGbE1tRXpaakF6TVdFeE1ETTBPR1ZpT1dabE5XWWlmUT09In19.l-vzvczVZm-HOVMghpaT-qnrQD4UYAQyYxa0WXGITwk"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:62.0) Gecko/20100101 Firefox/62.0"}],"url":{"raw":"{{url}}/api/v2/users/announcements?mediaType=WAV&name=letsgo2a.wav&userId=mock.cc.1","host":["{{url}}"],"path":["api","v2","users","announcements"],"query":[{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo2a.wav"},{"key":"userId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 23:25:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5ca95c2e-91e3-49eb-aa11-e7f37791ac09"},{"name":"Group Announcements","id":"b1c23983-ac10-40a0-a7a8-59faf7e3b293","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","announcements"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"670885a1-3b28-495c-84b1-88a58d0fe4d3","name":"Group Announcements","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","announcements"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 20:46:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"200"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalFileSize\": 1253,\n    \"maxFileSize\": 1000,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"announcementType\": null,\n    \"announcements\": [\n        {\n            \"name\": \"moh.wav\",\n            \"mediaType\": \"WAV\",\n            \"fileSize\": 1253\n        }\n    ]\n}"}],"_postman_id":"b1c23983-ac10-40a0-a7a8-59faf7e3b293"},{"name":"Group Announcements Available","id":"7032cfb1-5af6-41f1-85d6-56a6193ce109","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&available=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","announcements"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"available","value":"true"}],"variable":[]}},"response":[{"id":"426239f5-a9b3-46fe-876c-5fb7557e1101","name":"Group Announcements Available","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&available=true","host":["{{url}}"],"path":["api","v2","groups","announcements"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"available","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 20:47:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"200"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalFileSize\": 1253,\n    \"maxFileSize\": 1000,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"announcementType\": null,\n    \"announcements\": [\n        {\n            \"name\": \"moh.wav\",\n            \"mediaType\": \"WAV\",\n            \"fileSize\": 1253\n        }\n    ]\n}"}],"_postman_id":"7032cfb1-5af6-41f1-85d6-56a6193ce109"},{"name":"Group Announcement","id":"3df7b6d5-3cf8-4143-8d7e-bed575578ca4","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"letsgo.wav\",\n    \"content\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\",\n    \"mediaType\": \"WAV\",\n    \"description\": \"letsgo.wav\"\n}"},"url":"{{url}}/api/v2/groups/announcements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","announcements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"679af12e-c33b-4863-aa6b-0f99923ebfe0","name":"Group Announcement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"letsgo.wav\",\n    \"content\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\",\n    \"mediaType\": \"WAV\",\n    \"description\": \"letsgo.wav\"\n}"},"url":"{{url}}/api/v2/groups/announcements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 20:49:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3df7b6d5-3cf8-4143-8d7e-bed575578ca4"},{"name":"Group Announcement","id":"d7a790a2-cf4d-4a25-9b52-8f25e6a1f103","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&mediaType=WAV&name=letsgo.wav&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","announcements"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"21ad876e-1987-406b-b2e2-547dd26d6e04","name":"Group Announcement","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&mediaType=WAV&name=letsgo.wav&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","announcements"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 20:48:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"202"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"description\": \"letsgo.wav\",\n    \"lastUploaded\": \"2018-10-22T16:48:03.191-04:00\",\n    \"usage\": [],\n    \"fileSize\": 88,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"letsgo.wav\",\n    \"mediaType\": \"WAV\"\n}"}],"_postman_id":"d7a790a2-cf4d-4a25-9b52-8f25e6a1f103"},{"name":"Group Announcement Download","id":"83c45e70-eba5-40d4-83c5-44d7e771f531","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/announcements/download?mediaType=WAV&name=letsgo.wav&serviceProviderId=resitest&groupId=odin.test","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","announcements","download"],"host":["{{url}}"],"query":[{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"serviceProviderId","value":"resitest"},{"key":"groupId","value":"odin.test"}],"variable":[]}},"response":[{"id":"9082b7c0-d725-48ea-843d-e8dffd4d0550","name":"Group Announcement Download","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/announcements/download?mediaType=WAV&name=letsgo.wav&serviceProviderId=resitest&groupId=odin.test","host":["{{url}}"],"path":["api","v2","groups","announcements","download"],"query":[{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"serviceProviderId","value":"resitest"},{"key":"groupId","value":"odin.test"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"0"},{"key":"Content-Type","value":"text/html; charset=UTF-8"},{"key":"Date","value":"Fri, 08 Aug 2025 21:24:35 GMT"},{"key":"Server","value":"Caddy"},{"key":"Vary","value":"Authorization"},{"key":"X-Broadsoft-Correlation-Id","value":"b6c60ab4-57ce-45a6-b934-1aab83a742f1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"83c45e70-eba5-40d4-83c5-44d7e771f531"},{"name":"Group Announcement","id":"9126934e-3551-4703-ac57-709cba1694aa","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"letsgo.wav\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"letsgo.wav\",\n    \"mediaType\": \"WAV\",\n    \"newName\": \"letsgo.wav\"\n}"},"url":"{{url}}/api/v2/groups/announcements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","announcements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6a141f91-2f3d-48a6-a09d-3cf8b941e107","name":"Group Announcement","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"letsgo.wav\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"letsgo.wav\",\n    \"mediaType\": \"WAV\",\n    \"newName\": \"letsgo.wav\"\n}"},"url":"{{url}}/api/v2/groups/announcements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 20:49:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9126934e-3551-4703-ac57-709cba1694aa"},{"name":"Group Announcement","id":"a269a273-707f-4e0a-b72c-338cb82a248c","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&mediaType=WAV&name=letsgo.wav&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","announcements"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"089990f7-7890-497c-b622-1bf6f8d8dc0c","name":"Group Announcement","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/announcements?groupId=odin.mock.grp1&mediaType=WAV&name=letsgo.wav&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","announcements"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"mediaType","value":"WAV"},{"key":"name","value":"letsgo.wav"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 20:49:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a269a273-707f-4e0a-b72c-338cb82a248c"}],"id":"abf32262-ae74-4a33-b2cb-bf3845a1b9a9","_postman_id":"abf32262-ae74-4a33-b2cb-bf3845a1b9a9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Anonymous Call Rejection","item":[{"name":"System Anonymous Call Rejection","id":"3e003ad1-6829-49ea-b109-060eb39fdfd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/anonymous-call-rejection","description":"<ul>\n<li><strong><em>paiRequired</em></strong> (r) : <em>boolean</em>  <ul>\n<li>ex: true or false</li>\n</ul>\n</li>\n<li><strong><em>screenOnlyLocalCalls</em></strong> (r) : <em>boolean</em>  <ul>\n<li>ex: true or false</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","anonymous-call-rejection"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"853ef8bd-39ed-468b-9f1c-4a6c7fa42f00","name":"System Anonymous Call Rejection","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/system/anonymous-call-rejection","host":["{{url}}"],"path":["api","v2","system","anonymous-call-rejection"],"query":[{"key":"userId","value":"test-mock%2Faa1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"paiRequired\": false,\n    \"screenOnlyLocalCalls\": false\n}"}],"_postman_id":"3e003ad1-6829-49ea-b109-060eb39fdfd7"},{"name":"System Anonymous Call Rejection","id":"267b3238-b58a-48bf-bed8-b2012ce7c580","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"paiRequired\": false,\n    \"screenOnlyLocalCalls\": false\n}"},"url":"{{url}}/api/v2/system/anonymous-call-rejection","description":"<ul>\n<li><strong><em>paiRequired</em></strong> (r) : <em>boolean</em>  <ul>\n<li>e.g.: true or false</li>\n</ul>\n</li>\n<li><strong><em>screenOnlyLocalCalls</em></strong> (r) : <em>boolean</em>  <ul>\n<li>e.g.: true or false</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","anonymous-call-rejection"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"test-mock%2Faa1"}],"variable":[]}},"response":[{"id":"8dcada15-9f48-4a81-8c2f-b529cf86d0a4","name":"System Anonymous Call Rejection","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"paiRequired\": false,\n    \"screenOnlyLocalCalls\": false\n}"},"url":{"raw":"{{url}}/api/v2/system/anonymous-call-rejection","host":["{{url}}"],"path":["api","v2","system","anonymous-call-rejection"],"query":[{"key":"userId","value":"test-mock%2Faa1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"paiRequired\": false,\n    \"screenOnlyLocalCalls\": false\n}"}],"_postman_id":"267b3238-b58a-48bf-bed8-b2012ce7c580"},{"name":"User Anonymous Call Rejection","id":"ab8356a9-c190-46b2-8986-1cc008c99ab2","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/anonymous-call-rejection?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","anonymous-call-rejection"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"6e47cedb-286e-4647-b1fb-cafb966edf75","name":"User Anonymous Call Rejection","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/anonymous-call-rejection?userId=test-mock%2Faa1","host":["{{url}}"],"path":["api","v2","users","anonymous-call-rejection"],"query":[{"key":"userId","value":"test-mock%2Faa1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"43","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:10:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"userId\":\"test-mock\\/aa1\"}"}],"_postman_id":"ab8356a9-c190-46b2-8986-1cc008c99ab2"},{"name":"User Anonymous Call Rejection","id":"0e13e350-d622-4f7b-aa54-c73be3bd3c75","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":false,\n\t\"userId\":\"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/anonymous-call-rejection","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","anonymous-call-rejection"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c26d7dbc-62ce-46c0-a3e7-9379df2361bb","name":"User Anonymous Call Rejection","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":false,\n\t\"userId\":\"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/anonymous-call-rejection"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5464\n}"}],"_postman_id":"0e13e350-d622-4f7b-aa54-c73be3bd3c75"},{"name":"Bulk Anonymous Call Rejection","id":"25ddc500-22ff-48c6-8681-955a38844348","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/anonymous-call-rejection/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","anonymous-call-rejection","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"3da1a3ed-146a-4acc-8962-b908d7a940c1","name":"Bulk Anonymous Call Rejection","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/anonymous-call-rejection/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","anonymous-call-rejection","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2281","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:22:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Anonymous Call Rejection\"},\"profile\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Anonymous Call Rejection\"},\"profile\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Anonymous Call Rejection\"},\"profile\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":\"\"},{\"service\":{\"assigned\":false,\"serviceName\":\"Anonymous Call Rejection\"},\"profile\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":\"\"},{\"service\":{\"assigned\":false,\"serviceName\":\"Anonymous Call Rejection\"},\"profile\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":\"\"}]"}],"_postman_id":"25ddc500-22ff-48c6-8681-955a38844348"}],"id":"557a84dc-bf4f-4116-b9b6-82d1a2db18ab","_postman_id":"557a84dc-bf4f-4116-b9b6-82d1a2db18ab","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Attendant Console","item":[{"name":"System Attendant Console","id":"7a35bde6-7a0e-4378-94b4-2f27a133d17f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/attendant-console","description":"<ul>\n<li><strong><em>maxMonitoredUsers</em></strong> (r) : <em>int</em>  <ul>\n<li>ex: 1 to 1000</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","attendant-console"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"750a17a3-7414-40a7-b215-8810a2e9e83d","name":"System Attendant Console","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/attendant-console"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"maxMonitoredUsers\": 100\n}"}],"_postman_id":"7a35bde6-7a0e-4378-94b4-2f27a133d17f"},{"name":"System Attendant Console","id":"fbd07a65-2f25-42fa-a54b-fe444f2e6fee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"maxMonitoredUsers\": 100\n}"},"url":"{{url}}/api/v2/system/attendant-console","description":"<ul>\n<li><strong><em>maxMonitoredUsers</em></strong> (r) : <em>int</em>  <ul>\n<li>ex: 1 to 1000</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","attendant-console"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f1bcc2f2-c4e4-494c-966b-589d810c1f45","name":"System Attendant Console","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"maxMonitoredUsers\": 100\n}"},"url":"{{url}}/api/v2/system/attendant-console"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Feb 2019 12:49:53 GMT"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"maxMonitoredUsers\": 100\n}"}],"_postman_id":"fbd07a65-2f25-42fa-a54b-fe444f2e6fee"},{"name":"User Attendant Console","id":"02a3b760-be62-4948-8a5c-b473ddd54b72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/attendant-console?userId=4001-copy@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","attendant-console"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001-copy@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"c104394e-f89e-473f-93c1-005a9fc9202f","name":"User Attendant Console","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/attendant-console?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","attendant-console"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"launchOnLogin\": false,\n    \"allowUserConfigCallDetails\": true,\n    \"allowUserViewCallDetails\": true,\n    \"users\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"displayColumns\": [\n        \"Status\",\n        \"Name\",\n        \"Phone Number\",\n        \"Extension\",\n        \"Action\",\n        \"Department\",\n        \"Email\",\n        \"Mobile\",\n        \"Pager\",\n        \"Title\"\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"02a3b760-be62-4948-8a5c-b473ddd54b72"},{"name":"User Attendant Console Available Users","id":"e0250d38-434a-460c-812e-1c884fb9ed99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/attendant-console/users?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","attendant-console","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"67a77933-80a6-459e-a61e-35a0339804aa","name":"User Attendant Console Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/attendant-console/users?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","attendant-console","users"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ]\n}"}],"_postman_id":"e0250d38-434a-460c-812e-1c884fb9ed99"},{"name":"User Attendant Console","id":"7b117d3c-017a-472c-8470-c23457f729a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"launchOnLogin\": true,\n    \"allowUserConfigCallDetails\": true,\n    \"allowUserViewCallDetails\": true,\n    \"users\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"displayColumns\": [\n        \"Status\",\n        \"Name\",\n        \"Phone Number\",\n        \"Extension\",\n        \"Action\",\n        \"Department\",\n        \"Email\",\n        \"Mobile\",\n        \"Pager\",\n        \"Title\"\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/attendant-console","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","attendant-console"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ba0847fa-63ee-4025-969b-0eeab930a5e8","name":"User Attendant Console","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"launchOnLogin\": true,\n    \"allowUserConfigCallDetails\": true,\n    \"allowUserViewCallDetails\": true,\n    \"users\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"displayColumns\": [\n        \"Status\",\n        \"Name\",\n        \"Phone Number\",\n        \"Extension\",\n        \"Action\",\n        \"Department\",\n        \"Email\",\n        \"Mobile\",\n        \"Pager\",\n        \"Title\"\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/attendant-console"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"launchOnLogin\": true,\n    \"allowUserConfigCallDetails\": true,\n    \"allowUserViewCallDetails\": true,\n    \"users\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"displayColumns\": [\n        \"Status\",\n        \"Name\",\n        \"Phone Number\",\n        \"Extension\",\n        \"Action\",\n        \"Department\",\n        \"Email\",\n        \"Mobile\",\n        \"Pager\",\n        \"Title\"\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"7b117d3c-017a-472c-8470-c23457f729a8"}],"id":"818bfcd3-2542-48ad-81fd-b4c8a63757e5","_postman_id":"818bfcd3-2542-48ad-81fd-b4c8a63757e5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Authentication","item":[{"name":"User Authentication Service","id":"7ee56d0e-80c3-4f3b-814c-7fd04e2deb14","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/authentication?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","authentication"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"e7a2fef2-952f-45b9-b5d9-96dece2bda81","name":"User Authentication Service","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/authentication?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","authentication"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"146","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 21:29:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"userName\":9709580001,\"userId\":\"9709580001@microv-works.com\",\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"isEnterprise\":true}"}],"_postman_id":"7ee56d0e-80c3-4f3b-814c-7fd04e2deb14"},{"name":"User Authentication Service","id":"8cc9c19f-dd37-4463-b687-661c091250e2","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userName\":9709580001,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"newPassword\":\"js2pM@\"\n}"},"url":"{{url}}/api/v2/users/authentication","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","authentication"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3b2540b4-f30f-432b-b497-8328a0cb9a43","name":"User Authentication Service","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userName\":9709580001,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"newPassword\":\"js2pM@\"\n}"},"url":"{{url}}/api/v2/users/authentication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 21:30:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8cc9c19f-dd37-4463-b687-661c091250e2"},{"name":"User Authentication Service User","id":"3c578d66-2a66-4037-bb2e-75a5106d95f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userName\":\"mark.reverman2@odinapi.net\",\n\t\"userId\":\"mark.reverman2@odinapi.net\",\n\t\"password\": {\n\t\t\"new\":\"!!!js2pM@#$\",\n\t\t\"old\": \"js2pM@#$\"\n\t}\n}"},"url":"{{url}}/api/v2/users/authentication","description":"<p>User making the change to authentication password only</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","authentication"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b77eb5b2-abdd-44c3-b7c5-2719b9dc087c","name":"User Authentication Service","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userName\":9709580001,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"newPassword\":\"js2pM@\"\n}"},"url":"{{url}}/api/v2/users/authentication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 21:30:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3c578d66-2a66-4037-bb2e-75a5106d95f4"}],"id":"ec0d93af-ffb2-4f91-ae23-112fad702965","_postman_id":"ec0d93af-ffb2-4f91-ae23-112fad702965","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Auto Attendants","item":[{"name":"Auto Attendants","id":"b6ab4924-5035-414d-bc12-282595155b18","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"enableVideo\": false,\n\t\"extensionDialingScope\": \"Group\",\n\t\"nameDialingScope\": \"Group\",\n\t\"nameDialingEntries\": \"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\": 1,\n\t\"serviceInstanceProfile\": {\n\t\t\"extension\": \"0006\",\n\t\t\"password\": \".c3Ksf\",\n\t\t\"name\": \"templateAA\",\n\t\t\"callingLineIdLastName\": \"templateAA\",\n\t\t\"callingLineIdFirstName\": \"templateAA\",\n\t\t\"phoneNumber\": \"9709580006\",\n\t\t\"department\": {\n\t\t\t\"isEnterpriseDepartment\": false,\n\t\t\t\"fullPathName\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\t\"callingLineIdName\": null,\n\t\t\t\"callingLineIdPhoneNumber\": null,\n\t\t\t\"name\": \"Odin Mock Dept\",\n\t\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\t\"groupId\": \"odin.mock.grp1\"\n\t\t},\n\t\t\"language\": \"English\",\n\t\t\"timeZone\": \"America/New_York\"\n\t},\n\t\"type\": \"Basic\",\n\t\"serviceUserId\": \"templateAA@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/auto-attendants?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"b776774d-72a1-469d-b62d-d242d487e51f","name":"Auto Attendants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"enableVideo\": false,\n\t\"extensionDialingScope\": \"Group\",\n\t\"nameDialingScope\": \"Group\",\n\t\"nameDialingEntries\": \"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\": 1,\n\t\"serviceInstanceProfile\": {\n\t\t\"extension\": \"0006\",\n\t\t\"password\": \".c3Ksf\",\n\t\t\"name\": \"templateAA\",\n\t\t\"callingLineIdLastName\": \"templateAA\",\n\t\t\"callingLineIdFirstName\": \"templateAA\",\n\t\t\"phoneNumber\": \"9709580006\",\n\t\t\"department\": {\n\t\t\t\"isEnterpriseDepartment\": false,\n\t\t\t\"fullPathName\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\t\"callingLineIdName\": null,\n\t\t\t\"callingLineIdPhoneNumber\": null,\n\t\t\t\"name\": \"Odin Mock Dept\",\n\t\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\t\"groupId\": \"odin.mock.grp1\"\n\t\t},\n\t\t\"language\": \"English\",\n\t\t\"timeZone\": \"America/New_York\"\n\t},\n\t\"type\": \"Basic\",\n\t\"serviceUserId\": \"templateAA@microv-works.com\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/auto-attendants?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","auto-attendants"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"652","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 28 Sep 2018 23:55:24 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"serviceUserId\":\"templateAA\",\"name\":\"templateAA\",\"video\":false,\"phoneNumber\":9709580006,\"extension\":\"0006\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"isActive\":true,\"type\":\"Basic\"},{\"serviceUserId\":\"mock-aa-test-1\",\"name\":\"mock-aa-test-1\",\"video\":false,\"phoneNumber\":null,\"extension\":null,\"department\":null,\"isActive\":true,\"type\":\"Basic\"},{\"serviceUserId\":\"test-mock\\/aa1\",\"name\":\"Mock AA1\",\"video\":false,\"phoneNumber\":null,\"extension\":null,\"department\":null,\"isActive\":true,\"type\":\"Standard\"},{\"serviceUserId\":\"mock-aa-2\",\"name\":\"mock-aa-2\",\"video\":false,\"phoneNumber\":null,\"extension\":null,\"department\":null,\"isActive\":true,\"type\":\"Standard\"}]"}],"_postman_id":"b6ab4924-5035-414d-bc12-282595155b18"},{"name":"Auto Attendants","id":"33724bdb-0a81-4842-86fe-316b6f619376","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"instances\": [\n\t\t{ \"serviceUserId\": \"mock-aa-test-1\", \"isActive\": true }\n\t]\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"210d37fb-3e71-4e7c-8fc7-e736c5de5947","name":"Auto Attendants","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"instances\": [\n\t\t{ \"serviceUserId\": \"mock-aa-test-1\", \"isActive\": true }\n\t]\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 26 Sep 2018 18:58:07 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"33724bdb-0a81-4842-86fe-316b6f619376"},{"name":"Auto Attendant","id":"f6a05670-d323-42a4-a3cc-02d28fb7bf00","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"enableVideo\":false,\n\t\"extensionDialingScope\":\"Group\",\n\t\"nameDialingScope\":\"Group\",\n\t\"nameDialingEntries\":\"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\":1,\n\t\"type\":\"Basic\",\n\t\"serviceUserId\":\"mock-aa-test-1@microv-works.com\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"mock-aa-test-1\",\n\t\t\"callingLineIdLastName\":\"mock-aa-test-1\",\n\t\t\"callingLineIdFirstName\":\"mock-aa-test-1\"\n\t}\n}"},"url":"{{url}}/api/v2/groups/auto-attendants","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dc7acfbb-ff2a-4faf-9ccd-610561b2e81a","name":"Auto Attendant","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"enableVideo\":false,\n\t\"extensionDialingScope\":\"Group\",\n\t\"nameDialingScope\":\"Group\",\n\t\"nameDialingEntries\":\"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\":1,\n\t\"type\":\"Basic\",\n\t\"serviceUserId\":\"mock-aa-test-1@microv-works.com\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"mock-aa-test-1\",\n\t\t\"callingLineIdLastName\":\"mock-aa-test-1\",\n\t\t\"callingLineIdFirstName\":\"mock-aa-test-1\"\n\t}\n}"},"url":"{{url}}/api/v2/groups/auto-attendants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 26 Sep 2018 18:50:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"f6a05670-d323-42a4-a3cc-02d28fb7bf00"},{"name":"Auto Attendant","id":"8fcb0fcd-b4c5-4ac3-ad29-1a27e87aefda","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"enableVideo\": false,\n\t\"extensionDialingScope\": \"Group\",\n\t\"nameDialingScope\": \"Group\",\n\t\"nameDialingEntries\": \"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\": 1,\n\t\"serviceInstanceProfile\": {\n\t\t\"extension\": \"0006\",\n\t\t\"password\": \".c3Ksf\",\n\t\t\"name\": \"templateAA\",\n\t\t\"callingLineIdLastName\": \"templateAA\",\n\t\t\"callingLineIdFirstName\": \"templateAA\",\n\t\t\"phoneNumber\": \"9709580006\",\n\t\t\"department\": {\n\t\t\t\"isEnterpriseDepartment\": false,\n\t\t\t\"fullPathName\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\t\"callingLineIdName\": null,\n\t\t\t\"callingLineIdPhoneNumber\": null,\n\t\t\t\"name\": \"Odin Mock Dept\",\n\t\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\t\"groupId\": \"odin.mock.grp1\"\n\t\t},\n\t\t\"language\": \"English\",\n\t\t\"timeZone\": \"America/New_York\"\n\t},\n\t\"type\": \"Basic\",\n\t\"serviceUserId\": \"templateAA@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/auto-attendants?serviceUserId=mock-aa-test-1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock-aa-test-1"}],"variable":[]}},"response":[{"id":"0f9beba6-4809-46c9-ae20-b8a2c139e64b","name":"Auto Attendant","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"enableVideo\": false,\n\t\"extensionDialingScope\": \"Group\",\n\t\"nameDialingScope\": \"Group\",\n\t\"nameDialingEntries\": \"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\": 1,\n\t\"serviceInstanceProfile\": {\n\t\t\"extension\": \"0006\",\n\t\t\"password\": \".c3Ksf\",\n\t\t\"name\": \"templateAA\",\n\t\t\"callingLineIdLastName\": \"templateAA\",\n\t\t\"callingLineIdFirstName\": \"templateAA\",\n\t\t\"phoneNumber\": \"9709580006\",\n\t\t\"department\": {\n\t\t\t\"isEnterpriseDepartment\": false,\n\t\t\t\"fullPathName\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\t\"callingLineIdName\": null,\n\t\t\t\"callingLineIdPhoneNumber\": null,\n\t\t\t\"name\": \"Odin Mock Dept\",\n\t\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\t\"groupId\": \"odin.mock.grp1\"\n\t\t},\n\t\t\"language\": \"English\",\n\t\t\"timeZone\": \"America/New_York\"\n\t},\n\t\"type\": \"Basic\",\n\t\"serviceUserId\": \"templateAA@microv-works.com\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/auto-attendants?serviceUserId=mock-aa-test-1","host":["{{url}}"],"path":["api","v2","groups","auto-attendants"],"query":[{"key":"serviceUserId","value":"mock-aa-test-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1370","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 20 Sep 2018 23:11:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceInstanceProfile\":{\"name\":\"mock-aa-test-1\",\"callingLineIdLastName\":\"mock-aa-test-1\",\"callingLineIdFirstName\":\"mock-aa-test-1\",\"hiraganaLastName\":\"mock-aa-test-1\",\"hiraganaFirstName\":\"Auto Attendant\",\"language\":\"English\",\"timeZone\":\"America\\/Denver\",\"timeZoneDisplayName\":\"(GMT-06:00) (US) Mountain Time\",\"aliases\":[]},\"type\":\"Basic\",\"enableVideo\":false,\"extensionDialingScope\":\"Group\",\"nameDialingScope\":\"Group\",\"nameDialingEntries\":\"LastName + FirstName\",\"businessHoursMenu\":{\"announcementSelection\":\"Default\",\"enableFirstMenuLevelExtensionDialing\":false,\"keys\":[{\"key\":\"0\",\"action\":\"Transfer To Operator\",\"description\":null,\"phoneNumber\":null,\"submenuId\":null},{\"key\":\"1\",\"action\":\"Extension Dialing\",\"description\":null,\"phoneNumber\":null,\"submenuId\":null},{\"key\":\"2\",\"action\":\"Name Dialing\",\"description\":null,\"phoneNumber\":null,\"submenuId\":null}]},\"afterHoursMenu\":{\"announcementSelection\":\"Default\",\"enableFirstMenuLevelExtensionDialing\":false,\"keys\":[{\"key\":\"0\",\"action\":\"Transfer To Operator\",\"description\":null,\"phoneNumber\":null,\"submenuId\":null},{\"key\":\"1\",\"action\":\"Extension Dialing\",\"description\":null,\"phoneNumber\":null,\"submenuId\":null},{\"key\":\"2\",\"action\":\"Name Dialing\",\"description\":null,\"phoneNumber\":null,\"submenuId\":null}]},\"serviceUserId\":\"mock-aa-test-1\",\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"isEnterprise\":true}"}],"_postman_id":"8fcb0fcd-b4c5-4ac3-ad29-1a27e87aefda"},{"name":"Auto Attendant User","id":"7befb05d-b3b1-4955-b320-5fa51944476d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/auto-attendants/user?userId=user-1@voicecci.net&serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","user"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[],"_postman_id":"7befb05d-b3b1-4955-b320-5fa51944476d"},{"name":"Auto Attendant Remove User","id":"60c291e1-a7a2-4871-8dd3-26b7624de194","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"groupId\":\"grp.odin\",\n\t\"userId\": \"user-1@voicecci.net\"\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/removeUser","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","removeUser"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"60c291e1-a7a2-4871-8dd3-26b7624de194"},{"name":"Auto Attendant","id":"8e644296-a72c-4af0-8f8d-2d20768fd598","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"mock-aa-test-1\",\n        \"callingLineIdLastName\": \"mock-aa-test-1\",\n        \"callingLineIdFirstName\": \"mock-aa-test-1\",\n        \"hiraganaLastName\": \"mock-aa-test-1\",\n        \"hiraganaFirstName\": \"Auto Attendant\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"aliases\": []\n    },\n    \"type\": \"Basic\",\n    \"enableVideo\": false,\n    \"extensionDialingScope\": \"Group\",\n    \"nameDialingScope\": \"Group\",\n    \"nameDialingEntries\": \"LastName + FirstName\",\n    \"businessHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"afterHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"serviceUserId\": \"mock-aa-test-1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"},"url":"{{url}}/api/v2/groups/auto-attendants","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3b5f00a5-174f-449d-9830-52e274111437","name":"Auto Attendant","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"mock-aa-test-1\",\n        \"callingLineIdLastName\": \"mock-aa-test-1\",\n        \"callingLineIdFirstName\": \"mock-aa-test-1\",\n        \"hiraganaLastName\": \"mock-aa-test-1\",\n        \"hiraganaFirstName\": \"Auto Attendant\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"aliases\": []\n    },\n    \"type\": \"Basic\",\n    \"enableVideo\": false,\n    \"extensionDialingScope\": \"Group\",\n    \"nameDialingScope\": \"Group\",\n    \"nameDialingEntries\": \"LastName + FirstName\",\n    \"businessHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"afterHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"serviceUserId\": \"mock-aa-test-1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"},"url":"{{url}}/api/v2/groups/auto-attendants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 26 Sep 2018 18:50:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8e644296-a72c-4af0-8f8d-2d20768fd598"},{"name":"Auto Attendant Combined - TEST","id":"10e2f3e2-d6af-474e-9022-e89ff488aa23","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"aa-ken@abccorp.com\",\n    \"newServiceUserId\": \"aa-ken-2@abccorp.com\",\n    \"resellerId\": null,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isEnterprise\": true,\n    \"serviceInstanceProfile\": {\n        \"name\": \"aa-ken\",\n        \"callingLineIdLastName\": \"aa-ken\",\n        \"callingLineIdFirstName\": \"aa-ken\",\n        \"hiraganaLastName\": \"aa-ken\",\n        \"hiraganaFirstName\": \"Auto Attendant\",\n        \"phoneNumber\": \"4345679905\",\n        \"extension\": \"9905\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-07:00) (US) Mountain Time\",\n        \"aliases\": []\n    },\n    \"type\": \"Basic\",\n    \"firstDigitTimeoutSeconds\": 1,\n    \"enableVideo\": false,\n    \"extensionDialingScope\": \"Group\",\n    \"nameDialingScope\": \"Group\",\n    \"nameDialingEntries\": \"LastName + FirstName\",\n    \"businessHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"afterHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    }\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/combined","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","combined"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d1ead118-3d27-4a6b-b7b0-2e1f1b89c388","name":"Auto Attendant","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"mock-aa-test-1\",\n        \"callingLineIdLastName\": \"mock-aa-test-1\",\n        \"callingLineIdFirstName\": \"mock-aa-test-1\",\n        \"hiraganaLastName\": \"mock-aa-test-1\",\n        \"hiraganaFirstName\": \"Auto Attendant\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"aliases\": []\n    },\n    \"type\": \"Basic\",\n    \"enableVideo\": false,\n    \"extensionDialingScope\": \"Group\",\n    \"nameDialingScope\": \"Group\",\n    \"nameDialingEntries\": \"LastName + FirstName\",\n    \"businessHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"afterHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"serviceUserId\": \"mock-aa-test-1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"},"url":"{{url}}/api/v2/groups/auto-attendants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 26 Sep 2018 18:50:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"10e2f3e2-d6af-474e-9022-e89ff488aa23"},{"name":"Auto Attendant","id":"a04a9003-f647-451e-8f60-0e8ec0a31f3e","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"enableVideo\": false,\n\t\"extensionDialingScope\": \"Group\",\n\t\"nameDialingScope\": \"Group\",\n\t\"nameDialingEntries\": \"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\": 1,\n\t\"serviceInstanceProfile\": {\n\t\t\"extension\": \"0006\",\n\t\t\"password\": \".c3Ksf\",\n\t\t\"name\": \"templateAA\",\n\t\t\"callingLineIdLastName\": \"templateAA\",\n\t\t\"callingLineIdFirstName\": \"templateAA\",\n\t\t\"phoneNumber\": \"9709580006\",\n\t\t\"department\": {\n\t\t\t\"isEnterpriseDepartment\": false,\n\t\t\t\"fullPathName\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\t\"callingLineIdName\": null,\n\t\t\t\"callingLineIdPhoneNumber\": null,\n\t\t\t\"name\": \"Odin Mock Dept\",\n\t\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\t\"groupId\": \"odin.mock.grp1\"\n\t\t},\n\t\t\"language\": \"English\",\n\t\t\"timeZone\": \"America/New_York\"\n\t},\n\t\"type\": \"Basic\",\n\t\"serviceUserId\": \"templateAA@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/auto-attendants?serviceUserId=mock-aa-test-1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock-aa-test-1"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"1f596485-6c1a-4f11-9f9a-7adfc2df6d42","name":"Auto Attendant","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"enableVideo\": false,\n\t\"extensionDialingScope\": \"Group\",\n\t\"nameDialingScope\": \"Group\",\n\t\"nameDialingEntries\": \"LastName + FirstName\",\n\t\"firstDigitTimeoutSeconds\": 1,\n\t\"serviceInstanceProfile\": {\n\t\t\"extension\": \"0006\",\n\t\t\"password\": \".c3Ksf\",\n\t\t\"name\": \"templateAA\",\n\t\t\"callingLineIdLastName\": \"templateAA\",\n\t\t\"callingLineIdFirstName\": \"templateAA\",\n\t\t\"phoneNumber\": \"9709580006\",\n\t\t\"department\": {\n\t\t\t\"isEnterpriseDepartment\": false,\n\t\t\t\"fullPathName\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\t\"callingLineIdName\": null,\n\t\t\t\"callingLineIdPhoneNumber\": null,\n\t\t\t\"name\": \"Odin Mock Dept\",\n\t\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\t\"groupId\": \"odin.mock.grp1\"\n\t\t},\n\t\t\"language\": \"English\",\n\t\t\"timeZone\": \"America/New_York\"\n\t},\n\t\"type\": \"Basic\",\n\t\"serviceUserId\": \"templateAA@microv-works.com\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/auto-attendants?serviceUserId=mock-aa-test-1&=","host":["{{url}}"],"path":["api","v2","groups","auto-attendants"],"query":[{"key":"serviceUserId","value":"mock-aa-test-1"},{"key":"","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 20 Sep 2018 23:10:24 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a04a9003-f647-451e-8f60-0e8ec0a31f3e"},{"name":"Auto Attendant Submenus","id":"70e202fd-85ea-481b-b9da-3130d29f032c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/auto-attendants/submenus?serviceUserId=test-mock%2Faa1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","submenus"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"test-mock%2Faa1"}],"variable":[]}},"response":[{"id":"fcb2ddaf-9623-4b9c-b06b-536d22e678b6","name":"Auto Attendant Submenus","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/auto-attendants/submenus?serviceUserId=test-mock%2Faa1","host":["{{url}}"],"path":["api","v2","groups","auto-attendants","submenus"],"query":[{"key":"serviceUserId","value":"test-mock%2Faa1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"77","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 20 Sep 2018 23:57:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"submenuId\":\"Submenu 12a\",\"isUsed\":false,\"serviceUserId\":\"test-mock\\/aa1\"}]"}],"_postman_id":"70e202fd-85ea-481b-b9da-3130d29f032c"},{"name":"Auto Attendant Submenu","id":"2e86ddd5-d287-43f2-be60-a89c2d9af123","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"test-mock/aa1\",\n\t\"announcementSelection\":\"Default\",\n\t\"enableLevelExtensionDialing\":true,\n\t\"submenuId\":\"Submenu 1\"\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/submenus","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","submenus"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"931a052c-12d6-45c0-b195-63960443bd67","name":"Auto Attendant Submenu","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"test-mock/aa1\",\n\t\"announcementSelection\":\"Default\",\n\t\"enableLevelExtensionDialing\":true,\n\t\"submenuId\":\"Submenu 1\"\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/submenus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 20 Sep 2018 23:58:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2e86ddd5-d287-43f2-be60-a89c2d9af123"},{"name":"Auto Attendant Submenu Usage","id":"c565c314-b1e3-4b0e-a089-d5251cbca171","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/auto-attendants/submenus/usage?serviceUserId=test-mock%2Faa1&submenuId=Submenu+1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","submenus","usage"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"test-mock%2Faa1"},{"key":"submenuId","value":"Submenu+1"}],"variable":[]}},"response":[{"id":"3896eb6d-92ee-46a7-9d9b-cd681e745c73","name":"Auto Attendant Submenu Usage","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/auto-attendants/submenus/usage?serviceUserId=test-mock%2Faa1&submenuId=Submenu+1","host":["{{url}}"],"path":["api","v2","groups","auto-attendants","submenus","usage"],"query":[{"key":"serviceUserId","value":"test-mock%2Faa1"},{"key":"submenuId","value":"Submenu+1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"49","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 20 Sep 2018 23:59:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"type\":\"Business Hours Menu\",\"submenuId\":null}]"}],"_postman_id":"c565c314-b1e3-4b0e-a089-d5251cbca171"},{"name":"Auto Attendant Submenu","id":"167c25e4-2170-4c51-8b5b-e77f9d68a66e","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"announcementSelection\":\"Personal\",\n\t\"enableLevelExtensionDialing\":true,\n\t\"serviceUserId\":\"test-mock/aa1\",\n\t\"submenuId\":\"Submenu 1\",\n\t\"keys\":[\n\t\t{\"key\":\"0\",\"action\":\"Transfer To Operator\",\"description\":\"Operator\",\"phoneNumber\":\"0\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/submenus","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","submenus"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a9524eb2-deaa-490e-baed-e7b6feaa3fc6","name":"Auto Attendant Submenu","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"announcementSelection\":\"Personal\",\n\t\"enableLevelExtensionDialing\":true,\n\t\"serviceUserId\":\"test-mock/aa1\",\n\t\"submenuId\":\"Submenu 1\",\n\t\"keys\":[\n\t\t{\"key\":\"0\",\"action\":\"Transfer To Operator\",\"description\":\"Operator\",\"phoneNumber\":\"0\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/auto-attendants/submenus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 00:00:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"167c25e4-2170-4c51-8b5b-e77f9d68a66e"},{"name":"Auto Attendant Submenu","id":"9b43f4c7-711d-462b-a8ff-7f3ccdfdcccb","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/auto-attendants/submenus?serviceUserId=test-mock%2Faa1&submenuId=Submenu+1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","auto-attendants","submenus"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"test-mock%2Faa1"},{"key":"submenuId","value":"Submenu+1"}],"variable":[]}},"response":[{"id":"0b5d0cb8-c5f1-4122-8c39-5a104c7fa96b","name":"Auto Attendant Submenu","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/auto-attendants/submenus?serviceUserId=test-mock%2Faa1&submenuId=Submenu+1","host":["{{url}}"],"path":["api","v2","groups","auto-attendants","submenus"],"query":[{"key":"serviceUserId","value":"test-mock%2Faa1"},{"key":"submenuId","value":"Submenu+1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 00:01:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9b43f4c7-711d-462b-a8ff-7f3ccdfdcccb"}],"id":"fca7b2a9-39ae-4093-9504-a5040ed21753","event":[{"listen":"prerequest","script":{"id":"a15cc14e-824f-4009-b6c9-0809e0cf1d5d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"741f2671-9b10-443b-8f1f-39186a69e17f","type":"text/javascript","exec":[""]}}],"_postman_id":"fca7b2a9-39ae-4093-9504-a5040ed21753","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Automatic Callback","item":[{"name":"System Automatic Callback","id":"01fa1a76-f514-4810-b107-9889fe9143c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/automatic-callback","description":"<h3 id=\"system-automatic-callback\">System Automatic CallBack</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>monitorMinutes</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>5 - 180</code></td>\n</tr>\n<tr>\n<td><code>maxMonitorsPerOriginator</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>1 - 30</code></td>\n</tr>\n<tr>\n<td><code>maxCallbackRings</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>3 - 8</code></td>\n</tr>\n<tr>\n<td><code>maxMonitorsPerTerminator</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>1 - 30</code></td>\n</tr>\n<tr>\n<td><code>terminatorIdleGuardSeconds</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>5 - 300</code></td>\n</tr>\n<tr>\n<td><code>callbackMethod</code></td>\n<td>string</td>\n<td>optional</td>\n<td><code>Notify Only</code> <br /> <code>Notify If Possible And Polling Otherwise</code></td>\n</tr>\n<tr>\n<td><code>pollingIntervalSeconds</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>60 - 900</code></td>\n</tr>\n<tr>\n<td><code>activationDigit</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>0 - 9</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","automatic-callback"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6b3db6d0-84ff-44de-97f1-a05a6eb87fda","name":"System Automatic Callback","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/automatic-callback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"monitorMinutes\": 30,\n    \"maxMonitorsPerOriginator\": 5,\n    \"maxCallbackRings\": 6,\n    \"maxMonitorsPerTerminator\": 5,\n    \"terminatorIdleGuardSeconds\": 10,\n    \"callbackMethod\": \"Notify Only\",\n    \"pollingIntervalSeconds\": 60,\n    \"activationDigit\": 1\n}"}],"_postman_id":"01fa1a76-f514-4810-b107-9889fe9143c7"},{"name":"System Automatic Callback","id":"6e4de92f-820e-4b82-beeb-d67904774c26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"monitorMinutes\": 30,\n    \"maxMonitorsPerOriginator\": 5,\n    \"maxCallbackRings\": 6,\n    \"maxMonitorsPerTerminator\": 5,\n    \"terminatorIdleGuardSeconds\": 10,\n    \"callbackMethod\": \"Notify If Possible And Polling Otherwise\",\n    \"pollingIntervalSeconds\": 60,\n    \"activationDigit\": 1\n}"},"url":"{{url}}/api/v2/system/automatic-callback","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>monitorMinutes</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>5 - 180</code></td>\n</tr>\n<tr>\n<td><code>maxMonitorsPerOriginator</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>1 - 30</code></td>\n</tr>\n<tr>\n<td><code>maxCallbackRings</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>3 - 8</code></td>\n</tr>\n<tr>\n<td><code>maxMonitorsPerTerminator</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>1 - 30</code></td>\n</tr>\n<tr>\n<td><code>terminatorIdleGuardSeconds</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>5 - 300</code></td>\n</tr>\n<tr>\n<td><code>callbackMethod</code></td>\n<td>string</td>\n<td>optional</td>\n<td><code>Notify Only</code> <br /> <code>Notify If Possible And Polling Otherwise</code></td>\n</tr>\n<tr>\n<td><code>pollingIntervalSeconds</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>60 - 900</code></td>\n</tr>\n<tr>\n<td><code>activationDigit</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>0 - 9</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","automatic-callback"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"eb53a2b7-395a-406f-8676-a217d6e4e34b","name":"System Automatic Callback","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"monitorMinutes\": 30,\n    \"maxMonitorsPerOriginator\": 5,\n    \"maxCallbackRings\": 6,\n    \"maxMonitorsPerTerminator\": 5,\n    \"terminatorIdleGuardSeconds\": 10,\n    \"callbackMethod\": \"Notify If Possible And Polling Otherwise\",\n    \"pollingIntervalSeconds\": 60,\n    \"activationDigit\": 1\n}"},"url":"{{url}}/api/v2/system/automatic-callback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"monitorMinutes\": 30,\n    \"maxMonitorsPerOriginator\": 5,\n    \"maxCallbackRings\": 5,\n    \"maxMonitorsPerTerminator\": 5,\n    \"terminatorIdleGuardSeconds\": 10,\n    \"callbackMethod\": \"Notify If Possible And Polling Otherwise\",\n    \"pollingIntervalSeconds\": 60,\n    \"activationDigit\": 1\n}"}],"_postman_id":"6e4de92f-820e-4b82-beeb-d67904774c26"},{"name":"User Automatic Callback","id":"33b90f8e-499a-43c5-87ea-47c94c393109","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/automatic-callback?userId=4001@parkbenchsolutions.com","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td>string</td>\n<td>required</td>\n<td><code>4001@parkbenchsolutions.com</code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td>boolean</td>\n<td>optional</td>\n<td><code>true or false</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","automatic-callback"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"3844a565-0a80-42e9-b7ab-879d6d454686","name":"User Automatic Callback","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/automatic-callback?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","automatic-callback"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"33b90f8e-499a-43c5-87ea-47c94c393109"},{"name":"User Automatic Callback","id":"1c91afbf-4934-4253-9f48-33af83037157","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"isActive\": true\n}"},"url":"{{url}}/api/v2/users/automatic-callback","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td>string</td>\n<td>required</td>\n<td><code>4001@parkbenchsolutions.com</code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td>boolean</td>\n<td>optional</td>\n<td><code>true or false</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","automatic-callback"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"779745aa-5b0b-4183-9a9d-459385078fc5","name":"User Automatic Callback","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"isActive\": true\n}"},"url":"{{url}}/api/v2/users/automatic-callback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5019\n}"}],"_postman_id":"1c91afbf-4934-4253-9f48-33af83037157"},{"name":"Bulk Automatic Callback","id":"9fd72b72-d342-46e6-80b0-59419e973941","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/automatic-callback/bulk?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","automatic-callback","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"638bdd28-82ab-4279-a66e-23d6e7cd0e3b","name":"Bulk Automatic Callback","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/automatic-callback/bulk?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","users","automatic-callback","bulk"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8595551414\",\n            \"phoneNumberActivated\": false,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"inTrunkGroup\": false,\n            \"extension\": \"1414\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": \"\"\n    },\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": 3,\n            \"inTrunkGroup\": false,\n            \"extension\": \"1002\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {\n            \"isActive\": false,\n            \"userId\": \"8135551002@parkbenchsolutions.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 4,\n            \"hiraganaFirstName\": 4,\n            \"inTrunkGroup\": false,\n            \"extension\": \"1003\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": \"\"\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 5,\n            \"hiraganaFirstName\": 5,\n            \"inTrunkGroup\": false,\n            \"extension\": \"1004\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": \"\"\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 7,\n            \"hiraganaFirstName\": 7,\n            \"inTrunkGroup\": false,\n            \"extension\": \"1006\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": \"\"\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 8,\n            \"hiraganaFirstName\": 8,\n            \"inTrunkGroup\": false,\n            \"extension\": \"1007\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": \"\"\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 9,\n            \"hiraganaFirstName\": 9,\n            \"inTrunkGroup\": false,\n            \"extension\": \"1008\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": \"\"\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Automatic Callback\"\n        },\n        \"profile\": {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 4003,\n            \"hiraganaFirstName\": 4003,\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": \"\"\n    }\n]"}],"_postman_id":"9fd72b72-d342-46e6-80b0-59419e973941"},{"name":"System Automatic Callback Release Cause","id":"5c94117a-d891-42d5-b807-66a6efc6af1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/automatic-callback-release-cause","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>releaseCause</code></td>\n<td>string</td>\n<td>optional</td>\n<td><code>Busy</code> <br /><code>Forbidden</code><br /><code>Global Failure</code><br /><code>Request Failure</code><br /><code>Server Failure</code><br /><code>Translation Failure</code><br /><code>Temporarily Unavailable</code><br /><code>User Not Found</code><br /><code>Request Timeout</code><br /></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","automatic-callback-release-cause"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fe061528-18d2-4bf5-b135-9b92ddcef118","name":"System Automatic Callback Release Cause","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/automatic-callback-release-cause"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"releaseCauses\": [\n        \"Busy\",\n        \"Forbidden\",\n        \"Global Failure\"\n    ]\n}"}],"_postman_id":"5c94117a-d891-42d5-b807-66a6efc6af1f"},{"name":"System Automatic Callback Release Cause","id":"4b31631b-df2e-404a-86d2-33b59d229157","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"releaseCauses\": [\n        \"Request Failure\",\n        \"Server Failure\"\n    ]\n}"},"url":"{{url}}/api/v2/system/automatic-callback-release-cause","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>releaseCause</code></td>\n<td>string</td>\n<td>optional</td>\n<td><code>Busy</code> <br /><code>Forbidden</code><br /><code>Global Failure</code><br /><code>Request Failure</code><br /><code>Server Failure</code><br /><code>Translation Failure</code><br /><code>Temporarily Unavailable</code><br /><code>User Not Found</code><br /><code>Request Timeout</code><br /></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","automatic-callback-release-cause"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b97dd27c-e65d-4cf9-9385-20896cbba6b3","name":"System Automatic Callback Release Cause","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"releaseCauses\": [\n        \"Request Failure\",\n        \"Server Failure\"\n    ]\n}"},"url":"{{url}}/api/v2/system/automatic-callback-release-cause"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"releaseCauses\": [\n        \"Busy\",\n        \"Forbidden\",\n        \"Global Failure\",\n        \"Request Failure\",\n        \"Server Failure\"\n    ]\n}"}],"_postman_id":"4b31631b-df2e-404a-86d2-33b59d229157"},{"name":"System Automatic Callback Release Cause","id":"6b82abba-9ef6-4c1b-9152-5ef685bdaef2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"releaseCauses\": [\n        \"Global Failure\"\n    ]\n}"},"url":"{{url}}/api/v2/system/automatic-callback-release-cause","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>releaseCause</code></td>\n<td>string</td>\n<td>optional</td>\n<td><code>Busy</code> <br /><code>Forbidden</code><br /><code>Global Failure</code><br /><code>Request Failure</code><br /><code>Server Failure</code><br /><code>Translation Failure</code><br /><code>Temporarily Unavailable</code><br /><code>User Not Found</code><br /><code>Request Timeout</code><br /></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","automatic-callback-release-cause"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"22b31f77-4289-47e6-bffe-3dab69a3cfde","name":"System Automatic Callback Release Cause","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"releaseCauses\": [\n        \"Global Failure\"\n    ]\n}"},"url":"{{url}}/api/v2/system/automatic-callback-release-cause"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"releaseCauses\": [\n        \"Busy\",\n        \"Forbidden\"\n    ]\n}"}],"_postman_id":"6b82abba-9ef6-4c1b-9152-5ef685bdaef2"}],"id":"f642b4ff-ef8c-4758-a19c-89e7637f1305","description":"<blockquote>\n<p>Allows you to request notification when a busy line becomes available. A distinctive ring will be used to notify you when the user is available.</p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"7eb4f43f-b527-416f-bfbf-e1848eed7eb8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"80c1ef6c-36cc-4f74-b4e1-01d83d56aa0c","type":"text/javascript","exec":[""]}}],"_postman_id":"f642b4ff-ef8c-4758-a19c-89e7637f1305","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Automatic Hold Retrieve","item":[{"name":"User Automatic Hold Retrieve","id":"164281c2-0ba9-45c5-899e-e40a488e1503","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/automatic-hold-retrieve?userId=4001@parkbenchsolutions.com","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td>string</td>\n<td>required</td>\n<td><code>4001@parkbenchsolutions.com</code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td>boolean</td>\n<td>optional</td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>recallTimerSeconds</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>6 - 600</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","automatic-hold-retrieve"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"b6919a1e-9403-408a-b4fb-17e351a07e73","name":"User Automatic Hold Retrieve","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/automatic-hold-retrieve?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","automatic-hold-retrieve"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"recallTimerSeconds\": 120,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"164281c2-0ba9-45c5-899e-e40a488e1503"},{"name":"User Automatic Hold Retrieve","id":"4b34ec9c-7980-4891-b573-f8ac2ca24fd3","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"recallTimerSeconds\": 120,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/automatic-hold-retrieve","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td>string</td>\n<td>required</td>\n<td><code>4001@parkbenchsolutions.com</code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td>boolean</td>\n<td>optional</td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>recallTimerSeconds</code></td>\n<td>integer</td>\n<td>optional</td>\n<td><code>6 - 600</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","automatic-hold-retrieve"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"86e4cd56-505f-4e21-8249-159028ec007f","name":"User Automatic Hold Retrieve","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"recallTimerSeconds\": 120,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/automatic-hold-retrieve"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"recallTimerSeconds\": 120,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5348\n}"}],"_postman_id":"4b34ec9c-7980-4891-b573-f8ac2ca24fd3"},{"name":"Bulk Automatic Hold Retrieve","id":"320ad823-9ead-417f-84d4-9d1d8e6f41e5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/automatic-hold-retrieve/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","automatic-hold-retrieve","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"fcd5d5c8-98b7-4fa9-af2f-565c9cbe69be","name":"Bulk Automatic Hold Retrieve","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/automatic-hold-retrieve/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","automatic-hold-retrieve","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2330","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:25:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Automatic Hold\\/Retrieve\"},\"profile\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":true,\"recallTimerSeconds\":120,\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Automatic Hold\\/Retrieve\"},\"profile\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"recallTimerSeconds\":120,\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Automatic Hold\\/Retrieve\"},\"profile\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":\"\"},{\"service\":{\"assigned\":false,\"serviceName\":\"Automatic Hold\\/Retrieve\"},\"profile\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":\"\"},{\"service\":{\"assigned\":false,\"serviceName\":\"Automatic Hold\\/Retrieve\"},\"profile\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":\"\"}]"}],"_postman_id":"320ad823-9ead-417f-84d4-9d1d8e6f41e5"}],"id":"111aa2a9-717d-491a-8c96-115eb7a95758","description":"<blockquote>\n<p>Automatic Hold and Retrieve provides an alternate method to hold and retrieve calls. Incoming calls are automatically held and retrieved without having to use feature access codes.</p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"26518176-da5c-41a5-a9df-12c9a9bc4d49","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aaa2cc9d-59af-4fb8-9505-fd87f56e40ac","type":"text/javascript","exec":[""]}}],"_postman_id":"111aa2a9-717d-491a-8c96-115eb7a95758","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Barge In Exempt","item":[{"name":"User Barge In Exempt","id":"840f6131-c672-4e9e-a48f-05685d118cbb","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/barge-in-exempt?userId=4001@parkbenchsolutions.com","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td>string</td>\n<td>required</td>\n<td><code>4001@parkbenchsolutions.com</code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td>boolean</td>\n<td>optional</td>\n<td><code>true or false</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","barge-in-exempt"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"de1b8130-b6da-4bba-b20e-8549111b80ec","name":"User Barge In Exempt","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/barge-in-exempt?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","barge-in-exempt"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"840f6131-c672-4e9e-a48f-05685d118cbb"},{"name":"User Barge In Exempt","id":"ea31b6c3-d32c-4181-8f76-56757ae42e3c","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/barge-in-exempt","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td>string</td>\n<td>required</td>\n<td><code>4001@parkbenchsolutions.com</code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td>boolean</td>\n<td>optional</td>\n<td><code>true or false</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","barge-in-exempt"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ed6747c-abd4-45e0-afb4-5cad320e0104","name":"User Barge In Exempt Is False","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/barge-in-exempt"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},{"id":"fd22c06b-9e31-4d42-be81-2476122516fa","name":"User Barge In Exempt","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/barge-in-exempt"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5378\n}"}],"_postman_id":"ea31b6c3-d32c-4181-8f76-56757ae42e3c"}],"id":"f8618ba5-27cc-4e5f-8e59-07cb64b623b6","description":"<blockquote>\n<p>Barge-in Exempt allows you to block barge-in attempts from other users with Directed Call Pickup with Barge-in.</p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"cf441a82-5ec7-49b7-a97a-a252dab9d597","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bbcfd808-6917-4f32-950c-6f4f63c3db5c","type":"text/javascript","exec":[""]}}],"_postman_id":"f8618ba5-27cc-4e5f-8e59-07cb64b623b6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Basic Call Logs","item":[{"name":"User Basic Call Logs","id":"e03636b3-c2b3-4866-9156-08532e7b3bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/basic-call-logs?userId=9testingnumber@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","basic-call-logs"],"host":["{{url}}"],"query":[{"key":"userId","value":"9testingnumber@odinapi.net"}],"variable":[]}},"response":[{"id":"8e2c9766-a4eb-40b0-80df-4d32a6153fcb","name":"User Basic Call Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/basic-call-logs?userId=9546073887@microv-works.com","host":["{{url}}"],"path":["api","v2","users","basic-call-logs"],"query":[{"key":"userId","value":"9546073887@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2851","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 19:00:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"9546073887@microv-works.com\",\n    \"received\": [],\n    \"placed\": [],\n    \"missed\": [\n        {\n            \"countryCode\": \"1\",\n            \"callLogId\": \"12686223:0\",\n            \"phoneNumber\": \"5133334444\",\n            \"name\": \"V928081825002157205\",\n            \"time\": \"2018-09-28T11:20:09.659-04:00\"\n        }\n    ]\n}"}],"_postman_id":"e03636b3-c2b3-4866-9156-08532e7b3bb8"},{"name":"User Basic Call Logs","id":"d7a80d39-880e-4bfc-bf72-741f8253210c","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9testingnumber@odinapi.net\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/basic-call-logs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","basic-call-logs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4a3317cc-96fc-4693-b6e3-2b1e225291ef","name":"User Basic Call Logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/basic-call-logs?userId=9546073887@microv-works.com","host":["{{url}}"],"path":["api","v2","users","basic-call-logs"],"query":[{"key":"userId","value":"9546073887@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2851","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 19:00:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"9546073887@microv-works.com\",\n    \"received\": [],\n    \"placed\": [],\n    \"missed\": [\n        {\n            \"countryCode\": \"1\",\n            \"callLogId\": \"12686223:0\",\n            \"phoneNumber\": \"5133334444\",\n            \"name\": \"V928081825002157205\",\n            \"time\": \"2018-09-28T11:20:09.659-04:00\"\n        }\n    ]\n}"}],"_postman_id":"d7a80d39-880e-4bfc-bf72-741f8253210c"}],"id":"785dec3f-4c8e-4c03-8400-4735e57bfd38","_postman_id":"785dec3f-4c8e-4c03-8400-4735e57bfd38","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"BroadWorks Anywhere","item":[{"name":"User BroadWorks Anywhere","id":"7da3a115-5143-403c-801b-4bb8ee27bfa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/users/broad-works-anywhere?userId=Mayur1@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere"],"host":["{{url}}"],"query":[{"key":"userId","value":"Mayur1@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"e7c887d1-e9b7-4b43-b604-264015424ebc","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"7da3a115-5143-403c-801b-4bb8ee27bfa9"},{"name":"User BroadWorks Anywhere","id":"9ab810ff-c0e3-4e3e-9a72-92455cc34fb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"alertAllLocationsForClickToDialCalls\":true,\n\t\"alertAllLocationsForGroupPagingCalls\":true,\n\t\"userId\":\"5134004006@lab.tekvoice.net\"\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dd8ed55d-442e-484c-a5c5-9bbb02e45bbd","name":"User BroadWorks Anywhere","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"alertAllLocationsForClickToDialCalls\":true,\n\t\"alertAllLocationsForGroupPagingCalls\":true,\n\t\"userId\":\"9709580001@microv-works.com\"\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9ab810ff-c0e3-4e3e-9a72-92455cc34fb3"},{"name":"User BroadWorks Anywhere Clone","id":"9de59e56-d947-4fdc-b912-87fda6d8b991","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"5134004006@lab.tekvoice.net\",\n\t\"users\": [\n\t\t{\n\t\t\t\"userId\": \"4003-4003@lab.tekvoice.net\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/clone","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","clone"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6578bb75-a72d-40bd-b0b3-1b757d8d8f76","name":"User BroadWorks Anywhere","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"alertAllLocationsForClickToDialCalls\":true,\n\t\"alertAllLocationsForGroupPagingCalls\":true,\n\t\"userId\":\"9709580001@microv-works.com\"\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9de59e56-d947-4fdc-b912-87fda6d8b991"},{"name":"User BroadWorks Anywhere Phone Number","id":"11813ce3-5ee8-4b57-93b8-30a9d728c838","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-anywhere/phone-numbers?userId=user0007@parkbenchsolutions.com&phoneNumber=1234567899   ","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","phone-numbers"],"host":["{{url}}"],"query":[{"key":"userId","value":"user0007@parkbenchsolutions.com"},{"key":"phoneNumber","value":"1234567899   "}],"variable":[]}},"response":[{"id":"9b399781-4ce1-4238-9c65-d01345e7a28b","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"11813ce3-5ee8-4b57-93b8-30a9d728c838"},{"name":"User BroadWorks Anywhere Phone Number","id":"60d8ab11-a4c0-4b84-8920-2cbfc8510f3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"user0007@parkbenchsolutions.com\",\n\t\"description\":\"bw-phone-number-2\",\n\t\"outboundAlternateNumber\":\"3212221111\",\n\t\"isActive\":true,\n\t\"useDiversionInhibitor\":true,\n\t\"answerConfirmationRequired\":true,\n\t\"broadworksCallControl\":true,\n\t\"phoneNumber\":\"4077160705\"\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/phone-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","phone-numbers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"02390e9b-4777-4a6c-b92f-ffb9671d6e8e","name":"User BroadWorks Anywhere Phone Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"description\":\"Test Number\",\n\t\"outboundAlternateNumber\":\"5133334455\",\n\t\"isActive\":true,\n\t\"useDiversionInhibitor\":true,\n\t\"answerConfirmationRequired\":true,\n\t\"broadworksCallControl\":true,\n\t\"phoneNumber\":\"5133334444\"\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/phone-numbers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:23:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"60d8ab11-a4c0-4b84-8920-2cbfc8510f3e"},{"name":"User BroadWorks Anywhere Phone Number","id":"ca34917d-b6fb-4b49-9909-fa83b5a25dae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"description\":\"Test Number 3\",\n\t\"outboundAlternateNumber\":5133334455,\n\t\"isActive\":true,\n\t\"broadworksCallControl\":true,\n\t\"useDiversionInhibitor\":true,\n\t\"answerConfirmationRequired\":true,\n\t\"userId\":\"UserID00011@parkbenchsolutions.com\",\n\t\"phoneNumber\":8650433469,\n\t\"newPhoneNumber\":4077160706,\n\t\"criteria\":[{\"criteriaName\":\"bw-anywhere-2\",\"isActive\":true}]\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/phone-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","phone-numbers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6cb9b447-b8e6-4d25-886e-fa40dc475c3d","name":"User BroadWorks Anywhere Phone Number","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"description\":\"Test Number\",\n\t\"outboundAlternateNumber\":5133334455,\n\t\"isActive\":true,\n\t\"broadworksCallControl\":true,\n\t\"useDiversionInhibitor\":true,\n\t\"answerConfirmationRequired\":true,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"phoneNumber\":5133334444,\n\t\"newPhoneNumber\":5133334444\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/phone-numbers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:24:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ca34917d-b6fb-4b49-9909-fa83b5a25dae"},{"name":"User BroadWorks Anywhere Phone Number","id":"702c03fb-b4f6-4600-a824-e7fa31b0bae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"http://127.0.0.1:8080/api/v2/users/broad-works-anywhere/phone-numbers?phoneNumber=43249865222&userId=user0007@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","users","broad-works-anywhere","phone-numbers"],"host":["127","0","0","1"],"query":[{"key":"phoneNumber","value":"43249865222"},{"key":"userId","value":"user0007@parkbenchsolutions.com"}],"variable":[]}},"response":[],"_postman_id":"702c03fb-b4f6-4600-a824-e7fa31b0bae3"},{"name":"User BroadWorks Anywhere Phone Number Copy","id":"7eadceb9-3ebc-44f4-bcf6-d7e41e3e658d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-anywhere/phone-numbers?userId=5134004006@lab.tekvoice.net&phoneNumber=5134002301","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","phone-numbers"],"host":["{{url}}"],"query":[{"key":"userId","value":"5134004006@lab.tekvoice.net"},{"key":"phoneNumber","value":"5134002301"}],"variable":[]}},"response":[{"id":"aaebd5b6-c5b4-4758-ba87-f2fbb6d2bec3","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"7eadceb9-3ebc-44f4-bcf6-d7e41e3e658d"},{"name":"User BroadWorks Anywhere Portal Instances","id":"7cb87282-d439-4e31-9517-3137c066f8f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","available"],"host":["{{url}}"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}],"variable":[]}},"response":[{"id":"3b6c5d92-fcc3-4716-9d80-99d4a7340b6f","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"},{"id":"02dd1ea4-402f-4b77-8cdf-67a82447d4f7","name":"User BroadWorks Anywhere Portal Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","available"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"andrew.torbeck@odinapi.net\",\n    \"instances\": [\n        {\n            \"portalName\": \"anywhere-portal-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"language\": \"English\",\n            \"serviceUserId\": \"anywhere-portal-1@example21.com\"\n        }\n    ]\n}"}],"_postman_id":"7cb87282-d439-4e31-9517-3137c066f8f3"},{"name":"Group BroadWorks Anywhere Instances","id":"fe36318d-0f10-4a80-a86e-5576e1df3559","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/groups/broad-works-anywhere/instances?serviceProviderId=ent.odin&groupId=grp.bw.anywhere","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","broad-works-anywhere","instances"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.bw.anywhere"}],"variable":[]}},"response":[{"id":"b1aa2d60-d229-49c3-ab0b-cbb798c01933","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"},{"id":"4c8bdca7-fbd9-49bf-b593-8dbb34323bd0","name":"User BroadWorks Anywhere Portal Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","available"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"andrew.torbeck@odinapi.net\",\n    \"instances\": [\n        {\n            \"portalName\": \"anywhere-portal-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"language\": \"English\",\n            \"serviceUserId\": \"anywhere-portal-1@example21.com\"\n        }\n    ]\n}"}],"_postman_id":"fe36318d-0f10-4a80-a86e-5576e1df3559"},{"name":"Group BroadWorks Anywhere Instances Activate","id":"9482537b-a9ad-41d8-b07e-3899e69a8103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"BWAnywhere@voicecci.net\",\n            \"isActive\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/broad-works-anywhere/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","broad-works-anywhere","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9aec5865-5b60-448b-80ec-21a8351e4ac7","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"},{"id":"ccb975b7-d1ad-4c75-a5a2-63aadfc95716","name":"User BroadWorks Anywhere Portal Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","available"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"andrew.torbeck@odinapi.net\",\n    \"instances\": [\n        {\n            \"portalName\": \"anywhere-portal-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"language\": \"English\",\n            \"serviceUserId\": \"anywhere-portal-1@example21.com\"\n        }\n    ]\n}"}],"_postman_id":"9482537b-a9ad-41d8-b07e-3899e69a8103"},{"name":"Group BroadWorks Anywhere Instance","id":"fc3a71dc-05e8-4fca-aadf-dd125e35d4b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/groups/broad-works-anywhere?serviceUserId=BWAnywhere@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","broad-works-anywhere"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"BWAnywhere@voicecci.net"}],"variable":[]}},"response":[{"id":"dc1082b7-8f02-4c9c-a755-db81aa571c07","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"},{"id":"42879ee9-41c6-438b-a237-32df3205d65f","name":"User BroadWorks Anywhere Portal Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","available"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"andrew.torbeck@odinapi.net\",\n    \"instances\": [\n        {\n            \"portalName\": \"anywhere-portal-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"language\": \"English\",\n            \"serviceUserId\": \"anywhere-portal-1@example21.com\"\n        }\n    ]\n}"}],"_postman_id":"fc3a71dc-05e8-4fca-aadf-dd125e35d4b0"},{"name":"Group BroadWorks Anywhere Instance","id":"7558bf44-10b9-461b-90d1-6cc15f4e05a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/groups/broad-works-anywhere?serviceUserId=BWAnywhere2@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","broad-works-anywhere"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"BWAnywhere2@voicecci.net"}],"variable":[]}},"response":[{"id":"0e3ed38b-31e0-40db-8336-3ccaf3cae7b7","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"},{"id":"5865f96b-cf8f-4afc-8e43-6723abb332f5","name":"User BroadWorks Anywhere Portal Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","available"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"andrew.torbeck@odinapi.net\",\n    \"instances\": [\n        {\n            \"portalName\": \"anywhere-portal-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"language\": \"English\",\n            \"serviceUserId\": \"anywhere-portal-1@example21.com\"\n        }\n    ]\n}"}],"_postman_id":"7558bf44-10b9-461b-90d1-6cc15f4e05a7"},{"name":"Group BroadWorks Anywhere Instance","id":"8d70aa98-f5f9-483c-8311-d7006b61b422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"BWAnywhere@voicecci.net\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"BWAnywhere\",\n        \"callingLineIdLastName\": \"BWAnywhere4\",\n        \"callingLineIdFirstName\": \"BWAnywhere4\",\n        \"hiraganaLastName\": \"BWAnywhere\",\n        \"hiraganaFirstName\": \"BroadWorks Anywhere\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"broadWorksAnywhereScope\": \"Group\",\n    \"promptForCLID\": \"Prompt When Not Available\",\n    \"silentPromptMode\": false,\n    \"promptForPasscode\": true,\n    \"networkClassOfService\": \"NCOS - Block International\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/broad-works-anywhere","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","broad-works-anywhere"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"52b7808b-e778-4c47-ab7b-6bca66ea1d96","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"},{"id":"408a1433-dd00-4c50-ac5c-045ecbecacd4","name":"User BroadWorks Anywhere Portal Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","available"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"andrew.torbeck@odinapi.net\",\n    \"instances\": [\n        {\n            \"portalName\": \"anywhere-portal-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"language\": \"English\",\n            \"serviceUserId\": \"anywhere-portal-1@example21.com\"\n        }\n    ]\n}"}],"_postman_id":"8d70aa98-f5f9-483c-8311-d7006b61b422"},{"name":"Group BroadWorks Anywhere Instance","id":"fbdf58bb-54d7-41ad-8b52-642aa1eb53c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"BWAnywhere2@voicecci.net\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.bw.anywhere\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"BWAnywhere2\",\n        \"callingLineIdLastName\": \"BWAnywhere5\",\n        \"callingLineIdFirstName\": \"BWAnywhere5\",\n        \"hiraganaLastName\": \"BWAnywhere2\",\n        \"hiraganaFirstName\": \"BroadWorks Anywhere2\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"broadWorksAnywhereScope\": \"Group\",\n    \"promptForCLID\": \"Prompt When Not Available\",\n    \"silentPromptMode\": true,\n    \"promptForPasscode\": false,\n    \"networkClassOfService\": \"NCOS - Block International\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/broad-works-anywhere","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","broad-works-anywhere"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a2f30e08-a19c-4749-8a1e-3e0b1c81d133","name":"User BroadWorks Anywhere","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"361","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"alertAllLocationsForClickToDialCalls\":true,\"alertAllLocationsForGroupPagingCalls\":true,\"phoneNumbers\":[{\"description\":\"Test Number\",\"isActive\":true,\"broadworksCallControl\":true,\"useDiversionInhibitor\":true,\"answerConfirmationRequired\":true,\"criteria\":[],\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":5133334444}],\"userId\":\"9709580001@microv-works.com\"}"},{"id":"8d604773-6b3f-4b0e-8362-4764a634df58","name":"User BroadWorks Anywhere Portal Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/available?userId=andrew.torbeck@odinapi.net","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","available"],"query":[{"key":"userId","value":"andrew.torbeck@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"andrew.torbeck@odinapi.net\",\n    \"instances\": [\n        {\n            \"portalName\": \"anywhere-portal-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"language\": \"English\",\n            \"serviceUserId\": \"anywhere-portal-1@example21.com\"\n        }\n    ]\n}"}],"_postman_id":"fbdf58bb-54d7-41ad-8b52-642aa1eb53c9"},{"name":"User BroadWorks Anywhere Criteria","id":"0b969dfe-efe3-4ef9-8b31-0648a9814d7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"Mayur1@parkbenchsolutions.com\",\n\t\"phoneNumber\": \"9999999999\",\n\t\"criteriaName\": \"bw-anywhere-3\",\n\t\"isActive\": true,\n\t\"blacklisted\": true,\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\":false\n\t},\n\t\"holidaySchedule\": {},\n\t\"timeSchedule\": {},\n\t\"callsToNumber\": []\n}\n"},"url":"{{url}}/api/v2/users/broad-works-anywhere/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0addaa27-4ae1-431c-81cd-da73a82a6a81","name":"User BroadWorks Anywhere Criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"phoneNumber\":5133334444,\n\t\"criteriaName\":\"New Criteria\",\n\t\"isActive\":true,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"phoneNumbers\":[\"5133334444\"]\n\t}\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:26:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0b969dfe-efe3-4ef9-8b31-0648a9814d7c"},{"name":"User BroadWorks Anywhere Criteria","id":"32aeff3f-4684-48a7-844e-0d7abcbe951d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-anywhere/criteria?criteriaName=bw-anywhere-2&phoneNumber=4077160706&userId=5134004006@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","criteria"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"bw-anywhere-2"},{"key":"phoneNumber","value":"4077160706"},{"key":"userId","value":"5134004006@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"9008959e-565c-43d5-8297-29f20e39562b","name":"User BroadWorks Anywhere Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/criteria?criteriaName=New+Criteria&phoneNumber=5133334444&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","criteria"],"query":[{"key":"criteriaName","value":"New+Criteria"},{"key":"phoneNumber","value":"5133334444"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"274","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:26:51 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"blacklisted\":false,\"fromDnCriteria\":{\"fromDnCriteriaSelection\":\"Specified Only\",\"includeAnonymousCallers\":true,\"includeUnavailableCallers\":false,\"phoneNumbers\":[\"5133334444\"]},\"userId\":\"9709580001@microv-works.com\",\"phoneNumber\":\"5133334444\",\"criteriaName\":\"New Criteria\"}"}],"_postman_id":"32aeff3f-4684-48a7-844e-0d7abcbe951d"},{"name":"User BroadWorks Anywhere Criteria","id":"cfe31b8d-f7fa-4982-815c-d4b6d52b6af6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"blacklisted\": false,\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": false,\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\"\n\t\t]\n\t},\n\t\"userId\": \"5134004006@lab.tekvoice.net\",\n\t\"phoneNumber\": \"5134002301\",\n\t\"criteriaName\": \"bw-anywhere-3\",\n\t\"isActive\": true,\n\t\"timeSchedule\": null,\n\t\"callFrom\": \"Any private number,5133334444\",\n\t\"holidaySchedule\": null,\n\t\"newCriteriaName\": \"bw-anywhere-5\",\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"9871514002\",\n\t\t\t\"extension\": \"4002\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"4077160705\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"16afcaf3-6a4f-49c5-89f8-2947d754b5a7","name":"User BroadWorks Anywhere Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"blacklisted\":false,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"includeUnavailableCallers\":false,\n\t\t\"phoneNumbers\":[\"5133334444\"]\n\t},\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"phoneNumber\":\"5133334444\",\n\t\"criteriaName\":\"New Criteria\",\n\t\"isActive\":true,\n\t\"timeSchedule\":null,\n\t\"callFrom\":\"Any private number,5133334444\",\n\t\"holidaySchedule\":null,\n\t\"newCriteriaName\":\"New Criteria2\"\n}"},"url":"{{url}}/api/v2/users/broad-works-anywhere/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:27:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"cfe31b8d-f7fa-4982-815c-d4b6d52b6af6"},{"name":"User BroadWorks Anywhere Criteria","id":"8dc468c2-9319-4b4e-80ab-7cc7b500bf19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"5134004006@lab.tekvoice.net\",\n    \"phoneNumber\": \"5134002301\",\n    \"criteriaName\": \"bw-anywhere-3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/broad-works-anywhere/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-anywhere","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"22e0ed5f-d4c0-4a4a-b559-270a99432150","name":"User BroadWorks Anywhere Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/broad-works-anywhere/criteria?criteriaName=New+Criteria2&phoneNumber=5133334444&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","broad-works-anywhere","criteria"],"query":[{"key":"criteriaName","value":"New+Criteria2"},{"key":"phoneNumber","value":"5133334444"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 22:28:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8dc468c2-9319-4b4e-80ab-7cc7b500bf19"}],"id":"6d9a83a6-3f44-4a67-bda2-14e32eadb197","_postman_id":"6d9a83a6-3f44-4a67-bda2-14e32eadb197","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"BroadWorks Mobility","item":[{"name":"User BroadWorks Mobility","id":"9eb7a752-fbd7-4152-90e8-97e1f42d2f4d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-mobility?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-mobility"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"66f4134f-4d34-4ae8-b000-8ca3c7cc6264","name":"User BroadWorks Mobility","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/broad-works-mobility?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","broad-works-mobility"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"phonesToRing\": \"Fixed\",\n    \"mobilePhoneNumber\": 5553331414,\n    \"alertClickToDialCalls\": true,\n    \"alertGroupPagingCalls\": true,\n    \"enableDiversionInhibitor\": true,\n    \"requireAnswerConfirmation\": true,\n    \"broadworksCallControl\": true,\n    \"useSettingLevel\": \"Group\",\n    \"denyCallOriginations\": true,\n    \"denyCallTerminations\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"9eb7a752-fbd7-4152-90e8-97e1f42d2f4d"},{"name":"User BroadWorks Mobility","id":"6f17c98f-4c67-41ca-8f6b-474442730072","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"phonesToRing\":\"Fixed\",\n\t\"alertClickToDialCalls\":false,\n\t\"alertGroupPagingCalls\":true,\n\t\"enableDiversionInhibitor\":true,\n\t\"requireAnswerConfirmation\":true,\n\t\"broadworksCallControl\":true,\n\t\"useSettingLevel\":\"Group\",\n\t\"denyCallOriginations\":true,\n\t\"denyCallTerminations\":true,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"mobilePhoneNumber\":\"5133334444\"\n}"},"url":"{{url}}/api/v2/users/broad-works-mobility","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-mobility"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3821b7ab-96aa-467e-8e5a-26c04cf3b34e","name":"User BroadWorks Mobility","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"phonesToRing\":\"Fixed\",\n\t\"alertClickToDialCalls\":false,\n\t\"alertGroupPagingCalls\":true,\n\t\"enableDiversionInhibitor\":true,\n\t\"requireAnswerConfirmation\":true,\n\t\"broadworksCallControl\":true,\n\t\"useSettingLevel\":\"Group\",\n\t\"denyCallOriginations\":true,\n\t\"denyCallTerminations\":true,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"mobilePhoneNumber\":\"5133334444\"\n}"},"url":"{{url}}/api/v2/users/broad-works-mobility"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"phonesToRing\": \"Fixed\",\n    \"mobilePhoneNumber\": 5133334444,\n    \"alertClickToDialCalls\": false,\n    \"alertGroupPagingCalls\": true,\n    \"enableDiversionInhibitor\": true,\n    \"requireAnswerConfirmation\": true,\n    \"broadworksCallControl\": true,\n    \"useSettingLevel\": \"Group\",\n    \"denyCallOriginations\": true,\n    \"denyCallTerminations\": true,\n    \"userId\": \"9709580001@microv-works.com\"\n}"}],"_postman_id":"6f17c98f-4c67-41ca-8f6b-474442730072"}],"id":"f523c22c-f4b0-4d89-9ba6-350c0e502f76","_postman_id":"f523c22c-f4b0-4d89-9ba6-350c0e502f76","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"BroadWorks Navigation","item":[{"name":"User BroadWorks Navigation","id":"7d5cf1a1-8866-476c-a248-34f2ffec9c64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/navigation/user?userId=5139222121@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","navigation","user"],"host":["{{url}}"],"query":[{"key":"userId","value":"5139222121@voicecci.net"}],"variable":[]}},"response":[{"id":"ac0e938a-26c5-47d7-b71e-103f02600cf1","name":"User BroadWorks Navigation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/navigation/user?userId=5139222121@voicecci.net","host":["{{url}}"],"path":["api","v2","navigation","user"],"query":[{"key":"userId","value":"5139222121@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Mar 2023 21:56:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"526"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"displayOutgoingCallingPlanLink\": false,\n    \"displayEnhancedOutgoingCallingPlanLink\": false,\n    \"displayIncomingCallingPlanLink\": true,\n    \"displayAccountCodesLink\": false,\n    \"displayCallCentersLink\": true,\n    \"displayCallPickupLink\": false,\n    \"displaySeriesCompletionLink\": false,\n    \"displayGroupPaging\": false,\n    \"displayInstantConferencingLink\": false,\n    \"displayInstantConferencingIntegratedLink\": false,\n    \"displayPasswordLink\": false,\n    \"displayOfficeZoneLink\": false,\n    \"displayMeetMeConferencingLink\": true,\n    \"displayVoicePortalLink\": true,\n    \"displayVoiceMessagingLink\": true\n}"}],"_postman_id":"7d5cf1a1-8866-476c-a248-34f2ffec9c64"},{"name":"Group BroadWorks Navigation","id":"77dfa03a-4df7-469d-9a1d-ef26bfb99e7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/navigation/group?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","navigation","group"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"81097685-a59f-449b-ad9c-9947b6bc3393","name":"Group BroadWorks Navigation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/navigation/group?groupId=grp.odin&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","navigation","group"],"query":[{"key":"groupId","value":"grp.odin","type":"text"},{"key":"serviceProviderId","value":"ent.odin","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Mar 2023 22:06:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"934"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"displayInstantConferencingLink\": false,\n    \"displayTrunkGroupLink\": true,\n    \"displayThirdPartyVMLink\": true,\n    \"displayCallManagerLink\": false,\n    \"displayVMGroupLink\": true,\n    \"displayServiceScriptLink\": false,\n    \"displayPasswordLink\": false,\n    \"displayBroadWorksAnywhereLink\": true,\n    \"displayPasscodeRulesLink\": true,\n    \"displayPreAlertingAnnouncementLink\": true,\n    \"displayPolycomPhoneServicesLink\": true,\n    \"displayCallRecordingPlatformLink\": true,\n    \"displayCallCenterLink\": true,\n    \"displayCallCenterScheduleReportLink\": true,\n    \"displaySessionAdmissionControlLink\": true,\n    \"displayVirtualOnNetEnterpriseExtensionsLink\": true,\n    \"displayRoutePointExternalSystemsLink\": true,\n    \"displayMeetMeConferencingLink\": true,\n    \"displayBroadWorksMobileManagerLink\": false,\n    \"displayBroadWorksMobilityLink\": true,\n    \"displayGroupPagingTargetsCapacityLink\": true,\n    \"displayOfficeZoneLink\": true,\n    \"displayGroupNightForwardingLink\": true,\n    \"displayAutoAttendantLink\": true,\n    \"displayIMPLink\": true,\n    \"displayAdviceOfChargeLink\": true\n}"}],"_postman_id":"77dfa03a-4df7-469d-9a1d-ef26bfb99e7e"},{"name":"ServiceProvider BroadWorks Navigation","id":"a35b6039-5b94-4898-805a-ced39231ef69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/navigation/service-provider?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","navigation","service-provider"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"ddc0f9bb-5728-468b-afc9-e2b85d9a177b","name":"ServiceProvider BroadWorks Navigation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/navigation/service-provider?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","navigation","service-provider"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Mar 2023 22:07:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"424"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"displaySessionAdmissionControlLink\": true,\n    \"displayPreAlertingAnnouncementLink\": true,\n    \"displayRoutePointExternalSystemsLink\": true,\n    \"displayBroadWorksMobileManagerLink\": false,\n    \"displayBroadWorksMobilityLink\": true,\n    \"displayOfficeZoneLink\": true,\n    \"displayCallCenterScheduleReportLink\": true,\n    \"displayMeetMeConferencingLink\": true,\n    \"displayPasscodeRulesLink\": true,\n    \"displayAdviceOfChargeLink\": true,\n    \"displayNumberPortabilityQueryLink\": true\n}"}],"_postman_id":"a35b6039-5b94-4898-805a-ced39231ef69"},{"name":"SP Features BroadWorks Navigation","id":"21582e42-84a6-468c-a5de-2db8f8672022","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/navigation/service-provider-features?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","navigation","service-provider-features"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"bc3ae0cf-a93f-443c-a813-b5dd2b518485","name":"SP Features BroadWorks Navigation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/navigation/service-provider-features?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","navigation","service-provider-features"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Mar 2023 22:08:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"480"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceName\": [\n        \"Trunk Group\",\n        \"Voice Messaging Group\",\n        \"Three-Way Call\",\n        \"Enhanced Call Logs\",\n        \"Voice Messaging User\",\n        \"External Custom Ringback\",\n        \"In-Call Service Activation\",\n        \"BroadWorks Anywhere\",\n        \"Zone Calling Restrictions\",\n        \"Call Center - Basic\",\n        \"Call Center - Standard\",\n        \"Call Center - Premium\",\n        \"Malicious Call Trace\",\n        \"Meet-Me Conferencing\",\n        \"Virtual On-Net Enterprise Extensions\",\n        \"Group Paging\",\n        \"Call Me Now\",\n        \"Integrated IMP\",\n        \"Route List\",\n        \"Security Classification\",\n        \"Call Recording\"\n    ]\n}"}],"_postman_id":"21582e42-84a6-468c-a5de-2db8f8672022"},{"name":"System BroadWorks Navigation","id":"e7194b44-e8a3-4d0f-a4df-df5e1f470da1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/navigation/system","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","navigation","system"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6c7bd0ff-02d8-4558-9a0b-4b54c13e432d","name":"SP Features BroadWorks Navigation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/navigation/service-provider-features?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","navigation","service-provider-features"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Mar 2023 22:08:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"480"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceName\": [\n        \"Trunk Group\",\n        \"Voice Messaging Group\",\n        \"Three-Way Call\",\n        \"Enhanced Call Logs\",\n        \"Voice Messaging User\",\n        \"External Custom Ringback\",\n        \"In-Call Service Activation\",\n        \"BroadWorks Anywhere\",\n        \"Zone Calling Restrictions\",\n        \"Call Center - Basic\",\n        \"Call Center - Standard\",\n        \"Call Center - Premium\",\n        \"Malicious Call Trace\",\n        \"Meet-Me Conferencing\",\n        \"Virtual On-Net Enterprise Extensions\",\n        \"Group Paging\",\n        \"Call Me Now\",\n        \"Integrated IMP\",\n        \"Route List\",\n        \"Security Classification\",\n        \"Call Recording\"\n    ]\n}"}],"_postman_id":"e7194b44-e8a3-4d0f-a4df-df5e1f470da1"}],"id":"397ac7d8-8f26-412e-b44b-e3761d27569f","description":"<p>Fetch authorized menu items at various levels</p>\n","_postman_id":"397ac7d8-8f26-412e-b44b-e3761d27569f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Broadworks Receptionist Enterprise","item":[{"name":"User BroadWorks Receptionist Enterprise","id":"cb355790-0c22-4090-be7d-5bf6df2bdb18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-receptionist-enterprise?userId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-enterprise"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"34045628-e467-449e-a270-acbe0205e4cb","name":"User BroadWorks Receptionist Enterprise","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/broad-works-receptionist-enterprise?userId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","users","broad-works-receptionist-enterprise"],"query":[{"key":"userId","value":"user-1@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        }\n    ],\n    \"userId\": \"user-1@voicecci.net\"\n}"}],"_postman_id":"cb355790-0c22-4090-be7d-5bf6df2bdb18"},{"name":"User BroadWorks Receptionist Enterprise Available Users","id":"f87ee5ba-4ae1-42db-91a8-a1b8c8b6aee8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-receptionist-office/users?userId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-office","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"831a2bf3-9442-40bf-b614-af2ce6f565e2","name":"User BroadWorks Receptionist Enterprise Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/broad-works-receptionist-enterprise/users?userId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","users","broad-works-receptionist-enterprise","users"],"query":[{"key":"userId","value":"user-1@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        }\n    ]\n}"}],"_postman_id":"f87ee5ba-4ae1-42db-91a8-a1b8c8b6aee8"},{"name":"User BroadWorks Receptionist Enterprise","id":"1d06cfa5-bdfb-4b52-92a0-2e534af90582","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n         {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/broad-works-receptionist-enterprise","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-enterprise"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8137d622-5228-42e5-a10f-20044d31ae21","name":"User BroadWorks Receptionist Enterprise","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n         {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/broad-works-receptionist-enterprise"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null,\n            \"receptionistNote\": null\n        }\n    ],\n    \"userId\": \"user-1@voicecci.net\"\n}"}],"_postman_id":"1d06cfa5-bdfb-4b52-92a0-2e534af90582"}],"id":"44ff8884-bcf2-4e74-a451-bf611b6121e3","_postman_id":"44ff8884-bcf2-4e74-a451-bf611b6121e3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Broadworks Receptionist Office","item":[{"name":"User BroadWorks Receptionist Office","id":"61db8680-489c-4409-8802-f309ab1d3694","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-receptionist-office?userId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-office"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"659d39e4-c1a6-4288-9fb5-286cd522b2b2","name":"User BroadWorks Receptionist Office","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/broad-works-receptionist-office?userId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","users","broad-works-receptionist-office"],"query":[{"key":"userId","value":"user-1@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ],\n    \"userId\": \"user-1@voicecci.net\"\n}"}],"_postman_id":"61db8680-489c-4409-8802-f309ab1d3694"},{"name":"User BroadWorks Receptionist Office Available Users","id":"25a7cf55-442c-4403-b94e-8dc1adaea1de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-receptionist-office/users?userId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-office","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"b04eeb84-6b41-421e-86fd-b9d35815fb54","name":"User BroadWorks Receptionist Office Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/broad-works-receptionist-office/users?userId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","users","broad-works-receptionist-office","users"],"query":[{"key":"userId","value":"user-1@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ]\n}"}],"_postman_id":"25a7cf55-442c-4403-b94e-8dc1adaea1de"},{"name":"User BroadWorks Receptionist Office","id":"17fb4388-2237-4e1b-9da3-498fc6b8db15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n         {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/broad-works-receptionist-office","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-office"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7e02e8f9-09cd-4d21-97a4-7ced55ef3c02","name":"User BroadWorks Receptionist Office","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n         {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/broad-works-receptionist-office"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ],\n    \"userId\": \"user-1@voicecci.net\"\n}"}],"_postman_id":"17fb4388-2237-4e1b-9da3-498fc6b8db15"}],"id":"67761497-1286-43c0-ac8f-4fc0d557734a","_postman_id":"67761497-1286-43c0-ac8f-4fc0d557734a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"BroadWorks Receptionist Small Business","item":[{"name":"User BroadWorks Receptionist Small Business","id":"fa84acb1-3a36-4432-a043-4d862486f2f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-receptionist-small-business?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-small-business"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"1d237782-7a88-4313-b844-9182e322f9cb","name":"User BroadWorks Receptionist Small Business","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/broad-works-receptionist-small-business?userId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","users","broad-works-receptionist-small-business"],"query":[{"key":"userId","value":"user-1@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ],\n    \"availableUsers\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ]\n}"}],"_postman_id":"fa84acb1-3a36-4432-a043-4d862486f2f2"},{"name":"User BroadWorks Receptionist Small Business Available Users","id":"41b81535-d7e2-48da-a1ec-800748d44e24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/broad-works-receptionist-small-business/users?userId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-small-business","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"a252cf9f-3669-4078-b1e8-72b4167c0ed5","name":"User BroadWorks Receptionist Small Business Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/broad-works-receptionist-small-business/users?userId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","users","broad-works-receptionist-small-business","users"],"query":[{"key":"userId","value":"user-1@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-1@voicecci.net\",\n    \"users\": [\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"3\",\n            \"firstName\": \"3\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-4@voicecci.net\",\n            \"lastName\": \"4\",\n            \"firstName\": \"4\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-5@voicecci.net\",\n            \"lastName\": \"5\",\n            \"firstName\": \"5\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"user-2\",\n            \"firstName\": \"user-2\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null,\n            \"title\": null\n        }\n    ]\n}"}],"_postman_id":"41b81535-d7e2-48da-a1ec-800748d44e24"},{"name":"User BroadWorks Receptionist Small Business","id":"a92e0508-5b5e-49a5-a9e8-b6407e454745","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551004\",\n            \"extension\": 1004,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551006\",\n            \"extension\": 1006,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551003\",\n            \"extension\": 1003,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551002\",\n            \"extension\": 1002,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551008\",\n            \"extension\": 1008,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551007\",\n            \"extension\": 1007,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/broad-works-receptionist-small-business","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","broad-works-receptionist-small-business"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aa3557b2-ca42-4704-8bd1-4c2b14f4de3d","name":"User BroadWorks Receptionist Small Business","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551004\",\n            \"extension\": 1004,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551006\",\n            \"extension\": 1006,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551003\",\n            \"extension\": 1003,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551002\",\n            \"extension\": 1002,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551008\",\n            \"extension\": 1008,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551007\",\n            \"extension\": 1007,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/broad-works-receptionist-small-business"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551004\",\n            \"extension\": 1004,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551006\",\n            \"extension\": 1006,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551003\",\n            \"extension\": 1003,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551002\",\n            \"extension\": 1002,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551008\",\n            \"extension\": 1008,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": null,\n            \"extension\": null,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"groupId\": \"grp.odin\",\n            \"number\": \"+18135551007\",\n            \"extension\": 1007,\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"department\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 8297\n}"}],"_postman_id":"a92e0508-5b5e-49a5-a9e8-b6407e454745"}],"id":"8a5e3ce7-476b-4de5-b693-debac2e2b51f","_postman_id":"8a5e3ce7-476b-4de5-b693-debac2e2b51f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Busy Lamp Field","item":[{"name":"User Busy Lamp Field","id":"b9f3e0e6-70e2-448a-93fe-37db4d7ec6cc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/busy-lamp-field?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","busy-lamp-field"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"c24ef886-b42a-4b1d-8ae8-8a7147e2887a","name":"User Busy Lamp Field","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/busy-lamp-field?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","busy-lamp-field"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"listURI\": \"123456789@parkbenchsolutions.com\",\n    \"enableCallParkNotification\": true,\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"b9f3e0e6-70e2-448a-93fe-37db4d7ec6cc"},{"name":"User Busy Lamp Field","id":"6cc4b050-bd2a-4162-8f2a-37e1110845a1","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"listURI\": \"123456789@parkbenchsolutions.com\",\n    \"enableCallParkNotification\": true,\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/busy-lamp-field","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","busy-lamp-field"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b8dde01a-666c-4b66-9546-40111baf36b1","name":"User Busy Lamp Field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"listURI\": \"123456789@parkbenchsolutions.com\",\n    \"enableCallParkNotification\": true,\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/busy-lamp-field"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"listURI\": \"123456789@parkbenchsolutions.com\",\n    \"enableCallParkNotification\": true,\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 8342\n}"}],"_postman_id":"6cc4b050-bd2a-4162-8f2a-37e1110845a1"},{"name":"User Busy Lamp Field Copy","id":"2c7d2e26-fe91-40ed-9017-d028e9d98fbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n\t\"grp.odin\": \"grp.odin\",\n    \"userId\": \"4003@parkbenchsolutions.com\",\n    \"listURI\": \"4003@parkbenchsolutions.com\",\n    \"enableCallParkNotification\": true,\n    \"users\": []\n}"},"url":"{{url}}/api/v2/users/busy-lamp-field","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","busy-lamp-field"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bed9109d-9fde-4076-ac54-72ce314d54e2","name":"User Busy Lamp Field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"listURI\": \"123456789@parkbenchsolutions.com\",\n    \"enableCallParkNotification\": true,\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/busy-lamp-field"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"listURI\": \"123456789@parkbenchsolutions.com\",\n    \"enableCallParkNotification\": true,\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 8342\n}"}],"_postman_id":"2c7d2e26-fe91-40ed-9017-d028e9d98fbe"},{"name":"Busy Lamp Field Available Monitors","id":"e8f01dd9-d894-416a-ace2-4b63d8fbdc21","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/busy-lamp-field/users?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","busy-lamp-field","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"6a93e5f5-06dd-49bd-8c2a-162ab4bfa347","name":"Busy Lamp Field Available Monitors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/busy-lamp-field/users?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","busy-lamp-field","users"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ]\n}"}],"_postman_id":"e8f01dd9-d894-416a-ace2-4b63d8fbdc21"}],"id":"91ed3f61-53bb-4356-a5a8-3da436859607","_postman_id":"91ed3f61-53bb-4356-a5a8-3da436859607","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Capacity","item":[{"name":"Group Call Capacity Management Groups","id":"e6386198-b0df-4637-8f87-6748cce0a4ad","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-capacity-management?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"e36e7f39-9d05-47b7-8853-63af975453df","name":"Group Call Capacity Management Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-capacity-management?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","call-capacity-management"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:39:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"172"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Test Group\",\n        \"isDefault\": false,\n        \"maximumCalls\": 5,\n        \"maximumIncomingCalls\": 3,\n        \"maximumOutgoingCalls\": 3,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    }\n]"}],"_postman_id":"e6386198-b0df-4637-8f87-6748cce0a4ad"},{"name":"Group Call Capacity Management Group","id":"b282485a-89af-4264-879d-1b783670a0ca","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-capacity-management?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test Group2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test Group2"}],"variable":[]}},"response":[{"id":"4c120a74-318d-43dd-a248-667157b581ca","name":"Group Call Capacity Management Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/call-capacity-management?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test Group2","host":["{{url}}"],"path":["api","v2","groups","call-capacity-management"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test Group2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:28:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"223"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Test Group2\",\n    \"maxActiveCallsAllowed\": 5,\n    \"maxIncomingActiveCallsAllowed\": 3,\n    \"maxOutgoingActiveCallsAllowed\": 3,\n    \"defaultGroupForNewUsers\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": []\n}"}],"_postman_id":"b282485a-89af-4264-879d-1b783670a0ca"},{"name":"Group Call Capacity Management Group","id":"cda6402b-5e73-4db3-8678-93817694042b","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"maxActiveCallsAllowed\": 5,\n    \"maxIncomingActiveCallsAllowed\": 3,\n    \"maxOutgoingActiveCallsAllowed\": 3,\n    \"defaultGroupForNewUsers\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9d8f9156-d803-4f41-a11b-b08d060dbe5a","name":"Group Call Capacity Management Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"maxActiveCallsAllowed\": 5,\n    \"maxIncomingActiveCallsAllowed\": 3,\n    \"maxOutgoingActiveCallsAllowed\": 3,\n    \"defaultGroupForNewUsers\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:39:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"cda6402b-5e73-4db3-8678-93817694042b"},{"name":"Group Call Capacity Management Group","id":"6f441005-fdc6-4d59-8ff5-bb1dc3e53171","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"maxActiveCallsAllowed\": 5,\n    \"maxIncomingActiveCallsAllowed\": 3,\n    \"maxOutgoingActiveCallsAllowed\": 3,\n    \"defaultGroupForNewUsers\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n    \t{ \"userId\": \"9709580001\" }\n    ]\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c878502f-1922-442b-ab64-d27f0d8557db","name":"Group Call Capacity Management Group","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"maxActiveCallsAllowed\": 5,\n    \"maxIncomingActiveCallsAllowed\": 3,\n    \"maxOutgoingActiveCallsAllowed\": 3,\n    \"defaultGroupForNewUsers\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n    \t{ \"userId\": \"9709580001\" }\n    ]\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:25:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6f441005-fdc6-4d59-8ff5-bb1dc3e53171"},{"name":"Group Call Capacity Management Available Users","id":"ae22fe0e-e2e0-4c06-8edc-769fd90f058c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-capacity-management/users?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"2ee0d9ed-ecba-41d6-bac7-6c6821eb6474","name":"Group Call Capacity Management Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/call-capacity-management/users?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","call-capacity-management","users"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:22:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1233"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": 9709580001,\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"extension\": \"0001\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580002,\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"+1-9709580002\",\n        \"extension\": \"0002\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580003,\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"+1-9709580003\",\n        \"extension\": \"0003\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580004,\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"+1-9709580004\",\n        \"extension\": \"0004\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580005,\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"+1-9709580005\",\n        \"extension\": \"0005\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"ae22fe0e-e2e0-4c06-8edc-769fd90f058c"},{"name":"Group Call Capacity Management Group","id":"cbc5c5f0-0ebd-4ff8-8a46-58999341cd6d","request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-capacity-management?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test Group2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test Group2"}],"variable":[]}},"response":[{"id":"b523fd1d-65a9-4f8f-924c-2f69823cdfd8","name":"Group Call Capacity Management Group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/call-capacity-management?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test Group2","host":["{{url}}"],"path":["api","v2","groups","call-capacity-management"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test Group2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:26:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"cbc5c5f0-0ebd-4ff8-8a46-58999341cd6d"},{"name":"Group Call Capacity Management Group Users","id":"55864972-d620-4f11-a679-7fe071a6fa12","request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n    \t{ \"userId\": \"9709580001\" }\n    ]\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0f369c3f-b110-4b16-9d73-503c023cb347","name":"Group Call Capacity Management Group Users","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n    \t{ \"userId\": \"9709580001\" }\n    ]\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:31:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"55864972-d620-4f11-a679-7fe071a6fa12"},{"name":"Group Call Capacity Management Group Users","id":"1124d40a-0206-42aa-bf78-9025050c3435","request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n    \t{ \"userId\": \"9709580001\" }\n    ]\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-capacity-management","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9fdca566-719b-4f31-bc13-35f2fdbda08e","name":"Group Call Capacity Management Group Users","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test Group2\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n    \t{ \"userId\": \"9709580001\" }\n    ]\n}"},"url":"{{url}}/api/v2/groups/call-capacity-management/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 21:32:03 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"1124d40a-0206-42aa-bf78-9025050c3435"}],"id":"5a706b17-30c4-489f-879c-c66b39985a74","_postman_id":"5a706b17-30c4-489f-879c-c66b39985a74","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Center","item":[{"name":"Enterprise Call Center","id":"57e59a49-e3cc-4ff6-b3e4-3998e92b8582","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"c3ec3153-ec4e-4c7d-a206-f7f2af47653e","name":"Enterprise Call Center","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useSystemDefaultGuardTimer\": false,\n    \"enableGuardTimer\": true,\n    \"guardTimerSeconds\": 5,\n    \"useSystemDefaultUnavailableSettings\": false,\n    \"forceAgentUnavailableOnDNDActivation\": true,\n    \"forceAgentUnavailableOnPersonalCalls\": true,\n    \"forceAgentUnavailableOnBouncedCallLimit\": true,\n    \"numberConsecutiveBouncedCallsToForceAgentUnavailable\": 3,\n    \"forceAgentUnavailableOnNotReachable\": true,\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"57e59a49-e3cc-4ff6-b3e4-3998e92b8582"},{"name":"Enterprise Call Center","id":"469db998-048c-423f-98bd-88a722a66b02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"useSystemDefaultGuardTimer\": true,\n    \"enableGuardTimer\": false,\n    \"guardTimerSeconds\": 4,\n    \"useSystemDefaultUnavailableSettings\": true,\n    \"forceAgentUnavailableOnDNDActivation\": false,\n    \"forceAgentUnavailableOnPersonalCalls\": false,\n    \"forceAgentUnavailableOnBouncedCallLimit\": false,\n    \"numberConsecutiveBouncedCallsToForceAgentUnavailable\": 3,\n    \"forceAgentUnavailableOnNotReachable\": false,\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/enterprises/call-centers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1fced022-bed1-4aac-88fb-5e43ddaf65ab","name":"Group Call Centers Status","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"instances\":[\n\t\t{\"serviceUserId\":\"mock.cc.1\",\"isActive\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:36:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"469db998-048c-423f-98bd-88a722a66b02"},{"name":"Enterprise Call Center Routing Policy","id":"d6f0b436-0380-43a9-84c2-17a4343cb510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"c4209782-35a6-42a9-870f-e46eb6e10c55","name":"Enterprise Call Center Routing Policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/routing-policy?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","routing-policy"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"routingPolicy\": \"Longest Wait Time\",\n    \"callCenters\": [\n        {\n            \"serviceUserId\": \"call-center-1\",\n            \"name\": \"CC1-test-1\",\n            \"priority\": 1\n        },\n        {\n            \"serviceUserId\": \"call-center-2\",\n            \"name\": \"call centeww12340000\",\n            \"priority\": 2\n        },\n        {\n            \"serviceUserId\": \"standard-cc-1\",\n            \"name\": \"standard-cc-1\",\n            \"priority\": 3\n        },\n        {\n            \"serviceUserId\": \"call-center-1-test-1\",\n            \"name\": \"call-center-1-test-1\",\n            \"priority\": 4\n        },\n        {\n            \"serviceUserId\": \"9871515004\",\n            \"name\": \"mock.cc.1\",\n            \"priority\": 5\n        },\n        {\n            \"serviceUserId\": \"9871515005\",\n            \"name\": \"mock.cc.2\",\n            \"priority\": 6\n        },\n        {\n            \"serviceUserId\": \"9871515006\",\n            \"name\": \"mock.cc.3\",\n            \"priority\": 7\n        },\n        {\n            \"serviceUserId\": \"9871515007\",\n            \"name\": \"mock.cc.4\",\n            \"priority\": 8\n        },\n        {\n            \"serviceUserId\": \"9871515008\",\n            \"name\": \"mock.cc.5\",\n            \"priority\": 9\n        },\n        {\n            \"serviceUserId\": \"9871515009\",\n            \"name\": \"mock.cc.6\",\n            \"priority\": 10\n        },\n        {\n            \"serviceUserId\": \"mock.cc.7\",\n            \"name\": \"mock.cc.7\",\n            \"priority\": 11\n        },\n        {\n            \"serviceUserId\": \"Prithwidipta@abccorp.com\",\n            \"name\": \"Prithwidipta Samajpati\",\n            \"priority\": 12\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"d6f0b436-0380-43a9-84c2-17a4343cb510"},{"name":"Enterprise Call Center Routing Policy","id":"0728944f-d284-4b56-9da8-e36d58710dd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"routingPolicy\": \"Longest Wait Time\",\n    \"callCenters\": [\n        {\n            \"serviceUserId\": \"call-center-1\",\n            \"name\": \"CC1-test-1\",\n            \"priority\": 1\n        },\n        {\n            \"serviceUserId\": \"call-center-2\",\n            \"name\": \"call centeww12340000\",\n            \"priority\": 2\n        },\n        {\n            \"serviceUserId\": \"standard-cc-1\",\n            \"name\": \"standard-cc-1\",\n            \"priority\": 3\n        },\n        {\n            \"serviceUserId\": \"call-center-1-test-1\",\n            \"name\": \"call-center-1-test-1\",\n            \"priority\": 4\n        },\n        {\n            \"serviceUserId\": \"9871515004\",\n            \"name\": \"mock.cc.1\",\n            \"priority\": 5\n        },\n        {\n            \"serviceUserId\": \"9871515005\",\n            \"name\": \"mock.cc.2\",\n            \"priority\": 6\n        },\n        {\n            \"serviceUserId\": \"9871515006\",\n            \"name\": \"mock.cc.3\",\n            \"priority\": 7\n        },\n        {\n            \"serviceUserId\": \"9871515007\",\n            \"name\": \"mock.cc.4\",\n            \"priority\": 8\n        },\n        {\n            \"serviceUserId\": \"9871515008\",\n            \"name\": \"mock.cc.5\",\n            \"priority\": 9\n        },\n        {\n            \"serviceUserId\": \"9871515009\",\n            \"name\": \"mock.cc.6\",\n            \"priority\": 10\n        },\n        {\n            \"serviceUserId\": \"mock.cc.7\",\n            \"name\": \"mock.cc.7\",\n            \"priority\": 11\n        },\n        {\n            \"serviceUserId\": \"Prithwidipta@abccorp.com\",\n            \"name\": \"Prithwidipta Samajpati\",\n            \"priority\": 12\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/enterprises/call-centers/routing-policy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","routing-policy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9078252a-0aa3-42f1-ad0a-ec14f89c7e2b","name":"Enterprise Call Center Routing Policy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"routingPolicy\": \"Longest Wait Time\",\n    \"callCenters\": [\n        {\n            \"serviceUserId\": \"call-center-1\",\n            \"name\": \"CC1-test-1\",\n            \"priority\": 1\n        },\n        {\n            \"serviceUserId\": \"call-center-2\",\n            \"name\": \"call centeww12340000\",\n            \"priority\": 2\n        },\n        {\n            \"serviceUserId\": \"standard-cc-1\",\n            \"name\": \"standard-cc-1\",\n            \"priority\": 3\n        },\n        {\n            \"serviceUserId\": \"call-center-1-test-1\",\n            \"name\": \"call-center-1-test-1\",\n            \"priority\": 4\n        },\n        {\n            \"serviceUserId\": \"9871515004\",\n            \"name\": \"mock.cc.1\",\n            \"priority\": 5\n        },\n        {\n            \"serviceUserId\": \"9871515005\",\n            \"name\": \"mock.cc.2\",\n            \"priority\": 6\n        },\n        {\n            \"serviceUserId\": \"9871515006\",\n            \"name\": \"mock.cc.3\",\n            \"priority\": 7\n        },\n        {\n            \"serviceUserId\": \"9871515007\",\n            \"name\": \"mock.cc.4\",\n            \"priority\": 8\n        },\n        {\n            \"serviceUserId\": \"9871515008\",\n            \"name\": \"mock.cc.5\",\n            \"priority\": 9\n        },\n        {\n            \"serviceUserId\": \"9871515009\",\n            \"name\": \"mock.cc.6\",\n            \"priority\": 10\n        },\n        {\n            \"serviceUserId\": \"mock.cc.7\",\n            \"name\": \"mock.cc.7\",\n            \"priority\": 11\n        },\n        {\n            \"serviceUserId\": \"Prithwidipta@abccorp.com\",\n            \"name\": \"Prithwidipta Samajpati\",\n            \"priority\": 12\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/enterprises/call-centers/routing-policy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"routingPolicy\": \"Longest Wait Time\",\n    \"callCenters\": [\n        {\n            \"serviceUserId\": \"call-center-1\",\n            \"name\": \"CC1-test-1\",\n            \"priority\": 1\n        },\n        {\n            \"serviceUserId\": \"call-center-2\",\n            \"name\": \"call centeww12340000\",\n            \"priority\": 2\n        },\n        {\n            \"serviceUserId\": \"standard-cc-1\",\n            \"name\": \"standard-cc-1\",\n            \"priority\": 3\n        },\n        {\n            \"serviceUserId\": \"call-center-1-test-1\",\n            \"name\": \"call-center-1-test-1\",\n            \"priority\": 4\n        },\n        {\n            \"serviceUserId\": \"9871515004\",\n            \"name\": \"mock.cc.1\",\n            \"priority\": 5\n        },\n        {\n            \"serviceUserId\": \"9871515005\",\n            \"name\": \"mock.cc.2\",\n            \"priority\": 6\n        },\n        {\n            \"serviceUserId\": \"9871515006\",\n            \"name\": \"mock.cc.3\",\n            \"priority\": 7\n        },\n        {\n            \"serviceUserId\": \"9871515007\",\n            \"name\": \"mock.cc.4\",\n            \"priority\": 8\n        },\n        {\n            \"serviceUserId\": \"9871515008\",\n            \"name\": \"mock.cc.5\",\n            \"priority\": 9\n        },\n        {\n            \"serviceUserId\": \"9871515009\",\n            \"name\": \"mock.cc.6\",\n            \"priority\": 10\n        },\n        {\n            \"serviceUserId\": \"mock.cc.7\",\n            \"name\": \"mock.cc.7\",\n            \"priority\": 11\n        },\n        {\n            \"serviceUserId\": \"Prithwidipta@abccorp.com\",\n            \"name\": \"Prithwidipta Samajpati\",\n            \"priority\": 12\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"0728944f-d284-4b56-9da8-e36d58710dd8"},{"name":"Enterprise Call Center Agent Unavailable Codes","id":"ff14d742-5ad5-4288-b06b-1ae24c37cb85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","agent-unavailable-codes"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"3e9f66bc-f741-406c-9014-71c64b92d671","name":"Enterprise Call Center Agent Unavailable Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","agent-unavailable-codes"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"codes\": [\n        {\n            \"isActive\": true,\n            \"code\": 1001,\n            \"description\": 1001\n        },\n        {\n            \"isActive\": true,\n            \"code\": 1002,\n            \"description\": \"description 1002\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"ff14d742-5ad5-4288-b06b-1ae24c37cb85"},{"name":"Enterprise Call Center Agent Unavailable Codes","id":"cdc7f327-9f6a-44e4-b71b-9143d512c307","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"isActive\": true,\n    \"code\": 1003,\n    \"description\": 1003\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","agent-unavailable-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"657d8138-2f27-477b-8cd0-07ec80f93c0b","name":"Enterprise Call Center Agent Unavailable Codes","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"isActive\": true,\n    \"code\": 1003,\n    \"description\": 1003\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"description\": 1003,\n    \"code\": 1003,\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"cdc7f327-9f6a-44e4-b71b-9143d512c307"},{"name":"Enterprise Call Center Agent Unavailable Codes","id":"3003eefd-bc57-4466-8d87-65f68b8e6ebf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"code\": 1003,\n    \"description\": 1003\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","agent-unavailable-codes"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"e9b47352-0825-453b-b983-dc8a434edbf5","name":"Enterprise Call Center Agent Unavailable Codes","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"code\": 1003,\n    \"description\": 1003\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","agent-unavailable-codes"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"description\": 1003,\n    \"code\": 1003,\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"3003eefd-bc57-4466-8d87-65f68b8e6ebf"},{"name":"Enterprise Call Center Agent Unavailable Codes","id":"ff842f46-5179-4b64-943b-3072c7959f8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"code\": 1003,\n    \"description\": 1003\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes?serviceProviderId=ent.odin&code=1003","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","agent-unavailable-codes"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"code","value":"1003"}],"variable":[]}},"response":[{"id":"d77bfbfe-2613-48b2-9a90-e09a585f3ff8","name":"Enterprise Call Center Agent Unavailable Codes","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"code\": 1003,\n    \"description\": 1003\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes?serviceProviderId=ent.odin&code=1003","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","agent-unavailable-codes"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"code","value":"1003"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"codes\": [\n        {\n            \"isActive\": false,\n            \"code\": 1001,\n            \"description\": 1001\n        },\n        {\n            \"isActive\": true,\n            \"code\": 1002,\n            \"description\": \"description 1002\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"ff842f46-5179-4b64-943b-3072c7959f8a"},{"name":"Enterprise Call Center Agent Unavailable Codes Settings","id":"4a79d6ed-8366-4f94-924a-ae705fd8adb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes-settings?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","agent-unavailable-codes-settings"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"8171d969-2ddb-4864-922c-f86bf925011b","name":"Enterprise Call Center Agent Unavailable Codes Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes-settings?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","agent-unavailable-codes-settings"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableAgentUnavailableCodes\": true,\n    \"defaultAgentUnavailableCodeOnDND\": 1002,\n    \"defaultAgentUnavailableCodeOnPersonalCalls\": 1002,\n    \"defaultAgentUnavailableCodeOnConsecutiveBounces\": 1002,\n    \"defaultAgentUnavailableCodeOnNotReachable\": 1002,\n    \"forceUseOfAgentUnavailableCodes\": false,\n    \"codes\": [\n        {\n            \"isActive\": true,\n            \"code\": 1001,\n            \"description\": 1001\n        },\n        {\n            \"isActive\": true,\n            \"code\": 1002,\n            \"description\": \"description 1002\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"4a79d6ed-8366-4f94-924a-ae705fd8adb6"},{"name":"Enterprise Call Center Agent Unavailable Codes Settings","id":"0edf4da5-f6f1-4ea1-9e1b-32d8d62a7440","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableAgentUnavailableCodes\": true,\n    \"defaultAgentUnavailableCodeOnDND\": 1001,\n    \"defaultAgentUnavailableCodeOnPersonalCalls\": 1001,\n    \"defaultAgentUnavailableCodeOnConsecutiveBounces\": 1001,\n    \"defaultAgentUnavailableCodeOnNotReachable\": 1001,\n    \"forceUseOfAgentUnavailableCodes\": false,\n    \"codes\": [\n        {\n            \"isActive\": true,\n            \"code\": 1001,\n            \"description\": 1001\n        },\n        {\n            \"isActive\": true,\n            \"code\": 1002,\n            \"description\": \"description 1002\"\n        },\n        {\n            \"isActive\": true,\n            \"code\": 123,\n            \"description\": \"kumar\"\n        },\n        {\n            \"isActive\": true,\n            \"code\": 202,\n            \"description\": \"New Code\"\n        }\n\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes-settings?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","agent-unavailable-codes-settings"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"b4710ead-bee2-43ba-8edc-13007fae33c0","name":"Enterprise Call Center Agent Unavailable Codes Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableAgentUnavailableCodes\": false,\n    \"defaultAgentUnavailableCodeOnDND\": 1002,\n    \"defaultAgentUnavailableCodeOnPersonalCalls\": 1002,\n    \"defaultAgentUnavailableCodeOnConsecutiveBounces\": 1002,\n    \"defaultAgentUnavailableCodeOnNotReachable\": 1002,\n    \"forceUseOfAgentUnavailableCodes\": false,\n    \"codes\": [\n        {\n            \"isActive\": false,\n            \"code\": 1001,\n            \"description\": 1001\n        },\n        {\n            \"isActive\": true,\n            \"code\": 1002,\n            \"description\": \"description 1002\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/agent-unavailable-codes-settings?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","agent-unavailable-codes-settings"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableAgentUnavailableCodes\": false,\n    \"defaultAgentUnavailableCodeOnDND\": 1002,\n    \"defaultAgentUnavailableCodeOnPersonalCalls\": 1002,\n    \"defaultAgentUnavailableCodeOnConsecutiveBounces\": 1002,\n    \"defaultAgentUnavailableCodeOnNotReachable\": 1002,\n    \"forceUseOfAgentUnavailableCodes\": false,\n    \"codes\": [\n        {\n            \"isActive\": false,\n            \"code\": 1001,\n            \"description\": 1001\n        },\n        {\n            \"isActive\": true,\n            \"code\": 1002,\n            \"description\": \"description 1002\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"0edf4da5-f6f1-4ea1-9e1b-32d8d62a7440"},{"name":"Enterprise Call Center Enhanced Reporting","id":"8009b87f-991b-4e6e-8421-6018c40c8f1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"86ddaa1b-af65-441c-a044-3219abb6e7db","name":"Enterprise Call Center Enhanced Reporting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","enhanced-reporting"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"reportingServer\": \"Enhanced\"\n}"}],"_postman_id":"8009b87f-991b-4e6e-8421-6018c40c8f1d"},{"name":"Enterprise Call Center Enhanced Reporting","id":"09acf0e4-c6bb-42aa-a52c-4d1051f89025","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"reportingServer\": \"Enhanced\"\n}"},"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"d99e311b-58d5-4939-9e52-c31956613275","name":"Enterprise Call Center Enhanced Reporting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"reportingServer\": \"Enhanced\"\n}"},"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","enhanced-reporting"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"reportingServer\": \"Enhanced\"\n}"}],"_postman_id":"09acf0e4-c6bb-42aa-a52c-4d1051f89025"},{"name":"Enterprise Call Center Enhanced Reporting Branding","id":"b3be88d7-bf6f-40c4-9e61-f0e72d614c1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting-branding?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting-branding"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"f6b1c9e3-8b1c-44ec-b0b0-ff64f6f1519b","name":"Enterprise Call Center Enhanced Reporting Branding","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting-branding?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","enhanced-reporting-branding"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"brandingChoice\": \"Custom\",\n    \"brandingFileDescription\": \"branding.xsl\"\n}"}],"_postman_id":"b3be88d7-bf6f-40c4-9e61-f0e72d614c1d"},{"name":"Enterprise Call Center Enhanced Reporting Branding","id":"1363006f-8655-47e6-be4f-4388fa99fd96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"brandingChoice\": \"Custom\",\n    \"description\": \"branding-2.xsl\",\n    \"content\": \"PD94bWwgdmVyc2lvbiA9ICcxLjAnIGVuY29kaW5nID0gJ3V0Zi04Jz8+DQo8IS0tR2VuZXJhdGVkIGJ5IE9yYWNsZSBCSSBQdWJsaXNoZXIgMTEuMS4xLjUuMC0tPg0KPCEtLXhzbHQxLjAtY29tcGF0aWJpbGl0eS0tPg0KPHhzbDpzdHlsZXNoZWV0IHZlcnNpb249IjIuMCIgeG1sbnM6eHNsPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L1hTTC9UcmFuc2Zvcm0iIHhtbG5zOmZvPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L1hTTC9Gb3JtYXQiIHhtbG5zOm9yYT0iaHR0cDovL3d3dy5vcmFjbGUuY29tL1hTTC9UcmFuc2Zvcm0vamF2YS8iIHhtbG5zOnhkb2ZvPSJodHRwOi8veG1sbnMub3JhY2xlLmNvbS9veHAvZm8vZXh0ZW5zaW9ucyIgeG1sbnM6eGRveHNsdD0iaHR0cDovL3d3dy5vcmFjbGUuY29tL1hTTC9UcmFuc2Zvcm0vamF2YS9vcmFjbGUueGRvLnRlbXBsYXRlLnJ0Zi5YU0xURnVuY3Rpb25zIiB4bWxuczp4ZG94bGlmZj0idXJuOm9hc2lzOm5hbWVzOnRjOnhsaWZmOmRvY3VtZW50OjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOmJzaXI9Imh0dHA6Ly9zY2hlbWEuYnJvYWRzb2Z0LmNvbS9yZXBvcnQiPg0KICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPQ0FMRU5EQVIiPkdSRUdPUklBTjwveHNsOnBhcmFtPg0KICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPTE9DQUxFIj5lbi1VUzwveHNsOnBhcmFtPg0KICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPVElNRVpPTkUiPkdNVDwveHNsOnBhcmFtPg0KICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPREZPVkVSUklERSI+OzwveHNsOnBhcmFtPg0KICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPQ1VSTUFTS1MiPjs8L3hzbDpwYXJhbT4NCiAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET05GU0VQQVJBVE9SUyI+PC94c2w6cGFyYW0+DQogICA8eHNsOnBhcmFtIG5hbWU9Il9YRE9DSEFSVFRZUEUiPmltYWdlL3N2Zyt4bWw8L3hzbDpwYXJhbT4NCiAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET09VVFBVVEZPUk1BVCI+YXBwbGljYXRpb24vcGRmPC94c2w6cGFyYW0+DQogICA8eHNsOnBhcmFtIG5hbWU9Il9YRE9TVkdGT05URU1CRUQiPnRydWU8L3hzbDpwYXJhbT4NCiAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET0RFRkRBVEUiLz4NCiAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET0RFRlRJTUUiLz4NCiAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET0RFRk5VTSIvPg0KICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPREVGQ0MiLz4NCiAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET0NUWCI+IzwveHNsOnBhcmFtPg0KICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfWERPWFNMVENUWCIgc2VsZWN0PSJ4ZG94c2x0OnNldF94c2x0X2xvY2FsZSgkX1hET0NUWCwgJF9YRE9MT0NBTEUsICRfWERPVElNRVpPTkUsICRfWERPQ0FMRU5EQVIsICRfWERPREZPVkVSUklERSwgJF9YRE9DVVJNQVNLUywgJF9YRE9ORlNFUEFSQVRPUlMpIi8+DQogICA8eHNsOnBhcmFtIG5hbWU9Il9CV1hET09SQVRJTUVGT1JNQVRfTUlOUCIgc2VsZWN0PSInSEg6TUkgUE0nIi8+DQogICA8eHNsOnBhcmFtIG5hbWU9Il9CV1hET09SQVRJTUVGT1JNQVRfU0VDUCIgc2VsZWN0PSInSEg6TUk6U1MgUE0nIi8+DQogICA8eHNsOnBhcmFtIG5hbWU9Il9CV1hET09SQURBVEVGT1JNQVQiIHNlbGVjdD0iJ01NL0REL1lZWVknIi8+DQogICA8eHNsOnZhcmlhYmxlIG5hbWU9InRpdGxldmFyIiBzZWxlY3Q9IidSVEYgVGVtcGxhdGUnIiB4ZG9mbzp0b2JldHJhbnNsYXRlZD0idHJ1ZSIvPg0KICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfWERPRk9QT1MiIHNlbGVjdD0iJyciLz4NCiAgIDx4c2w6dmFyaWFibGUgbmFtZT0iX1hET0ZPUE9TMiIgc2VsZWN0PSJudW1iZXIoMSkiLz4NCiAgIDx4c2w6dmFyaWFibGUgbmFtZT0iX1hET0ZPVE9UQUwiIHNlbGVjdD0ibnVtYmVyKDEpIi8+DQogICA8eHNsOnZhcmlhYmxlIG5hbWU9Il9YRE9GT09TVE9UQUwiIHNlbGVjdD0ibnVtYmVyKDApIi8+DQogICA8eHNsOnRlbXBsYXRlIG1hdGNoPSIvIj4NCiAgICAgIDxmbzpyb290IHhkb2ZvOm5mLXNlcGFyYXRvcj0ieyRfWERPTkZTRVBBUkFUT1JTfSI+DQogICAgICAgICA8Zm86bGF5b3V0LW1hc3Rlci1zZXQ+DQogICAgICAgICAgICA8Zm86c2ltcGxlLXBhZ2UtbWFzdGVyIG1hc3Rlci1uYW1lPSJtYXN0ZXIwIiBtYXJnaW4tbGVmdD0iNjYuNnB0IiBtYXJnaW4tcmlnaHQ9IjY2LjZwdCIgcGFnZS1oZWlnaHQ9IjYxMi4wcHQiIHBhZ2Utd2lkdGg9Ijc5Mi4wcHQiIG1hcmdpbi10b3A9IjM2LjBwdCIgbWFyZ2luLWJvdHRvbT0iMzYuMHB0Ij4NCiAgICAgICAgICAgICAgIDxmbzpyZWdpb24tYmVmb3JlIHJlZ2lvbi1uYW1lPSJyZWdpb24taGVhZGVyIiBleHRlbnQ9IjM2LjBwdCIvPg0KICAgICAgICAgICAgICAgPGZvOnJlZ2lvbi1ib2R5IHJlZ2lvbi1uYW1lPSJyZWdpb24tYm9keSIgbWFyZ2luLXRvcD0iMzYuMHB0IiBtYXJnaW4tYm90dG9tPSIzNi4wcHQiLz4NCiAgICAgICAgICAgICAgIDxmbzpyZWdpb24tYWZ0ZXIgcmVnaW9uLW5hbWU9InJlZ2lvbi1mb290ZXIiIGV4dGVudD0iMzYuMHB0IiBkaXNwbGF5LWFsaWduPSJhZnRlciIvPg0KICAgICAgICAgICAgPC9mbzpzaW1wbGUtcGFnZS1tYXN0ZXI+DQogICAgICAgICA8L2ZvOmxheW91dC1tYXN0ZXItc2V0Pg0KICAgICAgICAgPGZvOnBhZ2Utc2VxdWVuY2UgbWFzdGVyLXJlZmVyZW5jZT0ibWFzdGVyMCI+DQogICAgICAgICAgICA8Zm86dGl0bGU+DQogICAgICAgICAgICAgICA8eHNsOnZhbHVlLW9mIHNlbGVjdD0ieGRveHNsdDpvbmUoJHRpdGxldmFyKSIgeGRvZm86ZmllbGQtbmFtZT0iJHRpdGxldmFyIi8+DQogICAgICAgICAgICA8L2ZvOnRpdGxlPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfUFciIHNlbGVjdD0ibnVtYmVyKDc5Mi4wKSIgeGRvZm86YWx0PSJpbnRlcm5hbCIvPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfUEgiIHNlbGVjdD0ibnVtYmVyKDYxMi4wKSIgeGRvZm86YWx0PSJpbnRlcm5hbCIvPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfTUwiIHNlbGVjdD0ibnVtYmVyKDcyLjApIiB4ZG9mbzphbHQ9ImludGVybmFsIi8+DQogICAgICAgICAgICA8eHNsOnZhcmlhYmxlIG5hbWU9Il9NUiIgc2VsZWN0PSJudW1iZXIoNzIuMCkiIHhkb2ZvOmFsdD0iaW50ZXJuYWwiLz4NCiAgICAgICAgICAgIDx4c2w6dmFyaWFibGUgbmFtZT0iX01UIiBzZWxlY3Q9Im51bWJlcig3Mi4wKSIgeGRvZm86YWx0PSJpbnRlcm5hbCIvPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfTUIiIHNlbGVjdD0ibnVtYmVyKDcyLjApIiB4ZG9mbzphbHQ9ImludGVybmFsIi8+DQogICAgICAgICAgICA8eHNsOnZhcmlhYmxlIG5hbWU9Il9IWSIgc2VsZWN0PSJudW1iZXIoMzYuMCkiIHhkb2ZvOmFsdD0iaW50ZXJuYWwiLz4NCiAgICAgICAgICAgIDx4c2w6dmFyaWFibGUgbmFtZT0iX0ZZIiBzZWxlY3Q9Im51bWJlcigzNi4wKSIgeGRvZm86YWx0PSJpbnRlcm5hbCIvPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfU0VDVElPTl9OQU1FIiBzZWxlY3Q9InN0cmluZygnbWFzdGVyMCcpIiB4ZG9mbzphbHQ9ImludGVybmFsIi8+DQogICAgICAgICAgICA8Zm86c3RhdGljLWNvbnRlbnQgZmxvdy1uYW1lPSJyZWdpb24taGVhZGVyIi8+DQogICAgICAgICAgICA8Zm86c3RhdGljLWNvbnRlbnQgZmxvdy1uYW1lPSJyZWdpb24tZm9vdGVyIi8+DQogICAgICAgICAgICA8Zm86ZmxvdyBmbG93LW5hbWU9InJlZ2lvbi1ib2R5Ij4NCiAgICAgICAgICAgICAgIDxmbzpibG9jayB4ZG9mbzpsaW5lLXNwYWNpbmc9Im11bHRpcGxlOjEzLjhwdCIgb3JwaGFucz0iMiIgd2lkb3dzPSIyIiBsaW5lZmVlZC10cmVhdG1lbnQ9InByZXNlcnZlIiB0ZXh0LWFsaWduPSJzdGFydCIgcGFkZGluZy1ib3R0b209IjEwLjBwdCIgZW5kLWluZGVudD0iNS40cHQiIHBhZGRpbmctdG9wPSIwLjBwdCIgc3RhcnQtaW5kZW50PSI1LjRwdCIgaGVpZ2h0PSIwLjBwdCIgZm9udC1zaXplPSIxMS4wcHQiIGZvbnQtZmFtaWx5PSJDYWxpYnJpIj4NCiAgICAgICAgICAgICAgICAgIDxmbzppbmxpbmUgaWQ9Intjb25jYXQoJ3BhZ2UtdG90YWwtJywgJF9TRUNUSU9OX05BTUUsICRfWERPRk9QT1MpfSIvPg0KICAgICAgICAgICAgICAgICAgPGZvOmlubGluZSBpZD0ie2NvbmNhdCgncGFnZS10b3RhbCcsICRfWERPRk9QT1MpfSIvPg0KICAgICAgICAgICAgICAgPC9mbzpibG9jaz4NCiAgICAgICAgICAgIDwvZm86Zmxvdz4NCiAgICAgICAgIDwvZm86cGFnZS1zZXF1ZW5jZT4NCiAgICAgIDwvZm86cm9vdD4NCiAgIDwveHNsOnRlbXBsYXRlPg0KICAgPHhzbDp0ZW1wbGF0ZSBuYW1lPSJic2lyOmdldEhlYWRlciI+DQogICAgICA8eHNsOnBhcmFtIG5hbWU9Il9YRE9GT1BPUyIvPg0KICAgICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPRk9QT1MyIi8+DQogICAgICA8eHNsOnBhcmFtIG5hbWU9Il9YRE9GT09TVE9UQUwiLz4NCiAgICAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET0ZPVE9UQUwiLz4NCiAgICAgIDx4c2w6cGFyYW0gbmFtZT0iX1NFQ1RJT05fTkFNRSIvPg0KICAgICAgPGZvOmJsb2NrIHhkb2ZvOmxpbmUtc3BhY2luZz0ibXVsdGlwbGU6MTMuOHB0IiBvcnBoYW5zPSIyIiB3aWRvd3M9IjIiIGxpbmVmZWVkLXRyZWF0bWVudD0icHJlc2VydmUiIHRleHQtYWxpZ249InN0YXJ0IiBwYWRkaW5nLWJvdHRvbT0iMC4wcHQiIGVuZC1pbmRlbnQ9IjUuNHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiPg0KICAgICAgICAgPGZvOnRhYmxlIHN0YXJ0LWluZGVudD0iMC4wcHQiIHN0eWxlLWlkPSJ0czI1IiBzdHlsZS1uYW1lPSJUYWJsZSBHcmlkIiB4ZG9mbzphbGlnbj0ic3RhcnQiIHhkb2ZvOnRhYmxlLXN1bW1hcnk9IlRlbXBsYXRlIFRhYmxlIDIiIHhkb2ZvOnJvdy1oZWFkZXItY291bnQ9IjAiPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfWERPRk9QT1MyIiBzZWxlY3Q9Im51bWJlcigxKSIvPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfWERPRk9UT1RBTCIgc2VsZWN0PSJudW1iZXIoMSkiLz4NCiAgICAgICAgICAgIDxmbzp0YWJsZS1jb2x1bW4gY29sdW1uLXdpZHRoPSIyNzQuOHB0Ii8+DQogICAgICAgICAgICA8Zm86dGFibGUtY29sdW1uIGNvbHVtbi13aWR0aD0iMzg0LjBwdCIvPg0KICAgICAgICAgICAgPGZvOnRhYmxlLWJvZHk+DQogICAgICAgICAgICAgICA8Zm86dGFibGUtcm93Pg0KICAgICAgICAgICAgICAgICAgPGZvOnRhYmxlLWNlbGwgcGFkZGluZy1lbmQ9IjUuNHB0IiBwYWRkaW5nLWJvdHRvbT0iMC4wcHQiIHBhZGRpbmctc3RhcnQ9IjUuNHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiIHZlcnRpY2FsLWFsaWduPSJ0b3AiIGhlaWdodD0iNTguOXB0IiBudW1iZXItY29sdW1ucy1zcGFubmVkPSIxIj4NCiAgICAgICAgICAgICAgICAgICAgIDxmbzpibG9jayBvcnBoYW5zPSIyIiB3aWRvd3M9IjIiIGxpbmVmZWVkLXRyZWF0bWVudD0icHJlc2VydmUiIHRleHQtYWxpZ249InN0YXJ0IiBwYWRkaW5nLWJvdHRvbT0iMC4wcHQiIGVuZC1pbmRlbnQ9IjAuMHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiIHN0YXJ0LWluZGVudD0iMC4wcHQiIGhlaWdodD0iMC4wcHQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGZvOmluc3RyZWFtLWZvcmVpZ24tb2JqZWN0IGNvbnRlbnQtdHlwZT0iaW1hZ2UvcG5nIiB3aWR0aD0iMjYyLjVwdCIgaGVpZ2h0PSI1Ni4yNXB0IiB4ZG9mbzphbHQ9IkFuIEltYWdlIiB4ZG9mbzppbWFnZS11aWQ9ImE5Y2NkNTlhNjljMzc2MTYxYTBlOTVkNWIxODA5YTE5Ij5pVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBVjRBQUFCTENBWUFBQUE0UisrR0FBQUFHWFJGV0hSVGIyWjBkMkZ5DQpaUUJCWkc5aVpTQkpiV0ZuWlZKbFlXUjVjY2xsUEFBQUErbHBWRmgwV0UxTU9tTnZiUzVoWkc5aVpTNTRiWEFBDQpBQUFBQUR3L2VIQmhZMnRsZENCaVpXZHBiajBpNzd1L0lpQnBaRDBpVnpWTk1FMXdRMlZvYVVoNmNtVlRlazVVDQpZM3ByWXpsa0lqOCtJRHg0T25odGNHMWxkR0VnZUcxc2JuTTZlRDBpWVdSdlltVTZibk02YldWMFlTOGlJSGc2DQplRzF3ZEdzOUlrRmtiMkpsSUZoTlVDQkRiM0psSURVdU15MWpNREV4SURZMkxqRTBOVFkyTVN3Z01qQXhNaTh3DQpNaTh3TmkweE5EbzFOam95TnlBZ0lDQWdJQ0FnSWo0Z1BISmtaanBTUkVZZ2VHMXNibk02Y21SbVBTSm9kSFJ3DQpPaTh2ZDNkM0xuY3pMbTl5Wnk4eE9UazVMekF5THpJeUxYSmtaaTF6ZVc1MFlYZ3Ribk1qSWo0Z1BISmtaanBFDQpaWE5qY21sd2RHbHZiaUJ5WkdZNllXSnZkWFE5SWlJZ2VHMXNibk02ZUcxd1RVMDlJbWgwZEhBNkx5OXVjeTVoDQpaRzlpWlM1amIyMHZlR0Z3THpFdU1DOXRiUzhpSUhodGJHNXpPbk4wVW1WbVBTSm9kSFJ3T2k4dmJuTXVZV1J2DQpZbVV1WTI5dEwzaGhjQzh4TGpBdmMxUjVjR1V2VW1WemIzVnlZMlZTWldZaklpQjRiV3h1Y3pwNGJYQTlJbWgwDQpkSEE2THk5dWN5NWhaRzlpWlM1amIyMHZlR0Z3THpFdU1DOGlJSGh0Ykc1ek9tUmpQU0pvZEhSd09pOHZjSFZ5DQpiQzV2Y21jdlpHTXZaV3hsYldWdWRITXZNUzR4THlJZ2VHMXdUVTA2VDNKcFoybHVZV3hFYjJOMWJXVnVkRWxFDQpQU0oxZFdsa09qVkVNakE0T1RJME9UTkNSa1JDTVRFNU1UUkJPRFU1TUVRek1UVXdPRU00SWlCNGJYQk5UVHBFDQpiMk4xYldWdWRFbEVQU0o0YlhBdVpHbGtPamd3TXpGR09EZzROVEpCT0RFeFJUUkNOalF5UlVVeVJUbEZNME0yDQpRak15SWlCNGJYQk5UVHBKYm5OMFlXNWpaVWxFUFNKNGJYQXVhV2xrT2pnd016RkdPRGczTlRKQk9ERXhSVFJDDQpOalF5UlVVeVJUbEZNME0yUWpNeUlpQjRiWEE2UTNKbFlYUnZjbFJ2YjJ3OUlrRmtiMkpsSUVsc2JIVnpkSEpoDQpkRzl5SUVOVE5pQW9WMmx1Wkc5M2N5a2lQaUE4ZUcxd1RVMDZSR1Z5YVhabFpFWnliMjBnYzNSU1pXWTZhVzV6DQpkR0Z1WTJWSlJEMGllRzF3TG1scFpEbzBPVGxHTkRkRk4wRTJOVEpGTkRFeFFUQTVPVGhHTXpZMU9EUTFPVUZHDQpOaUlnYzNSU1pXWTZaRzlqZFcxbGJuUkpSRDBpZUcxd0xtUnBaRG8wT1RsR05EZEZOMEUyTlRKRk5ERXhRVEE1DQpPVGhHTXpZMU9EUTFPVUZHTmlJdlBpQThaR002ZEdsMGJHVStJRHh5WkdZNlFXeDBQaUE4Y21SbU9teHBJSGh0DQpiRHBzWVc1blBTSjRMV1JsWm1GMWJIUWlQbEJ5YVc1MFBDOXlaR1k2YkdrK0lEd3ZjbVJtT2tGc2RENGdQQzlrDQpZenAwYVhSc1pUNGdQQzl5WkdZNlJHVnpZM0pwY0hScGIyNCtJRHd2Y21SbU9sSkVSajRnUEM5NE9uaHRjRzFsDQpkR0UrSUR3L2VIQmhZMnRsZENCbGJtUTlJbklpUHo1cEdDTkNBQUFaaDBsRVFWUjQydXhkYll4YzExbCs3OTExDQo0cldUZUdMWlNkM1E5VmlDaUJKS1prc2JwQWpoV1VHaG9CTHZJcUQ4SVo2UnFLQkFzUWQrVUtsU2QwZjhLU3BsDQoxN1JVRUVBN2hrcFVxT0Exb2tBaDFZNzVLRzBSN0pna2JmT2g3Tmd1SW8yVGVKTDRJMTU3NTNMT3pIdnVuSHZtDQozSFBQL1pqWkdmdDk1T3ZadVhQdlBmZDhQZmU1NzNuUGV4elA4OEFXbTMvNmpqejdtR1BiWWJZVjJKYUhNY0svDQp2TFVYL3VQNmJuamg1Zzc0NnRZa3VJNEQ3Qjk0MHFmclFOMXhvY0grUHYxTTVVdDFJQkFJaEl6aDJCQXZJOXdpDQoremlHcER0V3VIQnpDazVmMlF1bnJ1MkVsejBYSE1hc0hpUFpIdW15UXVCL3lKK3VUOFJOUnNJbjJaZmxwMzc5DQpIMXJVWEFnRXdzQ0pGeFh1MGpnU0xzZktHd2ZnTDY3c2dvdU1jQVdoZGpJdFZLNXJKRjJ1ZnNWeExiYXovRCsvDQordmVyMUdRSUJNTEFpSmVSTGlmYkZiYmx4azdsM3BpQ2hkZmVCbCsvT2RGaDJRNm45cE5wUi9VSzllc2g2UW9GDQo3TXJIdS80MVZ0bSs4dGxmL2lLcFh3S0JrQzN4TXRJdEllbU9IYjYxZVJkOCtPTDljQkZRM2VvVnJFL0lQdWtpDQp3Ym9nQ0RoSXVyNTV3b1VHTzJKMi9VTi9SK1JMSUJBU3dWVjNYUCtUOFNmZFZ6eGhVdWlTS2lnS0ZxUlBUekk5DQo4TUx3ZkJ0d1ArbDJMK3NVR0RHdnpmelpUK2VvK1JBSWhOVEVlLzJQcCtjWXU2eDRiVVl5akpIRU5nNTRmV3VIDQpUN3JDWE9DNXZVRTBrQlFzLzJ3elJkelo3UVovVTFVdzRIZm9LVjVPMW94OFlZMmFENEZBU0VXODF6ODduV2RzDQp0TUkyNkc1T2QrTkVOZ1pFL1BGWDN3NHZTNlFMc2txVjNjYTRxZ1ZCdE1wdlFnV0xnVGhoZ3ZCVk1aN2JQYS93DQpucE9QTFZJVEloQUlpWW1YRVNwVHVwRHJFYSswZWFOTnhGKzhzaCtlM055QkEyQk93SVBCbFVoVEtGaFp5VG9oDQpkbC9vSHVJVGJaZVllMytqNldMaFBaODdVcUJtUkNBUVloUHZXMzl3c01oSXRlaVRhbWVEenRZaDNxM1JKV0p1DQpZdmhVNng2ZlFBWHB5clpiVHpFWGdPVEI0TnQ5UVZHODRqZWZhTHZuK2ZiZm5oL3dFalVqQW9FUVgvRjZzTkN2DQpkQ1ZTUlNMdUVxNEZFUStSaFAvOHpmdmdaWlN4cm1RYU1McU5TUk1uMUVFM0o0UjBPK2U3cWhkRTUzdnh2WDg1DQpsNmVtUkNBUXJJbjNyZDgveUcyN1JaOVVCWkY2L2NUcXRTT0kySU9oMm9mNXJMUW5MazkxelFMQ0Jxc2hVeS9FDQpiU3lnWUNVUEJrRFNCVURTeGV2ekFibCtHM0xIQkhHTW1oS0JRTEFtWHM5ejVyd09VYXJrcVZPMU1qRnJpRGpNDQpOREVnSXY3VXBmdDZIZ3hJaE9yRUI1UGJXSmdIZ3lkTUR5NE9yTGs5TWc3WWtIMnp3M2pPN0NNUUNOdGxhbWpEDQpZVTZPM2xhUVNDT0p1RzBnWWcrQ1JOek9ub2pQWE51TEEybzl0ekhQMW0wczFJT2hSNllPZWpENGcyNUNJc3QyDQpZdjk4eUQveWhaOGhjd09CUUxEQ0pHT203cWk4Z3dUYUhkRHZEbFFKcm5HODdtK2E0L3EraS9kK1J5SlN4L04zDQorK2VJVHdmdy9SNTY1emhlNEZJcStJRGFwOS9JOWJtTnVYMXVZK0M3alRrR0R3WmZEVVBQTmd5cUJ3Tkk5bUpYDQpWdG0rSFppWFk1T2FGSUZBc0ZHOGVWL1ZocWpiUGpYc1JhamZBUTNVQ1NML215djc0Tm10aVQ2M01SVGVrdHVZDQpZM1FiQzNnd1FIQXdUWEViNjVvZEJJbERjSFliRWorNWxSRUlCRHZGeTBuUWNTVGxxcXBZVDFXblhaS1NWV3VmDQpJbGJQQStrNzlBaXY5OTNyM29PblU4VFNnUTRQZ0xNVFBuZDFWOEJ0ekNid0RVaksxWVdldVNITWc4SHBkeHREDQpkZXo0djRFNFh0aCtNOEk3QzQveTZjamNic3pORjQxdk5yNUNVZEVJTnUwbUQ3MUlncXVzM2RBYldQeCtKK0tNDQpkL29lMjFyWUJ6T056VElwVkdXSDlZUmE5R3pJVTBQRStOMlJUQVgrZmdpNUZwb2FJb2tZdnoveDV2NXVYTjBZDQpibU85U1JUOWdXK2NFTkoxdElOdTZMTG0yMzJEWGc0WmRwNTFrS0xDc1gxMVZ2R3oxRFVJaG5aVGdtQ01sU1cyDQpyOHphVFkxS0o3THNpdXhqZ1cxRnd6RlZWcGFMV1pvYUFnTmV2amxnQzRJbWdiN0J0SEJ6ZzIrYThDd0g2a3dlDQpFOUpBM1g5ZjN3T3JtM2VHQnI0QjNRUUlzQXA4RTdUMU9rRkNWVHdZZ3FTTHY4RkVab3AzQ2ZwRGNSWlp4UituDQpMa0l3S0RYZFJKNFZmSkFUd3N1T2w5dWFpWFFSQzlrcTNpM0ZQT0QwekFFZE5ldEk4bFJWeEVZVkM5cUJ1dTZsDQpQZTF4VVFOMXYzdDViMkFRVGZWZ0VJTnE2bThtdHpFcDhFM0FiVXlRck96eDBKMUVvU0h1Q2FlVFRrWUlhd0I4DQp1YVZsNmlvRURRb1FIamViRXkrWkhQU2t5OFdNcmFCcFJqejRTdmkxWm1PV21HU0UxbVNzazlkNkhQaWZUcytzDQpvQ1BpTU5MMTlOYzBla3lBbm9qL2VuTS9mTU9ia0FnMDZNSFFGclpiMVlNaEpQQk5RTUZxM01hQ0pndmZiYXg3DQp2Q3ZaZHRuZjdTN3BOakpxRDdtWSt3a0VRckszaElVUWdqMkovVG1QL1c0UDIwNFlMbmRLRWt3TDdOcUhvc2lYDQp1NU0xR00va1BZWDh3bDIvSkNJRzZObUhaU0xPZUtEdTlmWWsvTkZiZDJ2Y3hvSWtHaFg0cG5jYnNqOXZoTnNZDQo5TG1OK2RPRk82VGJNekUwcURrVENHT0Rra2JNY0xWYVR2bVdLZ2JvNnFZVFhNWTBaM1EyVnhFa3grajZwYmlMDQorYmJaTFFnRzJURk5SMWFPMFUza2VHTHpQcmpZbGFLSzIxai9lbW5KQXQ5bzNNWWNKRjFYY1JzVGtjcGN3ZmJkDQpwK1RYZnVxdjZIV09RQmdmSEZHVmJrTFNUUVFYdHB4VnRobEowV3RIRUxFSDVwbHBTUWJxSkNLdTM5elprQWUrDQpoQ0xWUlJ0TEZ2Z0dnbDRRNk1FQUlXNWp6a1QzM0hiUHJFdnVYZ1RDZUtHb2ZEOHh6TVRkM1o5NGtkdDRWMzJ5DQozTUl0TkZpT1JNTHExT0F3SXZaU2VFeDRVUHMydVBQcWVtbGhibU1RNGpiV0YvakdNUWUrTWJtTmVYanQ3YW8wDQpBb0dRT1lacUt1eSt2N2NaY2FqRTZXbUl1QjJoaU1PSXVHMGlZZ2dTY2ZENkxmYTk4dXpIdnR4a1pGaTFXUzlODQpuZmpRSC9pbWQxNUU0QnRwZFlxZzI1aEN1blV5TXhBSWhEaVk1UC90L3VTTDllOTg1cEhWM2MxWHVyTmVQTW1qDQp5NThBNFVpRFhsN3dOMlV3ekZNRzFxd0c2dlFlRTlXcDMyNTJSZ2NaMXkwendqdkdQblBDZzhHNFhwb0wvWUZ2DQpGTGN4TmZDTjZzSGdCS2NFaDdtTmxVZWhJdDlaZUZSMktXcDlzL0dWc1Ivc1UvTFVVU1ZaenlBYTRiem5vVHVxDQpmdHZsL2JZaFhvNzdIL3ZQeXVhVDMxWGNmSHBIenVkWXlWWE1DUkNub3hDdVFzUmdJR0t3OXBob1RIMXN3L2RiDQovY1pIbjJ3OTlNbjNWZGdoSzlyQU40YjEwdnpBTnhBdjhJM3ZIeHgwRzVOUjNVNjFpN09Wam1yc1ZmeTNqaHBuDQoyMm13OUMwMHBMRUFQWC9RaWpxRkdVbUNIek9IUk5uQ05Dc0ppRmJrcHhCeVRFdksxMnBXWkNSTnQzMFk4eHJtDQpHMXZIY2ppVFpmcDREMFhNLzV3dWJmWjdFOU0vTWNnSEs1WkZVU0Yrd0h3M0JwVTI1bCswNWNOU211ZlFGRkMvDQpWUjQramlmSFluemFXYnoydHdjWHRpNjZXZ0lOa0tlT09FRWlZcFZjUTRqWkNVOW5kdGZITitycURULzBleisrDQp4bjRyT3E3QmJVd3ptT1lZQXQ5MEprVm9QQmdjY2U1RXdHMU1nRGVBUTR4NFd4azN2ckRnbVA2MFlXeWdLNXFPDQpFWVlXZHRiRm1QZkNDZUNVNXFkWmRxMjZkTXhLQ0VsWlRiTzBtYkpweWhmYmxwTjBTUFRsUEk1a2wwOVFYYW5TDQpUNW4vR2o0RVczaCsyS3JYZmwxWjF2ZEMyRU5QeVRkLytKNU9HMGRFODlDT3dpcTI1WHJNZEJZaCtleXpGcFoxDQpEYS9GMjB5YUpiOXFnZVhkNFI1WW52clpjMDEzWHp2Y1BvdjdoVDNYMDNvNE9CQVlySXZqTWRIZGFqclNSVUt1DQo2TnpHWElBazY2WDVnVzkwSGd5Q2RFRS9LNjJTTmVuR1VLQnJNWW1pNHl6T3psMURzckhGTWROK2laakRybms0DQppdmpZdGdKMlV6WkQ4OFcyZFNTZnVGaVQxRHlrVEwrUXNENFhFK2EvbENaZFRUMmN3cm9zV09hYnAzK0tuYmVCDQpiVEpKbXB5OE5rRHZVeHNHM3ViV3NDM0h5WHVhS2IvcWxPeTA2eXlXZ3NRNzdiVmdKMVIyL2Z3NWNQZDd3Y0cwDQpNSStGcmVEQW1xZnpjUEJpZVV5MDJGWU51K05uZnV1Zkd1eHlOVWV6MmtTQzlkS01IZ3dhdHpGZmZUTFNyVzBUDQo2YTZrdUVRUkcyM2FXWEE1VkNvcmFUbzdFazRwZzZMSlk3NUtNZEtmc3lTWk9Pbm5ZNWJCU2twQ3lHTVpwczNIDQpLWURFcTZoMDJrR2NXQ0pZVG10Z1AxM1gxSlp0Nnp5dFNiQ1o0YlZhYnQrdWFXOFY3b1Q2cnNlYmNNZTdieGdKDQpWMHVnTWhFTEw0Y3RBeEgzKys2ZTJQMDdHOGFNc1p1dU1JWGFDbHN2RFRTQmIzUnVZNzJCT2RBR3Z0RzRqZmxxDQpkeHZNUW9XVXBDdGZKd3Z5WGJGUUtjMEkwczA2aHZGS2pJNll6emp0WEloWkpveDhqbWYwME1tbElXKzhqNkttDQozaXBvcHVBZDRGNytOKzRMTXkwY3NVeVAxL2w2U04xek8yNFYwK0xiakpSdUl5VHZ0blUrai9kZUIvMnNzb2IwDQptN3J4ODhvWlhtcythT01WT08vazhSVUE0TUpkY1BYTCsyRHJPMDV3VUV5MTE0YnQxOWlCbmZEam03cy84ZUloDQptd3A4MTZmZmY1eVI1NUkya0kwZitDWVlnMEYxRytzTGZPTTZKcmN4M3o3RDFPN0FQQmtNTnQ0dzhNbzhnMy92DQpBY1BBbElMbHFNRXYvam9YOGdyY3NpVGRXVjFNV0hiZGRVczdJcy9iV2Z6K01QUmlwVVloMHE2SnFtc2pvbHhWDQpvclpKT3pJVW8wUStOaXFMMzhjNXFReUtFQzl1aDdFczJMMWNVcTdYd0hOYUVXOHJ4OUhrbEl1Ujd4em1PNi9KDQpaOW1pem9yNG1xOXJPL054N00yYWZqWWIxMjZjNWxxVDJyM1RYcE9SNzNLbmNOOXhHWGFWTG9QMy9MMXcvYW03DQo0Y2J6aytoOTRQVVRNVUJJTVBQZ2ZvUEhoRFdoUGZXUmYxeitnVC84eWFPTUtBdXEyMWhZNEJ1d0NYempoSG93DQpDRExZRHJXckEyOWtsUkJpRTJZQWs5M3dPRHZ1Uk1KZzJUa0RVZkQ3T2hQV0NkQ21XWWdnbTJwWUo0N29mTEx5DQpuVEdSQjg4M08yWWVlb05KdktNSVQ0bW1nYXhMRVFxVGsxR1VHV3JKZ25CTlpWQUNmZmpRdUlTaEkvSFpxSUZDDQovSDJSbmIrTVpXZnJ2cWdiRUs0amFVYU9seUNaemFDSnBxU3A4N0h4ZXBnMC9GWUZ5ZWp0Zk04bDJNbTN0eGhSDQpYYmdYYnI0MEJUZS92YU5mMllKQjhZSVNKRjNhNzAxQWMrb0Q1Nkg5Z2xQa0lyemREaTczdzAwV2JmeTc4eHY3DQovSTBIZnVqMGwxN2RVM2orNWtRd0tIck05ZEljMVcwc1BMWnVkVHNHMU9LcUtpU08yWkFHS21NQnN2RkROaEtGDQpvbmlPR1E2SlZGc1JuVTlXcDF5UkxVWjA1RldJTWQwYnk1VVRUaDNDdlFnS25LQU41RjJNZUNEYWxFRU43OEYyDQpNTXoyQVJxTHVQQllLNVdJK1o3VDVIVStMbG55bUFyb0xsbFM4cklFSStKWG41eDQrVURiZWFmU1oxZmMyU1hoDQpIWHpMNmk2NjlsMis5dHRhbk5OK0x2ODErTDQ5RDhLSG4vdnV3R0NhNDBZRXZ1bGZMMDBYK0thdlF6RFNIWVY0DQp1QlhiVlFWQ0dxaU1FdnU5a2xJbFJCS0ZyTElOS2kzT2RXenlkaXlLZUpPQ2t6OWZrY0NnZkUwTG54NjFNTS9ZDQpxRCtoMk5kVEtOK0M1WnRNRmxqU3ZEM09wMmg3RmJ6L2d0S2VxK093NUpGci9IWGFxOWsrMFlZRjFTVDlVTzQ1DQplQ3gzTmVEQkFHRnVZeEdCYi9nUGJjZFkwZHNOcmtpV0V6UlFVK011cGxTNnN6RTZ6OUVJRmQ5S2tMZXdUcFpEDQp6NFZCWVRrR29jbVl5Nm9Na0dEU3RNdTZScTJYc2k0b3RHbXJaWElpRFVGaU9WVkNIcmdqRDlleWNRK0JVWk9mDQordmowdCtDK0NTL1ZlbWtoYm1NQ3EwenRqc0lEcUpxd2dacUMrQnhPYWZKb3hlaDgrWkNmYTBsbVEySGFwakk1DQpNcWlLd0xTYk1Ra29iMUw4U1FaMzhPMG5LWUhwenVPMjBzVU12RjZpSHJqTEdkUkJIZnE5SGVaZ0REQVplY1MwDQoxNER6VGcyeWNYMFpDRWZ2di9NbCtJWDlyOEZuTHU2TFhDL05DVmt2emJCMHo2Z01xRFdUanJwQ2Q3Qm5JWUU2DQppMUxmY2U3SHBLeFBwK2g4TlhURXo2WEpHNnJqdzNoTzBhQVFlWHM0QTcycHcva1l0NXNmUkJsQTEwNTlQRUhaDQpjWE9Gcm0venRuS00vU1ptaWFXZElxeldRNVpUclU4cTE4K2JiT3pqcEhodFhsY0hZa2FJMmg5NHpCMzRLang0DQp4NVlmWHpjUXF6ZGt2VFN3V3kvdHhJaEVIMnVrSUtkQjNQL0ptTWZuWXJ6eVpsVTJrY1NMNm82N1ZKMUM4aXBHDQpQRHc0UVhPaVgwOWdwaWtPcUF6U2tMYkpSNVlUOGpyT1RsdEpZYnBSODMxMndQMGlEeU1PTytMbEEyMEpYbk1IDQpTdEx0L24wZmV0c0Y2SzZYNXZSNU1QZ0RiTXA2YVJHa3kxZVdXQnlSTEtkdHJQV3NGVy9NNHc5SHZMWVA5YUdFDQpVMWJYVWQzZHR1dlpZZG5QZ3RtN0l3KzlLY0tYa0lRTHc2eXZDSFBEMk1HMVBuTGFXNFloQkF0T28zb0w5endODQpzN3V1YWRkTEU0TnA4dXJCN2VnbDJTdTNRZC9MSld6d28vUXE5M3BjMG9YQnpKd2JXL0psMnp3U2NOMml2UWdsDQp2Slp3K2ZqYlByeWxHL1A0a1NlaVh6cndWRmZabXRaTG16QzZqZm1LanFuZFVWclNaMC9LOC9NWnFvOGtLbU9RDQpSSDB3NXZGUkViajR2WEtoSWNoSWJHVjg4NnZmaW1UQTFTTkd3RHRrTUVHb0pvVDFCSjRRZWJqTk1SbnI2R212DQpEdWNkVGtZREhUblVtUkZzc2UrT2wrRFg5cjRNbjIzZDMxdGxRck5lbWhmSnV5UG5pRjFNZWlJcXZQdzJxNDl6DQpodnNycEJ6QUtkaVN2VFRkTlZSYzJManNKVlROellnODFEUE9mMUlDRmcrZVpjeW5HSGpVaFc0VThSTGl4T25ODQpqSGdUUnFVYk84VXJWTy9JdkNyb1RCQ3plNTZCK3liYXR1dWw2VkFkd2VWOENnbGY2NkpJZTFqNU5IWEtveWs2DQpYdDVBUExvMFRhS2hhdXNuamJiUnVQM0FWTlpwM1BvT0Q2clMwQXdobGowL2hJSkVsKytsR0hXZjVmMFdNbnFMDQpHM0hpNVhFY3NsemNzWjE5cHFiY04rQlg5bDZ3V1MvTjlKbzVpaWdsUE0va1ZINTJTUGR1Nmd5bEZINmpwakk1DQpFMU50RGJUZUl3YUM1cEk4V0tXVk00WmhpbWloMy9BaFRYMFdEUU51ZGMyeFdhbGUxVmQ3TEpaSWNoT2ROZTB0DQpEbEVwUmF0ZXpiNzMzclVPeFR1dnhuRWJrOVh1cUZiY3NiaWp5UmF4QVZhSDFHbWJobGZwSENRSUxvMWxzWkJSDQozcElFV0VsQ0hxWjdTaEpnZTJYWWpWRHloR2hwNmxHSDB4bUtDTFgraXhacDNTTEUyek01REk0NXdjNlR3WVFQDQo1cDYxZFJ2ek85OTJCRGlQQVdGUHk4Vm9tS1lZc1kwaGV5ZWNqRkM5cFJpZExoZEJPcldZZWN2SDdQU2xoTVI3DQpPa0wxTHNXNGg2Z0lkSU1tMzRibHNYV05VRnZJWVBVTVhWbU5jdi9OZ0hoNXdQUnRHTjBOSldQTi9yZFBOdUdEDQpPMSt6Y1J2TC9tRXlPSFJpdVVZTktranJjSmxJK3NTUU8yc3Rvck91b0k5b3ppSnZHMkFlVklycmQ1NjNIYWhCDQp3bGhLVVFhbUI4THhxREtRbHVwSnBScjU2MzdLd2FrNDVxRnFTSDNuRXQ3N2t1YWhVeHNSTjhmSUI4cGt5Z1RLDQpZQTRtdmUwbWlDTjMvUmZVV3o4R0x6a1RVWWN2TTdVN0xrdWljNlcxaHFFQlQ2SnliVWpCU0k1YUtLR0diWlN6DQpqTUhiakNrSWVBbVZYdzNWWVJPbnRoWXgzelo1TTBXb010VXhueUF3YXhxZHp5Z1dialZDcmF0bDBKQTY5QkdJDQp0MFpaV0Q3OGhVeTVSd0owdlRucU1jN1hCYjVwbWg0NDdCeTE3c1JxS1BOeENCTmpPcXVlS2RzNXRiK3B2UDN3DQpPbG9lSFBGMkE2YWJ3dU1ObldoVlREbHZRSEhISmZqOHpYMm1VMGR1WnA0bGlxSWhZNGhFVzdSZ205emw4QUZSDQpqaUFlNGZKMVBFSGVWazByRy9NWXZMaEVmQzRrM1hVa3ZETVNrZkQ5d3AwcW4wRVo2RWpJV0FZRHdGRU5BZko4DQpSOFptQ0Zsdno4WnNKUjY2T2MwYlhNVWluck5JVjFkdTg5czRxTlpRMmdVZlBDeVo4ak9aUWFMTGtIeDU3TVJtDQpoRGo0a1owYjhQbkxSdUlkNVFFMXRYS3ptTjVheVNEd1NWcmlPUXpaQjE1cVdENVFxaEdtZ2hJTVBpalVQR1EzDQplNjZTd1BSeEJ2cTlJVHI1UmdYTWxYWmRldVBJUlNqdXFrVzk4K3ZNUXI4SlRJeGRjQUczaXZmV1VzajVpT0ZCDQpWZDdtcWNPbk5XWEo4M05NdkxWaDN6MkllYTI2cVpQY3BqZ09YZ3p5UGpEUmhPK0Z6ZERPT2lJQnptVTFHdlk2DQpNd3ZwZmFqTDIyUmlVRHRoT1dQVnplMTdNNVpCeEhsOXB5MkRHcVFZNDVBOEE5SStBTXRKcm9GbEVOWnZoYmNJDQpKOGdOWEZQc0V2UldCczVweW43Vk10MEc1bHVuanZONC9WT1lsdGlXSUh6dHYvbnRicytHc1F0UmptSTE2UklTDQo5SnFiU2NwRENKaWVVdlRDb3pzdW1kVENLQ0dzQVovR1JqdVRzS3c3NThac3BHY01UL2lzR3V4TXlyYlR4TTVYDQpqcGwyR1pMNTdiYndqYUVjOFpDTVE3N0xDZk05STNYNlZzaTlOZ3pwYzVQTW9aUVBvV3FDc2hmdE9FMjZkY3gvDQpWdTZRcVFWTmpHdmszQXdKWS9nRTV0bnZmbURpVGExcUdaRUE1Mm81TmpTS29pWmUxM0ErZmRteWd6ZFE1YzRrDQpNQzhzYTBpeGxtQVZER01ueFB4RVJjZ0t5OWVocEowUFYxbTJDUXdqT21ZTk8vdXlUVjNaa2kvZWh5MEJpamRNDQp2ejZSd09lVmppOGVFRkVMVnphbFdXazI4UmxrZ1RCanNxZGI1THVjZ0lCNXVud0FkRGFsQjRPY1ppT3Q2UzNHDQp3NlF6dnFKZjNqMHB6anRMRUhjd29JMU1LUzF3MmNiWmJPSlR0OUJsRzgvckxJZ3BIZE01WDFvZ1V5eVl1WEhqDQpRZmpOcXcrckJUQXpnbE9ETzhCUjQ1eXdzVVVjVjhSakg4WjhuVU5Tcm1maFhpUGRTMnZRdG1HMEpSYnhOZTBnDQo5TVlPZUw3T1pwa3ZKZDA4cHNzLzkyRDZRdkhYSTVaSUY2L0JxY3RIeVgvYyt4QjJXRUVtclJUM0VCWVF2Z0hKDQpKcHZZcEZ2RU5PVjZiMko3emp4ZFVXOVoyNGVWT2d5OGZZaTBzaVplbnVBR3hCa0FHaFR4NG5FRzRxMk9VS3hkDQpBb0Z3RzhITjlHb1pEclJsK1R6UTJjZUlkQWtFd3ExQnZGM3lIVmpBZEMrN3FjVmxxbm9DZ1hEckVHOFg4UWJhDQp2S0htZVhVRUI5UUlCQUlSYjJyVnk0bXROaERWRzFNTkMxeHE3MDcyVUNBUUNJUXhVYndjM05aclBRTHBEU2hDDQptY0QvYnQzZHVhZFI5V0lnRUFoRXZGbW9YazV3QTRsK0ZXZHBJRUhjWDkvTThmdFpwaW9uRUFpM3N1S05IVEI5DQpVS3IzVXZzQVBPM2NXUm1EZUF3RUFvR0lOeE1NMVlOQVI5TFAzbmhnMUZZTUpoQUlSTHdEVmIxMWlERVYxTXQ0DQpEYlpyM2ozdzNJMGNEYWdSQ0lUYlN2RnlESVQ0YkV3UXI3YjNMMy8wSi82NVFWVk5JQkJ1TCtMdERyVDF6MmhyDQpEemJaSysxYzh5T1gzMTJsYWlZUUNLT0ViR00xUk9HOHcyTnJGdnVJVjRyUjRDa3hGanFidEs4dGY1ZVBsV0k0DQo4TStyVy9mQUM1djVtZmNWejVMYUpSQUl0NldwUVlDSHJnc1M0UUE4R2E2MTc0Wi91L2I5WlNKZEFvRkF4TnNODQpvcE00NnI3TjBrRFh2THZoWDYrK3EveUxQL3J2TmFwZUFvRkFwb2FleVlHSGpWeUNOcFJFU0VqVjFPQ0hoTlNZDQpFVHpkSi92amxac0hXbnNuL205Mi95TWVLVjBDZ1VDS3QwLzVUbnRsTkQwMHM3amtoUnVIYW85Zit1RkRSTG9FDQpBb0VVcncxZWRFcE16UzZ3VzhuM0tkNTJMOWk1cW5pdjNMd0xwdHpMTmZaN2RlOFBlazJxVGdLQlFNUWJFMXZQDQpPd1ZHcW5Qc2pnNHpraTJHRUcrRDdXdDRmRGtVRDFiM3pIZzBEWmhBSUl3Vi9sK0FBUUJYRzRxblM0VlB2Z0FBDQpBQUJKUlU1RXJrSmdnZz09PC9mbzppbnN0cmVhbS1mb3JlaWduLW9iamVjdD4NCiAgICAgICAgICAgICAgICAgICAgIDwvZm86YmxvY2s+DQogICAgICAgICAgICAgICAgICA8L2ZvOnRhYmxlLWNlbGw+DQogICAgICAgICAgICAgICAgICA8Zm86dGFibGUtY2VsbCBwYWRkaW5nLWVuZD0iNS40cHQiIHBhZGRpbmctYm90dG9tPSIwLjBwdCIgcGFkZGluZy1zdGFydD0iNS40cHQiIHBhZGRpbmctdG9wPSIwLjBwdCIgdmVydGljYWwtYWxpZ249InRvcCIgaGVpZ2h0PSI1OC45cHQiIG51bWJlci1jb2x1bW5zLXNwYW5uZWQ9IjEiPg0KICAgICAgICAgICAgICAgICAgICAgPGZvOmJsb2NrIGhlaWdodD0iMTEuMHB0Ii8+DQogICAgICAgICAgICAgICAgICA8L2ZvOnRhYmxlLWNlbGw+DQogICAgICAgICAgICAgICA8L2ZvOnRhYmxlLXJvdz4NCiAgICAgICAgICAgIDwvZm86dGFibGUtYm9keT4NCiAgICAgICAgIDwvZm86dGFibGU+DQogICAgICA8L2ZvOmJsb2NrPg0KICAgPC94c2w6dGVtcGxhdGU+DQogICA8eHNsOnRlbXBsYXRlIG5hbWU9ImJzaXI6Z2V0Rm9vdGVyIj4NCiAgICAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET0ZPUE9TIi8+DQogICAgICA8eHNsOnBhcmFtIG5hbWU9Il9YRE9GT1BPUzIiLz4NCiAgICAgIDx4c2w6cGFyYW0gbmFtZT0iX1hET0ZPT1NUT1RBTCIvPg0KICAgICAgPHhzbDpwYXJhbSBuYW1lPSJfWERPRk9UT1RBTCIvPg0KICAgICAgPHhzbDpwYXJhbSBuYW1lPSJfU0VDVElPTl9OQU1FIi8+DQogICAgICA8Zm86YmxvY2sgeGRvZm86bGluZS1zcGFjaW5nPSJtdWx0aXBsZToxMy44cHQiIG9ycGhhbnM9IjIiIHdpZG93cz0iMiIgbGluZWZlZWQtdHJlYXRtZW50PSJwcmVzZXJ2ZSIgdGV4dC1hbGlnbj0iY2VudGVyIiBwYWRkaW5nLWJvdHRvbT0iMC4wcHQiIGVuZC1pbmRlbnQ9IjUuNHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiPg0KICAgICAgICAgPGZvOnRhYmxlIHN0YXJ0LWluZGVudD0iMC4wcHQiIHN0eWxlLWlkPSJ0czExIiBzdHlsZS1uYW1lPSJOb3JtYWwgVGFibGUiIHhkb2ZvOmFsaWduPSJjZW50ZXIiIHdpZHRoPSIiIHhkb2ZvOnRhYmxlLXN1bW1hcnk9IlRlbXBsYXRlIFRhYmxlIDMiIHhkb2ZvOnJvdy1oZWFkZXItY291bnQ9IjAiPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfWERPRk9QT1MyIiBzZWxlY3Q9Im51bWJlcigxKSIvPg0KICAgICAgICAgICAgPHhzbDp2YXJpYWJsZSBuYW1lPSJfWERPRk9UT1RBTCIgc2VsZWN0PSJudW1iZXIoMSkiLz4NCiAgICAgICAgICAgIDxmbzp0YWJsZS1jb2x1bW4gY29sdW1uLXdpZHRoPSI2NTQuMjVwdCIvPg0KICAgICAgICAgICAgPGZvOnRhYmxlLWJvZHk+DQogICAgICAgICAgICAgICA8Zm86dGFibGUtcm93Pg0KICAgICAgICAgICAgICAgICAgPGZvOnRhYmxlLWNlbGwgcGFkZGluZy1lbmQ9IjUuNHB0IiBwYWRkaW5nLWJvdHRvbT0iMC4wcHQiIHBhZGRpbmctc3RhcnQ9IjUuNHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiIHZlcnRpY2FsLWFsaWduPSJib3R0b20iIGhlaWdodD0iMjQuOXB0IiBudW1iZXItY29sdW1ucy1zcGFubmVkPSIxIj4NCiAgICAgICAgICAgICAgICAgICAgIDxmbzpibG9jayBoZWlnaHQ9IjEzLjhwdCIvPg0KICAgICAgICAgICAgICAgICAgPC9mbzp0YWJsZS1jZWxsPg0KICAgICAgICAgICAgICAgPC9mbzp0YWJsZS1yb3c+DQogICAgICAgICAgICAgICA8Zm86dGFibGUtcm93Pg0KICAgICAgICAgICAgICAgICAgPGZvOnRhYmxlLWNlbGwgcGFkZGluZy1lbmQ9IjUuNHB0IiBwYWRkaW5nLWJvdHRvbT0iMC4wcHQiIHBhZGRpbmctc3RhcnQ9IjUuNHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiIHZlcnRpY2FsLWFsaWduPSJtaWRkbGUiIGhlaWdodD0iMTQuOXB0IiBudW1iZXItY29sdW1ucy1zcGFubmVkPSIxIj4NCiAgICAgICAgICAgICAgICAgICAgIDxmbzpibG9jayB4ZG9mbzpsaW5lLXNwYWNpbmc9Im11bHRpcGxlOjEzLjhwdCIgb3JwaGFucz0iMiIgd2lkb3dzPSIyIiBsaW5lZmVlZC10cmVhdG1lbnQ9InByZXNlcnZlIiB0ZXh0LWFsaWduPSJjZW50ZXIiIHBhZGRpbmctYm90dG9tPSIxMC4wcHQiIGVuZC1pbmRlbnQ9IjAuMHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiIHN0YXJ0LWluZGVudD0iMC4wcHQiIGhlaWdodD0iMC4wcHQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGZvOmlubGluZSB4bWw6c3BhY2U9InByZXNlcnZlIiBzdHlsZS1uYW1lPSJOb3JtYWwiIGhlaWdodD0iMC4wcHQiIGZvbnQtc2l6ZT0iMTEuMHB0IiBjb2xvcj0iIzE3MzY1ZCIgZm9udC1mYW1pbHk9IkNhbGlicmkiIHdoaXRlLXNwYWNlLWNvbGxhcHNlPSJmYWxzZSI+UGFnZSA8Zm86cGFnZS1udW1iZXIvPiBvZiA8Zm86cGFnZS1udW1iZXItY2l0YXRpb24gcmVmLWlkPSJ4ZG9mbzpsYXN0cGFnZS1qb2luc2VxIi8+PC9mbzppbmxpbmU+DQogICAgICAgICAgICAgICAgICAgICA8L2ZvOmJsb2NrPg0KICAgICAgICAgICAgICAgICAgPC9mbzp0YWJsZS1jZWxsPg0KICAgICAgICAgICAgICAgPC9mbzp0YWJsZS1yb3c+DQogICAgICAgICAgICAgICA8Zm86dGFibGUtcm93Pg0KICAgICAgICAgICAgICAgICAgPGZvOnRhYmxlLWNlbGwgcGFkZGluZy1lbmQ9IjUuNHB0IiBwYWRkaW5nLWJvdHRvbT0iMC4wcHQiIHBhZGRpbmctc3RhcnQ9IjUuNHB0IiBwYWRkaW5nLXRvcD0iMC4wcHQiIHZlcnRpY2FsLWFsaWduPSJtaWRkbGUiIGhlaWdodD0iMTEuNzVwdCIgbnVtYmVyLWNvbHVtbnMtc3Bhbm5lZD0iMSI+DQogICAgICAgICAgICAgICAgICAgICA8Zm86YmxvY2sgeGRvZm86bGluZS1zcGFjaW5nPSJtdWx0aXBsZToxMy44cHQiIG9ycGhhbnM9IjIiIHdpZG93cz0iMiIgbGluZWZlZWQtdHJlYXRtZW50PSJwcmVzZXJ2ZSIgdGV4dC1hbGlnbj0iY2VudGVyIiBwYWRkaW5nLWJvdHRvbT0iMTAuMHB0IiBlbmQtaW5kZW50PSIwLjBwdCIgcGFkZGluZy10b3A9IjAuMHB0IiBzdGFydC1pbmRlbnQ9IjAuMHB0Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxmbzppbmxpbmUgd2hpdGUtc3BhY2UtY29sbGFwc2U9ImZhbHNlIiBzdHlsZS1uYW1lPSJOb3JtYWwiIGhlaWdodD0iMC4wcHQiIGZvbnQtZmFtaWx5PSJBcmlhbCIgY29sb3I9IiM4ZDhkOGQiIGZvbnQtc2l6ZT0iNy41cHQiPlByb3ByaWV0YXJ5IGFuZCBDb25maWRlbnRpYWwsIGRvIG5vdCBjb3B5LCBkdXBsaWNhdGUgb3IgZGlzdHJpYnV0ZTwvZm86aW5saW5lPg0KICAgICAgICAgICAgICAgICAgICAgPC9mbzpibG9jaz4NCiAgICAgICAgICAgICAgICAgIDwvZm86dGFibGUtY2VsbD4NCiAgICAgICAgICAgICAgIDwvZm86dGFibGUtcm93Pg0KICAgICAgICAgICAgPC9mbzp0YWJsZS1ib2R5Pg0KICAgICAgICAgPC9mbzp0YWJsZT4NCiAgICAgIDwvZm86YmxvY2s+DQogICA8L3hzbDp0ZW1wbGF0ZT4NCjwveHNsOnN0eWxlc2hlZXQ+DQo=\"\n}"},"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting-branding?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting-branding"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[],"_postman_id":"1363006f-8655-47e6-be4f-4388fa99fd96"},{"name":"Enterprise Call Center Enhanced Reporting Branding FileName","id":"fd6ea5a2-e2cc-458f-872f-6889f550340d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"brandingChoice\": \"Custom\",\n    \"fileName\": \"branding.xsl\"\n}"},"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting-branding?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting-branding"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[],"_postman_id":"fd6ea5a2-e2cc-458f-872f-6889f550340d"},{"name":"Enterprise Call Center Enhanced Reporting Scheduled Reports","id":"c479fc57-1091-42a4-80fe-3b71d4e1442c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-reports?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-reports"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"9f9c51a4-32aa-4ac7-a240-db802815d2eb","name":"Enterprise Call Center Enhanced Reporting Scheduled Reports","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-reports?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-reports"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"PHP/7.3.18"},{"key":"date","value":"Fri, 20 May 2022 15:46:08 GMT"},{"key":"server","value":"Apache"},{"key":"vary","value":"Authorization"},{"key":"cache-control","value":"no-cache, private"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-length","value":"626"},{"key":"keep-alive","value":"timeout=5, max=100"},{"key":"connection","value":"Keep-Alive"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"scheduledReports\": [\n        {\n            \"scheduleName\": \"VSOS MPV - AGENT ACTIVITY DETAIL cc_7928416\",\n            \"description\": \"VSOS MPV - AGENT ACTIVITY DETAIL cc_7928416\",\n            \"createdBy\": \"Administrator\",\n            \"isSupervisorReport\": false,\n            \"status\": \"Active\",\n            \"reportTemplateName\": \"Agent Activity Detail Report\",\n            \"reportTemplateLevel\": \"System\",\n            \"recurring\": \"Daily\"\n        },\n        {\n            \"scheduleName\": \"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416\",\n            \"description\": \"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416\",\n            \"createdBy\": \"Administrator\",\n            \"isSupervisorReport\": false,\n            \"status\": \"Active\",\n            \"reportTemplateName\": \"Call Center Call Detail Report\",\n            \"reportTemplateLevel\": \"System\",\n            \"recurring\": \"Daily\"\n        }\n    ]\n}"}],"_postman_id":"c479fc57-1091-42a4-80fe-3b71d4e1442c"},{"name":"Enterprise Call Center Enhanced Reporting Scheduled Report","id":"1059381d-d6b1-4ea3-9b56-43dce82fe071","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-report?serviceProviderId=ent.odin&scheduleName=AGENT ACTIVITY DETAIL 2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-report"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"scheduleName","value":"VSOS MPV - AGENT ACTIVITY DETAIL cc_7928416"},{"disabled":true,"key":"scheduleName","value":"AGENT ACTIVITY DETAIL cc_7928416"},{"key":"scheduleName","value":"AGENT ACTIVITY DETAIL 2"}],"variable":[]}},"response":[{"id":"230b4348-9de4-4f18-99cc-326630708a4a","name":"Enterprise Call Center Enhanced Reporting Scheduled Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-report?serviceProviderId=ent_366103&scheduleName=VSOS MPV - CALL CENTER CALL DETAIL cc_7928416","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-report"],"query":[{"key":"serviceProviderId","value":"ent_366103"},{"key":"scheduleName","value":"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"PHP/7.3.18"},{"key":"date","value":"Fri, 20 May 2022 18:21:48 GMT"},{"key":"server","value":"Apache"},{"key":"vary","value":"Authorization"},{"key":"cache-control","value":"no-cache, private"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-length","value":"717"},{"key":"keep-alive","value":"timeout=5, max=100"},{"key":"connection","value":"Keep-Alive"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"description\": \"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416\",\n    \"reportTemplate\": {\n        \"templateLevel\": \"System\",\n        \"templateName\": \"Call Center Call Detail Report\"\n    },\n    \"schedule\": {\n        \"recurrence\": {\n            \"timeZone\": \"America/Los_Angeles\",\n            \"startDate\": \"2020-06-04-07:00\",\n            \"scheduleTime\": {\n                \"hour\": \"8\",\n                \"minute\": \"40\"\n            },\n            \"recurrence\": {\n                \"recurDaily\": {\n                    \"recurInterval\": \"1\"\n                },\n                \"recurForEver\": \"true\"\n            }\n        }\n    },\n    \"reportTimeZone\": \"America/Los_Angeles\",\n    \"reportDateFormat\": \"MMDDYYYY\",\n    \"reportTimeFormat\": \"AM/PM\",\n    \"reportInterval\": {\n        \"past\": {\n            \"number\": \"1\",\n            \"timeUnit\": \"Day\"\n        }\n    },\n    \"reportFormat\": \"PDF\",\n    \"callCenter\": {\n        \"allCallCenter\": \"true\"\n    },\n    \"emailAddress\": \"joseph.malinao@hotmail.com\",\n    \"serviceProviderId\": \"ent_366103\",\n    \"scheduleName\": \"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416\"\n}"}],"_postman_id":"1059381d-d6b1-4ea3-9b56-43dce82fe071"},{"name":"Enterprise Call Center Enhanced Reporting Scheduled Report Call Centers","id":"6ce66bd5-83c9-41ad-b891-4a91beb1ec39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-report-call-centers?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-report-call-centers"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"scheduleName","value":"VSOS MPV - AGENT ACTIVITY DETAIL cc_7928416"},{"disabled":true,"key":"scheduleName","value":"AGENT ACTIVITY DETAIL cc_7928416"},{"disabled":true,"key":"scheduleName","value":"AGENT ACTIVITY DETAIL 2"}],"variable":[]}},"response":[{"id":"58582511-0413-42be-849c-52a53a6c2cc0","name":"Enterprise Call Center Enhanced Reporting Scheduled Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-report?serviceProviderId=ent_366103&scheduleName=VSOS MPV - CALL CENTER CALL DETAIL cc_7928416","host":["{{url}}"],"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-report"],"query":[{"key":"serviceProviderId","value":"ent_366103"},{"key":"scheduleName","value":"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"PHP/7.3.18"},{"key":"date","value":"Fri, 20 May 2022 18:21:48 GMT"},{"key":"server","value":"Apache"},{"key":"vary","value":"Authorization"},{"key":"cache-control","value":"no-cache, private"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-length","value":"717"},{"key":"keep-alive","value":"timeout=5, max=100"},{"key":"connection","value":"Keep-Alive"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"description\": \"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416\",\n    \"reportTemplate\": {\n        \"templateLevel\": \"System\",\n        \"templateName\": \"Call Center Call Detail Report\"\n    },\n    \"schedule\": {\n        \"recurrence\": {\n            \"timeZone\": \"America/Los_Angeles\",\n            \"startDate\": \"2020-06-04-07:00\",\n            \"scheduleTime\": {\n                \"hour\": \"8\",\n                \"minute\": \"40\"\n            },\n            \"recurrence\": {\n                \"recurDaily\": {\n                    \"recurInterval\": \"1\"\n                },\n                \"recurForEver\": \"true\"\n            }\n        }\n    },\n    \"reportTimeZone\": \"America/Los_Angeles\",\n    \"reportDateFormat\": \"MMDDYYYY\",\n    \"reportTimeFormat\": \"AM/PM\",\n    \"reportInterval\": {\n        \"past\": {\n            \"number\": \"1\",\n            \"timeUnit\": \"Day\"\n        }\n    },\n    \"reportFormat\": \"PDF\",\n    \"callCenter\": {\n        \"allCallCenter\": \"true\"\n    },\n    \"emailAddress\": \"joseph.malinao@hotmail.com\",\n    \"serviceProviderId\": \"ent_366103\",\n    \"scheduleName\": \"VSOS MPV - CALL CENTER CALL DETAIL cc_7928416\"\n}"}],"_postman_id":"6ce66bd5-83c9-41ad-b891-4a91beb1ec39"},{"name":"Enterprise Call Center Enhanced Reporting Scheduled Report","id":"94c9bee1-913d-457a-80e1-d7057b14c564","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"scheduleName\": \"AGENT ACTIVITY DETAIL 2\",\n    \"description\": \"AGENT ACTIVITY DETAIL cc_7928416\",\n    \"reportTemplate\": {\n        \"templateLevel\": \"System\",\n        \"templateName\": \"Agent Activity Detail Report\"\n    },\n    \"schedule\": {\n        \"timeZone\": \"America/Los_Angeles\",\n        \"startDate\": \"2020-06-04-07:00\",\n        \"startTime\": \"2020-06-07 08:40\",\n        \"rrule\": \"RRULE:FREQ=DAILY;INTERVAL=2\"\n    },\n    \"reportTimeZone\": \"America/Los_Angeles\",\n    \"reportDateFormat\": \"MMDDYYYY\",\n    \"reportTimeFormat\": \"AM/PM\",\n    \"reportInterval\": {\n        \"past\": {\n            \"number\": \"1\",\n            \"timeUnit\": \"Day\"\n        }\n    },\n    \"reportFormat\": \"PDF\",\n    \"agent\": {\n        \"allAgent\": \"true\"\n    },\n    \"emailAddresses\": [\n        \"kburcham@parkbenchsolutions.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-report","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-report"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"94c9bee1-913d-457a-80e1-d7057b14c564"},{"name":"Enterprise Call Center Enhanced Reporting Scheduled Report Copy","id":"c85edeac-6955-486b-b72d-35414bd72982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"scheduleName\": \"AGENT ACTIVITY DETAIL cc_7928416\",\n    \"description\": \"AGENT ACTIVITY DETAIL cc_7928416\",\n    \"reportTemplate\": {\n        \"templateLevel\": \"System\",\n        \"templateName\": \"Agent Activity Detail Report\"\n    },\n    \"schedule\": {\n        \"timeZone\": \"America/Los_Angeles\",\n        \"startDate\": \"2020-06-04-07:00\",\n        \"startTime\": \"2020-06-07 08:40\",\n        \"rrule\": \"RRULE:FREQ=DAILY;INTERVAL=1\"\n    },\n    \"reportTimeZone\": \"America/Los_Angeles\",\n    \"reportDateFormat\": \"MMDDYYYY\",\n    \"reportTimeFormat\": \"AM/PM\",\n    \"reportInterval\": {\n        \"past\": {\n            \"number\": \"1\",\n            \"timeUnit\": \"Day\"\n        }\n    },\n    \"reportFormat\": \"PDF\",\n    \"agent\": {\n        \"allAgent\": \"true\"\n    },\n    \"emailAddresses\": [\n        \"kburcham@parkbenchsolutions.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/enhanced-reporting/scheduled-report","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","enhanced-reporting","scheduled-report"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c85edeac-6955-486b-b72d-35414bd72982"},{"name":"Enterprise Call Center Threshold Profile","id":"fdeb7eaa-78dd-402f-b2bd-f2d07bd1a60f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/call-centers/threshold-profile?serviceProviderId=ent.odin&profileName=Agent Threshold Profile 2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-centers","threshold-profile"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"profileName","value":"Agent Threshold Profile 1"},{"disabled":true,"key":"profileName","value":"Default Agent Threshold Profile"},{"key":"profileName","value":"Agent Threshold Profile 2"}],"variable":[]}},"response":[{"id":"1dacc2f1-caa3-4a5e-a384-ec3fce1a7116","name":"Enterprise Call Center Threshold Profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/call-centers/threshold-profiles?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","call-centers","threshold-profiles"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"107","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:38:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"default\":true,\"name\":\"Default Agent Threshold Profile\",\"description\":\"Default Agent Threshold Profile\"}]"}],"_postman_id":"fdeb7eaa-78dd-402f-b2bd-f2d07bd1a60f"},{"name":"Enterprise Call Center Threshold Profile","id":"747d3b39-2324-4d84-80ce-9c5312070097","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"profileDescription\": \"Agent Threshold Profile 2\",\n    \"thresholdCurrentCallStateIdleTimeYellow\": 60,\n    \"thresholdCurrentCallStateIdleTimeRed\": 120,\n    \"thresholdCurrentCallStateOnCallTimeYellow\": 60,\n    \"thresholdCurrentCallStateOnCallTimeRed\": 120,\n    \"thresholdCurrentAgentStateUnavailableTimeYellow\": 60,\n    \"thresholdCurrentAgentStateUnavailableTimeRed\": 120,\n    \"thresholdAverageBusyInTimeYellow\": 60,\n    \"thresholdAverageBusyInTimeRed\": 120,\n    \"thresholdAverageBusyOutTimeYellow\": 60,\n    \"thresholdAverageBusyOutTimeRed\": 120,\n    \"thresholdAverageWrapUpTimeYellow\": 60,\n    \"thresholdAverageWrapUpTimeRed\": 120,\n    \"enableNotificationEmail\": false,\n    \"agents\": [],\n    \"notificationEmailAddresses\": [\n        \"mreverman@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/service-providers/call-centers/threshold-profile?serviceProviderId=ent.odin&profileName=Agent Threshold Profile 2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-centers","threshold-profile"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"profileName","value":"Agent Threshold Profile 2"}],"variable":[]}},"response":[{"id":"aeb2816b-474b-4260-be8a-ef6eb6476fe7","name":"Enterprise Call Center Threshold Profile","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"profileDescription\": \"Agent Threshold Profile 1\",\n    \"thresholdCurrentCallStateIdleTimeYellow\": 60,\n    \"thresholdCurrentCallStateIdleTimeRed\": 120,\n    \"thresholdCurrentCallStateOnCallTimeYellow\": 60,\n    \"thresholdCurrentCallStateOnCallTimeRed\": 120,\n    \"thresholdCurrentAgentStateUnavailableTimeYellow\": 60,\n    \"thresholdCurrentAgentStateUnavailableTimeRed\": 120,\n    \"thresholdAverageBusyInTimeYellow\": 60,\n    \"thresholdAverageBusyInTimeRed\": 120,\n    \"thresholdAverageBusyOutTimeYellow\": 60,\n    \"thresholdAverageBusyOutTimeRed\": 120,\n    \"thresholdAverageWrapUpTimeYellow\": 60,\n    \"thresholdAverageWrapUpTimeRed\": 120,\n    \"enableNotificationEmail\": true,\n    \"agents\": [],\n    \"notificationEmailAddresses\": [\n        \"mreverman@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/service-providers/call-centers/threshold-profile?serviceProviderId=ent.odin&profileName=Agent Threshold Profile 1","host":["{{url}}"],"path":["api","v2","service-providers","call-centers","threshold-profile"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"profileName","value":"Agent Threshold Profile 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Aug 2022 18:44:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"747d3b39-2324-4d84-80ce-9c5312070097"},{"name":"Enterprise Call Center Threshold Profile","id":"15387f59-4919-4058-a56a-64b7b71fb1f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/call-centers/threshold-profile?serviceProviderId=ent.odin&profileName=Agent Threshold Profile 2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-centers","threshold-profile"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"profileName","value":"Agent Threshold Profile 2"}],"variable":[]}},"response":[{"id":"e33d5078-e189-4e9a-b8e0-6765f29c5749","name":"Enterprise Call Center Threshold Profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/call-centers/threshold-profiles?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","call-centers","threshold-profiles"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"107","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:38:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"default\":true,\"name\":\"Default Agent Threshold Profile\",\"description\":\"Default Agent Threshold Profile\"}]"}],"_postman_id":"15387f59-4919-4058-a56a-64b7b71fb1f9"},{"name":"Enterprise Call Center Threshold Profile","id":"ad193336-2128-4bae-86d7-38027ea1ae8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"profileDescription\": \"Agent Threshold Profile 2\",\n    \"thresholdCurrentCallStateIdleTimeYellow\": 60,\n    \"thresholdCurrentCallStateIdleTimeRed\": 120,\n    \"thresholdCurrentCallStateOnCallTimeYellow\": 60,\n    \"thresholdCurrentCallStateOnCallTimeRed\": 120,\n    \"thresholdCurrentAgentStateUnavailableTimeYellow\": 60,\n    \"thresholdCurrentAgentStateUnavailableTimeRed\": 120,\n    \"thresholdAverageBusyInTimeYellow\": 60,\n    \"thresholdAverageBusyInTimeRed\": 120,\n    \"thresholdAverageBusyOutTimeYellow\": 60,\n    \"thresholdAverageBusyOutTimeRed\": 120,\n    \"thresholdAverageWrapUpTimeYellow\": 60,\n    \"thresholdAverageWrapUpTimeRed\": 120,\n    \"enableNotificationEmail\": false,\n    \"agents\": [],\n    \"notificationEmailAddresses\": [\n        \"mreverman@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions2.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/service-providers/call-centers/threshold-profile?serviceProviderId=ent.odin&profileName=Agent Threshold Profile 2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-centers","threshold-profile"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"profileName","value":"Agent Threshold Profile 2"}],"variable":[]}},"response":[{"id":"08d387e2-d841-4f53-bc89-ffe3700107c1","name":"Enterprise Call Center Threshold Profile","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"profileDescription\": \"Agent Threshold Profile 1\",\n    \"thresholdCurrentCallStateIdleTimeYellow\": 60,\n    \"thresholdCurrentCallStateIdleTimeRed\": 120,\n    \"thresholdCurrentCallStateOnCallTimeYellow\": 60,\n    \"thresholdCurrentCallStateOnCallTimeRed\": 120,\n    \"thresholdCurrentAgentStateUnavailableTimeYellow\": 60,\n    \"thresholdCurrentAgentStateUnavailableTimeRed\": 120,\n    \"thresholdAverageBusyInTimeYellow\": 60,\n    \"thresholdAverageBusyInTimeRed\": 120,\n    \"thresholdAverageBusyOutTimeYellow\": 60,\n    \"thresholdAverageBusyOutTimeRed\": 120,\n    \"thresholdAverageWrapUpTimeYellow\": 60,\n    \"thresholdAverageWrapUpTimeRed\": 120,\n    \"enableNotificationEmail\": true,\n    \"agents\": [],\n    \"notificationEmailAddresses\": [\n        \"mreverman@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/service-providers/call-centers/threshold-profile?serviceProviderId=ent.odin&profileName=Agent Threshold Profile 1","host":["{{url}}"],"path":["api","v2","service-providers","call-centers","threshold-profile"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"profileName","value":"Agent Threshold Profile 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Aug 2022 18:44:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ad193336-2128-4bae-86d7-38027ea1ae8a"},{"name":"Enterprise Call Center Threshold Profiles","id":"d5a5120a-04aa-4885-a5be-4d9a4f03a1f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/call-centers/threshold-profiles?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-centers","threshold-profiles"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"904dc49b-a393-4449-a296-5ce4c099baaa","name":"Enterprise Call Center Threshold Profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/call-centers/threshold-profiles?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","call-centers","threshold-profiles"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"107","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:38:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"default\":true,\"name\":\"Default Agent Threshold Profile\",\"description\":\"Default Agent Threshold Profile\"}]"}],"_postman_id":"d5a5120a-04aa-4885-a5be-4d9a4f03a1f8"},{"name":"Enterprise Call Center Call Disposition Codes","id":"ea2cc12b-5540-4209-b4bb-e91307b593fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/call-disposition-codes?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","call-disposition-codes"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[],"_postman_id":"ea2cc12b-5540-4209-b4bb-e91307b593fc"},{"name":"Enterprise Call Center Call Disposition Code","id":"b725f1b2-615e-479a-ac1f-17bb5d2537f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/call-disposition-code?serviceProviderId=ent.odin&code=2001","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","call-disposition-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"code","value":"2001"}],"variable":[]}},"response":[],"_postman_id":"b725f1b2-615e-479a-ac1f-17bb5d2537f3"},{"name":"Enterprise Call Center Call Disposition Code","id":"b7311f55-1112-4b86-9215-a1a5595aaae9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/call-disposition-code?serviceProviderId=ent.odin&code=march2020","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","call-disposition-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"code","value":"march2020"}],"variable":[]}},"response":[],"_postman_id":"b7311f55-1112-4b86-9215-a1a5595aaae9"},{"name":"Enterprise Call Center Call Disposition Code","id":"d5183d47-fdd4-4e11-8ad3-c53ace9b95c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"code\": \"march2020\",\n    \"isActive\": true,\n    \"description\": \"March radio campaign\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/call-disposition-code","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","call-disposition-code"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"d5183d47-fdd4-4e11-8ad3-c53ace9b95c4"},{"name":"Enterprise Call Center Call Disposition Code","id":"ce777820-7035-4a83-bb06-d62147d0ad72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"code\": \"march2020\",\n    \"isActive\": false,\n    \"description\": \"March radio campaign2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/enterprises/call-centers/call-disposition-code","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","call-disposition-code"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"ce777820-7035-4a83-bb06-d62147d0ad72"},{"name":"Enterprise Call Center Call Disposition Code Usage","id":"50ea5994-4fe0-44c0-8dfd-f282f322c74a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/call-centers/call-disposition-code-usage?serviceProviderId=ent.odin&code=2001","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","call-centers","call-disposition-code-usage"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"code","value":"2001"}],"variable":[]}},"response":[],"_postman_id":"50ea5994-4fe0-44c0-8dfd-f282f322c74a"},{"name":"Group Call Centers","id":"8b61b511-20a0-4205-af9c-25468a4a106e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers"],"host":["{{url}}"],"query":[{"disabled":true,"key":"groupId","value":"CallingPlanTestingGroup"},{"disabled":true,"key":"serviceProviderId","value":"ent.odin.testxp"},{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"25e8b185-dbf5-46c6-86fe-87b83e452a23","name":"Group Call Centers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:35:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"171"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceUserId\": \"mock.cc.1\",\n        \"name\": \"mock.cc.1\",\n        \"video\": false,\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"isActive\": true,\n        \"policy\": \"Circular\",\n        \"type\": \"Premium\"\n    }\n]"}],"_postman_id":"8b61b511-20a0-4205-af9c-25468a4a106e"},{"name":"Group Call Centers","id":"756dd3d2-4110-48a5-9558-f575876ce3b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"instances\":[\n\t\t{\"serviceUserId\":\"dsfdsdsaddsad@parkbenchsolutions.com\",\"isActive\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"293d99f8-b64d-4fb5-80b8-c645aaa75379","name":"Group Call Centers Status","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"instances\":[\n\t\t{\"serviceUserId\":\"mock.cc.1\",\"isActive\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:36:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"756dd3d2-4110-48a5-9558-f575876ce3b8"},{"name":"Group Call Centers Available Agents","id":"e791a043-2a52-4c52-9fe4-cd9b374684d8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/agents/available?callCenterType=Premium&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","agents","available"],"host":["{{url}}"],"query":[{"key":"callCenterType","value":"Premium"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"d80f8705-518d-4828-aa37-0e09339beb7a","name":"Group Call Center Available Agents","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/agents/available?callCenterType=Premium&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","agents","available"],"query":[{"key":"callCenterType","value":"Premium"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:00:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"494"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"agents\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"e791a043-2a52-4c52-9fe4-cd9b374684d8"},{"name":"Group Call Centers Available Supervisors","id":"7eab09f0-3627-4917-8163-2f671f3eed4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/supervisors/available?groupId=MayurGroup&serviceProviderId=ent.odin.testxp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","supervisors","available"],"host":["{{url}}"],"query":[{"key":"groupId","value":"MayurGroup"},{"key":"serviceProviderId","value":"ent.odin.testxp"}],"variable":[]}},"response":[{"id":"70347a0f-a2a6-4ac0-9be2-7aad06c0b604","name":"Group Call Centers Available Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/supervisors/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","supervisors","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:02:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1456"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"supervisors\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580003,\n            \"lastName\": \"User3last\",\n            \"firstName\": \"User3first\",\n            \"hiraganaLastName\": \"User3last\",\n            \"hiraganaFirstName\": \"User3first\",\n            \"phoneNumber\": \"+1-9709580003\",\n            \"extension\": \"0003\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580004,\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"extension\": \"0004\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580005,\n            \"lastName\": \"User5last\",\n            \"firstName\": \"User5first\",\n            \"hiraganaLastName\": \"User5last\",\n            \"hiraganaFirstName\": \"User5first\",\n            \"phoneNumber\": \"+1-9709580005\",\n            \"extension\": \"0005\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"mock-pilot-1\",\n            \"lastName\": \"pilot\",\n            \"firstName\": \"pilot\",\n            \"hiraganaLastName\": \"pilot\",\n            \"hiraganaFirstName\": \"pilot\",\n            \"phoneNumber\": \"+1-9709580008\",\n            \"extension\": \"0008\",\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"7eab09f0-3627-4917-8163-2f671f3eed4f"},{"name":"Group Call Centers Threshold Profiles","id":"8055d4dd-296e-49d5-b984-fbd26945800d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-centers?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"a5b52491-596f-4fdd-8e1b-f9fc85ec7a10","name":"Group Call Centers Threshold Profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/threshold-profiles?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","threshold-profiles"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:09:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8055d4dd-296e-49d5-b984-fbd26945800d"},{"name":"Group Call Center","id":"f9b73cd4-ce33-46a7-9b15-d0c0067198a1","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enableVideo\":false,\n\t\"allowCallerToDialEscapeDigit\":false,\n\t\"resetCallStatisticsUponEntryInQueue\":true,\n\t\"allowAgentLogoff\":true,\n\t\"allowCallWaitingForAgents\":true,\n\t\"playRingingWhenOfferingCall\":true,\n\t\"externalPreferredAudioCodec\":\"None\",\n\t\"internalPreferredAudioCodec\":\"None\",\n\t\"enableReporting\":false,\n\t\"allowCallsToAgentsInWrapUp\":true,\n\t\"overrideAgentWrapUpTime\":false,\n\t\"enableAutomaticStateChangeForAgents\":false,\n\t\"forceDeliveryOfCalls\":false,\n\t\"type\":\"Premium\",\n\t\"serviceUserIdPrefix\":\"mock.cc.1\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"mock.cc.1\",\n\t\t\"callingLineIdLastName\":\"mock.cc.1\",\n\t\t\"callingLineIdFirstName\":\"mock.cc.1\",\n\t\t\"password\":\"l@q3zC\"\n\t},\n\t\"policy\":\"Circular\",\n\t\"routingType\":\"Priority Based\",\n\t\"queueLength\":3,\n\t\"escapeDigit\":\"3\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/call-centers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"54815bae-3700-476a-9a53-e3bb500cd227","name":"Group Call Center","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enableVideo\":false,\n\t\"allowCallerToDialEscapeDigit\":false,\n\t\"resetCallStatisticsUponEntryInQueue\":true,\n\t\"allowAgentLogoff\":true,\n\t\"allowCallWaitingForAgents\":true,\n\t\"playRingingWhenOfferingCall\":true,\n\t\"externalPreferredAudioCodec\":\"None\",\n\t\"internalPreferredAudioCodec\":\"None\",\n\t\"enableReporting\":false,\n\t\"allowCallsToAgentsInWrapUp\":true,\n\t\"overrideAgentWrapUpTime\":false,\n\t\"enableAutomaticStateChangeForAgents\":false,\n\t\"forceDeliveryOfCalls\":false,\n\t\"type\":\"Premium\",\n\t\"serviceUserIdPrefix\":\"mock.cc.1\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"mock.cc.1\",\n\t\t\"callingLineIdLastName\":\"mock.cc.1\",\n\t\t\"callingLineIdFirstName\":\"mock.cc.1\",\n\t\t\"password\":\"l@q3zC\"\n\t},\n\t\"policy\":\"Circular\",\n\t\"routingType\":\"Priority Based\",\n\t\"queueLength\":3,\n\t\"escapeDigit\":\"3\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/call-centers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:41:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"f9b73cd4-ce33-46a7-9b15-d0c0067198a1"},{"name":"Group Call Center","id":"6897e597-c5f4-4c25-bbcc-7bc390631861","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers?serviceUserId=asdaS12@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceUserId","value":"mock.cc.1"},{"key":"serviceUserId","value":"asdaS12@voicecci.net"}],"variable":[]}},"response":[{"id":"a3313335-ea2f-4647-a798-c0e20a4bf883","name":"Group Call Center","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\"enableVideo\":false,\"allowCallerToDialEscapeDigit\":false,\"resetCallStatisticsUponEntryInQueue\":true,\"allowAgentLogoff\":true,\"allowCallWaitingForAgents\":true,\"playRingingWhenOfferingCall\":true,\"externalPreferredAudioCodec\":\"None\",\"internalPreferredAudioCodec\":\"None\",\"enableReporting\":false,\"allowCallsToAgentsInWrapUp\":true,\"overrideAgentWrapUpTime\":false,\"enableAutomaticStateChangeForAgents\":false,\"forceDeliveryOfCalls\":false,\"type\":\"Premium\",\"serviceUserIdPrefix\":\"mock.cc.1\",\"serviceUserIdSuffix\":\"microv-works.com\",\"serviceInstanceProfile\":{\"name\":\"mock.cc.1\",\"callingLineIdLastName\":\"mock.cc.1\",\"callingLineIdFirstName\":\"mock.cc.1\",\"password\":\"l@q3zC\"},\"policy\":\"Circular\",\"routingType\":\"Priority Based\",\"queueLength\":3,\"escapeDigit\":\"3\",\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"serviceUserId\":\"mock.cc.1@microv-works.com\"}"},"url":{"raw":"{{url}}/api/v2/groups/call-centers?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:40:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"889"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"mock.cc.1\",\n        \"callingLineIdLastName\": \"mock.cc.1\",\n        \"callingLineIdFirstName\": \"mock.cc.1\",\n        \"hiraganaLastName\": \"mock.cc.1\",\n        \"hiraganaFirstName\": \"Call Center\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\"\n    },\n    \"type\": \"Premium\",\n    \"routingType\": \"Priority Based\",\n    \"policy\": \"Circular\",\n    \"enableVideo\": false,\n    \"queueLength\": 3,\n    \"enableReporting\": false,\n    \"allowCallerToDialEscapeDigit\": false,\n    \"escapeDigit\": 3,\n    \"resetCallStatisticsUponEntryInQueue\": true,\n    \"allowAgentLogoff\": true,\n    \"allowCallWaitingForAgents\": true,\n    \"allowCallsToAgentsInWrapUp\": true,\n    \"overrideAgentWrapUpTime\": false,\n    \"forceDeliveryOfCalls\": false,\n    \"enableAutomaticStateChangeForAgents\": false,\n    \"externalPreferredAudioCodec\": \"None\",\n    \"internalPreferredAudioCodec\": \"None\",\n    \"playRingingWhenOfferingCall\": true,\n    \"callCenterQueueThresholdsIsActive\": false,\n    \"serviceUserId\": \"mock.cc.1\"\n}"}],"_postman_id":"6897e597-c5f4-4c25-bbcc-7bc390631861"},{"name":"Group Call Center","id":"125ca89e-b611-4ec7-a5af-c39955286f3e","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"mock.cc.1\",\n\t\t\"callingLineIdLastName\":\"mock.cc.1\",\n\t\t\"callingLineIdFirstName\":\"mock.cc.1\",\n\t\t\"hiraganaLastName\":\"mock.cc.1\",\n\t\t\"hiraganaFirstName\":\"Call Center\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\"\n\t},\n\t\"type\": \"Premium\",\n\t\"routingType\":\"Priority Based\",\n\t\"policy\":\"Circular\",\n\t\"enableVideo\":false,\n\t\"queueLength\":4,\n\t\"enableReporting\":false,\n\t\"allowCallerToDialEscapeDigit\":false,\n\t\"escapeDigit\":5,\n\t\"resetCallStatisticsUponEntryInQueue\":false,\n\t\"allowAgentLogoff\":false,\n\t\"allowCallWaitingForAgents\":false,\n\t\"allowCallsToAgentsInWrapUp\":false,\n\t\"overrideAgentWrapUpTime\":false,\n\t\"forceDeliveryOfCalls\":false,\n\t\"enableAutomaticStateChangeForAgents\":false,\n\t\"externalPreferredAudioCodec\":\"None\",\n\t\"internalPreferredAudioCodec\":\"None\",\n\t\"playRingingWhenOfferingCall\":false,\n\t\"callCenterQueueThresholdsIsActive\":false,\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3507b20a-3261-4da0-baa7-0fca0e8bd474","name":"Group Call Center","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"mock.cc.1\",\n\t\t\"callingLineIdLastName\":\"mock.cc.1\",\n\t\t\"callingLineIdFirstName\":\"mock.cc.1\",\n\t\t\"hiraganaLastName\":\"mock.cc.1\",\n\t\t\"hiraganaFirstName\":\"Call Center\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\"\n\t},\n\t\"type\": \"Premium\",\n\t\"routingType\":\"Priority Based\",\n\t\"policy\":\"Circular\",\n\t\"enableVideo\":false,\n\t\"queueLength\":4,\n\t\"enableReporting\":false,\n\t\"allowCallerToDialEscapeDigit\":false,\n\t\"escapeDigit\":5,\n\t\"resetCallStatisticsUponEntryInQueue\":false,\n\t\"allowAgentLogoff\":false,\n\t\"allowCallWaitingForAgents\":false,\n\t\"allowCallsToAgentsInWrapUp\":false,\n\t\"overrideAgentWrapUpTime\":false,\n\t\"forceDeliveryOfCalls\":false,\n\t\"enableAutomaticStateChangeForAgents\":false,\n\t\"externalPreferredAudioCodec\":\"None\",\n\t\"internalPreferredAudioCodec\":\"None\",\n\t\"playRingingWhenOfferingCall\":false,\n\t\"callCenterQueueThresholdsIsActive\":false,\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:43:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"125ca89e-b611-4ec7-a5af-c39955286f3e"},{"name":"Group Call Center","id":"26fa31df-e2a3-4014-be70-4ef3e8a62ee1","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"aadfa070-e6bb-421c-9ae7-5cfb1608e007","name":"Group Call Center","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:44:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"26fa31df-e2a3-4014-be70-4ef3e8a62ee1"},{"name":"Group Call Center Agents","id":"b19b669a-dcb6-4201-bdbb-b6f650596d6e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/agents?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","agents"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"e29b9bbc-657c-48b6-a8ff-96c6c3e49321","name":"Group Call Center Agents","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/agents?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","agents"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:37:48 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"558"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"agents\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"weight\": null,\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null,\n            \"skillLevel\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"weight\": null,\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null,\n            \"skillLevel\": null\n        }\n    ]\n}"}],"_postman_id":"b19b669a-dcb6-4201-bdbb-b6f650596d6e"},{"name":"Group Call Center Agents","id":"e05495cb-b6b9-4358-8f20-ffc14c760045","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"agents\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/agents","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","agents"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fadfa900-a4ad-4c0e-8a1e-7624955cc06f","name":"Group Call Center Agents","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"agents\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/agents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:38:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"e05495cb-b6b9-4358-8f20-ffc14c760045"},{"name":"Group Call Center Agents","id":"8ca469ba-278a-4b1d-bce8-355fb323cc50","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"agents\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/agents","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","agents"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dadaba3c-dc40-4d51-b7aa-f9641fd2cefb","name":"Group Call Center Agents","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"agents\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/agents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 22:38:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8ca469ba-278a-4b1d-bce8-355fb323cc50"},{"name":"Group Call Center Agents","id":"a261b044-1994-4b1b-bb08-c458a536c7fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"agents\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/agents","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","agents"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"187e769e-78f6-43e9-9140-99709fd74fbf","name":"Group Call Center Agents","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"call-center-2\",\n\t\"agents\":[\n\t\t{\"userId\":\"andrew.torbeck\"},\n\t\t{\"userId\":9871515003}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/agents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"call-center-2\",\n    \"agents\": [\n        {\n            \"userId\": \"andrew.torbeck\",\n            \"lastName\": \"Torbeck\",\n            \"firstName\": \"Andrew\",\n            \"hiraganaLastName\": \"Torbeck\",\n            \"hiraganaFirstName\": \"Andrew\",\n            \"weight\": null,\n            \"phoneNumber\": \"+1-9871515003\",\n            \"extension\": \"5003\",\n            \"department\": null,\n            \"emailAddress\": \"torbeck@gmail.com\",\n            \"skillLevel\": 1\n        },\n        {\n            \"userId\": \"9871515003\",\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": \"Mayfield\",\n            \"hiraganaFirstName\": \"Zak\",\n            \"weight\": null,\n            \"phoneNumber\": \"+1-8783449002\",\n            \"extension\": \"9002\",\n            \"department\": null,\n            \"emailAddress\": \"zmayfield@parkbenchsolutions.com\",\n            \"skillLevel\": 1\n        }\n    ]\n}"}],"_postman_id":"a261b044-1994-4b1b-bb08-c458a536c7fb"},{"name":"Group Call Center Agents Levels","id":"46694fa9-8d47-473c-8384-24ad7d015773","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"call-center-2\",\n    \"agents\": [\n        {\n            \"userId\": \"andrew.torbeck\",\n            \"lastName\": \"Torbeck\",\n            \"firstName\": \"Andrew\",\n            \"hiraganaLastName\": \"Torbeck\",\n            \"hiraganaFirstName\": \"Andrew\",\n            \"weight\": null,\n            \"phoneNumber\": \"+1-9871515003\",\n            \"extension\": \"5003\",\n            \"department\": null,\n            \"emailAddress\": \"torbeck@gmail.com\",\n            \"skillLevel\": 1\n        },\n        {\n            \"userId\": \"9871515003\",\n            \"lastName\": \"Mayfield\",\n            \"firstName\": \"Zak\",\n            \"hiraganaLastName\": \"Mayfield\",\n            \"hiraganaFirstName\": \"Zak\",\n            \"weight\": null,\n            \"phoneNumber\": \"+1-8783449002\",\n            \"extension\": \"9002\",\n            \"department\": null,\n            \"emailAddress\": \"zmayfield@parkbenchsolutions.com\",\n            \"skillLevel\": 2\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/call-centers/agents","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","agents"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"46694fa9-8d47-473c-8384-24ad7d015773"},{"name":"Group Call Center Agents Unlicensed","id":"2e523134-3a4d-4459-9a50-c18fab7ea22c","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-centers/agents/unlicensed?serviceUserId=mock.cc.1&callCenterType=Premium","description":"<p>Get a list of unlicensed users who are preventing the Call Center from upgrading to another type</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","agents","unlicensed"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"},{"key":"callCenterType","value":"Premium"}],"variable":[]}},"response":[{"id":"468e0128-c757-4418-a9cc-9e4a1d6f00f4","name":"Group Call Center Unlicensed Agents","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/agents/unlicensed?serviceUserId=mock.cc.1&callCenterType=Premium","host":["{{url}}"],"path":["api","v2","groups","call-centers","agents","unlicensed"],"query":[{"key":"serviceUserId","value":"mock.cc.1"},{"key":"callCenterType","value":"Premium"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:16:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"68"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"callCenterType\": \"Premium\",\n    \"agents\": []\n}"}],"_postman_id":"2e523134-3a4d-4459-9a50-c18fab7ea22c"},{"name":"Group Call Center Announcements","id":"ecb02cf6-e770-494d-b3bb-17f3986c179e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/announcements?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","announcements"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"099996b7-d575-47ae-9416-cb80de21af33","name":"Group Call Center Announcements","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/announcements?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","announcements"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:46:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1142"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"entranceMessage\": {\n        \"enabled\": true,\n        \"mandatory\": false,\n        \"audioMessageSource\": \"File\",\n        \"videoMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [\n            {\n                \"name\": \"letsgo.wav\",\n                \"mediaType\": \"WAV\",\n                \"level\": \"User\"\n            }\n        ],\n        \"videoFileList\": []\n    },\n    \"estimatedWaitMessage\": {\n        \"enabled\": false,\n        \"operatingMode\": \"Time\",\n        \"playPositionHighVolume\": true,\n        \"playTimeHighVolume\": true,\n        \"maximumPositions\": 100,\n        \"maximumWaitingMinutes\": 100,\n        \"defaultCallHandlingMinutes\": 5,\n        \"playUpdatedEWM\": false,\n        \"timeBetweenEWMUpdatesSeconds\": null\n    },\n    \"comfortMessage\": {\n        \"enabled\": true,\n        \"audioMessageSource\": \"Default\",\n        \"videoMessageSource\": \"Default\",\n        \"timeBetweenComfortMessagesSeconds\": 10,\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [],\n        \"videoFileList\": []\n    },\n    \"musicOnHoldMessage\": {\n        \"enabled\": false,\n        \"audioMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"externalAudioSource\": null,\n        \"videoMessageSource\": \"Default\",\n        \"videoUrlList\": [],\n        \"externalVideoSource\": null,\n        \"audioFileList\": [],\n        \"videoFileList\": []\n    },\n    \"callWhisperMessage\": {\n        \"enabled\": true,\n        \"audioMessageSource\": \"Default\",\n        \"videoMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [],\n        \"videoFileList\": []\n    }\n}"}],"_postman_id":"ecb02cf6-e770-494d-b3bb-17f3986c179e"},{"name":"Group Call Center Announcements","id":"16c25d5e-a2ad-461d-8b62-12edc349f23b","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"entranceMessage\":{\n\t\t\"enabled\":true,\n\t\t\"mandatory\":false,\n\t\t\"audioMessageSource\":\"File\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[\n\t\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t\t],\n\t\t\"videoFileList\":[]\n\t},\n\t\"estimatedWaitMessage\":{\n\t\t\"enabled\":false,\n\t\t\"operatingMode\":\"Time\",\n\t\t\"playPositionHighVolume\":true,\n\t\t\"playTimeHighVolume\":true,\n\t\t\"maximumPositions\":100,\n\t\t\"maximumWaitingMinutes\":100,\n\t\t\"defaultCallHandlingMinutes\":5,\n\t\t\"playUpdatedEWM\":false,\n\t\t\"timeBetweenEWMUpdatesSeconds\":null\n\t},\n\t\"comfortMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"timeBetweenComfortMessagesSeconds\":10,\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"musicOnHoldMessage\":{\n\t\t\"enabled\":false,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"externalAudioSource\":null,\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"videoUrlList\":[],\n\t\t\"externalVideoSource\":null,\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"callWhisperMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/announcements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","announcements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b7f6aa36-58d7-4ce8-94f4-f3ccad65e70c","name":"Group Call Center Announcements","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"entranceMessage\":{\n\t\t\"enabled\":true,\n\t\t\"mandatory\":false,\n\t\t\"audioMessageSource\":\"File\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[\n\t\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t\t],\n\t\t\"videoFileList\":[]\n\t},\n\t\"estimatedWaitMessage\":{\n\t\t\"enabled\":false,\n\t\t\"operatingMode\":\"Time\",\n\t\t\"playPositionHighVolume\":true,\n\t\t\"playTimeHighVolume\":true,\n\t\t\"maximumPositions\":100,\n\t\t\"maximumWaitingMinutes\":100,\n\t\t\"defaultCallHandlingMinutes\":5,\n\t\t\"playUpdatedEWM\":false,\n\t\t\"timeBetweenEWMUpdatesSeconds\":null\n\t},\n\t\"comfortMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"timeBetweenComfortMessagesSeconds\":10,\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"musicOnHoldMessage\":{\n\t\t\"enabled\":false,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"externalAudioSource\":null,\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"videoUrlList\":[],\n\t\t\"externalVideoSource\":null,\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"callWhisperMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/announcements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:49:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"16c25d5e-a2ad-461d-8b62-12edc349f23b"},{"name":"Group Call Center Bounced Calls","id":"cd234655-2e16-407e-ac31-7ba7e994d0ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/bounced-calls?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","bounced-calls"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"41bc2a72-b510-4dbe-a20f-facab7aa1a5f","name":"Group Call Center Bounced Calls","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/bounced-calls?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","bounced-calls"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:22:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"287"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"numberOfRingsBeforeBouncingCall\": 5,\n    \"enableTransfer\": false,\n    \"bounceCallWhenAgentUnavailable\": true,\n    \"alertCallCenterCallOnHold\": true,\n    \"alertCallCenterCallOnHoldSeconds\": 30,\n    \"bounceCallCenterCallOnHold\": false,\n    \"bounceCallCenterCallOnHoldSeconds\": 60,\n    \"serviceUserId\": \"mock.cc.1\"\n}"}],"_postman_id":"cd234655-2e16-407e-ac31-7ba7e994d0ae"},{"name":"Group Call Center Bounced Calls","id":"5c8c17ac-f6fb-4d6f-adec-d57ae4dcc409","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"numberOfRingsBeforeBouncingCall\":5,\n\t\"enableTransfer\":false,\n\t\"bounceCallWhenAgentUnavailable\":true,\n\t\"alertCallCenterCallOnHold\":true,\n\t\"alertCallCenterCallOnHoldSeconds\":30,\n\t\"bounceCallCenterCallOnHold\":false,\n\t\"bounceCallCenterCallOnHoldSeconds\":60,\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/bounced-calls","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","bounced-calls"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8dedf814-16a2-40bc-bb4c-6ff65bad9976","name":"Group Call Center Bounced Calls","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"numberOfRingsBeforeBouncingCall\":5,\n\t\"enableTransfer\":false,\n\t\"bounceCallWhenAgentUnavailable\":true,\n\t\"alertCallCenterCallOnHold\":true,\n\t\"alertCallCenterCallOnHoldSeconds\":30,\n\t\"bounceCallCenterCallOnHold\":false,\n\t\"bounceCallCenterCallOnHoldSeconds\":60,\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/bounced-calls"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:23:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5c8c17ac-f6fb-4d6f-adec-d57ae4dcc409"},{"name":"Group Call Center Comfort Message Bypass","id":"a543ec8f-d3ab-4a90-b992-db6d376d88af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/comfort-message-bypass?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","comfort-message-bypass"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"9de41a22-5917-4f4f-a448-bb0dde75ade6","name":"Group Call Center Comfort Message Bypass","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/comfort-message-bypass?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","comfort-message-bypass"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:29:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"349"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"enabled\": true,\n    \"callWaitingAgeThresholdSeconds\": 30,\n    \"playAnnouncementAfterRinging\": true,\n    \"ringTimeBeforePlayingAnnouncementSeconds\": 10,\n    \"audioMessageSource\": \"File\",\n    \"videoMessageSource\": \"Default\",\n    \"audioUrlList\": [],\n    \"videoUrlList\": [],\n    \"audioFileList\": [\n        {\n            \"name\": \"letsgo.wav\",\n            \"mediaType\": \"WAV\",\n            \"level\": \"User\"\n        }\n    ],\n    \"videoFileList\": []\n}"}],"_postman_id":"a543ec8f-d3ab-4a90-b992-db6d376d88af"},{"name":"Group Call Center Comfort Message Bypass","id":"79d14e9f-24e0-4c76-b9ed-ac99ba5ddba5","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"enabled\":true,\n\t\"callWaitingAgeThresholdSeconds\":30,\n\t\"playAnnouncementAfterRinging\":true,\n\t\"ringTimeBeforePlayingAnnouncementSeconds\":10,\n\t\"audioMessageSource\":\"File\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[\n\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/comfort-message-bypass","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","comfort-message-bypass"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dc3e772a-ef6c-48e7-8454-a92631310613","name":"Group Call Center Comfort Message Bypass","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"enabled\":true,\n\t\"callWaitingAgeThresholdSeconds\":30,\n\t\"playAnnouncementAfterRinging\":true,\n\t\"ringTimeBeforePlayingAnnouncementSeconds\":10,\n\t\"audioMessageSource\":\"File\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[\n\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/comfort-message-bypass"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:30:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"79d14e9f-24e0-4c76-b9ed-ac99ba5ddba5"},{"name":"Group Call Center Distinctive Ringing","id":"bb25cdd0-50fe-4d9f-8cf4-61441e395a2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/distinctive-ringing?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","distinctive-ringing"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"aa880b18-e155-4fab-a15b-6ab4a3fb6723","name":"Group Call Center Distinctive Ringing","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/distinctive-ringing?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","distinctive-ringing"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:43:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"178"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"distinctiveRingingCallCenterCalls\": true,\n    \"distinctiveRingingRingPatternForCallCenter\": \"Normal\",\n    \"distinctiveRingingForceDeliveryRingPattern\": \"Normal\",\n    \"serviceUserId\": \"mock.cc.1\"\n}"}],"_postman_id":"bb25cdd0-50fe-4d9f-8cf4-61441e395a2d"},{"name":"Group Call Center Distinctive Ringing","id":"e4810f4a-3964-48f5-a9b6-4d8b2287bbf0","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"distinctiveRingingCallCenterCalls\":true,\n\t\"distinctiveRingingRingPatternForCallCenter\":\"Normal\",\n\t\"distinctiveRingingForceDeliveryRingPattern\":\"Normal\",\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/distinctive-ringing","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","distinctive-ringing"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"02b27027-5c12-4cf8-b9ae-dfbb16cfc33e","name":"Group Call Center Distinctive Ringing","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"distinctiveRingingCallCenterCalls\":true,\n\t\"distinctiveRingingRingPatternForCallCenter\":\"Normal\",\n\t\"distinctiveRingingForceDeliveryRingPattern\":\"Normal\",\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/distinctive-ringing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:43:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"e4810f4a-3964-48f5-a9b6-4d8b2287bbf0"},{"name":"Group Call Center DNIS Agents","id":"4d46d2da-4154-4571-b574-53c69498e0cc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/dnis/agents?serviceUserId=asdaS12@voicecci.net&name=dnis002","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","agents"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"asdaS12@voicecci.net"},{"key":"name","value":"dnis002"}],"variable":[]}},"response":[{"id":"e00c5d15-3803-42dd-9788-4a8dc23836fe","name":"Group Call Center DNIS Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/dnis?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","dnis"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:50:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"428"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"displayDNISNumber\": true,\n    \"displayDNISName\": true,\n    \"promoteCallsFromPriority1to0\": true,\n    \"promoteCallsFromPriority2to1\": true,\n    \"promoteCallsFromPriority3to2\": true,\n    \"promoteCallsFromPriority1to0Seconds\": 900,\n    \"promoteCallsFromPriority2to1Seconds\": 900,\n    \"promoteCallsFromPriority3to2Seconds\": 900,\n    \"serviceUserId\": \"mock.cc.1\",\n    \"instances\": [\n        {\n            \"name\": \"mock.cc.1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"priority\": \"0 - Highest\",\n            \"isPrimaryDNIS\": true\n        }\n    ]\n}"}],"_postman_id":"4d46d2da-4154-4571-b574-53c69498e0cc"},{"name":"Group Call Center DNIS Instances","id":"d660d601-52b8-41e7-8a5b-c3ebc8b17e11","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/dnis/instances?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","instances"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"d5e9c860-660f-458b-9ccf-a63b87496150","name":"Group Call Center DNIS Instances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/dnis/instances?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","dnis","instances"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:14:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"104"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"mock.cc.1\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"priority\": \"0 - Highest\",\n        \"isPrimaryDNIS\": true\n    }\n]"}],"_postman_id":"d660d601-52b8-41e7-8a5b-c3ebc8b17e11"},{"name":"Group Call Center DNIS Instance","id":"a616ad38-0d7d-4493-9e31-88d2b4228251","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"name\":\"mock.dnis.2\",\n\t\"priority\":\"1 - High\",\n\t\"dnisPhoneNumber\":\"9589582005\",\n\t\"extension\":\"2005\",\n\t\"callingLineIdPhoneNumber\":\"9589582005\",\n\t\"useCustomCLIDSettings\":false,\n\t\"callingLineIdLastName\":null,\n\t\"callingLineIdFirstName\":null,\n\t\"useCustomDnisAnnouncementSettings\":false,\n\t\"allowOutgoingACDCall\":false\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis/instances","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","instances"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fcf6ed79-d228-4ec1-a2cc-68109fa8d2f1","name":"Group Call Center DNIS Instance","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"name\":\"mock.dnis.2\",\n\t\"priority\":\"1 - High\",\n\t\"dnisPhoneNumber\":\"9589582005\",\n\t\"extension\":\"2005\",\n\t\"callingLineIdPhoneNumber\":\"9589582005\",\n\t\"useCustomCLIDSettings\":false,\n\t\"callingLineIdLastName\":null,\n\t\"callingLineIdFirstName\":null,\n\t\"useCustomDnisAnnouncementSettings\":false,\n\t\"allowOutgoingACDCall\":false\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis/instances"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:15:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a616ad38-0d7d-4493-9e31-88d2b4228251"},{"name":"Group Call Center DNIS Instance","id":"23460a01-5169-4551-8d85-5d8730d344fc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/dnis/instances?name=mock.dnis.2&serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","instances"],"host":["{{url}}"],"query":[{"key":"name","value":"mock.dnis.2"},{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"97644fdf-ce00-4896-b534-9a66945c5699","name":"Group Call Center DNIS Instance","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/dnis/instances?name=mock.dnis.2&serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","dnis","instances"],"query":[{"key":"name","value":"mock.dnis.2"},{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:16:08 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"257"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"dnisPhoneNumber\": 9589582005,\n    \"extension\": 2005,\n    \"useCustomCLIDSettings\": false,\n    \"callingLineIdPhoneNumber\": 9589582005,\n    \"useCustomDnisAnnouncementSettings\": false,\n    \"priority\": \"1 - High\",\n    \"allowOutgoingACDCall\": false,\n    \"serviceUserId\": \"mock.cc.1\",\n    \"name\": \"mock.dnis.2\"\n}"}],"_postman_id":"23460a01-5169-4551-8d85-5d8730d344fc"},{"name":"Group Call Center DNIS Instance","id":"deb41837-6729-4e07-8fbf-720a3e91a771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{\n\t\"dnisPhoneNumber\":9589582005,\n\t\"extension\":2005,\n\t\"useCustomCLIDSettings\":false,\n\t\"callingLineIdPhoneNumber\":9589582005,\n\t\"useCustomDnisAnnouncementSettings\":false,\n\t\"priority\":\"1 - High\",\n\t\"allowOutgoingACDCall\":false,\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"name\":\"mock.dnis.2\",\n\t\"newDNISName\":\"mock.dnis.2\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis/instances","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","instances"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2dcdf31b-cc31-445c-a365-56d553c7d06e","name":"Group Call Center DNIS Instance","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"dnisPhoneNumber\":9589582005,\n\t\"extension\":2005,\n\t\"useCustomCLIDSettings\":false,\n\t\"callingLineIdPhoneNumber\":9589582005,\n\t\"useCustomDnisAnnouncementSettings\":false,\n\t\"priority\":\"1 - High\",\n\t\"allowOutgoingACDCall\":false,\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"name\":\"mock.dnis.2\",\n\t\"newDNISName\":\"mock.dnis.2\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis/instances"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:16:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"deb41837-6729-4e07-8fbf-720a3e91a771"},{"name":"Group Call Center DNIS Instance","id":"01330b40-a310-445b-a2d4-5138551a0299","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/dnis/instances?name=mock.dnis.2&serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","instances"],"host":["{{url}}"],"query":[{"key":"name","value":"mock.dnis.2"},{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"a380aeb2-e683-4e23-85cf-99b483288589","name":"Group Call Center DNIS Instance","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/dnis/instances?name=mock.dnis.2&serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","dnis","instances"],"query":[{"key":"name","value":"mock.dnis.2"},{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:17:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"01330b40-a310-445b-a2d4-5138551a0299"},{"name":"Group Call Center DNIS Instance Announcements","id":"cc4b6104-151c-4ad8-bd22-5d46f181bc78","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/dnis/announcements?name=mock.cc.1&serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","announcements"],"host":["{{url}}"],"query":[{"key":"name","value":"mock.cc.1"},{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"b363ae77-f680-4d2e-bc01-1c2a9fed87b8","name":"Group Call Center DNIS Instance Announcements","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/dnis/announcements?name=mock.cc.1&serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","dnis","announcements"],"query":[{"key":"name","value":"mock.cc.1"},{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:28:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1160"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"name\": \"mock.cc.1\",\n    \"entranceMessage\": {\n        \"enabled\": true,\n        \"mandatory\": true,\n        \"audioMessageSource\": \"File\",\n        \"videoMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [\n            {\n                \"name\": \"letsgo.wav\",\n                \"mediaType\": \"WAV\",\n                \"level\": \"User\"\n            }\n        ],\n        \"videoFileList\": []\n    },\n    \"estimatedWaitMessage\": {\n        \"enabled\": false,\n        \"operatingMode\": \"Time\",\n        \"playPositionHighVolume\": true,\n        \"playTimeHighVolume\": true,\n        \"maximumPositions\": 100,\n        \"maximumWaitingMinutes\": 100,\n        \"defaultCallHandlingMinutes\": 5,\n        \"playUpdatedEWM\": false,\n        \"timeBetweenEWMUpdatesSeconds\": null\n    },\n    \"comfortMessage\": {\n        \"enabled\": true,\n        \"audioMessageSource\": \"Default\",\n        \"videoMessageSource\": \"Default\",\n        \"timeBetweenComfortMessagesSeconds\": 10,\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [],\n        \"videoFileList\": []\n    },\n    \"musicOnHoldMessage\": {\n        \"enabled\": false,\n        \"audioMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"externalAudioSource\": null,\n        \"videoMessageSource\": \"Default\",\n        \"videoUrlList\": [],\n        \"externalVideoSource\": null,\n        \"audioFileList\": [],\n        \"videoFileList\": []\n    },\n    \"callWhisperMessage\": {\n        \"enabled\": true,\n        \"audioMessageSource\": \"Default\",\n        \"videoMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [],\n        \"videoFileList\": []\n    }\n}"}],"_postman_id":"cc4b6104-151c-4ad8-bd22-5d46f181bc78"},{"name":"Group Call Center DNIS Instance Announcements","id":"9c6fd8ad-cfa8-4463-877f-f2b1b99caac1","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"name\":\"mock.cc.1\",\n\t\"entranceMessage\":{\n\t\t\"enabled\":true,\n\t\t\"mandatory\":true,\n\t\t\"audioMessageSource\":\"File\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[\n\t\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t\t],\n\t\t\"videoFileList\":[]\n\t},\n\t\"estimatedWaitMessage\":{\n\t\t\"enabled\":false,\n\t\t\"operatingMode\":\"Time\",\n\t\t\"playPositionHighVolume\":true,\n\t\t\"playTimeHighVolume\":true,\n\t\t\"maximumPositions\":100,\n\t\t\"maximumWaitingMinutes\":100,\n\t\t\"defaultCallHandlingMinutes\":5,\n\t\t\"playUpdatedEWM\":false,\n\t\t\"timeBetweenEWMUpdatesSeconds\":null\n\t},\n\t\"comfortMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"timeBetweenComfortMessagesSeconds\":10,\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"musicOnHoldMessage\":{\n\t\t\"enabled\":false,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"externalAudioSource\":null,\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"videoUrlList\":[],\n\t\t\"externalVideoSource\":null,\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"callWhisperMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis/announcements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis","announcements"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"29d8c222-6322-490b-b496-8fde466132a5","name":"Group Call Center DNIS Instance Announcements","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"name\":\"mock.cc.1\",\n\t\"entranceMessage\":{\n\t\t\"enabled\":true,\n\t\t\"mandatory\":true,\n\t\t\"audioMessageSource\":\"File\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[\n\t\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t\t],\n\t\t\"videoFileList\":[]\n\t},\n\t\"estimatedWaitMessage\":{\n\t\t\"enabled\":false,\n\t\t\"operatingMode\":\"Time\",\n\t\t\"playPositionHighVolume\":true,\n\t\t\"playTimeHighVolume\":true,\n\t\t\"maximumPositions\":100,\n\t\t\"maximumWaitingMinutes\":100,\n\t\t\"defaultCallHandlingMinutes\":5,\n\t\t\"playUpdatedEWM\":false,\n\t\t\"timeBetweenEWMUpdatesSeconds\":null\n\t},\n\t\"comfortMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"timeBetweenComfortMessagesSeconds\":10,\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"musicOnHoldMessage\":{\n\t\t\"enabled\":false,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"externalAudioSource\":null,\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"videoUrlList\":[],\n\t\t\"externalVideoSource\":null,\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t},\n\t\"callWhisperMessage\":{\n\t\t\"enabled\":true,\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis/announcements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:28:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9c6fd8ad-cfa8-4463-877f-f2b1b99caac1"},{"name":"Group Call Center DNIS Settings","id":"117f934e-80fe-407c-9c03-56fe6890ec28","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/dnis?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"8564bf47-6dd9-41d2-8668-9daee3b34246","name":"Group Call Center DNIS Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/dnis?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","dnis"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:50:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"428"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"displayDNISNumber\": true,\n    \"displayDNISName\": true,\n    \"promoteCallsFromPriority1to0\": true,\n    \"promoteCallsFromPriority2to1\": true,\n    \"promoteCallsFromPriority3to2\": true,\n    \"promoteCallsFromPriority1to0Seconds\": 900,\n    \"promoteCallsFromPriority2to1Seconds\": 900,\n    \"promoteCallsFromPriority3to2Seconds\": 900,\n    \"serviceUserId\": \"mock.cc.1\",\n    \"instances\": [\n        {\n            \"name\": \"mock.cc.1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"priority\": \"0 - Highest\",\n            \"isPrimaryDNIS\": true\n        }\n    ]\n}"}],"_postman_id":"117f934e-80fe-407c-9c03-56fe6890ec28"},{"name":"Group Call Center DNIS Settings","id":"0d6d09a8-5a2f-4781-923a-0647e540b50a","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"displayDNISNumber\":true,\n\t\"displayDNISName\":true,\n\t\"promoteCallsFromPriority1to0\":true,\n\t\"promoteCallsFromPriority2to1\":true,\n\t\"promoteCallsFromPriority3to2\":true,\n\t\"promoteCallsFromPriority1to0Seconds\":900,\n\t\"promoteCallsFromPriority2to1Seconds\":900,\n\t\"promoteCallsFromPriority3to2Seconds\":900,\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"instances\":[\n\t\t{\"name\":\"mock.cc.1\",\"phoneNumber\":null,\"extension\":null,\"priority\":\"0 - Highest\",\"isPrimaryDNIS\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","dnis"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4e4494ee-56ef-48eb-94a2-242e276b9003","name":"Group Call Center DNIS Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"displayDNISNumber\":true,\n\t\"displayDNISName\":true,\n\t\"promoteCallsFromPriority1to0\":true,\n\t\"promoteCallsFromPriority2to1\":true,\n\t\"promoteCallsFromPriority3to2\":true,\n\t\"promoteCallsFromPriority1to0Seconds\":900,\n\t\"promoteCallsFromPriority2to1Seconds\":900,\n\t\"promoteCallsFromPriority3to2Seconds\":900,\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"instances\":[\n\t\t{\"name\":\"mock.cc.1\",\"phoneNumber\":null,\"extension\":null,\"priority\":\"0 - Highest\",\"isPrimaryDNIS\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/dnis"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:51:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0d6d09a8-5a2f-4781-923a-0647e540b50a"},{"name":"Group Call Center Forced Forwarding","id":"bae3ffff-2104-4648-997c-90e424368201","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/forced-forwarding?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","forced-forwarding"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"268925af-643c-4ce7-a331-5fd8621a3c9c","name":"Group Call Center Forced Forwarding","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/forced-forwarding?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","forced-forwarding"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:53:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"326"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"enabled\": false,\n    \"forwardToPhoneNumber\": null,\n    \"allowEnableViaFAC\": true,\n    \"playAnnouncementBeforeForwarding\": false,\n    \"audioMessageSource\": \"File\",\n    \"videoMessageSource\": \"Default\",\n    \"audioUrlList\": [],\n    \"videoUrlList\": [],\n    \"audioFileList\": [\n        {\n            \"name\": \"letsgo.wav\",\n            \"mediaType\": \"WAV\",\n            \"level\": \"User\"\n        }\n    ],\n    \"videoFileList\": []\n}"}],"_postman_id":"bae3ffff-2104-4648-997c-90e424368201"},{"name":"Group Call Center Forced Forwarding","id":"261d2a2f-4feb-48f1-ad72-19e9052b3281","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"enabled\":false,\n\t\"forwardToPhoneNumber\":null,\n\t\"allowEnableViaFAC\":true,\n\t\"playAnnouncementBeforeForwarding\":false,\n\t\"audioMessageSource\":\"File\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[\n\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/forced-forwarding","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","forced-forwarding"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ac6db2fe-d736-4ad0-8734-ca5cd37d278a","name":"Group Call Center Forced Forwarding","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"enabled\":false,\n\t\"forwardToPhoneNumber\":null,\n\t\"allowEnableViaFAC\":true,\n\t\"playAnnouncementBeforeForwarding\":false,\n\t\"audioMessageSource\":\"File\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[\n\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/forced-forwarding"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:54:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"261d2a2f-4feb-48f1-ad72-19e9052b3281"},{"name":"Group Call Center Holiday Service","id":"53035d31-bf87-44e1-aaab-12b9ab7abb56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/holiday-service?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","holiday-service"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"ffed27c6-35b4-4ce2-ad95-21cb4751e5ed","name":"Group Call Center Holiday Service","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/holiday-service?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","holiday-service"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:59:08 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"268"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"action\": \"Busy\",\n    \"holidaySchedule\": null,\n    \"transferPhoneNumber\": null,\n    \"playAnnouncementBeforeAction\": false,\n    \"audioMessageSource\": \"Default\",\n    \"videoMessageSource\": \"Default\",\n    \"audioUrlList\": [],\n    \"videoUrlList\": [],\n    \"audioFileList\": [],\n    \"videoFileList\": []\n}"}],"_postman_id":"53035d31-bf87-44e1-aaab-12b9ab7abb56"},{"name":"Group Call Center Holiday Service","id":"a81d24c6-faf9-4933-9296-cf4327b24bbf","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"Busy\",\n\t\"holidaySchedule\":null,\n\t\"transferPhoneNumber\":null,\n\t\"playAnnouncementBeforeAction\":false,\n\t\"audioMessageSource\":\"Default\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/holiday-service","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","holiday-service"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3aff6709-1b03-4b5d-a431-687783ddba91","name":"Group Call Center Holiday Service","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"Busy\",\n\t\"holidaySchedule\":null,\n\t\"transferPhoneNumber\":null,\n\t\"playAnnouncementBeforeAction\":false,\n\t\"audioMessageSource\":\"Default\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/holiday-service"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:59:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a81d24c6-faf9-4933-9296-cf4327b24bbf"},{"name":"Group Call Center Night Service","id":"b31f857c-d211-45b8-bd4c-d44621e524c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/night-service?serviceUserId=testgrpcc@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","night-service"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"testgrpcc@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"b6844270-03e1-4426-bf1e-317089aa50fd","name":"Group Call Center Night Service","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/night-service?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","night-service"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 00:04:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"583"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"action\": \"Busy\",\n    \"businessHours\": null,\n    \"forceNightService\": false,\n    \"allowManualOverrideViaFAC\": true,\n    \"transferPhoneNumber\": null,\n    \"playAnnouncementBeforeAction\": false,\n    \"announcementMode\": \"Normal Announcement\",\n    \"normalMode\": {\n        \"audioMessageSource\": \"File\",\n        \"videoMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [\n            {\n                \"name\": \"letsgo.wav\",\n                \"mediaType\": \"WAV\",\n                \"level\": \"User\"\n            }\n        ],\n        \"videoFileList\": []\n    },\n    \"manualMode\": {\n        \"audioMessageSource\": \"Default\",\n        \"videoMessageSource\": \"Default\",\n        \"audioUrlList\": [],\n        \"videoUrlList\": [],\n        \"audioFileList\": [],\n        \"videoFileList\": []\n    }\n}"}],"_postman_id":"b31f857c-d211-45b8-bd4c-d44621e524c3"},{"name":"Group Call Center Night Service","id":"0e39689e-4881-48b3-93fd-8dd98cc61bcf","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"Busy\",\n\t\"businessHours\":null,\n\t\"forceNightService\":false,\n\t\"allowManualOverrideViaFAC\":true,\n\t\"transferPhoneNumber\":null,\n\t\"playAnnouncementBeforeAction\":false,\n\t\"announcementMode\":\"Normal Announcement\",\n\t\"normalMode\":{\n\t\t\"audioMessageSource\":\"File\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[\n\t\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t\t],\n\t\t\"videoFileList\":[]\n\t},\n\t\"manualMode\":{\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/night-service","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","night-service"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f34cf38a-e44c-4ca2-ba06-96f9d7b93b45","name":"Group Call Center Night Service","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"Busy\",\n\t\"businessHours\":null,\n\t\"forceNightService\":false,\n\t\"allowManualOverrideViaFAC\":true,\n\t\"transferPhoneNumber\":null,\n\t\"playAnnouncementBeforeAction\":false,\n\t\"announcementMode\":\"Normal Announcement\",\n\t\"normalMode\":{\n\t\t\"audioMessageSource\":\"File\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[\n\t\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t\t],\n\t\t\"videoFileList\":[]\n\t},\n\t\"manualMode\":{\n\t\t\"audioMessageSource\":\"Default\",\n\t\t\"videoMessageSource\":\"Default\",\n\t\t\"audioUrlList\":[],\n\t\t\"videoUrlList\":[],\n\t\t\"audioFileList\":[],\n\t\t\"videoFileList\":[]\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/night-service"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 00:06:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0e39689e-4881-48b3-93fd-8dd98cc61bcf"},{"name":"Group Call Center Overflow","id":"8a541b6e-6709-4c17-95f5-7a8f563adac9","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/overflow?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","overflow"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"ab6962f0-4dd6-4751-83b7-19b48739873f","name":"Group Call Center Overflow","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/overflow?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","overflow"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:34:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"304"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"action\": \"Busy\",\n    \"transferPhoneNumber\": null,\n    \"overflowAfterTimeout\": true,\n    \"timeoutSeconds\": 30,\n    \"playAnnouncementBeforeOverflowProcessing\": true,\n    \"audioMessageSource\": \"Default\",\n    \"videoMessageSource\": \"Default\",\n    \"audioUrlList\": [],\n    \"videoUrlList\": [],\n    \"audioFileList\": [],\n    \"videoFileList\": []\n}"}],"_postman_id":"8a541b6e-6709-4c17-95f5-7a8f563adac9"},{"name":"Group Call Center Overflow","id":"5e2a2594-fb22-4c94-8c73-088c068e497a","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"Busy\",\n\t\"transferPhoneNumber\":null,\n\t\"overflowAfterTimeout\":true,\n\t\"timeoutSeconds\":30,\n\t\"playAnnouncementBeforeOverflowProcessing\":true,\n\t\"audioMessageSource\":\"Default\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/overflow","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","overflow"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dd0e10cc-05b1-4a58-879c-6d2924ca3e2f","name":"Group Call Center Overflow","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"Busy\",\n\t\"transferPhoneNumber\":null,\n\t\"overflowAfterTimeout\":true,\n\t\"timeoutSeconds\":30,\n\t\"playAnnouncementBeforeOverflowProcessing\":true,\n\t\"audioMessageSource\":\"Default\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/overflow"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:35:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5e2a2594-fb22-4c94-8c73-088c068e497a"},{"name":"Group Call Center Queue Disposition Codes Settings","id":"d4c6b4c1-acda-4524-891e-de1360e77cfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/disposition-codes?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","disposition-codes"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"7d31179b-e5e9-430c-97d8-7896067d5a75","name":"Group Call Center Queue Disposition Code Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/disposition-codes?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","disposition-codes"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 19:42:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"194"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableCallDispositionCodes\": true,\n    \"includeOrganizationCodes\": true,\n    \"forceUseOfCallDispositionCodes\": false,\n    \"defaultCallDispositionCode\": {\n        \"code\": \"555\",\n        \"level\": \"Queue\"\n    },\n    \"serviceUserId\": \"mock.cc.1\"\n}"}],"_postman_id":"d4c6b4c1-acda-4524-891e-de1360e77cfa"},{"name":"Group Call Center Queue Disposition Codes Settings","id":"858b725f-3702-4075-b63c-08f00e406686","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enableCallDispositionCodes\":true,\n\t\"includeOrganizationCodes\":true,\n\t\"forceUseOfCallDispositionCodes\":false,\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"defaultCallDispositionCode\":{\n\t\t\"code\":555,\n\t\t\"level\":\"Queue\"\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/disposition-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","disposition-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"950e1d17-ec70-4aea-9529-f0ff0071b2a5","name":"Group Call Center Queue Disposition Code Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enableCallDispositionCodes\":true,\n\t\"includeOrganizationCodes\":true,\n\t\"forceUseOfCallDispositionCodes\":false,\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"defaultCallDispositionCode\":{\n\t\t\"code\":555,\n\t\t\"level\":\"Queue\"\n\t}\n}"},"url":"{{url}}/api/v2/groups/call-centers/disposition-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 19:42:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"858b725f-3702-4075-b63c-08f00e406686"},{"name":"Group Call Center Queue Disposition Codes","id":"4ee22073-bd96-4079-8c2c-f321f08ebff2","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes?serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","disposition-codes","codes"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"dbcd0ac6-bea1-42eb-a8c1-118fc9c49a05","name":"Group Call Center Queue Disposition Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","disposition-codes","codes"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 19:43:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"98"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"isActive\": true,\n        \"code\": 555,\n        \"description\": \"Test123\",\n        \"level\": \"Queue\",\n        \"serviceUserId\": \"mock.cc.1\"\n    }\n]"}],"_postman_id":"4ee22073-bd96-4079-8c2c-f321f08ebff2"},{"name":"Group Call Center Queue Disposition Code","id":"8afe5485-c54f-4868-aa2e-8043c4975f45","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"code\":\"666\",\n\t\"description\":\"Test1234\",\n\t\"isActive\":true\n}"},"url":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","disposition-codes","codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"47369d1e-a1b1-45f7-b6b9-8e303176315b","name":"Group Call Center Queue Disposition Codes","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"code\":\"666\",\n\t\"description\":\"Test1234\",\n\t\"isActive\":true\n}"},"url":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 19:44:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8afe5485-c54f-4868-aa2e-8043c4975f45"},{"name":"Group Call Center Queue Disposition Code","id":"bf8cf1b1-e0b3-45df-bd3a-b078a86ae66c","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes?serviceUserId=mock.cc.1&code=666","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","disposition-codes","codes"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1"},{"key":"code","value":"666"}],"variable":[]}},"response":[{"id":"eaf98e52-c8d1-48bb-bb53-cdaa8ca3918b","name":"Group Call Center Queue Disposition Code","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes?serviceUserId=mock.cc.1&code=666","host":["{{url}}"],"path":["api","v2","groups","call-centers","disposition-codes","codes"],"query":[{"key":"serviceUserId","value":"mock.cc.1"},{"key":"code","value":"666"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 19:46:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"83"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"description\": \"Test1234\",\n    \"serviceUserId\": \"mock.cc.1\",\n    \"code\": \"666\"\n}"}],"_postman_id":"bf8cf1b1-e0b3-45df-bd3a-b078a86ae66c"},{"name":"Group Call Center Queue Disposition Code","id":"1f889799-56b6-47d9-b41e-e09267357ed0","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"code\":666,\n\t\"description\":\"New Code\",\n\t\"level\":\"Queue\",\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","disposition-codes","codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f7bbd54e-fa96-4e59-abd3-1c49fcce706d","name":"Group Call Center Queue Disposition Code","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"code\":666,\n\t\"description\":\"New Code\",\n\t\"level\":\"Queue\",\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 19:47:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"1f889799-56b6-47d9-b41e-e09267357ed0"},{"name":"Group Call Center Queue Disposition Code","id":"d7e0e013-5463-4a4a-bca3-b52104407ce6","request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes?code=666&serviceUserId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","disposition-codes","codes"],"host":["{{url}}"],"query":[{"key":"code","value":"666"},{"key":"serviceUserId","value":"mock.cc.1"}],"variable":[]}},"response":[{"id":"4168d24e-38f2-4b65-beb2-1de1a51608c6","name":"Group Call Center Queue Disposition Codes","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/disposition-codes/codes?code=666&serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","disposition-codes","codes"],"query":[{"key":"code","value":"666"},{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 19:47:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"d7e0e013-5463-4a4a-bca3-b52104407ce6"},{"name":"Group Call Center Queue Status","id":"9ac7cf74-35c0-42d9-86fb-882741ce4eba","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/status?serviceUserId=mock.cc.1@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","status"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"}],"variable":[]}},"response":[{"id":"f7c1e641-59d8-4128-985b-a9a4a7d891bf","name":"Group Call Center Queue Status","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/status?serviceUserId=mock.cc.1@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","call-centers","status"],"query":[{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:30:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"101"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"numberOfCallsQueuedNow\": 0,\n    \"agentsCurrentlyStaffed\": [],\n    \"serviceUserId\": \"mock.cc.1@microv-works.com\"\n}"}],"_postman_id":"9ac7cf74-35c0-42d9-86fb-882741ce4eba"},{"name":"Group Call Center Queue Status Notifications","id":"136bc49f-ea64-4956-b092-3991b2ddbfd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/queue-status-notifications?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","queue-status-notifications"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"26a13332-6cec-436c-99a9-7fe373d7987d","name":"Group Call Center Queue Status Notifications","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/queue-status-notifications?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","queue-status-notifications"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:38:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"197"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableQueueStatusNotification\": true,\n    \"enableQueueDepthThreshold\": true,\n    \"enableWaitingTimeThreshold\": true,\n    \"numberOfCallsThreshold\": 100,\n    \"waitingTimeOfCallsThreshold\": 1200,\n    \"serviceUserId\": \"mock.cc.1\"\n}"}],"_postman_id":"136bc49f-ea64-4956-b092-3991b2ddbfd5"},{"name":"Group Call Center Queue Status Notifications","id":"aac2de73-8bfc-4ffa-b53b-d88813a65d04","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enableQueueStatusNotification\":true,\n\t\"enableQueueDepthThreshold\":true,\n\t\"enableWaitingTimeThreshold\":true,\n\t\"numberOfCallsThreshold\":100,\n\t\"waitingTimeOfCallsThreshold\":1200,\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/queue-status-notifications","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","queue-status-notifications"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3c08a485-231d-454e-a20f-1c497d638828","name":"Group Call Center Queue Status Notifications","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enableQueueStatusNotification\":true,\n\t\"enableQueueDepthThreshold\":true,\n\t\"enableWaitingTimeThreshold\":true,\n\t\"numberOfCallsThreshold\":100,\n\t\"waitingTimeOfCallsThreshold\":1200,\n\t\"serviceUserId\":\"mock.cc.1\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/queue-status-notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 18:38:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"aac2de73-8bfc-4ffa-b53b-d88813a65d04"},{"name":"Group Call Center Enhanced Reporting","id":"b1f94bd3-0041-4bc9-96bf-c7e85b718291","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-centers/enhanced-reporting?serviceProviderId=sp.odin&groupId=sp.grp.odin","description":"<p>Configure Call Center External Reporting settings for the group.<br />Possible values for reportingServer are :</p>\n<ol>\n<li>Off</li>\n<li>Enhanced</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","enhanced-reporting"],"host":["{{url}}"],"query":[{"description":{"content":"<p>cannot be an enterprise</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"sp.odin"},{"key":"groupId","value":"sp.grp.odin"}],"variable":[]}},"response":[{"id":"3ba75991-de72-41b0-a8e6-68568f8f6858","name":"Group Call Center Reporting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/reporting?serviceUserId=mock.cc.1@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","call-centers","reporting"],"query":[{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:26:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"143"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"generateDailyReport\": false,\n    \"collectionPeriodMinutes\": 30,\n    \"statisticsSource\": \"Application Server\",\n    \"serviceUserId\": \"mock.cc.1@microv-works.com\"\n}"}],"_postman_id":"b1f94bd3-0041-4bc9-96bf-c7e85b718291"},{"name":"Group Call Center Enhanced Reporting","id":"01738af0-18f3-4fa9-95b5-96ca4653810d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"generateDailyReport\":false,\n\t\"collectionPeriodMinutes\":30,\n\t\"statisticsSource\":\"Application Server\",\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/reporting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","reporting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"43fb4cf7-b886-45e7-bab5-c4a2c0eebde4","name":"Group Call Center Reporting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"generateDailyReport\":false,\n\t\"collectionPeriodMinutes\":30,\n\t\"statisticsSource\":\"Application Server\",\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/reporting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:26:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"01738af0-18f3-4fa9-95b5-96ca4653810d"},{"name":"Group Call Center Reporting","id":"e1557290-0ad3-4075-a604-15c25b53824c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/reporting?serviceUserId=mock.cc.1@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","reporting"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"}],"variable":[]}},"response":[{"id":"361a17e3-90aa-4322-bca1-047894e4aaae","name":"Group Call Center Reporting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/reporting?serviceUserId=mock.cc.1@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","call-centers","reporting"],"query":[{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:26:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"143"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"generateDailyReport\": false,\n    \"collectionPeriodMinutes\": 30,\n    \"statisticsSource\": \"Application Server\",\n    \"serviceUserId\": \"mock.cc.1@microv-works.com\"\n}"}],"_postman_id":"e1557290-0ad3-4075-a604-15c25b53824c"},{"name":"Group Call Center Reporting","id":"00160dc9-87f1-4030-8558-24b8f7c2d9aa","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"generateDailyReport\":false,\n\t\"collectionPeriodMinutes\":30,\n\t\"statisticsSource\":\"Application Server\",\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/reporting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","reporting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"42db3e06-0513-4310-9b9c-991685a82b6d","name":"Group Call Center Reporting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"generateDailyReport\":false,\n\t\"collectionPeriodMinutes\":30,\n\t\"statisticsSource\":\"Application Server\",\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/call-centers/reporting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:26:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"00160dc9-87f1-4030-8558-24b8f7c2d9aa"},{"name":"Group Call Center Statistics","id":"5bbc061e-573d-433b-8a44-eac625aa6486","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/statistics?end=2018-10-09T07:00:00.000Z&serviceUserId=mock.cc.1@microv-works.com&start=2018-10-08T07:00:00.000Z","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","statistics"],"host":["{{url}}"],"query":[{"key":"end","value":"2018-10-09T07:00:00.000Z"},{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"},{"key":"start","value":"2018-10-08T07:00:00.000Z"}],"variable":[]}},"response":[{"id":"07e8f082-4ca0-4f27-b51a-6a5915d1f103","name":"Group Call Center Statistics","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/statistics?end=2018-10-09T07:00:00.000Z&serviceUserId=mock.cc.1@microv-works.com&start=2018-10-08T07:00:00.000Z","host":["{{url}}"],"path":["api","v2","groups","call-centers","statistics"],"query":[{"key":"end","value":"2018-10-09T07:00:00.000Z"},{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"},{"key":"start","value":"2018-10-08T07:00:00.000Z"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:34:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"723"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"statisticsRange\": {\n        \"start\": \"2018-10-08T01:00:00.000-06:00\",\n        \"end\": \"2018-10-09T01:00:00.000-06:00\"\n    },\n    \"queueStatistics\": {\n        \"numberOfBusyOverflows\": \"0\",\n        \"numberOfCallsAnswered\": \"0\",\n        \"numberOfCallsAbandoned\": \"0\",\n        \"numberOfCallsTransferred\": \"0\",\n        \"numberOfCallsTimedout\": \"0\",\n        \"averageNumberOfAgentsTalking\": \"0.0\",\n        \"averageNumberOfAgentsStaffed\": \"0.0\",\n        \"averageWaitSeconds\": \"0\",\n        \"averageAbandonmentSeconds\": \"0\"\n    },\n    \"agentStatistics\": {\n        \"agentUserId\": \"9709580001\",\n        \"agentDisplayNames\": {\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\"\n        },\n        \"available\": \"false\",\n        \"statistics\": {\n            \"numberOfCallsHandled\": \"0\",\n            \"numberOfCallsUnanswered\": \"0\",\n            \"averageCallSeconds\": \"0\",\n            \"totalTalkSeconds\": \"0\",\n            \"totalStaffedSeconds\": \"0\"\n        }\n    }\n}"}],"_postman_id":"5bbc061e-573d-433b-8a44-eac625aa6486"},{"name":"Group Call Center Stranded Calls","id":"70a9cb0c-0dbb-4c55-b31a-766f938a3390","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/stranded-calls?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","stranded-calls"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"1d8263df-290d-4af8-b70a-ea764628a224","name":"Group Call Center Stranded Calls","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/stranded-calls?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","stranded-calls"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:39:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"259"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"action\": \"None\",\n    \"transferPhoneNumber\": null,\n    \"audioMessageSource\": \"File\",\n    \"videoMessageSource\": \"Default\",\n    \"audioUrlList\": [],\n    \"videoUrlList\": [],\n    \"audioFileList\": [\n        {\n            \"name\": \"letsgo.wav\",\n            \"mediaType\": \"WAV\",\n            \"level\": \"User\"\n        }\n    ],\n    \"videoFileList\": []\n}"}],"_postman_id":"70a9cb0c-0dbb-4c55-b31a-766f938a3390"},{"name":"Group Call Center Stranded Calls","id":"048ca69d-6e25-41e0-a4e0-cb0d95522d0b","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"None\",\n\t\"transferPhoneNumber\":null,\n\t\"audioMessageSource\":\"File\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[\n\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/stranded-calls","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","stranded-calls"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"66ced14d-99e0-44a5-9ef5-89307f891f27","name":"Group Call Center Stranded Calls","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"action\":\"None\",\n\t\"transferPhoneNumber\":null,\n\t\"audioMessageSource\":\"File\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[\n\t\t{\"name\":\"letsgo.wav\",\"mediaType\":\"WAV\",\"fileSize\":88,\"level\":\"User\"}\n\t],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/stranded-calls"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:40:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"048ca69d-6e25-41e0-a4e0-cb0d95522d0b"},{"name":"Group Call Center Stranded Calls Unavailable","id":"8a357372-e01a-428d-bbcb-af690d8212eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/stranded-calls-unavailable?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","stranded-calls-unavailable"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"9dc307e2-f1e3-4302-8634-9de422b9b4a3","name":"Group Call Center Stranded Calls Unavailable","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/stranded-calls?serviceUserId=mock.cc.1","host":["{{url}}"],"path":["api","v2","groups","call-centers","stranded-calls"],"query":[{"key":"serviceUserId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:45:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"259"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1\",\n    \"action\": \"None\",\n    \"transferPhoneNumber\": null,\n    \"audioMessageSource\": \"File\",\n    \"videoMessageSource\": \"Default\",\n    \"audioUrlList\": [],\n    \"videoUrlList\": [],\n    \"audioFileList\": [\n        {\n            \"name\": \"letsgo.wav\",\n            \"mediaType\": \"WAV\",\n            \"level\": \"User\"\n        }\n    ],\n    \"videoFileList\": []\n}"}],"_postman_id":"8a357372-e01a-428d-bbcb-af690d8212eb"},{"name":"Group Call Center Stranded Calls Unavailable","id":"2274dde5-be9a-47af-bb9c-64021d07e268","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"conditionPolicyOnNumberOfAgentsWithSpecifiedUnavailableCode\":false,\n\t\"numberOfAgentsWithSpecifiedUnavailableCode\":null,\n\t\"agentsUnavailableCode\":null,\n\t\"action\":\"None\",\n\t\"transferPhoneNumber\":null,\n\t\"audioMessageSource\":\"Default\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/stranded-calls-unavailable","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","stranded-calls-unavailable"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"449eab10-8037-41f3-9bcb-ecca70522cc9","name":"Group Call Center Stranded Calls Unavailable","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1\",\n\t\"conditionPolicyOnNumberOfAgentsWithSpecifiedUnavailableCode\":false,\n\t\"numberOfAgentsWithSpecifiedUnavailableCode\":null,\n\t\"agentsUnavailableCode\":null,\n\t\"action\":\"None\",\n\t\"transferPhoneNumber\":null,\n\t\"audioMessageSource\":\"Default\",\n\t\"videoMessageSource\":\"Default\",\n\t\"audioUrlList\":[],\n\t\"videoUrlList\":[],\n\t\"audioFileList\":[],\n\t\"videoFileList\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/stranded-calls-unavailable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 17:46:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2274dde5-be9a-47af-bb9c-64021d07e268"},{"name":"Group Call Center Supervisors","id":"d3e9e0c4-6d92-4ec3-b76d-ee7761777a4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/supervisors?serviceUserId=odin.cc.premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","supervisors"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.cc.premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"885bb37a-4cae-46ee-a9cf-a142d4161ece","name":"Group Call Center Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/supervisors?serviceUserId=mock.cc.1@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","call-centers","supervisors"],"query":[{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:03:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"544"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"mock.cc.1@microv-works.com\",\n    \"supervisors\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"d3e9e0c4-6d92-4ec3-b76d-ee7761777a4e"},{"name":"Group Call Center Supervisors","id":"fd09a39c-d62c-492f-a6fc-d9f4b306f71f","request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"supervisors\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/supervisors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","supervisors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4ec85ea8-efcd-490b-b3c6-3ee466ff8909","name":"Group Call Center Supervisors","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"supervisors\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/supervisors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:04:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"fd09a39c-d62c-492f-a6fc-d9f4b306f71f"},{"name":"Group Call Center Supervisors","id":"8edefe67-aaec-4ba7-b7fd-7cd5141ced0e","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"supervisors\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/supervisors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","supervisors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"99c823f0-dbb6-439b-9a7f-21b81d88e0ae","name":"Group Call Center Supervisors","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"supervisors\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/supervisors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:03:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8edefe67-aaec-4ba7-b7fd-7cd5141ced0e"},{"name":"Group Call Center Supervisors","id":"65ec0b9d-d24a-41d6-a954-3043e76403c0","request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"supervisors\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/supervisors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","supervisors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03c7acca-113f-4294-a523-3f560ac14798","name":"Group Call Center Supervisors","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"supervisors\":[\n\t\t{\"userId\":9709580001},\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-centers/supervisors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:04:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"65ec0b9d-d24a-41d6-a954-3043e76403c0"},{"name":"User Call Center Supervisor Agents","id":"6c085af8-b092-46e6-93c5-879bc9e7fe0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/user/call-centers/supervisor/agents?serviceUserId=odin.cc.premium@parkbenchsolutions.com&supervisorUserId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","supervisor","agents"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.cc.premium@parkbenchsolutions.com"},{"key":"supervisorUserId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"b16bdc27-4859-4605-a3a9-3fdc25b216cd","name":"Group Call Centers Available Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/supervisors/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","supervisors","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:02:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1456"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"supervisors\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580003,\n            \"lastName\": \"User3last\",\n            \"firstName\": \"User3first\",\n            \"hiraganaLastName\": \"User3last\",\n            \"hiraganaFirstName\": \"User3first\",\n            \"phoneNumber\": \"+1-9709580003\",\n            \"extension\": \"0003\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580004,\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"extension\": \"0004\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580005,\n            \"lastName\": \"User5last\",\n            \"firstName\": \"User5first\",\n            \"hiraganaLastName\": \"User5last\",\n            \"hiraganaFirstName\": \"User5first\",\n            \"phoneNumber\": \"+1-9709580005\",\n            \"extension\": \"0005\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"mock-pilot-1\",\n            \"lastName\": \"pilot\",\n            \"firstName\": \"pilot\",\n            \"hiraganaLastName\": \"pilot\",\n            \"hiraganaFirstName\": \"pilot\",\n            \"phoneNumber\": \"+1-9709580008\",\n            \"extension\": \"0008\",\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"6c085af8-b092-46e6-93c5-879bc9e7fe0f"},{"name":"Group Call Center Thresholds","id":"df75fdd3-3a0e-454b-bbb5-080c302c5f28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-centers/thresholds?serviceUserId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","thresholds"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"e4933a28-c176-4223-a689-1714fc704c21","name":"Group Call Center Thresholds","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/thresholds?serviceUserId=mock.cc.1@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","call-centers","thresholds"],"query":[{"key":"serviceUserId","value":"mock.cc.1@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:20:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"530"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"thresholdCurrentCallsInQueueYellow\": 5,\n    \"thresholdCurrentCallsInQueueRed\": 10,\n    \"thresholdCurrentLongestWaitingCallYellow\": 5,\n    \"thresholdCurrentLongestWaitingCallRed\": 10,\n    \"thresholdAverageEstimatedWaitTimeYellow\": 5,\n    \"thresholdAverageEstimatedWaitTimeRed\": 10,\n    \"thresholdAverageHandlingTimeYellow\": 5,\n    \"thresholdAverageHandlingTimeRed\": 10,\n    \"thresholdAverageSpeedOfAnswerYellow\": 5,\n    \"thresholdAverageSpeedOfAnswerRed\": 10,\n    \"enableNotificationEmail\": false,\n    \"serviceUserId\": \"mock.cc.1@microv-works.com\",\n    \"notificationEmailAddresses\": []\n}"}],"_postman_id":"df75fdd3-3a0e-454b-bbb5-080c302c5f28"},{"name":"Group Call Center Thresholds","id":"560ea597-513e-4da1-9307-40f0fbf1fad2","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"thresholdCurrentCallsInQueueYellow\":5,\n\t\"thresholdCurrentCallsInQueueRed\":10,\n\t\"thresholdCurrentLongestWaitingCallYellow\":5,\n\t\"thresholdCurrentLongestWaitingCallRed\":10,\n\t\"thresholdAverageEstimatedWaitTimeYellow\":5,\n\t\"thresholdAverageEstimatedWaitTimeRed\":10,\n\t\"thresholdAverageHandlingTimeYellow\":5,\n\t\"thresholdAverageHandlingTimeRed\":10,\n\t\"thresholdAverageSpeedOfAnswerYellow\":5,\n\t\"thresholdAverageSpeedOfAnswerRed\":10,\n\t\"enableNotificationEmail\":false,\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"notificationEmailAddresses\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/thresholds","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-centers","thresholds"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aba9da59-9a64-4f24-888d-fbf1b4d166aa","name":"Group Call Center Thresholds","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"thresholdCurrentCallsInQueueYellow\":5,\n\t\"thresholdCurrentCallsInQueueRed\":10,\n\t\"thresholdCurrentLongestWaitingCallYellow\":5,\n\t\"thresholdCurrentLongestWaitingCallRed\":10,\n\t\"thresholdAverageEstimatedWaitTimeYellow\":5,\n\t\"thresholdAverageEstimatedWaitTimeRed\":10,\n\t\"thresholdAverageHandlingTimeYellow\":5,\n\t\"thresholdAverageHandlingTimeRed\":10,\n\t\"thresholdAverageSpeedOfAnswerYellow\":5,\n\t\"thresholdAverageSpeedOfAnswerRed\":10,\n\t\"enableNotificationEmail\":false,\n\t\"serviceUserId\":\"mock.cc.1@microv-works.com\",\n\t\"notificationEmailAddresses\":[]\n}"},"url":"{{url}}/api/v2/groups/call-centers/thresholds"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:21:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"560ea597-513e-4da1-9307-40f0fbf1fad2"},{"name":"User Call Center","id":"c0e145fe-58fc-49d5-8512-d1326bee7003","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-center?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-center"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"a9e86e20-a0cc-49b7-8f82-7721701f6046","name":"User Call Center","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-center?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-center"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"725","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 00:08:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"agentACDState\":\"Available\",\"agentThresholdProfileName\":\"Default Agent Threshold Profile\",\"useDefaultGuardTimer\":true,\"enableGuardTimer\":false,\"guardTimerSeconds\":5,\"useSystemDefaultUnavailableSettings\":true,\"forceAgentUnavailableOnDNDActivation\":false,\"forceAgentUnavailableOnPersonalCalls\":false,\"forceAgentUnavailableOnBouncedCallLimit\":false,\"numberConsecutiveBouncedCallsToForceAgentUnavailable\":3,\"forceAgentUnavailableOnNotReachable\":false,\"makeOutgoingCallsAsCallCenter\":false,\"userId\":\"9709580001@microv-works.com\",\"callCenters\":[{\"serviceUserId\":\"mock.cc.1\",\"phoneNumber\":null,\"extension\":null,\"available\":true,\"logoffAllowed\":false,\"type\":\"Premium\",\"priority\":1,\"routingType\":\"Priority Based\",\"skillLevel\":null}]}"}],"_postman_id":"c0e145fe-58fc-49d5-8512-d1326bee7003"},{"name":"User Call Center","id":"8078bdb2-acd6-4af4-a49e-2b65ef2424a2","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"agentACDState\":\"Available\",\n\t\"agentThresholdProfileName\":\"Default Agent Threshold Profile\",\n\t\"useDefaultGuardTimer\":true,\n\t\"enableGuardTimer\":false,\n\t\"guardTimerSeconds\":5,\n\t\"useSystemDefaultUnavailableSettings\":true,\n\t\"forceAgentUnavailableOnDNDActivation\":false,\n\t\"forceAgentUnavailableOnPersonalCalls\":false,\n\t\"forceAgentUnavailableOnBouncedCallLimit\":false,\n\t\"numberConsecutiveBouncedCallsToForceAgentUnavailable\":3,\n\t\"forceAgentUnavailableOnNotReachable\":false,\n\t\"makeOutgoingCallsAsCallCenter\":false,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"callCenters\":[\n\t\t{\n\t\t\t\"serviceUserId\":\"mock.cc.1\",\n\t\t\t\"available\":true,\n\t\t\t\"skillLevel\":null\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-center","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-center"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"394cacd3-9d4e-42dc-a367-780be3b9baeb","name":"User Call Center","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"agentACDState\":\"Available\",\n\t\"agentThresholdProfileName\":\"Default Agent Threshold Profile\",\n\t\"useDefaultGuardTimer\":true,\n\t\"enableGuardTimer\":false,\n\t\"guardTimerSeconds\":5,\n\t\"useSystemDefaultUnavailableSettings\":true,\n\t\"forceAgentUnavailableOnDNDActivation\":false,\n\t\"forceAgentUnavailableOnPersonalCalls\":false,\n\t\"forceAgentUnavailableOnBouncedCallLimit\":false,\n\t\"numberConsecutiveBouncedCallsToForceAgentUnavailable\":3,\n\t\"forceAgentUnavailableOnNotReachable\":false,\n\t\"makeOutgoingCallsAsCallCenter\":false,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"callCenters\":[\n\t\t{\n\t\t\t\"serviceUserId\":\"mock.cc.1\",\n\t\t\t\"available\":true,\n\t\t\t\"skillLevel\":null\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-center"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 00:12:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8078bdb2-acd6-4af4-a49e-2b65ef2424a2"},{"name":"User Call Center DNIS","id":"459edb5d-a5e5-4844-b424-61df5ba34f41","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-center/dnis?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-center","dnis"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"fab1f986-6fd1-439c-949f-090739d680f3","name":"User Call Center DNIS","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-center/dnis?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-center","dnis"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"50","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 00:09:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"userId\":\"9709580001@microv-works.com\",\"dnis\":[]}"}],"_postman_id":"459edb5d-a5e5-4844-b424-61df5ba34f41"},{"name":"User Call Center Disposition Codes","id":"d6139074-3a77-4dc5-9578-e3fd7bffbe55","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-center/disposition-codes?serviceUserId=asdaS12@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-center","disposition-codes"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"asdaS12@voicecci.net"}],"variable":[]}},"response":[{"id":"cdcf2ac7-7cb7-4876-933f-70729d87d5b3","name":"User Call Center Disposition Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-center/dnis?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-center","dnis"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d6139074-3a77-4dc5-9578-e3fd7bffbe55"},{"name":"User Call Center Monitoring","id":"31f08d27-d0c6-4508-9a18-1cc5040096bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-center/monitoring?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-center","monitoring"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"a8d217f2-d4e4-4fbc-b087-b07324e26d7e","name":"User Call Center Monitoring","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-center/monitoring?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","call-center","monitoring"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"playToneToAgentForSilentMonitoring\": true,\n    \"userId\": \"9871515000@odinapi.net\"\n}"}],"_postman_id":"31f08d27-d0c6-4508-9a18-1cc5040096bf"},{"name":"User Call Center Agents","id":"08b9c26a-95b0-4cde-bb48-3498f6ff52f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/user/call-centers/agents?agentUserId=user-2@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","agents"],"host":["{{url}}"],"query":[{"key":"agentUserId","value":"user-2@voicecci.net"}],"variable":[]}},"response":[{"id":"6578fc3e-641b-4e6d-845e-73be0fe6eabf","name":"User Call Center Agents","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-center/monitoring?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","call-center","monitoring"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"08b9c26a-95b0-4cde-bb48-3498f6ff52f9"},{"name":"User Call Center Agents Update","id":"305fef9b-36da-4a02-bcda-22e1b0450501","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"agentUserId\": \"user-2@voicecci.net\",\n    \"callCenters\": [\n        {\"userId\": \"asdaS12@voicecci.net\"},\n        {\"userId\": \"kens-basic-cc@voicecci.net\"},\n        {\"userId\": \"Prithwidiptam89666@voicecci.net\"},\n        {\"userId\": \"PrithwiTestCallCenter@voicecci.net\"}\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/user/call-centers/agents","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","agents"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"00becce2-cb97-440b-8589-fa9757b790bd","name":"User Call Center Agents Update","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/user/call-centers/agents"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"305fef9b-36da-4a02-bcda-22e1b0450501"},{"name":"User Call Center Agents Sign Out","id":"d5ae9f10-fa2d-4a68-8cd1-67ba3951aea9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"agentUserId\": \"user-2@voicecci.net\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/user/call-centers/agents/sign-out","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","agents","sign-out"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1ffab19b-ac1a-48b4-84b5-6285104a3daa","name":"User Call Center Agents Sign Out","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"agentUserId\": \"user-2@voicecci.net\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/user/call-centers/agents/sign-out"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d5ae9f10-fa2d-4a68-8cd1-67ba3951aea9"},{"name":"User Call Center Agent","id":"bb53a3e8-6b8f-4320-a85c-8caf20d4bedb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/user/call-centers/agent?agentUserId=user-2@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","agent"],"host":["{{url}}"],"query":[{"key":"agentUserId","value":"user-2@voicecci.net"}],"variable":[]}},"response":[{"id":"c13969c2-796c-484b-9b0d-601c29b89645","name":"User Call Center Agent","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/user/call-centers/agent?agentUserId=user-2@voicecci.net","host":["{{url}}"],"path":["api","v2","user","call-centers","agent"],"query":[{"key":"agentUserId","value":"user-2@voicecci.net"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bb53a3e8-6b8f-4320-a85c-8caf20d4bedb"},{"name":"User Call Center Monitoring","id":"b9090435-3f50-45fd-b898-4a7cd36b10f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"playToneToAgentForSilentMonitoring\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/call-center/monitoring","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-center","monitoring"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"92cc11ba-e981-4182-991e-feb871bb4c31","name":"User Call Center Monitoring","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"playToneToAgentForSilentMonitoring\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/call-center/monitoring"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"playToneToAgentForSilentMonitoring\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}"}],"_postman_id":"b9090435-3f50-45fd-b898-4a7cd36b10f9"},{"name":"User Call Center Supervisor Agents","id":"3a53c6ed-c1e5-4084-824d-8a72984bac2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"odin.cc.premium@parkbenchsolutions.com\",\n    \"supervisorUserId\": \"4001@parkbenchsolutions.com\",\n    \"agents\": [\n        {\n            \"userId\": \"sandesh@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/user/call-centers/supervisors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","supervisors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2ed818d1-a916-44b1-adcb-daa0161e760b","name":"Group Call Centers Available Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/supervisors/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","supervisors","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:02:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1456"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"supervisors\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580003,\n            \"lastName\": \"User3last\",\n            \"firstName\": \"User3first\",\n            \"hiraganaLastName\": \"User3last\",\n            \"hiraganaFirstName\": \"User3first\",\n            \"phoneNumber\": \"+1-9709580003\",\n            \"extension\": \"0003\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580004,\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"extension\": \"0004\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580005,\n            \"lastName\": \"User5last\",\n            \"firstName\": \"User5first\",\n            \"hiraganaLastName\": \"User5last\",\n            \"hiraganaFirstName\": \"User5first\",\n            \"phoneNumber\": \"+1-9709580005\",\n            \"extension\": \"0005\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"mock-pilot-1\",\n            \"lastName\": \"pilot\",\n            \"firstName\": \"pilot\",\n            \"hiraganaLastName\": \"pilot\",\n            \"hiraganaFirstName\": \"pilot\",\n            \"phoneNumber\": \"+1-9709580008\",\n            \"extension\": \"0008\",\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"3a53c6ed-c1e5-4084-824d-8a72984bac2c"},{"name":"User Call Center Supervisor Agents","id":"c1a34d0f-9086-4eec-9d79-c74680572a92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"odin.cc.premium@parkbenchsolutions.com\",\n    \"supervisorUserId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"sandesh@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/user/call-centers/supervisors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","supervisors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9e862732-3088-4d02-99ed-f9d0f22acf58","name":"Group Call Centers Available Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/supervisors/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","supervisors","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:02:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1456"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"supervisors\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580003,\n            \"lastName\": \"User3last\",\n            \"firstName\": \"User3first\",\n            \"hiraganaLastName\": \"User3last\",\n            \"hiraganaFirstName\": \"User3first\",\n            \"phoneNumber\": \"+1-9709580003\",\n            \"extension\": \"0003\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580004,\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"extension\": \"0004\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580005,\n            \"lastName\": \"User5last\",\n            \"firstName\": \"User5first\",\n            \"hiraganaLastName\": \"User5last\",\n            \"hiraganaFirstName\": \"User5first\",\n            \"phoneNumber\": \"+1-9709580005\",\n            \"extension\": \"0005\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"mock-pilot-1\",\n            \"lastName\": \"pilot\",\n            \"firstName\": \"pilot\",\n            \"hiraganaLastName\": \"pilot\",\n            \"hiraganaFirstName\": \"pilot\",\n            \"phoneNumber\": \"+1-9709580008\",\n            \"extension\": \"0008\",\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"c1a34d0f-9086-4eec-9d79-c74680572a92"},{"name":"User Call Center Supervisor Agents","id":"e9026927-fe06-4ff4-b61f-01df8bf2720d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"odin.cc.premium@parkbenchsolutions.com\",\n    \"supervisorUserId\": \"4001@parkbenchsolutions.com\",\n    \"agents\": [\n        {\n            \"userId\": \"sandesh@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/user/call-centers/supervisors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","supervisors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"48b0c0fc-1daa-483a-974f-17f89df61a87","name":"Group Call Centers Available Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/supervisors/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","supervisors","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:02:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1456"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"supervisors\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580003,\n            \"lastName\": \"User3last\",\n            \"firstName\": \"User3first\",\n            \"hiraganaLastName\": \"User3last\",\n            \"hiraganaFirstName\": \"User3first\",\n            \"phoneNumber\": \"+1-9709580003\",\n            \"extension\": \"0003\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580004,\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"extension\": \"0004\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580005,\n            \"lastName\": \"User5last\",\n            \"firstName\": \"User5first\",\n            \"hiraganaLastName\": \"User5last\",\n            \"hiraganaFirstName\": \"User5first\",\n            \"phoneNumber\": \"+1-9709580005\",\n            \"extension\": \"0005\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"mock-pilot-1\",\n            \"lastName\": \"pilot\",\n            \"firstName\": \"pilot\",\n            \"hiraganaLastName\": \"pilot\",\n            \"hiraganaFirstName\": \"pilot\",\n            \"phoneNumber\": \"+1-9709580008\",\n            \"extension\": \"0008\",\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"e9026927-fe06-4ff4-b61f-01df8bf2720d"},{"name":"User Call Center Supervisors","id":"786ab7c4-9f49-4183-bae8-cc0072b09c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/user/call-centers/agent/supervisors?serviceUserId=asdaS12@voicecci.net&agentUserId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","agent","supervisors"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"asdaS12@voicecci.net"},{"key":"agentUserId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"bb704790-9654-41c4-99cb-12a6277eb3ca","name":"User Call Center Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/user/call-centers/agent/supervisors?serviceUserId=asdaS12@voicecci.net&agentUserId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","user","call-centers","agent","supervisors"],"query":[{"key":"serviceUserId","value":"asdaS12@voicecci.net"},{"key":"agentUserId","value":"user-1@voicecci.net"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"786ab7c4-9f49-4183-bae8-cc0072b09c3d"},{"name":"User Call Center Supervisor All Agents","id":"23b9213e-6d40-4f45-839a-88aea0493a23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/user/call-centers/supervisor/all-agents?serviceUserId=asdaS12@voicecci.net&supervisorUserId=user-2@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","supervisor","all-agents"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"asdaS12@voicecci.net"},{"key":"supervisorUserId","value":"user-2@voicecci.net"}],"variable":[]}},"response":[{"id":"b01f4968-0df1-45c4-adb4-4ad7b9072b9d","name":"User Call Center Supervisor All Agents","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/user/call-centers/supervisor/all-agents?serviceUserId=asdaS12@voicecci.net&supervisorUserId=user-2@voicecci.net","host":["{{url}}"],"path":["api","v2","user","call-centers","supervisor","all-agents"],"query":[{"key":"serviceUserId","value":"asdaS12@voicecci.net"},{"key":"supervisorUserId","value":"user-2@voicecci.net"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"23b9213e-6d40-4f45-839a-88aea0493a23"},{"name":"User Call Center Supervisor Call Centers","id":"80ce8da6-6363-478d-a50e-79bda07dab32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/user/call-centers/supervisor/call-centers?supervisorUserId=test003@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","user","call-centers","supervisor","call-centers"],"host":["{{url}}"],"query":[{"disabled":true,"key":"supervisorUserId","value":"4001@parkbenchsolutions.com"},{"key":"supervisorUserId","value":"test003@voicecci.net"}],"variable":[]}},"response":[{"id":"6ee7d192-b5e2-40fc-b551-26c0373d044a","name":"Group Call Centers Available Supervisors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-centers/supervisors/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-centers","supervisors","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 23:02:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1456"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"supervisors\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580002,\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"extension\": \"0002\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580003,\n            \"lastName\": \"User3last\",\n            \"firstName\": \"User3first\",\n            \"hiraganaLastName\": \"User3last\",\n            \"hiraganaFirstName\": \"User3first\",\n            \"phoneNumber\": \"+1-9709580003\",\n            \"extension\": \"0003\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580004,\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"extension\": \"0004\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": 9709580005,\n            \"lastName\": \"User5last\",\n            \"firstName\": \"User5first\",\n            \"hiraganaLastName\": \"User5last\",\n            \"hiraganaFirstName\": \"User5first\",\n            \"phoneNumber\": \"+1-9709580005\",\n            \"extension\": \"0005\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"mock-pilot-1\",\n            \"lastName\": \"pilot\",\n            \"firstName\": \"pilot\",\n            \"hiraganaLastName\": \"pilot\",\n            \"hiraganaFirstName\": \"pilot\",\n            \"phoneNumber\": \"+1-9709580008\",\n            \"extension\": \"0008\",\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"80ce8da6-6363-478d-a50e-79bda07dab32"},{"name":"Enterprise Call Center Threshold Default Profile","id":"6aa2b38e-66ea-4b54-b464-3918d68097d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/call-centers/threshold-default-profile?serviceProviderId=ent.odin&includeAgentsTable=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-centers","threshold-default-profile"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"includeAgentsTable","value":"true"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"key":"userId","value":"*513*"},{"disabled":true,"key":"dn","value":"*6984*"},{"disabled":true,"key":"extension","value":"1001"}],"variable":[]}},"response":[{"id":"c6e945a1-5218-4b4d-9be7-d1bb1db177aa","name":"Enterprise Call Center Threshold Profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/call-centers/threshold-profiles?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","call-centers","threshold-profiles"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"107","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:38:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"default\":true,\"name\":\"Default Agent Threshold Profile\",\"description\":\"Default Agent Threshold Profile\"}]"}],"_postman_id":"6aa2b38e-66ea-4b54-b464-3918d68097d4"}],"id":"5f4ab795-9187-4dc8-85ac-2f64634031c5","_postman_id":"5f4ab795-9187-4dc8-85ac-2f64634031c5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Control","item":[{"name":"User Call Control Applications","id":"478ee0f8-2f0f-412d-951d-7913b6435662","request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n\t\"newUserId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/call-control/applications?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-control","applications"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[],"_postman_id":"478ee0f8-2f0f-412d-951d-7913b6435662"},{"name":"User Call Control Applications","id":"ec690209-ad97-48bc-a93b-663696de04ad","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"applications\": []\n}"},"url":"{{url}}/api/v2/users/call-control/applications?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-control","applications"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"6c911a74-ae27-45ad-a1e6-b4634e475431","name":"User Call Control Applications","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"applications\": []\n}"},"url":{"raw":"{{url}}/api/v2/users/call-control/applications?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","call-control","applications"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:31:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ec690209-ad97-48bc-a93b-663696de04ad"}],"id":"d7f378e1-f6ec-4312-aa88-8b482a1bea00","_postman_id":"d7f378e1-f6ec-4312-aa88-8b482a1bea00","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Forwarding Always","item":[{"name":"User Call Forwarding Always","id":"b749a738-8ca2-4c8f-b8c1-a3ac8d4564ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-always?userId=19871514011@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-always"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514011@odinapi.net"}],"variable":[]}},"response":[{"id":"389d88fe-0394-4aa0-b255-a784110c4d36","name":"User Call Forwarding Always","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-always?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","call-forwarding-always"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"forwardToPhoneNumber\": 4500,\n    \"isRingSplashActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"b749a738-8ca2-4c8f-b8c1-a3ac8d4564ac"},{"name":"User Call Forwarding Always","id":"3c1345e0-46ea-4eac-8b35-5370f9b743eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"isRingSplashActive\":true,\n\t\"userId\":\"19871514011@odinapi.net\",\n\t\"forwardToPhoneNumber\":\"5133334444\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-always"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3611f8fa-0895-45cb-861b-bbb0193ac2aa","name":"User Call Forwarding Always","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":false,\n\t\"isRingSplashActive\":true,\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"forwardToPhoneNumber\":\"5133334444\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"forwardToPhoneNumber\": 5133334444,\n    \"isRingSplashActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5465\n}"}],"_postman_id":"3c1345e0-46ea-4eac-8b35-5370f9b743eb"},{"name":"Bulk Call Forwarding Always","id":"5c61e891-c92b-4845-addf-a4f314b6114b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-always/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-always","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"2b456aca-f881-49a6-98c5-9555193cfa7a","name":"Bulk Call Forwarding Always","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-always/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","call-forwarding-always","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2310","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:27:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Call Forwarding Always\"},\"user\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"isRingSplashActive\":false,\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Call Forwarding Always\"},\"user\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"isRingSplashActive\":false,\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Always\"},\"user\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Always\"},\"user\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Always\"},\"user\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":{}}]"}],"_postman_id":"5c61e891-c92b-4845-addf-a4f314b6114b"},{"name":"Bulk Call Forwarding Always","id":"20c4734f-f0e9-4321-9d94-369febabd678","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isRingSplashActive\":true,\n\t\t    \"forwardToPhoneNumber\": 1111,\n\t\t\"isActive\":true\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"4002@parkbenchsolutions.com\"},\n\t\t{\"userId\":\"4002@parkbenchsolutions.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-always","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e8f60883-3ee4-4b82-bafe-bc2a23522815","name":"User Call Forwarding Always Bulk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isRingSplashActive\":false,\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"146","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 21:50:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"isRingSplashActive\":false,\"isActive\":false},\"users\":[{\"userId\":\"9709580001@microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\"}]}"}],"_postman_id":"20c4734f-f0e9-4321-9d94-369febabd678"},{"name":"Bulk Call Forwarding Always Test","id":"9f92c8eb-5722-4da9-b48f-7332665aa6e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isRingSplashActive\":true,\n\t\t    \"forwardToPhoneNumber\": 1111,\n\t\t\"isActive\":true\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"4002@parkbenchsolutions.com\"},\n\t\t{\"userId\":\"4002@parkbenchsolutions.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-always","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a220744f-46b5-4b43-8d5d-7cdc293da40f","name":"User Call Forwarding Always Bulk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isRingSplashActive\":false,\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"146","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 21:50:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"isRingSplashActive\":false,\"isActive\":false},\"users\":[{\"userId\":\"9709580001@microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\"}]}"}],"_postman_id":"9f92c8eb-5722-4da9-b48f-7332665aa6e5"}],"id":"4c010cf6-8056-498f-aa48-1c9d07ab204b","_postman_id":"4c010cf6-8056-498f-aa48-1c9d07ab204b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Forwarding Always Secondary","item":[{"name":"User Call Forwarding Always Secondary","id":"9d188080-0948-4fa5-84c0-6fbe80688d48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-always-secondary?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-always-secondary"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"ab7b83ac-467c-4dd9-b0ef-2383b3fa8fe3","name":"User Call Forwarding Always Secondary","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-always-secondary?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","call-forwarding-always-secondary"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"forwardToPhoneNumber\": 4004441004,\n    \"isRingSplashActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"9d188080-0948-4fa5-84c0-6fbe80688d48"},{"name":"User Call Forwarding Always Secondary","id":"15ce15a5-3b79-4259-a5cd-de22b9a0a700","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"forwardToPhoneNumber\": \"4004441004\",\n    \"isRingSplashActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always-secondary","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-always-secondary"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"82358fa4-ec8f-4ada-935e-c7d2049e8ebc","name":"User Call Forwarding Always Secondary","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"forwardToPhoneNumber\": \"4004441004\",\n    \"isRingSplashActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-always-secondary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"forwardToPhoneNumber\": 4004441004,\n    \"isRingSplashActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5607\n}"}],"_postman_id":"15ce15a5-3b79-4259-a5cd-de22b9a0a700"}],"id":"21f86100-9d64-484c-81a7-9c031331dd19","_postman_id":"21f86100-9d64-484c-81a7-9c031331dd19","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Forwarding Busy","item":[{"name":"User Call Forwarding Busy","id":"bdfd7645-97d6-4c6e-ba8d-593b754b52da","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-busy?userId=test-mock%2Faa1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-busy"],"host":["{{url}}"],"query":[{"key":"userId","value":"test-mock%2Faa1"}],"variable":[]}},"response":[{"id":"070a1230-e4c4-4bea-a4e1-2fa493d0271c","name":"User Call Forwarding Busy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-busy?userId=test-mock%2Faa1","host":["{{url}}"],"path":["api","v2","users","call-forwarding-busy"],"query":[{"key":"userId","value":"test-mock%2Faa1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"77","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 19:50:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"forwardToPhoneNumber\":5133334444,\"userId\":\"test-mock\\/aa1\"}"}],"_postman_id":"bdfd7645-97d6-4c6e-ba8d-593b754b52da"},{"name":"User Call Forwarding Busy","id":"d6304a46-6237-4fff-8bdb-c39cd42293c4","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":false,\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"forwardToPhoneNumber\":\"5133334444\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-busy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-busy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"01b28cbc-417d-4fcf-8132-e55113be5a94","name":"User Call Forwarding Busy","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":false,\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"forwardToPhoneNumber\":\"5133334444\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-busy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"forwardToPhoneNumber\": 5133334444,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5633\n}"}],"_postman_id":"d6304a46-6237-4fff-8bdb-c39cd42293c4"},{"name":"Bulk Call Forwarding Busy","id":"eb4d99c0-ba5a-4ff4-89cb-4592f7c4e9d0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-busy/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-busy","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"5d0be2a0-3b92-443d-8ab9-63a185cffca9","name":"Bulk Call Forwarding Busy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-busy/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","call-forwarding-busy","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2246","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:31:51 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Call Forwarding Busy\"},\"user\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Call Forwarding Busy\"},\"user\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Busy\"},\"user\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Busy\"},\"user\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Busy\"},\"user\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":{}}]"}],"_postman_id":"eb4d99c0-ba5a-4ff4-89cb-4592f7c4e9d0"},{"name":"Bulk Call Forwarding Busy","id":"88a6ac91-243b-4075-8ec7-164675132c60","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-busy/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-busy","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bc210f7a-e3c7-4d5d-8387-c54e23e890c4","name":"Bulk Call Forwarding Busy","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-busy/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"isActive\": false\n    },\n    \"users\": [\n        {\n            \"userId\": \"9709580001@microv-works.com\"\n        },\n        {\n            \"userId\": \"9709580002@microv-works.com\"\n        }\n    ]\n}"}],"_postman_id":"88a6ac91-243b-4075-8ec7-164675132c60"}],"id":"c4ee21b6-9dbd-4bfd-a920-9ac1944a4c4b","_postman_id":"c4ee21b6-9dbd-4bfd-a920-9ac1944a4c4b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Forwarding No Answer","item":[{"name":"User Call Forwarding No Answer","id":"6565037a-ba7a-4d98-90ba-1e8006b87a89","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-no-answer?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-no-answer"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"2315ee95-66e1-4556-8b00-49a26c0f4be9","name":"User Call Forwarding No Answer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-no-answer?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","call-forwarding-no-answer"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"forwardToPhoneNumber\": 1234,\n    \"numberOfRings\": 5,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"6565037a-ba7a-4d98-90ba-1e8006b87a89"},{"name":"User Call Forwarding No Answer","id":"637b0f2f-a594-474c-8a84-f9276c4c4979","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"forwardToPhoneNumber\": 5132015727,\n    \"numberOfRings\": 3,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-no-answer","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-no-answer"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a1e77674-3f1e-4baa-a5bf-2bf99f5fe6a0","name":"User Call Forwarding No Answer","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"forwardToPhoneNumber\": 5132015727,\n    \"numberOfRings\": 3,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-no-answer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"forwardToPhoneNumber\": 5132015727,\n    \"numberOfRings\": 3,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5694\n}"}],"_postman_id":"637b0f2f-a594-474c-8a84-f9276c4c4979"},{"name":"Bulk Call Forwarding No Answer","id":"2dec5cb6-8001-474d-a9d1-4772afac0037","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"forwardToPhoneNumber\":\"5133334444\",\n\t\t\"numberOfRings\":4\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-no-answer/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-no-answer","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"7c6cdb88-6804-4993-8174-e60bf826391e","name":"Bulk Call Forwarding No Answer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-no-answer/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","call-forwarding-no-answer","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2373","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:41:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Call Forwarding No Answer\"\n        },\n        \"user\": {\n            \"userId\": \"9709580001@microv-works.com\",\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"0001\",\n            \"domain\": \"microv-works.com\"\n        },\n        \"data\": {\n            \"isActive\": true,\n            \"forwardToPhoneNumber\": 5133334444,\n            \"numberOfRings\": 4,\n            \"userId\": \"9709580001@microv-works.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Call Forwarding No Answer\"\n        },\n        \"user\": {\n            \"userId\": \"9709580002@microv-works.com\",\n            \"lastName\": \"User2last\",\n            \"firstName\": \"User2first\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"phoneNumber\": \"+1-9709580002\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"User2last\",\n            \"hiraganaFirstName\": \"User2first\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"0002\",\n            \"domain\": \"microv-works.com\"\n        },\n        \"data\": {\n            \"isActive\": true,\n            \"forwardToPhoneNumber\": 5133334444,\n            \"numberOfRings\": 4,\n            \"userId\": \"9709580002@microv-works.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Call Forwarding No Answer\"\n        },\n        \"user\": {\n            \"userId\": \"9709580003@microv-works.com\",\n            \"lastName\": \"User3last\",\n            \"firstName\": \"User3first\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"phoneNumber\": \"+1-9709580003\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"User3last\",\n            \"hiraganaFirstName\": \"User3first\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"0003\",\n            \"domain\": \"microv-works.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Call Forwarding No Answer\"\n        },\n        \"user\": {\n            \"userId\": \"9709580004@microv-works.com\",\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"0004\",\n            \"domain\": \"microv-works.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Call Forwarding No Answer\"\n        },\n        \"user\": {\n            \"userId\": \"9709580005@microv-works.com\",\n            \"lastName\": \"User5last\",\n            \"firstName\": \"User5first\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"phoneNumber\": \"+1-9709580005\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"User5last\",\n            \"hiraganaFirstName\": \"User5first\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"0005\",\n            \"domain\": \"microv-works.com\"\n        },\n        \"data\": {}\n    }\n]"}],"_postman_id":"2dec5cb6-8001-474d-a9d1-4772afac0037"},{"name":"Bulk Call Forwarding No Answer","id":"58a45d81-8746-4d1c-b5d5-0dedfff56673","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"forwardToPhoneNumber\":\"5133334444\",\n\t\t\"numberOfRings\":4\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-no-answer/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-no-answer","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4b9c8419-8da1-4c1c-9a93-cc3292cc8d85","name":"User Call Forwarding No Answer","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"forwardToPhoneNumber\":\"5133334444\",\n\t\t\"numberOfRings\":4\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-no-answer/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"172","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 21:54:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"isActive\":true,\"forwardToPhoneNumber\":\"5133334444\",\"numberOfRings\":4},\"users\":[{\"userId\":\"9709580001@microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\"}]}"}],"_postman_id":"58a45d81-8746-4d1c-b5d5-0dedfff56673"}],"id":"347964dc-3e09-4a75-b237-6ae4f27086f8","_postman_id":"347964dc-3e09-4a75-b237-6ae4f27086f8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Forwarding Not Reachable","item":[{"name":"Call Forwarding Not Reachable","id":"b14dae68-9804-4df9-8101-4306d6628374","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-not-reachable?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-not-reachable"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"456d017e-3f2c-4dd2-a471-e616ee240d32","name":"Call Forwarding Not Reachable","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-not-reachable?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-forwarding-not-reachable"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"57","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 20:27:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":false,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"b14dae68-9804-4df9-8101-4306d6628374"},{"name":"Call Forwarding Not Reachable","id":"56759817-97fe-4a6b-b71f-4d8aab4eda9b","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"forwardToPhoneNumber\": \"5133334444\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-not-reachable","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-not-reachable"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dccb6f0b-9bac-4942-9785-96a6ce826130","name":"Call Forwarding Not Reachable","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"forwardToPhoneNumber\": \"5133334444\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-not-reachable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"forwardToPhoneNumber\": 5133334444,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5726\n}"}],"_postman_id":"56759817-97fe-4a6b-b71f-4d8aab4eda9b"},{"name":"Bulk Call Forwarding Not Reachable","id":"766b3dea-14a5-41dc-ab34-5248ab223aab","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-not-reachable/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-not-reachable","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"078d0384-f6a7-427e-a3e5-7751d7ccbc51","name":"Bulk Forwarding Not Reachable","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":{"raw":"{{url}}/api/v2/users/call-forwarding-not-reachable/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","call-forwarding-not-reachable","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2291","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:40:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Call Forwarding Not Reachable\"},\"user\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Call Forwarding Not Reachable\"},\"user\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Not Reachable\"},\"user\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Not Reachable\"},\"user\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Forwarding Not Reachable\"},\"user\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":{}}]"}],"_postman_id":"766b3dea-14a5-41dc-ab34-5248ab223aab"},{"name":"Bulk Call Forwarding Not Reachable","id":"bb440394-489a-41be-95e7-992081dbb786","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-not-reachable/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-not-reachable","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"49f3ed31-13d0-4248-bfe7-9b1f08b38da3","name":"Bulk Call Forwarding Not Reachable","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":false\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-not-reachable/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"isActive\": false\n    },\n    \"users\": [\n        {\n            \"userId\": \"9709580001@microv-works.com\"\n        },\n        {\n            \"userId\": \"9709580002@microv-works.com\"\n        }\n    ]\n}"}],"_postman_id":"bb440394-489a-41be-95e7-992081dbb786"}],"id":"247524c9-16f9-4d8a-8d3b-a934aedac517","_postman_id":"247524c9-16f9-4d8a-8d3b-a934aedac517","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Forwarding Selective","item":[{"name":"User Call Forwarding Selective","id":"00ac7ec8-5776-4bc5-8cc1-98a6fa1e7eac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-selective?userId=5134004006@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-selective"],"host":["{{url}}"],"query":[{"key":"userId","value":"5134004006@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"dde45c8d-ac27-4c74-b528-3001f35728f9","name":"User Call Forwarding Selective","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-selective?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","call-forwarding-selective"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"defaultForwardToPhoneNumber\": 5131234321,\n    \"playRingReminder\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"selective1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5131234321,\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null,\n            \"callsFrom\": [\n                \"All calls\"\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"selective2\",\n            \"timeSchedule\": \"test\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5131234321,\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null,\n            \"callsFrom\": [\n                \"Any private number\",\n                \"Any unavailable number\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"00ac7ec8-5776-4bc5-8cc1-98a6fa1e7eac"},{"name":"User Call Forwarding Selective","id":"306f4b2e-f4a7-4a2c-bc7e-9a53d1acfd55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"defaultForwardToPhoneNumber\": 5131234321,\n    \"playRingReminder\": true,\n    \"userId\": \"5134004006@lab.tekvoice.net\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-forward-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5131234321,\n            \"callsFrom\": [\n                \"All calls\"\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-criteria-6\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5134004009,\n            \"callsFrom\": [\n                \"All calls\"\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-selective","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-selective"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e0cebc2b-278f-46ca-afdd-6ca69b0ac461","name":"User Call Forwarding Selective","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"defaultForwardToPhoneNumber\": 5131234321,\n    \"playRingReminder\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"selective1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5131234321,\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null,\n            \"callsFrom\": [\n                \"All calls\"\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"selective2\",\n            \"timeSchedule\": \"test\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5131234321,\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null,\n            \"callsFrom\": [\n                \"Any private number\",\n                \"Any unavailable number\"\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-selective"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"defaultForwardToPhoneNumber\": 5131234321,\n    \"playRingReminder\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"selective1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5131234321,\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null,\n            \"callsFrom\": [\n                \"All calls\"\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"selective2\",\n            \"timeSchedule\": \"test\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"forwardTo\": 5131234321,\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null,\n            \"callsFrom\": [\n                \"Any private number\",\n                \"Any unavailable number\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"306f4b2e-f4a7-4a2c-bc7e-9a53d1acfd55"},{"name":"User Call Forwarding Selective Criterias","id":"a146e123-374c-4db1-b713-d5e13bef155b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-selective/criteria?userId=5134004006@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-selective","criteria"],"host":["{{url}}"],"query":[{"key":"userId","value":"5134004006@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"27e08e26-c7e6-4823-845b-75d2ee4b0de9","name":"User Call Forwarding Selective Criterias","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-selective/criteria?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","call-forwarding-selective","criteria"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"isActive\": true,\n        \"criteriaName\": \"selective1\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"forwardTo\": 5131234321,\n        \"callsToType\": null,\n        \"callsToNumber\": null,\n        \"callsToExtension\": null,\n        \"callsFrom\": [\n            \"All calls\"\n        ]\n    },\n    {\n        \"isActive\": false,\n        \"criteriaName\": \"selective2\",\n        \"timeSchedule\": \"test\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"forwardTo\": 5131234321,\n        \"callsToType\": null,\n        \"callsToNumber\": null,\n        \"callsToExtension\": null,\n        \"callsFrom\": [\n            \"Any private number\",\n            \"Any unavailable number\"\n        ]\n    }\n]"}],"_postman_id":"a146e123-374c-4db1-b713-d5e13bef155b"},{"name":"User Call Forwarding Selective Criteria","id":"bef5241e-c03e-4e02-86ac-ba5501f3a5f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-forwarding-selective/criteria?criteriaName=select-call-forward-4&userId=5134004006@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-selective","criteria"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"select-call-forward-4"},{"key":"userId","value":"5134004006@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"8612d0d2-442a-4638-a6ea-bfeda1180f4a","name":"User Call Forwarding Selective Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-selective/criteria?criteriaName=Test123&userId=test-mock%2Faa1","host":["{{url}}"],"path":["api","v2","users","call-forwarding-selective","criteria"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"test-mock%2Faa1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"246","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 20:38:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\n    \"forwardToNumberSelection\": \"Forward To Default Number\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": []\n    },\n    \"userId\": \"test-mock\\/aa1\",\n    \"criteriaName\": \"Test123\"\n}"}],"_postman_id":"bef5241e-c03e-4e02-86ac-ba5501f3a5f9"},{"name":"User Call Forwarding Selective Criteria","id":"08e97af2-3963-4b6f-bc67-f8c65eeaf7c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"5134004006@lab.tekvoice.net\",\n    \"forwardToNumberSelection\": \"Forward To Specified Number\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\"\n    },\n    \"forwardToPhoneNumber\": \"5134004008\",\n    \"criteriaName\": \"select-call-forward-2\",\n\t\"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"5134004004\",\n            \"extension\": \"1005\"\n        },\n        {\n            \"type\": \"Primary\",\n            \"number\": \"5134004006\",\n            \"extension\": \"4006\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"4077160705\"\n        }\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-selective/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-selective","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"65c1b8a0-2fcb-4e71-bd59-b541a719e97e","name":"User Call Forwarding Selective Criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"test-mock/aa1\",\n\t\"forwardToNumberSelection\":\n\t\"Forward To Default Number\",\n\t\"fromDnCriteria\":{\"fromDnCriteriaSelection\":\"Any\"},\n\t\"criteriaName\":\"Test1234\"\n}"},"url":"{{url}}/api/v2/users/call-forwarding-selective/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"forwardToNumberSelection\": \"Forward To Default Number\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": []\n    },\n    \"userId\": \"test-mock/aa1\",\n    \"criteriaName\": \"Test1234\"\n}"}],"_postman_id":"08e97af2-3963-4b6f-bc67-f8c65eeaf7c3"},{"name":"User Call Forwarding Selective Criteria","id":"6dfdb7f7-ab70-45ef-a269-b1f7f3bd2091","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"forwardToNumberSelection\": \"Forward To Specified Number\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Any\",\n\t\t\"includeAnonymousCallers\": \"false\",\n\t\t\"includeUnavailableCallers\": \"false\",\n\t\t\"phoneNumbers\": []\n\t},\n\t\"forwardToPhoneNumber\": \"5134004009\",\n\t\"userId\": \"5134004006@lab.tekvoice.net\",\n\t\"criteriaName\": \"select-criteria-2\",\n\t\"newCriteriaName\": \"select-criteria-6\",\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"5134004004\",\n\t\t\t\"extension\": \"1005\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"5134004006\",\n\t\t\t\"extension\": \"4006\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-forwarding-selective/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-selective","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6dfdb7f7-ab70-45ef-a269-b1f7f3bd2091"},{"name":"User Call Forwarding Selective Criteria","id":"75dbde2f-b656-468d-b86a-c23b118c63ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"5134004006@lab.tekvoice.net\",\n    \"criteriaName\": \"select-call-forward-2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/call-forwarding-selective/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-forwarding-selective","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1ddc5ad5-095d-46f9-9946-382a52648dbe","name":"User Call Forwarding Selective Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-forwarding-selective/criteria?criteriaName=Test123&userId=test-mock%2Faa1","host":["{{url}}"],"path":["api","v2","users","call-forwarding-selective","criteria"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"test-mock%2Faa1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 20:39:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"75dbde2f-b656-468d-b86a-c23b118c63ea"}],"id":"e068cb59-db78-4dab-8f56-8b364719bd15","_postman_id":"e068cb59-db78-4dab-8f56-8b364719bd15","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Forwarding Settings","item":[{"name":"Group Call Forwarding Settings","id":"56567295-34a5-4526-9290-7673afecd48f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/group/call-forwarding-settings?serviceProviderId=ent.odin&groupId=grp.odin&callForwardingService=Call Forwarding Always&responseStartIndex=1&responsePageSize=2000","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","group","call-forwarding-settings"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"description":{"content":"<p>select which service; default = Call Forwarding Always</p>\n","type":"text/plain"},"key":"callForwardingService","value":"Call Forwarding Always"},{"disabled":true,"key":"callForwardingService","value":"Call Forwarding Busy"},{"disabled":true,"key":"callForwardingService","value":"Call Forwarding Always Secondary"},{"disabled":true,"key":"callForwardingService","value":"Call Forwarding No Answer"},{"disabled":true,"key":"callForwardingService","value":"Call Forwarding Not Reachable"},{"disabled":true,"key":"callForwardingService","value":"Call Forwarding Selective"},{"description":{"content":"<p>starting index</p>\n","type":"text/plain"},"key":"responseStartIndex","value":"1"},{"description":{"content":"<p>2000 is the max items per page</p>\n","type":"text/plain"},"key":"responsePageSize","value":"2000"}],"variable":[]}},"response":[{"id":"49bf2621-a5e8-4186-b86e-132254a8c461","name":"Group Call Forwarding Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/group/call-forwarding-settings?serviceProviderId=ent.odin&groupId=grp.odin&callForwardingService=Call Forwarding Always&responseStartIndex=1&responsePageSize=2000","host":["{{url}}"],"path":["api","v2","group","call-forwarding-settings"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"callForwardingService","value":"Call Forwarding Always","description":"select which service; default = Call Forwarding Always"},{"key":"callForwardingService","value":"Call Forwarding Busy","type":"text","disabled":true},{"key":"callForwardingService","value":"Call Forwarding Always Secondary","type":"text","disabled":true},{"key":"callForwardingService","value":"Call Forwarding No Answer","type":"text","disabled":true},{"key":"callForwardingService","value":"Call Forwarding Not Reachable","type":"text","disabled":true},{"key":"callForwardingService","value":"Call Forwarding Selective","type":"text","disabled":true},{"key":"responseStartIndex","value":"1","description":"starting index"},{"key":"responsePageSize","value":"2000","description":"2000 is the max items per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jul 2023 22:48:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"563"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"lastName\": \"Latsa\",\n            \"firstName\": \"Scott\",\n            \"hiraganaLastName\": \"Latsa\",\n            \"hiraganaFirstName\": \"Scott\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"inTrunkGroup\": false,\n            \"emailAddress\": null,\n            \"isActive\": true,\n            \"forwardingAddress\": 1234\n        },\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"lastName\": \"Torbek\",\n            \"firstName\": \"Andrew\",\n            \"hiraganaLastName\": \"Torbek\",\n            \"hiraganaFirstName\": \"Andrew\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"inTrunkGroup\": false,\n            \"emailAddress\": \"andrew@torbeck.com\",\n            \"isActive\": true,\n            \"forwardingAddress\": 5134568877\n        }\n    ]\n}"}],"_postman_id":"56567295-34a5-4526-9290-7673afecd48f"}],"id":"d2aef5e0-9fc0-4456-9e20-ae4982fe363f","_postman_id":"d2aef5e0-9fc0-4456-9e20-ae4982fe363f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Notify","item":[{"name":"User Call Notify","id":"25e40d3a-a651-4c5b-bbdc-3f3cf90361aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-notify?userId=5134004006@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-notify"],"host":["{{url}}"],"query":[{"key":"userId","value":"5134004006@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"71ce8d24-51ef-4e01-a78e-c151d1cab8a8","name":"User Call Notify","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-notify?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","call-notify"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"crieria1\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"Any private number,Any unavailable number,123123123\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            },\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"criteria2\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"All calls\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            },\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null\n        }\n    ]\n}"}],"_postman_id":"25e40d3a-a651-4c5b-bbdc-3f3cf90361aa"},{"name":"User Call Notify","id":"17619866-acf6-4386-be80-de18d7071c3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n    \"userId\": \"6testingnumber@odinapi.net\",\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"call-notify-1\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"Any private number,Any unavailable number,123123123\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            }\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"call-notify-2\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"All calls\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/call-notify","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-notify"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"54c0ebc0-e002-4610-a566-5d7eaca41fb8","name":"User Call Notify","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"crieria1\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"Any private number,Any unavailable number,123123123\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            },\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"criteria2\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"All calls\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            },\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/call-notify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"crieria1\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"Any private number,Any unavailable number,123123123\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            },\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"criteria2\",\n            \"timeSchedule\": {\n                \"name\": \"test\",\n                \"level\": \"\",\n                \"type\": \"Time\"\n            },\n            \"callFrom\": \"All calls\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": {\n                \"name\": \"Holidays\",\n                \"level\": \"Group\",\n                \"type\": \"Holiday\"\n            },\n            \"callsToType\": null,\n            \"callsToNumber\": null,\n            \"callsToExtension\": null\n        }\n    ],\n    \"_eventId\": 8385\n}"}],"_postman_id":"17619866-acf6-4386-be80-de18d7071c3b"},{"name":"User Call Notify Criteria","id":"da9a40cb-17c6-4ae4-a45c-b9248ad8190d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-notify/criteria?criteriaName=call-notify-1&userId=5134004006@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-notify","criteria"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"call-notify-1"},{"key":"userId","value":"5134004006@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"09f6d662-ec3a-495b-b6d8-656626c1a863","name":"User Call Notify Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-notify/criteria?criteriaName=Test123&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-notify","criteria"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"235","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 18:29:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"blacklisted\":false,\"fromDnCriteria\":{\"fromDnCriteriaSelection\":\"Any\",\"includeAnonymousCallers\":\"true\",\"includeUnavailableCallers\":\"false\",\"phoneNumbers\":[\"5133334444\"]},\"userId\":\"9709580001@microv-works.com\",\"criteriaName\":\"Test123\"}"}],"_postman_id":"da9a40cb-17c6-4ae4-a45c-b9248ad8190d"},{"name":"User Call Notify Criterias","id":"c160d764-09a2-48d2-86f6-ea5650e5ce7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-notify/criteria?userId=5134004006@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-notify","criteria"],"host":["{{url}}"],"query":[{"key":"userId","value":"5134004006@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"4194df40-ce78-433a-8b38-98ea0149ad10","name":"User Call Notify Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-notify/criteria?criteriaName=Test123&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-notify","criteria"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"235","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 18:29:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"blacklisted\":false,\"fromDnCriteria\":{\"fromDnCriteriaSelection\":\"Any\",\"includeAnonymousCallers\":\"true\",\"includeUnavailableCallers\":\"false\",\"phoneNumbers\":[\"5133334444\"]},\"userId\":\"9709580001@microv-works.com\",\"criteriaName\":\"Test123\"}"}],"_postman_id":"c160d764-09a2-48d2-86f6-ea5650e5ce7b"},{"name":"User Call Notify Criteria","id":"8d987933-5368-4a0a-a105-939931507ea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"6testingnumber@odinapi.net\",\n    \"blacklisted\": true,\n    \"isActive\": true,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"3212223333\"\n        ]\n    },\n    \"criteriaName\": \"call-notify-2\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/call-notify/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-notify","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9864cc58-b205-462c-9ebe-2f6be536f9bb","name":"User Call Notify Criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9709580001@microv-works.com\",\n    \"blacklisted\": false,\n    \"isActive\": true,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"criteriaName\": \"Test123\"\n}"},"url":"{{url}}/api/v2/users/call-notify/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"userId\": \"9709580001@microv-works.com\",\n    \"criteriaName\": \"Test123\"\n}"}],"_postman_id":"8d987933-5368-4a0a-a105-939931507ea5"},{"name":"User Call Notify Criteria","id":"0fa5afe0-9708-4046-8602-5ac28a90f713","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"userId\": \"5134004006@lab.tekvoice.net\",\n    \"criteriaName\": \"call-notify-3\",\n    \"isActive\": true,\n    \"timeSchedule\": null,\n    \"callFrom\": \"All calls\",\n    \"holidaySchedule\": null,\n    \"newCriteriaName\": \"call-notify-4\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514008\",\n            \"extension\": \"4008\"\n        },\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"4077160705\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/call-notify/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-notify","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"878eee82-c640-4c95-adcc-ac0d509fd245","name":"User Call Notify Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"userId\": \"9709580001@microv-works.com\",\n    \"criteriaName\": \"Test123\",\n    \"isActive\": true,\n    \"timeSchedule\": null,\n    \"callFrom\": \"All calls\",\n    \"holidaySchedule\": null,\n    \"newCriteriaName\": \"Test123\"\n}"},"url":"{{url}}/api/v2/users/call-notify/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"userId\": \"9709580001@microv-works.com\",\n    \"criteriaName\": \"Test123\"\n}"}],"_postman_id":"0fa5afe0-9708-4046-8602-5ac28a90f713"},{"name":"User Call Notify Criteria","id":"83ff3c9d-d317-41d9-a64a-4c3eb4bc9811","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"5134004006@lab.tekvoice.net\",\n    \"criteriaName\": \"call-notify-1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/call-notify/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-notify","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f1472387-d1ac-4dc9-a3d2-cea9cd4f0fa5","name":"User Call Notify Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-notify/criteria?criteriaName=Test123&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-notify","criteria"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 18:31:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"83ff3c9d-d317-41d9-a64a-4c3eb4bc9811"}],"id":"3e2d15de-cd21-471e-afaa-56bd29efb6a5","_postman_id":"3e2d15de-cd21-471e-afaa-56bd29efb6a5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Park","item":[{"name":"Call Park Settings","id":"f2e3a312-77b9-420e-bfa4-61d22506b923","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-park?serviceProviderId=ent.odin.testxp&groupId=MayurGroup","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin.testxp"},{"key":"groupId","value":"MayurGroup"}],"variable":[]}},"response":[{"id":"11f6ba16-1015-4fc9-a6bc-566381044e48","name":"Call Park Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/call-park?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","call-park"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"247","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 15:57:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"recallTimerSeconds\":45,\"displayTimerSeconds\":5,\"enableDestinationAnnouncement\":true,\"recallRingPattern\":\"Normal\",\"recallTo\":\"Parking User Only\",\"alternateUserRecallTimerSeconds\":45,\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\"}"}],"_postman_id":"f2e3a312-77b9-420e-bfa4-61d22506b923"},{"name":"Call Park Settings","id":"6a24c801-8bef-46a9-b38c-b5dbfa3aa710","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"recallTimerSeconds\": 45,\n    \"displayTimerSeconds\": 5,\n    \"enableDestinationAnnouncement\": true,\n    \"recallRingPattern\": \"Normal\",\n    \"recallTo\": \"Parking User Only\",\n    \"alternateUserRecallTimerSeconds\": 45,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/call-park","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aedb9baf-47f0-49a8-9c21-08719ce5bd50","name":"Call Park Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"recallTimerSeconds\": 45,\n    \"displayTimerSeconds\": 5,\n    \"enableDestinationAnnouncement\": true,\n    \"recallRingPattern\": \"Normal\",\n    \"recallTo\": \"Parking User Only\",\n    \"alternateUserRecallTimerSeconds\": 45,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/call-park"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recallTimerSeconds\": 45,\n    \"displayTimerSeconds\": 5,\n    \"enableDestinationAnnouncement\": true,\n    \"recallRingPattern\": \"Normal\",\n    \"recallTo\": \"Parking User Only\",\n    \"alternateUserRecallTimerSeconds\": 45,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"6a24c801-8bef-46a9-b38c-b5dbfa3aa710"},{"name":"Call Park Available Recall Users","id":"4d01c4d4-b454-439d-9275-afd899c1cfc3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/call-park/recall?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park","recall"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"a160defb-7484-4350-a478-1e3591768056","name":"Call Park Available Recall Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/call-park/recall?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","call-park","recall"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"222","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 16:26:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":\"odin.mock.hg1\",\"lastName\":\"odin.mock.hg1\",\"firstName\":\"Hunt Group\",\"hiraganaLastName\":\"odin.mock.hg1\",\"hiraganaFirstName\":\"Hunt Group\",\"phoneNumber\":null,\"extension\":null,\"department\":null,\"emailAddress\":null}]"}],"_postman_id":"4d01c4d4-b454-439d-9275-afd899c1cfc3"},{"name":"Call Park Groups","id":"c526b8a0-7eaf-4d9d-b64e-14941bd63970","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-park/groups?serviceProviderId=ent.odin.testxp&groupId=HTGroup","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park","groups"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin.testxp"},{"key":"groupId","value":"HTGroup"}],"variable":[]}},"response":[{"id":"c04db9ed-80fb-4e4b-ae69-5fbfd2a24465","name":"Call Park Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/call-park/groups?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","call-park","groups"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"84","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 16:31:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Group 1\"}]"}],"_postman_id":"c526b8a0-7eaf-4d9d-b64e-14941bd63970"},{"name":"Call Park Group","id":"e1e907be-7de3-4e7e-bbfe-ed9ecf8b113c","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Group 2\",\n\t\"recallTo\":\"Parking User Only\"\n}"},"url":"{{url}}/api/v2/groups/call-park/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c77f02a9-6c48-4b80-96ea-adba95a05c29","name":"Call Park Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Group 2\",\n\t\"recallTo\":\"Parking User Only\"\n}"},"url":"{{url}}/api/v2/groups/call-park/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recallTo\": \"Parking User Only\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Group 2\",\n    \"users\": []\n}"}],"_postman_id":"e1e907be-7de3-4e7e-bbfe-ed9ecf8b113c"},{"name":"Call Park Group","id":"b0e06c8d-ec13-4a2c-b083-2034c5e5689c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-park/groups?groupId=odin.mock.grp1&name=Group+2&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park","groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Group+2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"98d09cb5-3f96-40aa-97c9-f44306c8c89c","name":"Call Park Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-park/groups?groupId=odin.mock.grp1&name=Group+2&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-park","groups"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Group+2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"124","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 17:32:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"recallTo\":\"Parking User Only\",\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Group 2\",\"users\":[]}"}],"_postman_id":"b0e06c8d-ec13-4a2c-b083-2034c5e5689c"},{"name":"Call Park Group Users","id":"2b134bea-6b27-4b9a-9561-c247ef8dbbcc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-park/groups/users?groupId=odin.mock.grp1&name=Group+2+Name&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park","groups","users"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Group+2+Name"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"dda6be38-3cbc-42ad-9149-2e5e5cb031ed","name":"Call Park Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-park/groups/users?groupId=odin.mock.grp1&name=Group+2+Name&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-park","groups","users"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Group+2+Name"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"253","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 17:35:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":\"9709580005\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"phoneNumber\":\"+1-9709580005\",\"extension\":\"0005\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null}]"}],"_postman_id":"2b134bea-6b27-4b9a-9561-c247ef8dbbcc"},{"name":"Call Park Group","id":"51afc564-478e-4b1b-a65a-eacfc0806725","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"recallTo\":\"Parking User Only\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Group 2\",\n\t\"users\":[\n\t\t{\"userId\":\"9709580004\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-park/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"91f2f46a-b436-4954-b7b9-1bc98455fbcf","name":"Call Park Group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"recallTo\":\"Parking User Only\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Group 2\",\n\t\"users\":[\n\t\t{\"userId\":\"9709580004\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-park/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recallTo\": \"Parking User Only\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Group 2\",\n    \"users\": [\n        {\n            \"userId\": \"9709580004\",\n            \"lastName\": \"User4last\",\n            \"firstName\": \"User4first\",\n            \"hiraganaLastName\": \"User4last\",\n            \"hiraganaFirstName\": \"User4first\",\n            \"phoneNumber\": \"+1-9709580004\",\n            \"extension\": \"0004\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"51afc564-478e-4b1b-a65a-eacfc0806725"},{"name":"Call Park Group","id":"aba5feaa-8a97-4d85-82ad-341f1bd136c8","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-park/groups?groupId=odin.mock.grp1&name=Group+2&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-park","groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Group+2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"1e80edcf-a291-418a-9908-a34199da8d00","name":"Call Park Group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-park/groups?groupId=odin.mock.grp1&name=Group+2&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-park","groups"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Group+2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 17:36:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"aba5feaa-8a97-4d85-82ad-341f1bd136c8"}],"id":"63945a90-aa3b-4c52-97f2-a5974ed6eef4","_postman_id":"63945a90-aa3b-4c52-97f2-a5974ed6eef4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Pickup","item":[{"name":"Call Pickup Groups","id":"75521a64-8f2f-4578-8d29-577d0ae98b9b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-pickup/groups?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-pickup","groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"45f894b0-f0e7-42e4-9f0d-5b0053b3da0c","name":"Call Pickup Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-pickup/groups?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-pickup","groups"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"90","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 18:33:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Call Pickup 1\"}]"}],"_postman_id":"75521a64-8f2f-4578-8d29-577d0ae98b9b"},{"name":"Call Pickup Group","id":"cdcdfdf6-8e1a-47fd-b3b0-5bad1af75868","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Call Pickup 1\"\n}"},"url":"{{url}}/api/v2/groups/call-pickup/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-pickup","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f7c20263-64e7-4db7-aec2-e572b7784ad6","name":"Call Pickup Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Call Pickup 1\"}"},"url":"{{url}}/api/v2/groups/call-pickup/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 18:33:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"cdcdfdf6-8e1a-47fd-b3b0-5bad1af75868"},{"name":"Call Pickup Group","id":"dd6e30e3-ad0e-4a86-b790-9892ad11b044","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-pickup/groups?serviceProviderId=ent.odin&groupId=grp.odin&name=callpickup2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-pickup","groups"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"callpickup2"}],"variable":[]}},"response":[{"id":"00e68b88-1475-4d73-99f8-f08734aa2836","name":"Call Pickup Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-pickup/groups?groupId=odin.mock.grp1&name=Call+Pickup+1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-pickup","groups"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Call+Pickup+1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"99","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 18:34:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Call Pickup 1\",\"users\":[]}"}],"_postman_id":"dd6e30e3-ad0e-4a86-b790-9892ad11b044"},{"name":"Call Pickup Group User","id":"84b5fa0e-d6a5-4ae5-b993-23cf892ddf81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-pickup/user?serviceProviderId=ent.odin&groupId=grp.odin&userId=4testingnumber@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-pickup","user"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"userId","value":"4testingnumber@odinapi.net"}],"variable":[]}},"response":[{"id":"85f83d09-c43e-4699-b179-bd7529b38e19","name":"Call Pickup Group User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"https://demo23.development.odinapi.net/api/v2/groups/call-pickup/user?serviceProviderId=ent.odin&groupId=grp.odin&userId=4testingnumber@odinapi.net","protocol":"https","host":["demo23","development","odinapi","net"],"path":["api","v2","groups","call-pickup","user"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"userId","value":"4testingnumber@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src       'none';     script-src       'self'       https://*.google-analytics.com       https://www.google.com;     connect-src       'self'       https://www.google-analytics.com;     img-src       'self'       data:       https://www.google-analytics.com;     style-src       'self'       'unsafe-inline';     font-src       'self';     frame-ancestors       teams.microsoft.com       *.teams.microsoft.com       *.skype.com;"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 28 Oct 2024 20:21:53 GMT"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Server","value":"Caddy"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Authorization"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"ALLOW-FROM https://teams.microsoft.com/"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"293"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"call pickup\",\n        \"users\": [\n            {\n                \"userId\": \"5132298516\",\n                \"lastName\": \"DemoUser\",\n                \"firstName\": \"Guest\",\n                \"hiraganaLastName\": \"DemoUser\",\n                \"hiraganaFirstName\": \"Guest\",\n                \"phoneNumber\": \"+1-5132298516\",\n                \"extension\": \"8516\",\n                \"department\": null,\n                \"emailAddress\": \"this.is.a.test@excite.com\"\n            },\n            {\n                \"userId\": \"4testingnumber\",\n                \"lastName\": \"Tata\",\n                \"firstName\": \"Zachary\",\n                \"hiraganaLastName\": \"Tata\",\n                \"hiraganaFirstName\": \"Zachary\",\n                \"phoneNumber\": \"+1-2345555900\",\n                \"extension\": \"5900\",\n                \"department\": \"test_ent_depart\",\n                \"emailAddress\": \"email@email.com\"\n            }\n        ]\n    }\n]"}],"_postman_id":"84b5fa0e-d6a5-4ae5-b993-23cf892ddf81"},{"name":"Call Pickup Available Users","id":"2e077f80-ce82-42bc-8b1a-96f1db54017e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-pickup/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-pickup","users"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"cbef76e8-982b-4c03-8e2b-f38e0a4b34b3","name":"Call Pickup Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-pickup/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-pickup","users"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1261","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 18:35:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":\"9709580001\",\"lastName\":\"User1last\",\"firstName\":\"User1first\",\"hiraganaLastName\":\"User1last\",\"hiraganaFirstName\":\"User1first\",\"phoneNumber\":\"+1-9709580001\",\"extension\":\"0001\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null},{\"userId\":\"9709580002\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"phoneNumber\":\"+1-9709580002\",\"extension\":\"0002\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null},{\"userId\":\"9709580003\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"phoneNumber\":\"+1-9709580003\",\"extension\":\"0003\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null},{\"userId\":\"9709580004\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"phoneNumber\":\"+1-9709580004\",\"extension\":\"0004\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null},{\"userId\":\"9709580005\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"phoneNumber\":\"+1-9709580005\",\"extension\":\"0005\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null}]"}],"_postman_id":"2e077f80-ce82-42bc-8b1a-96f1db54017e"},{"name":"Call Pickup Group","id":"5ccd6d61-25a1-4574-b870-e3a46746cc0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n\t\"groupId\": \"grp.odin\",\n\t\"name\": \"call-pickup-2\",\n\t\"users\": [\n\t\t{\n\t\t\t\"userId\": \"4003-4003\",\n\t\t\t\"lastName\": \"4003-lastname\",\n\t\t\t\"firstName\": \"4003-firstname\",\n\t\t\t\"hiraganaLastName\": \"4003-4003\",\n\t\t\t\"hiraganaFirstName\": \"4003-4003\",\n\t\t\t\"phoneNumber\": \"+1-5134004003\",\n\t\t\t\"extension\": 4003,\n\t\t\t\"department\": \"OdinTester (grp.odin)\",\n\t\t\t\"emailAddress\": \"slatsa@parkbenchsolutions.com\"\n\t\t}\n\t],\n\t\"newName\": \"call-pickup-1\"\n}"},"url":"{{url}}/api/v2/groups/call-pickup/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-pickup","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ff0c0aa4-01dd-46f9-901a-e0fb566d2516","name":"Call Pickup Group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Call Pickup 1\",\n\t\"users\":[\n\t\t{\"userId\":\"9709580001\"},\n\t\t{\"userId\":\"9709580002\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/call-pickup/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 18:36:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5ccd6d61-25a1-4574-b870-e3a46746cc0b"},{"name":"Call Pickup Group","id":"a1a86c1f-508a-4555-8ba3-2805b71b29ae","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-pickup/groups?groupId=odin.mock.grp1&name=Call+Pickup+Mock&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-pickup","groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Call+Pickup+Mock"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"1fde194a-1dc7-4072-8b4b-9fae6b5aef71","name":"Call Pickup Group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-pickup/groups?groupId=odin.mock.grp1&name=Call+Pickup+Mock&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-pickup","groups"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Call+Pickup+Mock"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 18:36:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a1a86c1f-508a-4555-8ba3-2805b71b29ae"}],"id":"6bd55eb6-c7d1-4430-b351-68453eb6b7bf","_postman_id":"6bd55eb6-c7d1-4430-b351-68453eb6b7bf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Policies","item":[{"name":"User Call Policies","id":"96448f22-bdcf-4b64-a02f-9449be79c2fb","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-policies?userId=mock-aa-2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-policies"],"host":["{{url}}"],"query":[{"key":"userId","value":"mock-aa-2"}],"variable":[]}},"response":[{"id":"b03309f2-f4bd-4aea-9856-7a14f43ebd8f","name":"User Call Policies","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-policies?userId=mock-aa-2","host":["{{url}}"],"path":["api","v2","users","call-policies"],"query":[{"key":"userId","value":"mock-aa-2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"188","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 28 Sep 2018 22:05:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"redirectedCallsCOLPPrivacy\":\"Privacy For External Calls\",\"callBeingForwardedResponseCallType\":\"Never\",\"callingLineIdentityForRedirectedCalls\":\"Originating Identity\",\"userId\":\"mock-aa-2\"}"}],"_postman_id":"96448f22-bdcf-4b64-a02f-9449be79c2fb"},{"name":"User Call Policies","id":"bf6a3c89-d534-4be3-af18-fd128d27cd02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"redirectedCallsCOLPPrivacy\":\"Privacy For External Calls\",\n\t\"callBeingForwardedResponseCallType\":\"Never\",\n\t\"callingLineIdentityForRedirectedCalls\":\"Originating Identity\",\n\t\"userId\":\"andrew.torbeck@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/call-policies","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-policies"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a2eefe71-556e-463c-822b-c67313251a51","name":"User Call Policies","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"redirectedCallsCOLPPrivacy\":\"Privacy For External Calls\",\n\t\"callBeingForwardedResponseCallType\":\"Never\",\n\t\"callingLineIdentityForRedirectedCalls\":\"Originating Identity\",\n\t\"userId\":\"mock-aa-2\"\n}"},"url":"{{url}}/api/v2/users/call-policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 28 Sep 2018 22:05:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"bf6a3c89-d534-4be3-af18-fd128d27cd02"}],"id":"acaacdc2-e3a1-469f-aac6-9fc62c75f2df","_postman_id":"acaacdc2-e3a1-469f-aac6-9fc62c75f2df","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Processing Policies","item":[{"name":"Group Call Processing Policy","id":"118e40f1-06c8-4c95-bf92-a4e305af6055","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/call-processing-policy?serviceProviderId=sp.odin&groupId=sp.grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-processing-policy"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"sp.odin"},{"key":"groupId","value":"sp.grp.odin"}],"variable":[]}},"response":[{"id":"8808ecb0-f94e-43fe-ba77-51feef5036fe","name":"Group Call Processing Policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/call-processing-policy?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","call-processing-policy"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useGroupCLIDSetting\": false,\n    \"useGroupMediaSetting\": false,\n    \"useGroupCallLimitsSetting\": false,\n    \"useGroupTranslationRoutingSetting\": false,\n    \"useGroupDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": false,\n    \"maxSimultaneousCalls\": 10,\n    \"useMaxSimultaneousVideoCalls\": false,\n    \"maxSimultaneousVideoCalls\": 5,\n    \"useMaxCallTimeForAnsweredCalls\": false,\n    \"maxCallTimeForAnsweredCallsMinutes\": 600,\n    \"useMaxCallTimeForUnansweredCalls\": false,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 3,\n    \"useMaxFindMeFollowMeDepth\": false,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 10,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": false,\n    \"blockCallingNameForExternalCalls\": false,\n    \"enableDialableCallerID\": false,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"allowDepartmentCLIDNameOverride\": false,\n    \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"useGroupPhoneListLookupSetting\": false,\n    \"enablePhoneListLookup\": false,\n    \"useMaxConcurrentTerminatingAlertingRequests\": false,\n    \"maxConcurrentTerminatingAlertingRequests\": 10,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": false,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": false,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": false,\n    \"allowMobileDNForRedirectingIdentity\": false\n}"}],"_postman_id":"118e40f1-06c8-4c95-bf92-a4e305af6055"},{"name":"Group Call Processing Policy","id":"e2e6bc1a-75ad-4d02-88eb-d5eb3dcd7d13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useGroupCLIDSetting\": false,\n    \"useGroupMediaSetting\": false,\n    \"useGroupCallLimitsSetting\": false,\n    \"useGroupTranslationRoutingSetting\": false,\n    \"useGroupDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": false,\n    \"maxSimultaneousCalls\": 10,\n    \"useMaxSimultaneousVideoCalls\": false,\n    \"maxSimultaneousVideoCalls\": 5,\n    \"useMaxCallTimeForAnsweredCalls\": false,\n    \"maxCallTimeForAnsweredCallsMinutes\": 600,\n    \"useMaxCallTimeForUnansweredCalls\": false,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 3,\n    \"useMaxFindMeFollowMeDepth\": false,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 10,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": false,\n    \"blockCallingNameForExternalCalls\": false,\n    \"enableDialableCallerID\": false,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"allowDepartmentCLIDNameOverride\": false,\n    \"enterpriseCallsCLIDPolicy\": \"Use External Calls Policy\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"useGroupPhoneListLookupSetting\": false,\n    \"enablePhoneListLookup\": false,\n    \"useMaxConcurrentTerminatingAlertingRequests\": true,\n    \"maxConcurrentTerminatingAlertingRequests\": 11,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": false,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": false,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": false,\n    \"allowMobileDNForRedirectingIdentity\": false,\n    \"serviceProviderId\": \"sp.odin\",\n    \"groupId\": \"sp.grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/call-processing-policy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-processing-policy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5567af9e-098d-432c-8c60-973575d806c8","name":"Group Call Processing Policy","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useGroupCLIDSetting\": true,\n    \"useGroupMediaSetting\": false,\n    \"useGroupCallLimitsSetting\": true,\n    \"useGroupTranslationRoutingSetting\": false,\n    \"useGroupDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": true,\n    \"maxSimultaneousCalls\": 3,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 1,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n    \"useMaxCallTimeForUnansweredCalls\": true,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"supportedMediaSetName\": \"HDVoice\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 5,\n    \"useMaxFindMeFollowMeDepth\": true,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 5,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n    \"maxConcurrentFindMeFollowMeInvocations\": 4,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": false,\n    \"blockCallingNameForExternalCalls\": false,\n    \"enableDialableCallerID\": true,\n    \"allowConfigurableCLIDForRedirectingIdentity\": false,\n    \"allowDepartmentCLIDNameOverride\": false,\n    \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"useGroupPhoneListLookupSetting\": false,\n    \"enablePhoneListLookup\": false,\n    \"useMaxConcurrentTerminatingAlertingRequests\": true,\n    \"maxConcurrentTerminatingAlertingRequests\": 11,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": true,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": true,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": true,\n    \"allowMobileDNForRedirectingIdentity\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/call-processing-policy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useGroupCLIDSetting\": true,\n    \"useGroupMediaSetting\": false,\n    \"useGroupCallLimitsSetting\": true,\n    \"useGroupTranslationRoutingSetting\": false,\n    \"useGroupDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": true,\n    \"maxSimultaneousCalls\": 3,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 1,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n    \"useMaxCallTimeForUnansweredCalls\": true,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"supportedMediaSetName\": \"HDVoice\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 5,\n    \"useMaxFindMeFollowMeDepth\": true,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 5,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n    \"maxConcurrentFindMeFollowMeInvocations\": 4,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": false,\n    \"blockCallingNameForExternalCalls\": false,\n    \"enableDialableCallerID\": true,\n    \"allowConfigurableCLIDForRedirectingIdentity\": false,\n    \"allowDepartmentCLIDNameOverride\": false,\n    \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"useGroupPhoneListLookupSetting\": false,\n    \"enablePhoneListLookup\": false,\n    \"useMaxConcurrentTerminatingAlertingRequests\": false,\n    \"maxConcurrentTerminatingAlertingRequests\": 11,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": true,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": true,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": true,\n    \"allowMobileDNForRedirectingIdentity\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"e2e6bc1a-75ad-4d02-88eb-d5eb3dcd7d13"},{"name":"User Call Processing Policy","id":"d1d4e607-21c8-4a7c-9d5e-53c72dfe2d41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-processing-policy?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-processing-policy"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"f03ef6df-c451-4463-99c1-660ac56735d0","name":"User Call Processing Policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-processing-policy?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","call-processing-policy"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useUserCLIDSetting\": true,\n    \"useUserMediaSetting\": true,\n    \"useUserCallLimitsSetting\": true,\n    \"useUserDCLIDSetting\": true,\n    \"useUserTranslationRoutingSetting\": false,\n    \"useMaxSimultaneousCalls\": true,\n    \"maxSimultaneousCalls\": 5,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 5,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 2440,\n    \"useMaxCallTimeForUnansweredCalls\": true,\n    \"maxCallTimeForUnansweredCallsMinutes\": 5,\n    \"mediaPolicySelection\": \"Use Uncompressed Codec\",\n    \"useMaxConcurrentRedirectedCalls\": true,\n    \"maxConcurrentRedirectedCalls\": 5,\n    \"useMaxFindMeFollowMeDepth\": true,\n    \"maxFindMeFollowMeDepth\": 5,\n    \"maxRedirectionDepth\": 5,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n    \"maxConcurrentFindMeFollowMeInvocations\": 5,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use Configurable CLID\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": false,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": true,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"allowDepartmentCLIDNameOverride\": false,\n    \"useUserPhoneListLookupSetting\": true,\n    \"enablePhoneListLookup\": true,\n    \"useMaxConcurrentTerminatingAlertingRequests\": true,\n    \"maxConcurrentTerminatingAlertingRequests\": 10,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": true,\n    \"allowMobileDNForRedirectingIdentity\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}"}],"_postman_id":"d1d4e607-21c8-4a7c-9d5e-53c72dfe2d41"},{"name":"User Call Processing Policy","id":"5628e972-4190-4391-bb0a-61c170a5f5bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"useUserCLIDSetting\": true,\n    \"useUserMediaSetting\": true,\n    \"useUserCallLimitsSetting\": true,\n    \"useUserDCLIDSetting\": true,\n    \"useUserTranslationRoutingSetting\": false,\n    \"useMaxSimultaneousCalls\": true,\n    \"maxSimultaneousCalls\": 5,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 5,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 2440,\n    \"useMaxCallTimeForUnansweredCalls\": true,\n    \"maxCallTimeForUnansweredCallsMinutes\": 5,\n    \"mediaPolicySelection\": \"Use Uncompressed Codec\",\n    \"useMaxConcurrentRedirectedCalls\": true,\n    \"maxConcurrentRedirectedCalls\": 5,\n    \"useMaxFindMeFollowMeDepth\": true,\n    \"maxFindMeFollowMeDepth\": 5,\n    \"maxRedirectionDepth\": 5,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n    \"maxConcurrentFindMeFollowMeInvocations\": 5,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use Configurable CLID\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": false,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": true,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"allowDepartmentCLIDNameOverride\": false,\n    \"useUserPhoneListLookupSetting\": true,\n    \"enablePhoneListLookup\": true,\n    \"useMaxConcurrentTerminatingAlertingRequests\": true,\n    \"maxConcurrentTerminatingAlertingRequests\": 10,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": true,\n    \"allowMobileDNForRedirectingIdentity\": true,\n    \"userId\": \"9871515000@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/call-processing-policy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-processing-policy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fe14dfa8-8d56-4bd8-849b-51b27c5e4472","name":"User Call Processing Policy","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"useUserCLIDSetting\": true,\n    \"useUserMediaSetting\": false,\n    \"useUserCallLimitsSetting\": true,\n    \"useUserDCLIDSetting\": true,\n    \"useMaxSimultaneousCalls\": true,\n    \"maxSimultaneousCalls\": 4,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 4,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 2440,\n    \"useMaxCallTimeForUnansweredCalls\": true,\n    \"maxCallTimeForUnansweredCallsMinutes\": 4,\n    \"mediaPolicySelection\": \"Use Uncompressed Codec\",\n    \"supportedMediaSetName\": \"media\",\n    \"useMaxConcurrentRedirectedCalls\": true,\n    \"maxConcurrentRedirectedCalls\": 7,\n    \"useMaxFindMeFollowMeDepth\": true,\n    \"maxFindMeFollowMeDepth\": 1,\n    \"maxRedirectionDepth\": 4,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use Configurable CLID\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": true,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": true,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"allowDepartmentCLIDNameOverride\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-processing-policy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useUserCLIDSetting\": true,\n    \"useUserMediaSetting\": false,\n    \"useUserCallLimitsSetting\": true,\n    \"useUserDCLIDSetting\": true,\n    \"useMaxSimultaneousCalls\": true,\n    \"maxSimultaneousCalls\": 4,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 4,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 2440,\n    \"useMaxCallTimeForUnansweredCalls\": true,\n    \"maxCallTimeForUnansweredCallsMinutes\": 4,\n    \"mediaPolicySelection\": \"Use Uncompressed Codec\",\n    \"supportedMediaSetName\": \"media\",\n    \"useMaxConcurrentRedirectedCalls\": true,\n    \"maxConcurrentRedirectedCalls\": 7,\n    \"useMaxFindMeFollowMeDepth\": true,\n    \"maxFindMeFollowMeDepth\": 1,\n    \"maxRedirectionDepth\": 4,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use Configurable CLID\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"useGroupName\": true,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": true,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"allowDepartmentCLIDNameOverride\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"5628e972-4190-4391-bb0a-61c170a5f5bc"},{"name":"Service Provider Call Processing Policy","id":"ec9b6912-b4a4-48ab-8ebc-52991fe0957d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/call-processing-policy?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-processing-policy"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"396fb7fb-aa58-42bd-b69b-27842bb5e522","name":"Service Provider Call Processing Policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/call-processing-policy?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","call-processing-policy"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useServiceProviderDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": false,\n    \"maxSimultaneousCalls\": 15,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 7,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 600,\n    \"useMaxCallTimeForUnansweredCalls\": false,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"supportedMediaSetName\": \"HDVoice\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"enforceEnterpriseCallingLineIdentityRestriction\": false,\n    \"useSettingLevel\": \"Service Provider\",\n    \"conferenceURI\": \"mreverman@parkbenchsolutions.com\",\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 3,\n    \"useMaxFindMeFollowMeDepth\": false,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 10,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": false,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"enablePhoneListLookup\": true,\n    \"useMaxConcurrentTerminatingAlertingRequests\": false,\n    \"maxConcurrentTerminatingAlertingRequests\": 10,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": false,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": true,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": true,\n    \"allowMobileDNForRedirectingIdentity\": false,\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"ec9b6912-b4a4-48ab-8ebc-52991fe0957d"},{"name":"Service Provider Call Processing Policy","id":"fdec500a-98b3-4a10-b481-15b33cbfb188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"useServiceProviderDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": false,\n    \"maxSimultaneousCalls\": 15,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 7,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 600,\n    \"useMaxCallTimeForUnansweredCalls\": false,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"supportedMediaSetName\": \"HDVoice\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"enforceEnterpriseCallingLineIdentityRestriction\": false,\n    \"useSettingLevel\": \"Service Provider\",\n    \"conferenceURI\": \"mreverman@parkbenchsolutions.com\",\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 3,\n    \"useMaxFindMeFollowMeDepth\": false,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 10,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": false,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"enablePhoneListLookup\": true,\n    \"useMaxConcurrentTerminatingAlertingRequests\": false,\n    \"maxConcurrentTerminatingAlertingRequests\": 10,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": false,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": true,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": true,\n    \"allowMobileDNForRedirectingIdentity\": false,\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/call-processing-policy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-processing-policy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a73ee4c5-566e-4266-86bc-375bc30c58a5","name":"Service Provider Call Processing Policy","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"useServiceProviderDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": false,\n    \"maxSimultaneousCalls\": 15,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 7,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 600,\n    \"useMaxCallTimeForUnansweredCalls\": false,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"supportedMediaSetName\": \"HDVoice\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"enforceEnterpriseCallingLineIdentityRestriction\": false,\n    \"useSettingLevel\": \"Service Provider\",\n    \"conferenceURI\": \"mreverman@parkbenchsolutions.com\",\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 3,\n    \"useMaxFindMeFollowMeDepth\": false,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 10,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": false,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"enablePhoneListLookup\": true,\n    \"useMaxConcurrentTerminatingAlertingRequests\": false,\n    \"maxConcurrentTerminatingAlertingRequests\": 10,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": false,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": true,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": true,\n    \"allowMobileDNForRedirectingIdentity\": false,\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/call-processing-policy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useServiceProviderDCLIDSetting\": false,\n    \"useMaxSimultaneousCalls\": false,\n    \"maxSimultaneousCalls\": 15,\n    \"useMaxSimultaneousVideoCalls\": true,\n    \"maxSimultaneousVideoCalls\": 7,\n    \"useMaxCallTimeForAnsweredCalls\": true,\n    \"maxCallTimeForAnsweredCallsMinutes\": 600,\n    \"useMaxCallTimeForUnansweredCalls\": false,\n    \"maxCallTimeForUnansweredCallsMinutes\": 2,\n    \"mediaPolicySelection\": \"No Restrictions\",\n    \"supportedMediaSetName\": \"HDVoice\",\n    \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n    \"enforceGroupCallingLineIdentityRestriction\": false,\n    \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n    \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n    \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n    \"useEnterpriseCLIDForPrivateCallCategory\": false,\n    \"enableEnterpriseExtensionDialing\": true,\n    \"enforceEnterpriseCallingLineIdentityRestriction\": false,\n    \"useSettingLevel\": \"Service Provider\",\n    \"conferenceURI\": \"mreverman@parkbenchsolutions.com\",\n    \"useMaxConcurrentRedirectedCalls\": false,\n    \"maxConcurrentRedirectedCalls\": 3,\n    \"useMaxFindMeFollowMeDepth\": false,\n    \"maxFindMeFollowMeDepth\": 3,\n    \"maxRedirectionDepth\": 10,\n    \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n    \"maxConcurrentFindMeFollowMeInvocations\": 3,\n    \"clidPolicy\": \"Use DN\",\n    \"emergencyClidPolicy\": \"Use DN\",\n    \"allowAlternateNumbersForRedirectingIdentity\": true,\n    \"blockCallingNameForExternalCalls\": true,\n    \"enableDialableCallerID\": false,\n    \"allowConfigurableCLIDForRedirectingIdentity\": true,\n    \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n    \"groupCallsCLIDPolicy\": \"Use Extension\",\n    \"enablePhoneListLookup\": true,\n    \"useMaxConcurrentTerminatingAlertingRequests\": false,\n    \"maxConcurrentTerminatingAlertingRequests\": 10,\n    \"includeRedirectionsInMaximumNumberOfConcurrentCalls\": false,\n    \"useUserPhoneNumberForGroupCallsWhenInternalCLIDUnavailable\": true,\n    \"useUserPhoneNumberForEnterpriseCallsWhenInternalCLIDUnavailable\": true,\n    \"allowMobileDNForRedirectingIdentity\": false,\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"fdec500a-98b3-4a10-b481-15b33cbfb188"}],"id":"7f67aa52-1131-4a53-8c63-8ad9177f58a2","_postman_id":"7f67aa52-1131-4a53-8c63-8ad9177f58a2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Recording","item":[{"name":"User Call Recording","id":"191acb36-7155-4b49-a3a8-8155f3389625","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-recording?userId=odin-user1@alliedtelecom.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-recording"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin-user1@alliedtelecom.net"}],"variable":[]}},"response":[{"id":"a371c1ef-4afe-4443-807b-79e4bf131f3c","name":"User Call Recording","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-recording?userId=odin-user1@alliedtelecom.net","host":["{{url}}"],"path":["api","v2","users","call-recording"],"query":[{"key":"userId","value":"odin-user1@alliedtelecom.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordingOption\": \"On Demand with User Initiated Start\",\n    \"pauseResumeNotification\": \"None\",\n    \"enableCallRecordingAnnouncement\": true,\n    \"enableRecordCallRepeatWarningTone\": true,\n    \"recordCallRepeatWarningToneTimerSeconds\": 35,\n    \"userId\": \"odin-user1@alliedtelecom.net\"\n}"}],"_postman_id":"191acb36-7155-4b49-a3a8-8155f3389625"},{"name":"User Call Recording","id":"2c3ac2e2-6c21-40cc-9668-431e230b34e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"recordingOption\": \"Always\",\n    \"pauseResumeNotification\": \"Beep\",\n    \"enableCallRecordingAnnouncement\": true,\n    \"enableRecordCallRepeatWarningTone\": true,\n    \"recordCallRepeatWarningToneTimerSeconds\": 15,\n    \"enableVoiceMailRecording\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-recording","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-recording"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0b1cab86-5821-40d3-af67-64d7617d38a8","name":"User Call Recording","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"recordingOption\": \"Never\",\n    \"pauseResumeNotification\": \"None\",\n    \"enableCallRecordingAnnouncement\": true,\n    \"enableRecordCallRepeatWarningTone\": true,\n    \"recordCallRepeatWarningToneTimerSeconds\": 25,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-recording"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordingOption\": \"Never\",\n    \"pauseResumeNotification\": \"None\",\n    \"enableCallRecordingAnnouncement\": true,\n    \"enableRecordCallRepeatWarningTone\": true,\n    \"recordCallRepeatWarningToneTimerSeconds\": 25,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5758\n}"}],"_postman_id":"2c3ac2e2-6c21-40cc-9668-431e230b34e2"},{"name":"Bulk Call Recording","id":"82135a82-22ee-46d3-a160-6fadcbe2c79f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"recordingOption\":\"Never\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-recording/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-recording","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"a44492c9-aca0-4754-8a4f-b0d1c548e177","name":"Bulk Call Recording","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"recordingOption\":\"Never\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":{"raw":"{{url}}/api/v2/users/call-recording/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","call-recording","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2234","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 19:03:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Call Recording\"},\"user\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"recordingOption\":\"Never\",\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Call Recording\"},\"user\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"recordingOption\":\"Never\",\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Recording\"},\"user\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Recording\"},\"user\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Call Recording\"},\"user\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":{}}]"}],"_postman_id":"82135a82-22ee-46d3-a160-6fadcbe2c79f"},{"name":"Bulk Call Recording","id":"4354a20f-68b8-40de-991a-3b281129556c","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"recordingOption\":\"Never\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-recording/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-recording","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6fea52f6-6206-486b-a635-cd04fe7e6a40","name":"User Call Recording Bulk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"recordingOption\":\"Never\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/call-recording/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"128","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 20:27:52 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"recordingOption\":\"Never\"},\"users\":[{\"userId\":\"9709580001@microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\"}]}"}],"_postman_id":"4354a20f-68b8-40de-991a-3b281129556c"}],"id":"b6ea5621-eef1-4100-87e0-10912354b308","_postman_id":"b6ea5621-eef1-4100-87e0-10912354b308","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Records","item":[{"name":"Service Provider Detail","id":"451f1f14-2f6c-42bf-8926-0bdce50569c5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/call-records/detail?serviceProviderId=103037&startTime=2023-04-22T00:00:00.000Z&endTime=2023-04-22T06:59:59.999Z","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-records","detail"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"103037"},{"key":"startTime","value":"2023-04-22T00:00:00.000Z"},{"key":"endTime","value":"2023-04-22T06:59:59.999Z"}],"variable":[]}},"response":[],"_postman_id":"451f1f14-2f6c-42bf-8926-0bdce50569c5"},{"name":"Service Provider Related","id":"3ae2af23-9545-40b4-811b-fa14299f7b39","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-records/related?endTime=2018-10-14T23:59:59.999-07:00&groupId=odin.mock.grp1&relatedCallIdReason=Call+Center&serviceProviderId=odin.mock.ent1&startTime=2018-10-08T00:00:00.000-07:00","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-records","related"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-14T23:59:59.999-07:00"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"relatedCallIdReason","value":"Call+Center"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"startTime","value":"2018-10-08T00:00:00.000-07:00"}],"variable":[]}},"response":[],"_postman_id":"3ae2af23-9545-40b4-811b-fa14299f7b39"},{"name":"Service Provider Stats","id":"d09dbaea-08ea-4936-b353-76a0f438f7b2","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-records/stats?endTime=2022-06-08T23:59:59.999Z&startTime=2022-06-08T00:00:00.000Z&userIds=TestHunt@parkbenchsolutions.com&groupId=grp.voipxp&serviceProviderId=ent.voipxp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-records","stats"],"host":["{{url}}"],"query":[{"disabled":true,"key":"endTime","value":"2018-10-20T06:59:59.999Z"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"startTime","value":"2018-10-19T07:00:00.000Z"},{"disabled":true,"key":"endTime","value":"2022-06-08T23:59:59.999-04:00"},{"disabled":true,"key":"startTime","value":"2022-06-08T00:00:00.000-04:00"},{"key":"endTime","value":"2022-06-08T23:59:59.999Z"},{"key":"startTime","value":"2022-06-08T00:00:00.000Z"},{"key":"userIds","value":"TestHunt@parkbenchsolutions.com"},{"key":"groupId","value":"grp.voipxp"},{"key":"serviceProviderId","value":"ent.voipxp"}],"variable":[]}},"response":[],"_postman_id":"d09dbaea-08ea-4936-b353-76a0f438f7b2"},{"name":"Service Provider Users Summary","id":"a6dc7a54-ddcc-43aa-8f11-54608d025e53","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/call-records/users?serviceProviderId=103037&startTime=2023-04-22&endTime=2023-04-23","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","call-records","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"103037"},{"key":"startTime","value":"2023-04-22"},{"key":"endTime","value":"2023-04-23"}],"variable":[]}},"response":[],"_postman_id":"a6dc7a54-ddcc-43aa-8f11-54608d025e53"},{"name":"Group Detail","id":"469a1fdc-9f8c-4e71-950a-456bb7aa2562","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-records/detail?endTime=2018-10-20T06:59:59.999Z&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&startTime=2018-10-19T07:00:00.000Z","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-records","detail"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-20T06:59:59.999Z"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"startTime","value":"2018-10-19T07:00:00.000Z"}],"variable":[]}},"response":[{"id":"d2648c7a-1808-4e56-95e1-28ff7edcfb14","name":"Group Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-records/detail?endTime=2018-10-20T06:59:59.999Z&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&startTime=2018-10-19T07:00:00.000Z","host":["{{url}}"],"path":["api","v2","groups","call-records","detail"],"query":[{"key":"endTime","value":"2018-10-20T06:59:59.999Z"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"startTime","value":"2018-10-19T07:00:00.000Z"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:25:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"42"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 0,\n    \"count\": 0,\n    \"offset\": 0,\n    \"data\": []\n}"}],"_postman_id":"469a1fdc-9f8c-4e71-950a-456bb7aa2562"},{"name":"Group Related","id":"19efe881-cf1f-4205-808b-c60dd907e99b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-records/related?endTime=2018-10-14T23:59:59.999-07:00&groupId=odin.mock.grp1&relatedCallIdReason=Call+Center&serviceProviderId=odin.mock.ent1&startTime=2018-10-08T00:00:00.000-07:00","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-records","related"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-14T23:59:59.999-07:00"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"relatedCallIdReason","value":"Call+Center"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"startTime","value":"2018-10-08T00:00:00.000-07:00"}],"variable":[]}},"response":[{"id":"0d6eaa51-e9d8-4a20-aaca-83cc183b3137","name":"Group Related Call Reason","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-records/related?endTime=2018-10-14T23:59:59.999-07:00&groupId=odin.mock.grp1&relatedCallIdReason=Call+Center&serviceProviderId=odin.mock.ent1&startTime=2018-10-08T00:00:00.000-07:00","host":["{{url}}"],"path":["api","v2","groups","call-records","related"],"query":[{"key":"endTime","value":"2018-10-14T23:59:59.999-07:00"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"relatedCallIdReason","value":"Call+Center"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"startTime","value":"2018-10-08T00:00:00.000-07:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:22:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"19efe881-cf1f-4205-808b-c60dd907e99b"},{"name":"Group Stats","id":"5707f741-e488-4c7d-be0b-850634e51f63","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/call-records/stats?endTime=2022-06-08T23:59:59.999Z&startTime=2022-06-08T00:00:00.000Z&userIds=TestHunt@parkbenchsolutions.com&groupId=grp.voipxp&serviceProviderId=ent.voipxp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","call-records","stats"],"host":["{{url}}"],"query":[{"disabled":true,"key":"endTime","value":"2018-10-20T06:59:59.999Z"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"startTime","value":"2018-10-19T07:00:00.000Z"},{"disabled":true,"key":"endTime","value":"2022-06-08T23:59:59.999-04:00"},{"disabled":true,"key":"startTime","value":"2022-06-08T00:00:00.000-04:00"},{"key":"endTime","value":"2022-06-08T23:59:59.999Z"},{"key":"startTime","value":"2022-06-08T00:00:00.000Z"},{"key":"userIds","value":"TestHunt@parkbenchsolutions.com"},{"key":"groupId","value":"grp.voipxp"},{"key":"serviceProviderId","value":"ent.voipxp"}],"variable":[]}},"response":[{"id":"28e9dc7b-bc4b-480b-aa9e-31d5d886d4d1","name":"Group Stats","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/call-records/stats?endTime=2018-10-20T06:59:59.999Z&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&startTime=2018-10-19T07:00:00.000Z","host":["{{url}}"],"path":["api","v2","groups","call-records","stats"],"query":[{"key":"endTime","value":"2018-10-20T06:59:59.999Z"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"startTime","value":"2018-10-19T07:00:00.000Z"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:25:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"262"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"groupId\": null,\n    \"total\": 0,\n    \"totalAnsweredAndMissed\": null,\n    \"answeredTotal\": null,\n    \"missedTotal\": null,\n    \"busyTotal\": null,\n    \"redirectTotal\": null,\n    \"receivedTotal\": null,\n    \"receivedMissed\": null,\n    \"receivedAnswered\": null,\n    \"placedTotal\": null,\n    \"placedMissed\": null,\n    \"placedAnswered\": null\n}"}],"_postman_id":"5707f741-e488-4c7d-be0b-850634e51f63"},{"name":"Users Hourly","id":"41d67517-c08e-4586-90e8-d85f1d39c2cd","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/call-records/hourly?endTime=2018-10-19T23:59:59.999-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=templateAA","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","hourly"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"templateAA"}],"variable":[]}},"response":[{"id":"a71d8f54-d420-4df3-b33d-333dd2eefa04","name":"User Hourly","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/call-records/hourly?endTime=2018-10-19T23:59:59.999-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=templateAA","host":["{{url}}"],"path":["api","v2","users","call-records","hourly"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"templateAA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:30:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"41d67517-c08e-4586-90e8-d85f1d39c2cd"},{"name":"Users Daily","id":"38652bff-0193-42ff-b59b-4184bf7af0b4","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/call-records/daily?startTime=2023-07-14T00:00:00.000-04:00&endTime=2023-07-14T23:59:59.999-04:00&userIds=auto-attendant1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","daily"],"host":["{{url}}"],"query":[{"disabled":true,"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"disabled":true,"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"disabled":true,"key":"userIds","value":"templateAA"},{"key":"startTime","value":"2023-07-14T00:00:00.000-04:00"},{"key":"endTime","value":"2023-07-14T23:59:59.999-04:00"},{"key":"userIds","value":"auto-attendant1"},{"disabled":true,"key":"userIds","value":"auto-attendant1@odinapi.net"}],"variable":[]}},"response":[{"id":"31e32b16-82f6-42e8-b35c-d9b8c9e6d8bf","name":"User Daily","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/call-records/daily?endTime=2018-10-19T23:59:59.999-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=templateAA","host":["{{url}}"],"path":["api","v2","users","call-records","daily"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"templateAA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:30:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"38652bff-0193-42ff-b59b-4184bf7af0b4"},{"name":"Users Detail","id":"6e7b93fa-33f7-4658-beb2-218122b8ccec","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-records/detail?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","detail"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"1238222a-df62-46d2-baa1-9a74ef4bdeb5","name":"User Detail","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/call-records/detail?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-records","detail"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:31:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"475"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": null,\n        \"groupId\": null,\n        \"department\": null,\n        \"userId\": null,\n        \"userIdSub\": null,\n        \"callingNumber\": null,\n        \"calledNumber\": null,\n        \"startTime\": null,\n        \"answerTime\": null,\n        \"day_of_week\": null,\n        \"releaseTime\": null,\n        \"releaseTimeUtc\": null,\n        \"userTimeZone\": null,\n        \"otherPartyName\": null,\n        \"authorizationCode\": null,\n        \"accountCode\": null,\n        \"answerIndicator\": null,\n        \"relatedCallIdReason\": null,\n        \"placedSeconds\": null,\n        \"waitSeconds\": null,\n        \"totalSeconds\": null,\n        \"placedTime\": null,\n        \"waitTime\": null,\n        \"totalTime\": null\n    }\n]"}],"_postman_id":"6e7b93fa-33f7-4658-beb2-218122b8ccec"},{"name":"Users Details","id":"a14f8168-3ec0-4c85-a874-2a79a1b94565","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/call-records/details?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","details"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"ec249199-7046-414b-95e6-52a520752924","name":"User Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/call-records/details?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-records","details"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:30:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"42"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 0,\n    \"count\": 0,\n    \"offset\": 0,\n    \"data\": []\n}"}],"_postman_id":"a14f8168-3ec0-4c85-a874-2a79a1b94565"},{"name":"Users","id":"9ac60110-39fa-4bce-94f6-71e7f223de79","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/call-records/details?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","details"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"9c00c709-5cc1-4ec1-a699-715929a7c059","name":"User Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/call-records/details?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-records","details"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:30:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"42"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 0,\n    \"count\": 0,\n    \"offset\": 0,\n    \"data\": []\n}"}],"_postman_id":"9ac60110-39fa-4bce-94f6-71e7f223de79"},{"name":"Users Stats","id":"f8f3771b-0012-4ad4-92d6-656494531171","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/call-records/stats?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","description":"<p>The response will consist of either an empty array if no records are located, or a JSON object with the following properties:</p>\n<p>1). userId - The user ID sent in as a request parameter.</p>\n<p>2). Total - Total number of call records during the specified<br />period for the specified user.</p>\n<p>3). totalAnsweredAndMissed - Total number of calls placed during<br />the period that were either answered or unanswered, not redirected etc.</p>\n<p>4). answeredTotal - total number of answered calls during the<br />specified period.</p>\n<p>5). missedTotal - total number of calls marked as unanswered<br />with a termination cause of 016.</p>\n<p>6). busyTotal - Total number of calls marked as unanswered with<br />a termination cause of 017.</p>\n<p>7). redirectTotal - Total number of calls answered after being<br />redirected.</p>\n<p>8). receivedTotal - Total number of inbound calls during the<br />period.</p>\n<p>9). receivedMissed - Total number of inbound unanswered calls<br />during the period.</p>\n<p>10). receivedAnswered - Total number of inbound answered calls<br />during the period.</p>\n<p>11). placedTotal - Total number of outbound calls during the<br />period.</p>\n<p>12). placedMissed - Total number of outbound unanswered calls<br />during the period.</p>\n<p>13). placedAnswered - Total number of outbound answered calls<br />during the period.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","stats"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"c258852e-ece8-453d-9e6c-9e6101e1e91d","name":"User Stats","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/call-records/stats?endTime=2018-10-19T23:59:59.000-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-records","stats"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.000-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:30:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"261"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": null,\n    \"total\": 0,\n    \"totalAnsweredAndMissed\": null,\n    \"answeredTotal\": null,\n    \"missedTotal\": null,\n    \"busyTotal\": null,\n    \"redirectTotal\": null,\n    \"receivedTotal\": null,\n    \"receivedMissed\": null,\n    \"receivedAnswered\": null,\n    \"placedTotal\": null,\n    \"placedMissed\": null,\n    \"placedAnswered\": null\n}"}],"_postman_id":"f8f3771b-0012-4ad4-92d6-656494531171"},{"name":"Users Summary","id":"485ae353-ae1a-42b0-8cb0-560cde5b6222","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/call-records/summary?endTime=2018-10-19T23:59:59.999-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com,9709580002@microv-works.com,9709580003@microv-works.com,9709580004@microv-works.com,9709580005@microv-works.com,mock-pilot-1@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","summary"],"host":["{{url}}"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com,9709580002@microv-works.com,9709580003@microv-works.com,9709580004@microv-works.com,9709580005@microv-works.com,mock-pilot-1@microv-works.com"}],"variable":[]}},"response":[{"id":"698e859d-93ed-4c8b-b498-7fd872dae8b0","name":"User Summary","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/call-records/summary?endTime=2018-10-19T23:59:59.999-07:00&startTime=2018-10-19T00:00:00.000-07:00&userIds=9709580001@microv-works.com,9709580002@microv-works.com,9709580003@microv-works.com,9709580004@microv-works.com,9709580005@microv-works.com,mock-pilot-1@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-records","summary"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userIds","value":"9709580001@microv-works.com,9709580002@microv-works.com,9709580003@microv-works.com,9709580004@microv-works.com,9709580005@microv-works.com,mock-pilot-1@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 22:31:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"485ae353-ae1a-42b0-8cb0-560cde5b6222"},{"name":"Users Summary","id":"1384b153-541d-4b03-98a8-f060ea9f3f1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"startTime\": \"2021-04-01T23:59:59.999-07:00\",\n    \"endTime\": \"2021-04-10T23:59:59.999-07:00\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userIds\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/call-records/summary","description":"<p>if you leave the userIds array blank/null [] all of the users in the group will be queried for the cdr results</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-records","summary"],"host":["{{url}}"],"query":[{"disabled":true,"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"disabled":true,"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"disabled":true,"key":"userIds","value":"9709580001@microv-works.com,9709580002@microv-works.com,9709580003@microv-works.com,9709580004@microv-works.com,9709580005@microv-works.com,mock-pilot-1@microv-works.com"}],"variable":[]}},"response":[{"id":"2b57b186-58f9-4444-b6e6-c2c83bfbab6d","name":"Users Summary","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"startTime\": \"2021-04-01T23:59:59.999-07:00\",\n    \"endTime\": \"2021-04-10T23:59:59.999-07:00\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userIds\": [\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/users/call-records/summary","host":["{{url}}"],"path":["api","v2","users","call-records","summary"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.999-07:00","disabled":true},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00","disabled":true},{"key":"userIds","value":"9709580001@microv-works.com,9709580002@microv-works.com,9709580003@microv-works.com,9709580004@microv-works.com,9709580005@microv-works.com,mock-pilot-1@microv-works.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9871515000@odinapi.net\",\n        \"inboundCalls\": \"582\",\n        \"outboundCalls\": \"342\",\n        \"totalCalls\": \"924\",\n        \"inboundTime\": \"24:57:07\",\n        \"outboundTime\": \"15:42:06\",\n        \"totalTime\": \"40:39:13\",\n        \"outboundSeconds\": \"56526\",\n        \"inboundSeconds\": \"89827\",\n        \"totalSeconds\": \"146353\"\n    },\n    {\n        \"userId\": \"9871515001@odinapi.net\",\n        \"inboundCalls\": \"21\",\n        \"outboundCalls\": \"17\",\n        \"totalCalls\": \"38\",\n        \"inboundTime\": \"01:23:41\",\n        \"outboundTime\": \"01:21:04\",\n        \"totalTime\": \"02:44:45\",\n        \"outboundSeconds\": \"4864\",\n        \"inboundSeconds\": \"5021\",\n        \"totalSeconds\": \"9885\"\n    },\n    {\n        \"userId\": \"9871515003@odinapi.net\",\n        \"inboundCalls\": \"28\",\n        \"outboundCalls\": \"0\",\n        \"totalCalls\": \"28\",\n        \"inboundTime\": \"00:11:00\",\n        \"outboundTime\": \"00:00:00\",\n        \"totalTime\": \"00:11:00\",\n        \"outboundSeconds\": \"0\",\n        \"inboundSeconds\": \"660\",\n        \"totalSeconds\": \"660\"\n    }\n]"}],"_postman_id":"1384b153-541d-4b03-98a8-f060ea9f3f1b"},{"name":"User Related","id":"f95772b5-a54a-41f2-a069-2323336f66de","request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5OTg3NjczLCJuYnAiOjE1Mzk5ODc2NzMsImV4cCI6MTU0MDAzMDg3MywiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbTE1VVhZMGR6aGNMMHQ2VjA1Y0wzcFNNMjlNVlZ3dlVXYzlQU0lzSW5aaGJIVmxJam9pT1dORFUyVkZPVWxUTmxFMkt6TXJVRTV6UzFGTlJtOTRaRE5sWTI1MVR6QnlTVUZDUm5ORGFtWXliejBpTENKdFlXTWlPaUkyWkRBM01UUTBZamszWlRaa05tRTRaR0k0TnprelpUTXhOVEEzTTJGa1ptRmxaR05pT0RVd01UUXdNalpqWkdVMVlqVXhPRGRoTURjeU1XWmtNV1l4SW4wPSIsInAiOiJleUpwZGlJNklrdDZZVU5SYkhCV01UUnphMWhrUVVGd0szSm5NVkU5UFNJc0luWmhiSFZsSWpvaU9ETktaMDVDT1dKcWFtSklZbEJZTVhaT1FWQkVVbmczU2tOeWNqZE9Oa2hSVlhOamVEbEpjbkpEUlhaTU5Ga3dYQzltZGsxdVVVSjFhVXBSVVdWS1owUjBNV1F4VFdSNlFWTkNOa2xSVlVsdGFHSndZMjluUFQwaUxDSnRZV01pT2lJd1pqYzRNVGsxTVRnd1pqRTFZamczTVdabE5EZG1aR1kxTnpCak1UTmhNV0k0WTJJME5HRm1ZelppTjJNeE5UQXdZVFExTkdZeFkyRTNaR0ZoWlRGa0luMD0iLCJlIjoiZXlKcGRpSTZJa2h4VFZJMGNrRlphV3RRVWpKbE0wMTVNRzFWVEdjOVBTSXNJblpoYkhWbElqb2lRbEowYUhOelFYcDZNVVV5VW5OR1VFVllVMXBCZHowOUlpd2liV0ZqSWpvaU9XUXlOekZsTlRRNVpqYzNNV0ppTm1VeE1XSTFNemcxTldZeU5URTFPRGhpTldVek9HRmlaRGM1TURnM1l6YzJaV0ZpWkRZNE9ERTJZamsyT0RNMk55SjkifX0.aEfym6wXAi4zzVwrOouXomH7kXYNfunOj2iIxd7C1eY"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:62.0) Gecko/20100101 Firefox/62.0"}],"url":"http://127.0.0.1:8080/api/v2/users/call-records/related?endTime=2018-10-19T23:59:59.999-07:00&relatedCallIdReason=Call+Center&startTime=2018-10-19T00:00:00.000-07:00&userId=mock.cc.1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","users","call-records","related"],"host":["127","0","0","1"],"query":[{"key":"endTime","value":"2018-10-19T23:59:59.999-07:00"},{"key":"relatedCallIdReason","value":"Call+Center"},{"key":"startTime","value":"2018-10-19T00:00:00.000-07:00"},{"key":"userId","value":"mock.cc.1"}],"variable":[]}},"response":[],"_postman_id":"f95772b5-a54a-41f2-a069-2323336f66de"}],"id":"aa31ef6f-80e9-4e80-a21c-6c97e3b343c9","_postman_id":"aa31ef6f-80e9-4e80-a21c-6c97e3b343c9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Transfer","item":[{"name":"User Call Transfer","id":"dbf282a8-1fd8-49a6-b264-63642c316925","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-transfer?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-transfer"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"f54a1a82-bc9b-4d74-92d7-6a8084d43ab7","name":"User Call Transfer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-transfer?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-transfer"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"228","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 22:05:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isRecallActive\":true,\"recallNumberOfRings\":4,\"useDiversionInhibitorForBlindTransfer\":true,\"useDiversionInhibitorForConsultativeCalls\":true,\"enableBusyCampOn\":true,\"busyCampOnSeconds\":120,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"dbf282a8-1fd8-49a6-b264-63642c316925"},{"name":"User Call Transfer","id":"6c61ae47-d5b4-434a-91ac-72a990f51d02","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isRecallActive\": true,\n    \"recallNumberOfRings\": 4,\n    \"useDiversionInhibitorForBlindTransfer\": true,\n    \"useDiversionInhibitorForConsultativeCalls\": true,\n    \"enableBusyCampOn\": true,\n    \"busyCampOnSeconds\": 120,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-transfer","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-transfer"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dfaffe61-9c2a-435d-8c12-8290eaef2514","name":"User Call Transfer","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isRecallActive\": true,\n    \"recallNumberOfRings\": 4,\n    \"useDiversionInhibitorForBlindTransfer\": true,\n    \"useDiversionInhibitorForConsultativeCalls\": true,\n    \"enableBusyCampOn\": true,\n    \"busyCampOnSeconds\": 120,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isRecallActive\": true,\n    \"recallNumberOfRings\": 4,\n    \"useDiversionInhibitorForBlindTransfer\": true,\n    \"useDiversionInhibitorForConsultativeCalls\": true,\n    \"enableBusyCampOn\": true,\n    \"busyCampOnSeconds\": 120,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5791\n}"}],"_postman_id":"6c61ae47-d5b4-434a-91ac-72a990f51d02"}],"id":"ca4c5e73-0f57-4700-833a-7e30737e24ed","_postman_id":"ca4c5e73-0f57-4700-833a-7e30737e24ed","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Call Waiting","item":[{"name":"User Call Waiting","id":"19818813-dbf8-4037-92a7-f5c299650b16","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-waiting?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-waiting"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"ded06a58-1f42-4cfc-bfa3-bb3a23bc7ff2","name":"User Call Waiting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/call-waiting?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","call-waiting"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"92","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 00:50:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"disableCallingLineIdDelivery\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"19818813-dbf8-4037-92a7-f5c299650b16"},{"name":"User Call Waiting","id":"b16be6e6-a4eb-4bc6-8ec6-0ebd1b7edc54","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"disableCallingLineIdDelivery\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-waiting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-waiting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6d56997a-906f-4caf-ad8e-ca3b0cbd84dd","name":"User Call Waiting","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"disableCallingLineIdDelivery\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/call-waiting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"disableCallingLineIdDelivery\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 5958\n}"}],"_postman_id":"b16be6e6-a4eb-4bc6-8ec6-0ebd1b7edc54"}],"id":"522aa1ad-492c-4f27-93eb-139226d102e4","_postman_id":"522aa1ad-492c-4f27-93eb-139226d102e4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Calling Line ID Blocking Override","item":[{"name":"User Calling Line ID Delivery Blocking","id":"5e427621-bf1e-4c4b-92ce-74415f6fb5d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/calling-line-id-blocking-override?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-line-id-blocking-override"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"e91cc514-c138-41a2-a363-a76f724c6da4","name":"User Calling Line ID Delivery Blocking","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/calling-line-id-blocking-override?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","calling-line-id-blocking-override"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"5e427621-bf1e-4c4b-92ce-74415f6fb5d1"},{"name":"User Calling Line ID Delivery Blocking","id":"43bd01c6-7033-46f7-926e-9a2b985cf583","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-line-id-blocking-override","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-line-id-blocking-override"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c33e251d-bdab-4862-8dd0-be5b462357e0","name":"User Calling Line ID Delivery Blocking","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-line-id-blocking-override"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6060\n}"}],"_postman_id":"43bd01c6-7033-46f7-926e-9a2b985cf583"}],"id":"5e36ad07-face-4d78-92a4-1a6f4e3cda89","_postman_id":"5e36ad07-face-4d78-92a4-1a6f4e3cda89","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Calling Line ID Delivery Blocking","item":[{"name":"User Calling Line ID Delivery Blocking","id":"61785f08-e960-44f7-aa31-8de161af175f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/calling-line-id-delivery-blocking?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-line-id-delivery-blocking"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"a086c185-f305-4920-9b51-5311a0ea361f","name":"Calling Line ID Delivery Blocking","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/calling-line-id-delivery-blocking?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","calling-line-id-delivery-blocking"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"56","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 21:31:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"61785f08-e960-44f7-aa31-8de161af175f"},{"name":"User Calling Line ID Delivery Blocking","id":"466d6a43-dac6-456b-b19c-9d1b21cecdfa","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-line-id-delivery-blocking","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-line-id-delivery-blocking"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8c1361b8-bdd7-40c3-b80a-4a81ed8ced9f","name":"User Calling Line ID Delivery Blocking","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-line-id-delivery-blocking"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6090\n}"}],"_postman_id":"466d6a43-dac6-456b-b19c-9d1b21cecdfa"},{"name":"Bulk Calling Line ID Delivery Blocking","id":"74c5f794-8986-4f9d-86dc-32c33a5a1326","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/calling-line-id-delivery-blocking/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-line-id-delivery-blocking","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"cc1fcc00-8638-4d34-a614-d83f068e50c1","name":"Bulk Line ID Delivery Blocking","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/calling-line-id-delivery-blocking/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","calling-line-id-delivery-blocking","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2310","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:46:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Calling Line ID Delivery Blocking\"},\"user\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":true,\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Calling Line ID Delivery Blocking\"},\"user\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":false,\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Calling Line ID Delivery Blocking\"},\"user\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Calling Line ID Delivery Blocking\"},\"user\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Calling Line ID Delivery Blocking\"},\"user\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":{}}]"}],"_postman_id":"74c5f794-8986-4f9d-86dc-32c33a5a1326"},{"name":"Bulk Calling Line ID Delivery Blocking","id":"e4d36cbd-0337-4cb2-85b1-9601a7ff2c65","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\"data\":{\"isActive\":true},\"users\":[{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"}]}"},"url":"{{url}}/api/v2/users/calling-line-id-delivery-blocking/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-line-id-delivery-blocking","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ba485c98-dae5-407f-a204-930bd7280510","name":"Bulk Line ID Delivery Blocking","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\"data\":{\"isActive\":true},\"users\":[{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"}]}"},"url":"{{url}}/api/v2/users/calling-line-id-delivery-blocking/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"710","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:47:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"isActive\":true},\"users\":[{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"}]}"}],"_postman_id":"e4d36cbd-0337-4cb2-85b1-9601a7ff2c65"}],"id":"99399f08-b7a3-4800-ba30-45841e0d63ef","_postman_id":"99399f08-b7a3-4800-ba30-45841e0d63ef","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Calling Name Delivery","item":[{"name":"Calling Name Delivery","id":"487e645a-3c36-4731-b2eb-b9a2a4a5ed85","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/calling-name-delivery?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-name-delivery"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"07cd239d-8a28-4de7-b3eb-a14aa52e61bc","name":"Calling Name Delivery","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/calling-name-delivery?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","calling-name-delivery"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"104","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 21:39:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActiveForExternalCalls\":true,\"isActiveForInternalCalls\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"487e645a-3c36-4731-b2eb-b9a2a4a5ed85"},{"name":"Calling Name Delivery","id":"4f161a3d-3488-4b0b-9a61-156a68ac3898","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActiveForExternalCalls\": true,\n    \"isActiveForInternalCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-name-delivery","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-name-delivery"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03228f34-b98f-4f98-813c-e29e6ef615f8","name":"Calling Name Delivery","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActiveForExternalCalls\": true,\n    \"isActiveForInternalCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-name-delivery"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActiveForExternalCalls\": true,\n    \"isActiveForInternalCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6122\n}"}],"_postman_id":"4f161a3d-3488-4b0b-9a61-156a68ac3898"}],"id":"89e2dd20-9770-41aa-8ecb-6f13504aa91c","_postman_id":"89e2dd20-9770-41aa-8ecb-6f13504aa91c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Calling Name Retrieval","item":[{"name":"User Calling Name Retrieval","id":"7bc2f388-04d4-4e01-bd05-f22bd4553f0a","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/calling-name-retrieval?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-name-retrieval"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"3fdf8946-6340-4834-93d4-84fe463072e4","name":"User Calling Name Retrieval","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/calling-name-retrieval?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","calling-name-retrieval"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"56","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 21:57:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"7bc2f388-04d4-4e01-bd05-f22bd4553f0a"},{"name":"User Calling Name Retrieval","id":"1a043c6d-f1d2-4949-85a1-23da214ed9a7","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-name-retrieval","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-name-retrieval"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d0e5c9c6-dd40-4eaa-adbb-69d09cf6e328","name":"User Calling Name Retrieval","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-name-retrieval"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6174\n}"}],"_postman_id":"1a043c6d-f1d2-4949-85a1-23da214ed9a7"}],"id":"34f6c033-560f-4531-8e3d-c9cd31b7e6d1","_postman_id":"34f6c033-560f-4531-8e3d-c9cd31b7e6d1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Calling Number Delivery","item":[{"name":"User Calling Number Delivery","id":"455993ef-6a1d-4e23-866b-f5968e1313ad","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/calling-number-delivery?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-number-delivery"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"209bdfdf-fddc-465a-ac23-7cb9f3791422","name":"User Calling Number Delivery","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/calling-number-delivery?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","calling-number-delivery"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"104","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 23:33:50 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActiveForExternalCalls\":true,\"isActiveForInternalCalls\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"455993ef-6a1d-4e23-866b-f5968e1313ad"},{"name":"User Calling Number Delivery","id":"5734ef9c-4f80-4454-8b35-f01bf594975c","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActiveForExternalCalls\": true,\n    \"isActiveForInternalCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-number-delivery","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-number-delivery"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d2873a6e-51f7-4f80-8e71-f4b41c91b762","name":"User Calling Number Delivery","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActiveForExternalCalls\": true,\n    \"isActiveForInternalCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-number-delivery"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActiveForExternalCalls\": true,\n    \"isActiveForInternalCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6210\n}"}],"_postman_id":"5734ef9c-4f80-4454-8b35-f01bf594975c"}],"id":"b1b74450-b7d7-4ad9-85b6-ba0585f82f17","_postman_id":"b1b74450-b7d7-4ad9-85b6-ba0585f82f17","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Calling Party Category","item":[{"name":"User Calling Party Category","id":"5361fb64-21ea-40aa-b7d1-876cb20ecaa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/calling-party-category?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-party-category"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"7a658d14-2b2c-4722-9bb3-b4d3c046824c","name":"User Calling Party Category","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/calling-party-category?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","calling-party-category"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"category\": \"Ordinary\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"5361fb64-21ea-40aa-b7d1-876cb20ecaa6"},{"name":"User Calling Party Category","id":"f325a500-8caa-4468-970a-94d411848c1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"category\": \"Payphone\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-party-category","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-party-category"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ea57d14d-0b5d-4203-a711-46211aae7abd","name":"User Calling Party Category","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"category\": \"Payphone\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-party-category"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"category\": \"Payphone\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 8390\n}"}],"_postman_id":"f325a500-8caa-4468-970a-94d411848c1b"}],"id":"b968474a-c960-4747-b196-d94cc99052ab","description":"<p>Calling Party Category service allows a category to be associated with a user. The category is included in the signaling for all outgoing calls. It is used by a softswitch or switching system for call routing, and is also used by operator services system to determine the allowed policies for a user.</p>\n","_postman_id":"b968474a-c960-4747-b196-d94cc99052ab","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Calling Plans","item":[{"name":"User Incoming Calling Plan","id":"40d259dd-561c-45ee-a5c0-0a03e0b241d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/incoming?userId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","incoming"],"host":["{{url}}"],"query":[{"key":"userId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"84114067-6a44-41ae-9c46-4c3201fe1854","name":"User Incoming Calling Plan","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/incoming?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","incoming"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 20:07:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"326"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": {\n        \"allowFromWithinGroup\": true,\n        \"allowFromOutsideGroup\": \"Allow\",\n        \"allowCollectCalls\": true,\n        \"digitPatterns\": [\n            {\n                \"digitPatternName\": \"digitstring1\",\n                \"allow\": true\n            }\n        ]\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"40d259dd-561c-45ee-a5c0-0a03e0b241d1"},{"name":"User Incoming Calling Plan","id":"581386d5-3f54-4095-b005-6e966065ce4a","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":{\n\t\t\"allowFromWithinGroup\":true,\n\t\t\"allowFromOutsideGroup\":\"Allow\",\n\t\t\"allowCollectCalls\":true,\n\t\t\"digitPatterns\":[\n\t\t\t{\"digitPatternName\":\"digitstring1\",\"allow\":true}\n\t\t]\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/incoming","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","incoming"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b4674e49-d26a-49ea-b5e1-73b4527774ea","name":"User Incoming Calling Plan","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":{\n\t\t\"allowFromWithinGroup\":true,\n\t\t\"allowFromOutsideGroup\":\"Allow\",\n\t\t\"allowCollectCalls\":true,\n\t\t\"digitPatterns\":[\n\t\t\t{\"digitPatternName\":\"digitstring1\",\"allow\":true}\n\t\t]\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/incoming"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 20:07:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"326"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": {\n        \"allowFromWithinGroup\": true,\n        \"allowFromOutsideGroup\": \"Allow\",\n        \"allowCollectCalls\": true,\n        \"digitPatterns\": [\n            {\n                \"digitPatternName\": \"digitstring1\",\n                \"allow\": true\n            }\n        ]\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"581386d5-3f54-4095-b005-6e966065ce4a"},{"name":"Users Outgoing Calling Plan Originating","id":"eef6b380-d493-40ce-adc8-1f85ad606d55","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/originating/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","originating","bulk"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"127d4527-3516-40de-9e95-823e459f5bbd","name":"User Calling Plans Outgoing Originating Bulk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/originating/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","originating","bulk"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:12:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"4116"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2000\",\n        \"firstName\": \"mock-2000\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582000\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2000\",\n        \"hiraganaFirstName\": \"mock-2000\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2000\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": \"Allow\",\n            \"local\": \"Allow\",\n            \"tollFree\": \"Allow\",\n            \"toll\": \"Allow\",\n            \"international\": \"Allow\",\n            \"operatorAssisted\": \"Allow\",\n            \"chargeableDirectoryAssisted\": \"Allow\",\n            \"specialServicesI\": \"Allow\",\n            \"specialServicesII\": \"Allow\",\n            \"premiumServicesI\": \"Disallow\",\n            \"premiumServicesII\": \"Disallow\",\n            \"casual\": \"Disallow\",\n            \"urlDialing\": \"Allow\",\n            \"unknown\": \"Allow\"\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582001@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2001\",\n        \"firstName\": \"mock-2001\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582001\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2001\",\n        \"hiraganaFirstName\": \"mock-2001\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2001\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": \"Allow\",\n            \"local\": \"Allow\",\n            \"tollFree\": \"Allow\",\n            \"toll\": \"Allow\",\n            \"international\": \"Allow\",\n            \"operatorAssisted\": \"Allow\",\n            \"chargeableDirectoryAssisted\": \"Allow\",\n            \"specialServicesI\": \"Allow\",\n            \"specialServicesII\": \"Allow\",\n            \"premiumServicesI\": \"Disallow\",\n            \"premiumServicesII\": \"Disallow\",\n            \"casual\": \"Disallow\",\n            \"urlDialing\": \"Allow\",\n            \"unknown\": \"Allow\"\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582002@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2002\",\n        \"firstName\": \"mock-2002\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582002\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2002\",\n        \"hiraganaFirstName\": \"mock-2002\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2002\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": \"Allow\",\n            \"local\": \"Allow\",\n            \"tollFree\": \"Allow\",\n            \"toll\": \"Allow\",\n            \"international\": \"Allow\",\n            \"operatorAssisted\": \"Allow\",\n            \"chargeableDirectoryAssisted\": \"Allow\",\n            \"specialServicesI\": \"Allow\",\n            \"specialServicesII\": \"Allow\",\n            \"premiumServicesI\": \"Disallow\",\n            \"premiumServicesII\": \"Disallow\",\n            \"casual\": \"Disallow\",\n            \"urlDialing\": \"Allow\",\n            \"unknown\": \"Allow\"\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582003@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2003\",\n        \"firstName\": \"mock-2003\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582003\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2003\",\n        \"hiraganaFirstName\": \"mock-2003\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2003\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": \"Allow\",\n            \"local\": \"Allow\",\n            \"tollFree\": \"Allow\",\n            \"toll\": \"Allow\",\n            \"international\": \"Allow\",\n            \"operatorAssisted\": \"Allow\",\n            \"chargeableDirectoryAssisted\": \"Allow\",\n            \"specialServicesI\": \"Allow\",\n            \"specialServicesII\": \"Allow\",\n            \"premiumServicesI\": \"Disallow\",\n            \"premiumServicesII\": \"Disallow\",\n            \"casual\": \"Disallow\",\n            \"urlDialing\": \"Allow\",\n            \"unknown\": \"Allow\"\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582004@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2004\",\n        \"firstName\": \"mock-2004\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582004\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2004\",\n        \"hiraganaFirstName\": \"mock-2004\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2004\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": \"Allow\",\n            \"local\": \"Allow\",\n            \"tollFree\": \"Allow\",\n            \"toll\": \"Allow\",\n            \"international\": \"Allow\",\n            \"operatorAssisted\": \"Allow\",\n            \"chargeableDirectoryAssisted\": \"Allow\",\n            \"specialServicesI\": \"Allow\",\n            \"specialServicesII\": \"Allow\",\n            \"premiumServicesI\": \"Disallow\",\n            \"premiumServicesII\": \"Disallow\",\n            \"casual\": \"Disallow\",\n            \"urlDialing\": \"Allow\",\n            \"unknown\": \"Allow\"\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    }\n]"}],"_postman_id":"eef6b380-d493-40ce-adc8-1f85ad606d55"},{"name":"Users Outgoing Calling Plan Originating","id":"ae445fe2-870e-4706-942c-e5819952ea42","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/originating/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","originating","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"21183cfd-f8e6-49ba-8054-9e1009315aae","name":"User Calling Plans Outgoing Originating Bulk","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/originating/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:14:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"138"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n        },\n        {\n            \"userId\": \"9589582001@as3.xdp.broadsoft.com\"\n        }\n    ],\n    \"data\": {\n        \"useCustomSettings\": false\n    }\n}"}],"_postman_id":"ae445fe2-870e-4706-942c-e5819952ea42"},{"name":"Users Outgoing Calling Plan Redirecting","id":"bec509c1-62a7-4ad6-8efc-cc2f8d2e6b6d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirecting","bulk"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"b61995ae-f5bf-42c5-ad67-bbdfc37e50ab","name":"User Calling Plans Outgoing Redirecting Bulk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","redirecting","bulk"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:48:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3876"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2000\",\n        \"firstName\": \"mock-2000\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582000\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2000\",\n        \"hiraganaFirstName\": \"mock-2000\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2000\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": true,\n            \"toll\": true,\n            \"international\": true,\n            \"operatorAssisted\": true,\n            \"chargeableDirectoryAssisted\": true,\n            \"specialServicesI\": true,\n            \"specialServicesII\": true,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": true,\n            \"unknown\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582001@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2001\",\n        \"firstName\": \"mock-2001\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582001\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2001\",\n        \"hiraganaFirstName\": \"mock-2001\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2001\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": true,\n            \"toll\": true,\n            \"international\": true,\n            \"operatorAssisted\": true,\n            \"chargeableDirectoryAssisted\": true,\n            \"specialServicesI\": true,\n            \"specialServicesII\": true,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": true,\n            \"unknown\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582002@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2002\",\n        \"firstName\": \"mock-2002\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582002\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2002\",\n        \"hiraganaFirstName\": \"mock-2002\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2002\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": true,\n            \"toll\": true,\n            \"international\": true,\n            \"operatorAssisted\": true,\n            \"chargeableDirectoryAssisted\": true,\n            \"specialServicesI\": true,\n            \"specialServicesII\": true,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": true,\n            \"unknown\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582003@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2003\",\n        \"firstName\": \"mock-2003\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582003\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2003\",\n        \"hiraganaFirstName\": \"mock-2003\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2003\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": true,\n            \"toll\": true,\n            \"international\": true,\n            \"operatorAssisted\": true,\n            \"chargeableDirectoryAssisted\": true,\n            \"specialServicesI\": true,\n            \"specialServicesII\": true,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": true,\n            \"unknown\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582004@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2004\",\n        \"firstName\": \"mock-2004\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582004\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2004\",\n        \"hiraganaFirstName\": \"mock-2004\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2004\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": true,\n            \"toll\": true,\n            \"international\": true,\n            \"operatorAssisted\": true,\n            \"chargeableDirectoryAssisted\": true,\n            \"specialServicesI\": true,\n            \"specialServicesII\": true,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": true,\n            \"unknown\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    }\n]"}],"_postman_id":"bec509c1-62a7-4ad6-8efc-cc2f8d2e6b6d"},{"name":"Users Outgoing Calling Plan Redirecting","id":"fcab75c4-925f-4555-a481-f4d5beb2ecf5","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirecting","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b885834b-7a7c-4d3c-8b4b-ec911d96acd1","name":"User Calling Plans Outgoing Redirecting Bulk","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:49:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"138"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n        },\n        {\n            \"userId\": \"9589582001@as3.xdp.broadsoft.com\"\n        }\n    ],\n    \"data\": {\n        \"useCustomSettings\": false\n    }\n}"}],"_postman_id":"fcab75c4-925f-4555-a481-f4d5beb2ecf5"},{"name":"Users Outgoing Calling Plan Redirected","id":"a8010c5f-d783-4339-ac84-cde4f6d81006","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirected/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirected","bulk"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"5abe7165-20b1-45b8-bf68-e0c5387453a3","name":"User Calling Plans Outgoing Redirected Bulk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/redirected/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","redirected","bulk"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:49:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2566"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2000\",\n        \"firstName\": \"mock-2000\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582000\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2000\",\n        \"hiraganaFirstName\": \"mock-2000\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2000\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"outsideGroup\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582001@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2001\",\n        \"firstName\": \"mock-2001\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582001\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2001\",\n        \"hiraganaFirstName\": \"mock-2001\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2001\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"outsideGroup\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582002@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2002\",\n        \"firstName\": \"mock-2002\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582002\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2002\",\n        \"hiraganaFirstName\": \"mock-2002\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2002\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"outsideGroup\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582003@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2003\",\n        \"firstName\": \"mock-2003\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582003\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2003\",\n        \"hiraganaFirstName\": \"mock-2003\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2003\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"outsideGroup\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582004@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2004\",\n        \"firstName\": \"mock-2004\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582004\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2004\",\n        \"hiraganaFirstName\": \"mock-2004\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2004\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"outsideGroup\": true\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    }\n]"}],"_postman_id":"a8010c5f-d783-4339-ac84-cde4f6d81006"},{"name":"Users Outgoing Calling Plan Redirected","id":"d0f59958-31e9-4e0a-9a9b-bb557e208dfd","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirected/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirected","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b93a56a2-78e2-476d-aead-f6e34e3e0b61","name":"User Calling Plans Outgoing Redirected Bulk","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirected/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:50:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"138"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n        },\n        {\n            \"userId\": \"9589582001@as3.xdp.broadsoft.com\"\n        }\n    ],\n    \"data\": {\n        \"useCustomSettings\": false\n    }\n}"}],"_postman_id":"d0f59958-31e9-4e0a-9a9b-bb557e208dfd"},{"name":"Users Outgoing Calling Plan Call Me Now","id":"d1f0f96d-3732-4e2d-b3a4-51864b8c8a13","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","call-me-now","bulk"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"fb409dc2-12de-4b39-a4d8-79fbb83d052c","name":"User Calling Plans Outgoing Call Me Now Bulk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","call-me-now","bulk"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:51:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3916"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2000\",\n        \"firstName\": \"mock-2000\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582000\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2000\",\n        \"hiraganaFirstName\": \"mock-2000\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2000\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": false,\n            \"toll\": true,\n            \"international\": false,\n            \"operatorAssisted\": false,\n            \"chargeableDirectoryAssisted\": false,\n            \"specialServicesI\": false,\n            \"specialServicesII\": false,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": false,\n            \"unknown\": false\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582001@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2001\",\n        \"firstName\": \"mock-2001\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582001\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2001\",\n        \"hiraganaFirstName\": \"mock-2001\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2001\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": false,\n            \"toll\": true,\n            \"international\": false,\n            \"operatorAssisted\": false,\n            \"chargeableDirectoryAssisted\": false,\n            \"specialServicesI\": false,\n            \"specialServicesII\": false,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": false,\n            \"unknown\": false\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582002@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2002\",\n        \"firstName\": \"mock-2002\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582002\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2002\",\n        \"hiraganaFirstName\": \"mock-2002\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2002\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": false,\n            \"toll\": true,\n            \"international\": false,\n            \"operatorAssisted\": false,\n            \"chargeableDirectoryAssisted\": false,\n            \"specialServicesI\": false,\n            \"specialServicesII\": false,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": false,\n            \"unknown\": false\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582003@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2003\",\n        \"firstName\": \"mock-2003\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582003\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2003\",\n        \"hiraganaFirstName\": \"mock-2003\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2003\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": false,\n            \"toll\": true,\n            \"international\": false,\n            \"operatorAssisted\": false,\n            \"chargeableDirectoryAssisted\": false,\n            \"specialServicesI\": false,\n            \"specialServicesII\": false,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": false,\n            \"unknown\": false\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"userId\": \"9589582004@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2004\",\n        \"firstName\": \"mock-2004\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9589582004\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"mock-2004\",\n        \"hiraganaFirstName\": \"mock-2004\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"2004\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"useCustomSettings\": false,\n        \"userPermissions\": {\n            \"group\": true,\n            \"local\": true,\n            \"tollFree\": false,\n            \"toll\": true,\n            \"international\": false,\n            \"operatorAssisted\": false,\n            \"chargeableDirectoryAssisted\": false,\n            \"specialServicesI\": false,\n            \"specialServicesII\": false,\n            \"premiumServicesI\": false,\n            \"premiumServicesII\": false,\n            \"casual\": false,\n            \"urlDialing\": false,\n            \"unknown\": false\n        },\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"isEnterprise\": true\n    }\n]"}],"_postman_id":"d1f0f96d-3732-4e2d-b3a4-51864b8c8a13"},{"name":"Users Outgoing Calling Plan Call Me Now","id":"2da1d778-72cb-4e5c-ace7-be2dc361e9aa","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","call-me-now","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f95131a4-1883-4352-9d3f-24e11e112a6c","name":"User Calling Plans Outgoing Call Me Now Bulk","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"9589582000@as3.xdp.broadsoft.com\"},\n\t\t{\"userId\":\"9589582001@as3.xdp.broadsoft.com\"}\n\t],\n\t\"data\":{\n\t\t\"useCustomSettings\":false\n\t}\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:51:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"138"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n        },\n        {\n            \"userId\": \"9589582001@as3.xdp.broadsoft.com\"\n        }\n    ],\n    \"data\": {\n        \"useCustomSettings\": false\n    }\n}"}],"_postman_id":"2da1d778-72cb-4e5c-ace7-be2dc361e9aa"},{"name":"User Outgoing Calling Plan Originating","id":"6557dbbb-8c26-4b5d-a0e8-8111108c9013","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/originating?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","originating"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"fc9176e0-c79e-4ae0-9745-1eb57d14e944","name":"User Outgoing Calling Plan Originating","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/originating?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","originating"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:57:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"505"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"group\": \"Allow\",\n        \"local\": \"Allow\",\n        \"tollFree\": \"Allow\",\n        \"toll\": \"Allow\",\n        \"international\": \"Allow\",\n        \"operatorAssisted\": \"Allow\",\n        \"chargeableDirectoryAssisted\": \"Allow\",\n        \"specialServicesI\": \"Allow\",\n        \"specialServicesII\": \"Allow\",\n        \"premiumServicesI\": \"Disallow\",\n        \"premiumServicesII\": \"Disallow\",\n        \"casual\": \"Disallow\",\n        \"urlDialing\": \"Allow\",\n        \"unknown\": \"Allow\"\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"6557dbbb-8c26-4b5d-a0e8-8111108c9013"},{"name":"User Outgoing Calling Plan Originating","id":"2b1273af-c553-46e5-8433-c505ecb429a3","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"group\":\"Allow\",\n\t\t\"local\":\"Allow\",\n\t\t\"tollFree\":\"Allow\",\n\t\t\"toll\":\"Allow\",\n\t\t\"international\":\"Allow\",\n\t\t\"operatorAssisted\":\"Allow\",\n\t\t\"chargeableDirectoryAssisted\":\"Authorization Code Required\",\n\t\t\"specialServicesI\":\"Allow\",\n\t\t\"specialServicesII\":\"Allow\",\n\t\t\"premiumServicesI\":\"Disallow\",\n\t\t\"premiumServicesII\":\"Disallow\",\n\t\t\"casual\":\"Allow\",\n\t\t\"urlDialing\":\"Allow\",\n\t\t\"unknown\":\"Allow\"\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/originating","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","originating"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"de673265-4a7b-4b95-abe3-79d0891c0808","name":"User Outgoing Calling Plan Originating","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"group\":\"Allow\",\n\t\t\"local\":\"Allow\",\n\t\t\"tollFree\":\"Allow\",\n\t\t\"toll\":\"Allow\",\n\t\t\"international\":\"Allow\",\n\t\t\"operatorAssisted\":\"Allow\",\n\t\t\"chargeableDirectoryAssisted\":\"Authorization Code Required\",\n\t\t\"specialServicesI\":\"Allow\",\n\t\t\"specialServicesII\":\"Allow\",\n\t\t\"premiumServicesI\":\"Disallow\",\n\t\t\"premiumServicesII\":\"Disallow\",\n\t\t\"casual\":\"Allow\",\n\t\t\"urlDialing\":\"Allow\",\n\t\t\"unknown\":\"Allow\"\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/originating"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:58:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"505"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"group\": \"Allow\",\n        \"local\": \"Allow\",\n        \"tollFree\": \"Allow\",\n        \"toll\": \"Allow\",\n        \"international\": \"Allow\",\n        \"operatorAssisted\": \"Allow\",\n        \"chargeableDirectoryAssisted\": \"Allow\",\n        \"specialServicesI\": \"Allow\",\n        \"specialServicesII\": \"Allow\",\n        \"premiumServicesI\": \"Disallow\",\n        \"premiumServicesII\": \"Disallow\",\n        \"casual\": \"Disallow\",\n        \"urlDialing\": \"Allow\",\n        \"unknown\": \"Allow\"\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"2b1273af-c553-46e5-8433-c505ecb429a3"},{"name":"User Outgoing Calling Plan Redirecting","id":"830d1e36-9aa7-41d0-bf07-108c01b910aa","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirecting"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"0561baf3-292d-4e3b-8901-4c331213dee6","name":"User Outgoing Calling Plan Redirecting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","redirecting"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 18:59:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"457"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"group\": true,\n        \"local\": true,\n        \"tollFree\": true,\n        \"toll\": true,\n        \"international\": true,\n        \"operatorAssisted\": true,\n        \"chargeableDirectoryAssisted\": true,\n        \"specialServicesI\": true,\n        \"specialServicesII\": true,\n        \"premiumServicesI\": false,\n        \"premiumServicesII\": false,\n        \"casual\": false,\n        \"urlDialing\": true,\n        \"unknown\": true\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"830d1e36-9aa7-41d0-bf07-108c01b910aa"},{"name":"User Outgoing Calling Plan Redirecting","id":"b1cd16b3-4304-4c2c-af92-2f14c0332aeb","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"group\":true,\n\t\t\"local\":true,\n\t\t\"tollFree\":true,\n\t\t\"toll\":true,\n\t\t\"international\":true,\n\t\t\"operatorAssisted\":true,\n\t\t\"chargeableDirectoryAssisted\":true,\n\t\t\"specialServicesI\":true,\n\t\t\"specialServicesII\":true,\n\t\t\"premiumServicesI\":false,\n\t\t\"premiumServicesII\":false,\n\t\t\"casual\":false,\n\t\t\"urlDialing\":true,\n\t\t\"unknown\":true\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirecting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"37880df8-6a32-4046-beb1-f947d804e81b","name":"User Outgoing Calling Plan Redirecting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"group\":true,\n\t\t\"local\":true,\n\t\t\"tollFree\":true,\n\t\t\"toll\":true,\n\t\t\"international\":true,\n\t\t\"operatorAssisted\":true,\n\t\t\"chargeableDirectoryAssisted\":true,\n\t\t\"specialServicesI\":true,\n\t\t\"specialServicesII\":true,\n\t\t\"premiumServicesI\":false,\n\t\t\"premiumServicesII\":false,\n\t\t\"casual\":false,\n\t\t\"urlDialing\":true,\n\t\t\"unknown\":true\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirecting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:00:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"457"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"group\": true,\n        \"local\": true,\n        \"tollFree\": true,\n        \"toll\": true,\n        \"international\": true,\n        \"operatorAssisted\": true,\n        \"chargeableDirectoryAssisted\": true,\n        \"specialServicesI\": true,\n        \"specialServicesII\": true,\n        \"premiumServicesI\": false,\n        \"premiumServicesII\": false,\n        \"casual\": false,\n        \"urlDialing\": true,\n        \"unknown\": true\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"b1cd16b3-4304-4c2c-af92-2f14c0332aeb"},{"name":"User Outgoing Calling Plan Redirected","id":"bba17cf7-ba4c-41f0-a43b-e8b5b1262ca8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirected?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirected"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"fef148b9-b556-4776-b770-846e7608eb4c","name":"User Outgoing Calling Plan Redirected","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/redirected?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","redirected"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:01:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"195"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"outsideGroup\": true\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"bba17cf7-ba4c-41f0-a43b-e8b5b1262ca8"},{"name":"User Outgoing Calling Plan Redirected","id":"53d0e340-9dfe-4a3b-82c3-d6e80bc7a862","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"outsideGroup\":true\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirected","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","redirected"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f078f513-a1d5-49fd-9a06-32a06d221b28","name":"User Outgoing Calling Plan Redirected","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"outsideGroup\":true\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/redirected"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:01:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"195"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"outsideGroup\": true\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"53d0e340-9dfe-4a3b-82c3-d6e80bc7a862"},{"name":"User Outgoing Calling Plan Call Me Now","id":"a5c68795-a1c0-4c64-a997-14ff7222c9c6","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","call-me-now"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"1410bdb7-884c-427f-b9eb-581de4fa1a07","name":"User Outgoing Calling Plan Call Me Now","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","call-me-now"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:02:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"465"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"group\": true,\n        \"local\": true,\n        \"tollFree\": false,\n        \"toll\": true,\n        \"international\": false,\n        \"operatorAssisted\": false,\n        \"chargeableDirectoryAssisted\": false,\n        \"specialServicesI\": false,\n        \"specialServicesII\": false,\n        \"premiumServicesI\": false,\n        \"premiumServicesII\": false,\n        \"casual\": false,\n        \"urlDialing\": false,\n        \"unknown\": false\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"a5c68795-a1c0-4c64-a997-14ff7222c9c6"},{"name":"User Outgoing Calling Plan Call Me Now","id":"68197132-ebe4-4575-b0f2-323f121fe9ff","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"group\":true,\n\t\t\"local\":true,\n\t\t\"tollFree\":false,\n\t\t\"toll\":true,\n\t\t\"international\":false,\n\t\t\"operatorAssisted\":false,\n\t\t\"chargeableDirectoryAssisted\":false,\n\t\t\"specialServicesI\":false,\n\t\t\"specialServicesII\":false,\n\t\t\"premiumServicesI\":false,\n\t\t\"premiumServicesII\":false,\n\t\t\"casual\":false,\n\t\t\"urlDialing\":false,\n\t\t\"unknown\":false\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","call-me-now"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f3a05e14-7a7e-49f8-b657-c3e849cb17c0","name":"User Outgoing Calling Plan Call Me Now","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":{\n\t\t\"group\":true,\n\t\t\"local\":true,\n\t\t\"tollFree\":false,\n\t\t\"toll\":true,\n\t\t\"international\":false,\n\t\t\"operatorAssisted\":false,\n\t\t\"chargeableDirectoryAssisted\":false,\n\t\t\"specialServicesI\":false,\n\t\t\"specialServicesII\":false,\n\t\t\"premiumServicesI\":false,\n\t\t\"premiumServicesII\":false,\n\t\t\"casual\":false,\n\t\t\"urlDialing\":false,\n\t\t\"unknown\":false\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/call-me-now"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:03:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"465"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": {\n        \"group\": true,\n        \"local\": true,\n        \"tollFree\": false,\n        \"toll\": true,\n        \"international\": false,\n        \"operatorAssisted\": false,\n        \"chargeableDirectoryAssisted\": false,\n        \"specialServicesI\": false,\n        \"specialServicesII\": false,\n        \"premiumServicesI\": false,\n        \"premiumServicesII\": false,\n        \"casual\": false,\n        \"urlDialing\": false,\n        \"unknown\": false\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"68197132-ebe4-4575-b0f2-323f121fe9ff"},{"name":"User Outgoing Calling Plan Authorization Code Settings","id":"2942db5c-c639-472e-b3e2-daf8e3139ba7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","authorization-codes"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"a15f832a-1e98-4e83-994b-6787de401955","name":"User Outgoing Calling Plan Authorization Code Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","authorization-codes"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:15:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"154"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"2942db5c-c639-472e-b3e2-daf8e3139ba7"},{"name":"User Outgoing Calling Plan Authorization Code Settings","id":"bee86e9c-9b0c-4f4b-a190-f33cf285b99c","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"19504458-00d1-4e24-b863-cd1a02af9406","name":"User Outgoing Calling Plan Authorization Code Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:16:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"154"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"bee86e9c-9b0c-4f4b-a190-f33cf285b99c"},{"name":"User Outgoing Calling Plan Authorization Codes","id":"42f21664-9cce-4011-b5a5-bfde12768312","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes/codes?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","authorization-codes","codes"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"87c2e036-828d-4349-9536-50d94f62d0c1","name":"User Outgoing Calling Plan Authorization Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes/codes?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","authorization-codes","codes"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:17:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"36"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"code\": \"555\",\n        \"description\": \"555\"\n    }\n]"}],"_postman_id":"42f21664-9cce-4011-b5a5-bfde12768312"},{"name":"User Outgoing Calling Plan Authorization Codes","id":"a4bc34f2-2030-4f10-8036-94c4436525c0","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\",\n\t\"code\":\"555\",\n\t\"description\":\"555\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes/codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","authorization-codes","codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"40231716-c5b0-4ff8-80d9-ba0572874a83","name":"User Outgoing Calling Plan Authorization Codes","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\",\n\t\"code\":\"555\",\n\t\"description\":\"555\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes/codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:17:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a4bc34f2-2030-4f10-8036-94c4436525c0"},{"name":"User Outgoing Calling Plan Authorization Codes","id":"8fe2f2b1-2e64-4915-b718-c095a9417818","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes/codes?code=555&userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","authorization-codes","codes"],"host":["{{url}}"],"query":[{"key":"code","value":"555"},{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"49c9deb1-63bc-4879-928e-0bc0f489adb2","name":"User Outgoing Calling Plan Authorization Codes","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/authorization-codes/codes?code=555&userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","authorization-codes","codes"],"query":[{"key":"code","value":"555"},{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:17:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8fe2f2b1-2e64-4915-b718-c095a9417818"},{"name":"User Outgoing Calling Plan Digit Plan Originating","id":"c5a0f7e3-53f2-415d-b706-8be06e1cf540","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/originating?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","digit-plan","originating"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"b69b5e15-c9d2-4327-a725-602a3a0c20dd","name":"User Outgoing Calling Plan Digit Plan Originating","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/originating?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","digit-plan","originating"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:32:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"232"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"digitstring1\",\n            \"permission\": \"Allow\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"c5a0f7e3-53f2-415d-b706-8be06e1cf540"},{"name":"User Outgoing Calling Plan Digit Plan Originating","id":"1094bca8-66bc-4205-8451-5cf2eee8dc4f","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"digitstring1\",\"permission\":\"Allow\"}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/originating","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","digit-plan","originating"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2c6c9466-2d6b-4292-8df0-948910bc3cbb","name":"User Outgoing Calling Plan Digit Plan Originating","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"digitstring1\",\"permission\":\"Allow\"}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/originating"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:33:48 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"232"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"digitstring1\",\n            \"permission\": \"Allow\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"1094bca8-66bc-4205-8451-5cf2eee8dc4f"},{"name":"User Outgoing Calling Plan Digit Plan Redirecting","id":"17332280-7456-485d-aa74-15a0d3f32822","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/redirecting?userId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","digit-plan","redirecting"],"host":["{{url}}"],"query":[{"key":"userId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"ddbe0898-75b4-4a0d-b971-d7cd1720f4cf","name":"User Outgoing Calling Plan Digit Plan Redirecting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/redirecting?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","digit-plan","redirecting"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:39:14 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"229"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"digitstring1\",\n            \"permission\": true\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"17332280-7456-485d-aa74-15a0d3f32822"},{"name":"User Outgoing Calling Plan Digit Plan Redirecting","id":"bb51958e-f7fe-49d8-a298-0c84ea999511","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"digitstring1\",\"permission\":true}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/redirecting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","digit-plan","redirecting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0e54b2de-482c-49ce-93a4-ff62a3086bcd","name":"User Outgoing Calling Plan Digit Plan Redirecting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"digitstring1\",\"permission\":true}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/redirecting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:39:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"228"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"digitstring1\",\n            \"permission\": true\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"bb51958e-f7fe-49d8-a298-0c84ea999511"},{"name":"User Outgoing Calling Plan Digit Plan Call Me Now","id":"10584a57-6dd8-4388-93bb-d2d0ea8e56bd","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/call-me-now?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","digit-plan","call-me-now"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"ca1bb6d0-2d3a-41b8-b708-1bbc80dce746","name":"User Outgoing Calling Plan Digit Plan Call Me Now","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/call-me-now?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","digit-plan","call-me-now"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:40:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"228"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"digitstring1\",\n            \"permission\": true\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"10584a57-6dd8-4388-93bb-d2d0ea8e56bd"},{"name":"User Outgoing Calling Plan Digit Plan Call Me Now ","id":"317efcdd-95c7-4171-a14d-6d9bf2c94d02","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"digitstring1\",\"permission\":true}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/call-me-now","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","digit-plan","call-me-now"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fd053e8d-3e39-4c97-9e88-0b55bca1e1f7","name":"User Outgoing Calling Plan Digit Plan Call Me Now ","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"digitstring1\",\"permission\":true}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/digit-plan/call-me-now"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:41:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"229"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"digitstring1\",\n            \"permission\": true\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"317efcdd-95c7-4171-a14d-6d9bf2c94d02"},{"name":"User Outgoing Calling Plan Pinhole Digit Plan Originating","id":"1f84268c-1c27-4ead-a5d7-3e731bdeb575","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/originating?userId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","originating"],"host":["{{url}}"],"query":[{"key":"userId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"a6c287cb-b32f-4f4b-9fed-2055091f6ca1","name":"User Outgoing Calling Plan Pinhole Digit Plan Originating","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/originating?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","originating"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:51:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"229"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"pinhole1\",\n            \"permission\": \"Ignore\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"1f84268c-1c27-4ead-a5d7-3e731bdeb575"},{"name":"User Outgoing Calling Plan Pinhole Digit Plan  Originating","id":"46e67d6b-184d-49ca-9c74-8133a3a2a3ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"3sa\",\"permission\":\"Allow\"},        \n        {\"digitPatternName\":\"gggg\",\"permission\":\"Allow\"}            \n\t],\n\t\"userId\":\"Premium@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/originating","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","originating"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"eeda5d59-5169-4e91-8580-361256637457","name":"User Outgoing Calling Plan Pinhole Digit Plan  Originating","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"pinhole1\",\"permission\":\"Allow\"}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/originating"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:51:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"227"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"pinhole1\",\n            \"permission\": \"Allow\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"46e67d6b-184d-49ca-9c74-8133a3a2a3ae"},{"name":"User Outgoing Calling Plan Pinhole Digit Plan Redirecting","id":"d7372a17-c729-41c3-b843-2b6d23ca58f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/redirecting?userId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","redirecting"],"host":["{{url}}"],"query":[{"key":"userId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"d3572971-dec4-41cf-858b-4449b76ab1d3","name":"User Outgoing Calling Plan Pinhole Digit Plan Redirecting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/redirecting?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","redirecting"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:51:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"228"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"pinhole1\",\n            \"permission\": \"Ignore\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"d7372a17-c729-41c3-b843-2b6d23ca58f1"},{"name":"User Outgoing Calling Plan Pinhole Digit Plan Redirecting","id":"a15d1469-fac2-43b0-8548-053a012a5a05","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"pinhole1\",\"permission\":\"Allow\"}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/redirecting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","redirecting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b2335d66-fd5d-45bf-8ec1-73d69e8aaa00","name":"User Outgoing Calling Plan Pinhole Digit Plan Redirecting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"pinhole1\",\"permission\":\"Allow\"}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/redirecting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:52:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"227"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"pinhole1\",\n            \"permission\": \"Allow\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"a15d1469-fac2-43b0-8548-053a012a5a05"},{"name":"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now","id":"3101b090-98f6-48f8-b7ee-8e3403e1d64e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/call-me-now?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","call-me-now"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"873a6f7e-349b-4630-8381-c21910d8df1f","name":"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/call-me-now?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","call-me-now"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:52:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"228"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"pinhole1\",\n            \"permission\": \"Ignore\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"3101b090-98f6-48f8-b7ee-8e3403e1d64e"},{"name":"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now","id":"7e39045b-158c-4789-ac03-079a4919c62f","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"pinhole1\",\"permission\":\"Ignore\"}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/call-me-now","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","pinhole-digit-plan","call-me-now"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"49d8e306-b416-44b6-ac99-16429b63241a","name":"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":false,\n\t\"userPermissions\":[\n\t\t{\"digitPatternName\":\"pinhole1\",\"permission\":\"Ignore\"}\n\t],\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/pinhole-digit-plan/call-me-now"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 19:53:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"229"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": false,\n    \"userPermissions\": [\n        {\n            \"digitPatternName\": \"pinhole1\",\n            \"permission\": \"Ignore\"\n        }\n    ],\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"7e39045b-158c-4789-ac03-079a4919c62f"},{"name":"User Outgoing Calling Plan Transfer Numbers","id":"f0ec136b-a78d-48e8-a5b1-7a4a650334ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/calling-plans/outgoing/transfer-numbers?userId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","transfer-numbers"],"host":["{{url}}"],"query":[{"key":"userId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"b70887a9-a9b2-4400-bbc4-5bca8e870d3a","name":"User Outgoing Calling Plan Transfer Numbers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/calling-plans/outgoing/transfer-numbers?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","calling-plans","outgoing","transfer-numbers"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 20:00:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"257"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userNumbers\": {\n        \"phoneNumber01\": \"5133334444\",\n        \"phoneNumber02\": \"5133334455\",\n        \"phoneNumber03\": \"5133334466\"\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"f0ec136b-a78d-48e8-a5b1-7a4a650334ad"},{"name":"User Outgoing Calling Plan Transfer Numbers","id":"883a1889-e72e-4a83-b7fa-c2dc0a9331b6","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userNumbers\":{\n\t\t\"phoneNumber01\":\"5133334444\",\n\t\t\"phoneNumber02\":\"5133334455\",\n\t\t\"phoneNumber03\":\"5133334466\"\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/transfer-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","calling-plans","outgoing","transfer-numbers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8640d4b2-14f3-43ef-bd5e-e3f53d84fbfe","name":"User Outgoing Calling Plan Transfer Numbers","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useCustomSettings\":true,\n\t\"userNumbers\":{\n\t\t\"phoneNumber01\":\"5133334444\",\n\t\t\"phoneNumber02\":\"5133334455\",\n\t\t\"phoneNumber03\":\"5133334466\"\n\t},\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/calling-plans/outgoing/transfer-numbers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 20:01:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"257"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useCustomSettings\": true,\n    \"userNumbers\": {\n        \"phoneNumber01\": \"5133334444\",\n        \"phoneNumber02\": \"5133334455\",\n        \"phoneNumber03\": \"5133334466\"\n    },\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"883a1889-e72e-4a83-b7fa-c2dc0a9331b6"},{"name":"Group Incoming Calling Plan","id":"7b7c889d-1707-4281-ac49-2f39bd8c321d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/incoming?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","incoming"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"81a9e16e-d1da-4c63-8d56-f3582fa34d8a","name":"Group Incoming Calling Plan","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/incoming?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","incoming"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:04:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"539"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"allowFromWithinGroup\": true,\n            \"allowFromOutsideGroup\": \"Allow\",\n            \"allowCollectCalls\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"allow\": true\n                }\n            ]\n        },\n        {\n            \"allowFromWithinGroup\": true,\n            \"allowFromOutsideGroup\": \"Allow\",\n            \"allowCollectCalls\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"allow\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\"\n        }\n    ]\n}"}],"_postman_id":"7b7c889d-1707-4281-ac49-2f39bd8c321d"},{"name":"Group Incoming Calling Plan","id":"60f770fb-f418-4faf-9a7c-d3ce26621e49","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"allowFromWithinGroup\": true,\n            \"allowFromOutsideGroup\": \"Allow\",\n            \"allowCollectCalls\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"allow\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/incoming","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","incoming"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5b022375-63ba-4b46-8af9-a88fcf46cb6f","name":"Group Incoming Calling Plan","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"allowFromWithinGroup\": true,\n            \"allowFromOutsideGroup\": \"Allow\",\n            \"allowCollectCalls\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"allow\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/incoming"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:05:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"539"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"allowFromWithinGroup\": true,\n            \"allowFromOutsideGroup\": \"Allow\",\n            \"allowCollectCalls\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"allow\": true\n                }\n            ]\n        },\n        {\n            \"allowFromWithinGroup\": true,\n            \"allowFromOutsideGroup\": \"Allow\",\n            \"allowCollectCalls\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"allow\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\"\n        }\n    ]\n}"}],"_postman_id":"60f770fb-f418-4faf-9a7c-d3ce26621e49"},{"name":"Group Outgoing Calling Plan Originating","id":"08da641c-132e-453e-a719-75359a9539fa","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/originating?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","originating"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"aac4c3ba-36f6-43b5-9991-0f98c0a7da11","name":"Group Outgoing Calling Plan Originating","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/originating?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","originating"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:15:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"942"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"group\": \"Allow\",\n                \"local\": \"Allow\",\n                \"tollFree\": \"Allow\",\n                \"toll\": \"Allow\",\n                \"international\": \"Allow\",\n                \"operatorAssisted\": \"Allow\",\n                \"chargeableDirectoryAssisted\": \"Allow\",\n                \"specialServicesI\": \"Allow\",\n                \"specialServicesII\": \"Allow\",\n                \"premiumServicesI\": \"Disallow\",\n                \"premiumServicesII\": \"Disallow\",\n                \"casual\": \"Disallow\",\n                \"urlDialing\": \"Allow\",\n                \"unknown\": \"Allow\"\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": \"Allow\",\n                \"local\": \"Allow\",\n                \"tollFree\": \"Allow\",\n                \"toll\": \"Allow\",\n                \"international\": \"Allow\",\n                \"operatorAssisted\": \"Allow\",\n                \"chargeableDirectoryAssisted\": \"Allow\",\n                \"specialServicesI\": \"Allow\",\n                \"specialServicesII\": \"Allow\",\n                \"premiumServicesI\": \"Disallow\",\n                \"premiumServicesII\": \"Disallow\",\n                \"casual\": \"Disallow\",\n                \"urlDialing\": \"Allow\",\n                \"unknown\": \"Allow\"\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"08da641c-132e-453e-a719-75359a9539fa"},{"name":"Group Outgoing Calling Plan Originating","id":"30f82288-b260-4273-a5e2-5503d840b683","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": \"Allow\",\n                \"local\": \"Allow\",\n                \"tollFree\": \"Allow\",\n                \"toll\": \"Allow\",\n                \"international\": \"Allow\",\n                \"operatorAssisted\": \"Allow\",\n                \"chargeableDirectoryAssisted\": \"Allow\",\n                \"specialServicesI\": \"Allow\",\n                \"specialServicesII\": \"Allow\",\n                \"premiumServicesI\": \"Disallow\",\n                \"premiumServicesII\": \"Disallow\",\n                \"casual\": \"Disallow\",\n                \"urlDialing\": \"Allow\",\n                \"unknown\": \"Allow\"\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/originating","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","originating"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3dab9ccf-0b17-4089-b4bd-ee2e0c50fb1c","name":"Group Outgoing Calling Plan Originating","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": \"Allow\",\n                \"local\": \"Allow\",\n                \"tollFree\": \"Allow\",\n                \"toll\": \"Allow\",\n                \"international\": \"Allow\",\n                \"operatorAssisted\": \"Allow\",\n                \"chargeableDirectoryAssisted\": \"Allow\",\n                \"specialServicesI\": \"Allow\",\n                \"specialServicesII\": \"Allow\",\n                \"premiumServicesI\": \"Disallow\",\n                \"premiumServicesII\": \"Disallow\",\n                \"casual\": \"Disallow\",\n                \"urlDialing\": \"Allow\",\n                \"unknown\": \"Allow\"\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/originating"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:15:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"942"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"group\": \"Allow\",\n                \"local\": \"Allow\",\n                \"tollFree\": \"Allow\",\n                \"toll\": \"Allow\",\n                \"international\": \"Allow\",\n                \"operatorAssisted\": \"Allow\",\n                \"chargeableDirectoryAssisted\": \"Allow\",\n                \"specialServicesI\": \"Allow\",\n                \"specialServicesII\": \"Allow\",\n                \"premiumServicesI\": \"Disallow\",\n                \"premiumServicesII\": \"Disallow\",\n                \"casual\": \"Disallow\",\n                \"urlDialing\": \"Allow\",\n                \"unknown\": \"Allow\"\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": \"Allow\",\n                \"local\": \"Allow\",\n                \"tollFree\": \"Allow\",\n                \"toll\": \"Allow\",\n                \"international\": \"Allow\",\n                \"operatorAssisted\": \"Allow\",\n                \"chargeableDirectoryAssisted\": \"Allow\",\n                \"specialServicesI\": \"Allow\",\n                \"specialServicesII\": \"Allow\",\n                \"premiumServicesI\": \"Disallow\",\n                \"premiumServicesII\": \"Disallow\",\n                \"casual\": \"Disallow\",\n                \"urlDialing\": \"Allow\",\n                \"unknown\": \"Allow\"\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"30f82288-b260-4273-a5e2-5503d840b683"},{"name":"Group Outgoing Calling Plan Redirecting","id":"46495455-29ca-4b49-ba20-bcb597be53db","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/redirecting?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","redirecting"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"ce1b35dd-dd14-4253-bdcf-bf66164b5c87","name":"Group Outgoing Calling Plan Redirecting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/redirecting?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","redirecting"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:24:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"846"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": true,\n                \"unknown\": true\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": true,\n                \"unknown\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"46495455-29ca-4b49-ba20-bcb597be53db"},{"name":"Group Outgoing Calling Plan Redirecting","id":"7715a4cc-d7cd-4071-8a6a-5274330456fa","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": true,\n                \"unknown\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/redirecting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","redirecting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3798d6c9-5a04-44b4-bee2-a6f9c3da36b9","name":"Group Outgoing Calling Plan Redirecting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": true,\n                \"unknown\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/redirecting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:24:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"846"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": true,\n                \"unknown\": true\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": true,\n                \"unknown\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"7715a4cc-d7cd-4071-8a6a-5274330456fa"},{"name":"Group Outgoing Calling Plan Redirected","id":"db9e8d6f-3e0d-4b40-94ea-9a71a8e11dc8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/redirected?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","redirected"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"4bd56716-d13c-4d5f-8918-e4d12fd9c353","name":"Group Outgoing Calling Plan Redirected","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/redirected?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","redirected"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:43:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"322"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"outsideGroup\": true\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"outsideGroup\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"db9e8d6f-3e0d-4b40-94ea-9a71a8e11dc8"},{"name":"Group Outgoing Calling Plan Redirected","id":"3a9c6ac4-d000-42d6-8acc-b4421fef23a4","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"outsideGroup\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/redirected","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","redirected"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f5dd2b9c-bd0a-40b5-b7b1-94ca5a30ca27","name":"Group Outgoing Calling Plan Redirected","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"outsideGroup\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/redirected"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:44:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"322"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"outsideGroup\": true\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"outsideGroup\": true\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"3a9c6ac4-d000-42d6-8acc-b4421fef23a4"},{"name":"Group Outgoing Calling Plan Call Me Now","id":"152cf5f1-1df9-4d82-b8fb-648b84b35e4d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/call-me-now?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","call-me-now"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"f30e8bac-f288-4375-83fc-7accd18cdd1e","name":"Group Outgoing Calling Plan Call Me Now","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/call-me-now?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","call-me-now"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:46:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"861"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": false,\n                \"toll\": true,\n                \"international\": false,\n                \"operatorAssisted\": false,\n                \"chargeableDirectoryAssisted\": false,\n                \"specialServicesI\": false,\n                \"specialServicesII\": false,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": false,\n                \"unknown\": false\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": false,\n                \"toll\": true,\n                \"international\": false,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": false,\n                \"specialServicesI\": false,\n                \"specialServicesII\": false,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": false,\n                \"unknown\": false\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"152cf5f1-1df9-4d82-b8fb-648b84b35e4d"},{"name":"Group Outgoing Calling Plan Call Me Now","id":"6756568e-0cb4-4385-893d-7975e70812d8","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": false,\n                \"toll\": true,\n                \"international\": false,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": false,\n                \"specialServicesI\": false,\n                \"specialServicesII\": false,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": false,\n                \"unknown\": false\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/call-me-now","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","call-me-now"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2c0cbdbd-0c42-4b69-ba25-d4993d42def8","name":"Group Outgoing Calling Plan Call Me Now","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": false,\n                \"toll\": true,\n                \"international\": false,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": false,\n                \"specialServicesI\": false,\n                \"specialServicesII\": false,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": false,\n                \"unknown\": false\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/call-me-now"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 21:46:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"861"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": false,\n                \"toll\": true,\n                \"international\": false,\n                \"operatorAssisted\": false,\n                \"chargeableDirectoryAssisted\": false,\n                \"specialServicesI\": false,\n                \"specialServicesII\": false,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": false,\n                \"unknown\": false\n            }\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": false,\n                \"toll\": true,\n                \"international\": false,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": false,\n                \"specialServicesI\": false,\n                \"specialServicesII\": false,\n                \"premiumServicesI\": false,\n                \"premiumServicesII\": false,\n                \"casual\": false,\n                \"urlDialing\": false,\n                \"unknown\": false\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"6756568e-0cb4-4385-893d-7975e70812d8"},{"name":"Group Outgoing Calling Plan Authorization Codes","id":"b4201dfe-4691-4df4-ad66-c517aa212a69","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/authorization-codes?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","authorization-codes"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"506a6575-5f8e-4879-a9ff-2349e8ea5fc5","name":"Group Outgoing Calling Plan Authorization Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/authorization-codes?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","authorization-codes"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 22:44:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"473"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"codes\": [\n                {\n                    \"code\": \"333\",\n                    \"description\": \"asdf\"\n                }\n            ],\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\"\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"codes\": [\n                {\n                    \"code\": \"444\",\n                    \"description\": \"Test123\"\n                }\n            ],\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"b4201dfe-4691-4df4-ad66-c517aa212a69"},{"name":"Group Outgoing Calling Plan Authorization Codes","id":"43b09dc6-810f-4006-a264-6e400d377909","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n    \"codes\": [\n        {\n            \"code\": \"444\",\n            \"description\": \"Test456\"\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"department\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"name\": \"Department 1\"\n    }\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c49b3548-5271-430e-b277-32507a7f0058","name":"Group Outgoing Calling Plan Authorization Codes","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n    \"codes\": [\n        {\n            \"code\": \"444\",\n            \"description\": \"Test456\"\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"department\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"name\": \"Department 1\"\n    }\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 22:47:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"43b09dc6-810f-4006-a264-6e400d377909"},{"name":"Group Outgoing Calling Plans Authorization Codes","id":"a723e030-cd25-4ad2-9ab0-867162c61355","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n    \"codes\": [\n        {\n            \"code\": \"444\",\n            \"description\": \"Test456\"\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"department\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"name\": \"Department 1\"\n    }\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cda8c2b2-874a-4592-95c6-29191f1f83a6","name":"Group Outgoing Calling Plans Authorization Codes","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n    \"codes\": [\n        {\n            \"code\": \"444\",\n            \"description\": \"Test456\"\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"department\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"name\": \"Department 1\"\n    }\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Oct 2018 22:46:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a723e030-cd25-4ad2-9ab0-867162c61355"},{"name":"Group Outgoing Calling Plan Digit Plan Originating","id":"b34637fd-f2fa-458e-8e86-9039a448468b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/originating?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","digit-plan","originating"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"49d87319-bdfb-4f2f-bdcf-c13568d33cbf","name":"Group Outgoing Calling Plan Digit Plan Originating","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/originating?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","digit-plan","originating"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:07:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": \"Allow\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": \"Allow\"\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"b34637fd-f2fa-458e-8e86-9039a448468b"},{"name":"Group Outgoing Calling Plan Digit Plan Originating","id":"708fcbe9-b32f-492a-83bd-82ddbd29a3b5","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": \"Allow\"\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/originating","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","digit-plan","originating"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"93024b66-69c2-4a7d-9b4e-76dc0a0e5723","name":"Group Outgoing Calling Plan Digit Plan Originating","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": \"Allow\"\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/originating"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:07:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": \"Allow\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": \"Allow\"\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"708fcbe9-b32f-492a-83bd-82ddbd29a3b5"},{"name":"Group Outgoing Calling Plan Digit Plan Redirecting","id":"cf185513-e14d-443f-9d6c-8c958e187dcd","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/redirecting?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","digit-plan","redirecting"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"583b234a-7c22-4b2f-87f6-09116eb78040","name":"Group Outgoing Calling Plan Digit Plan Redirecting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/redirecting?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","digit-plan","redirecting"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:07:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"330"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"cf185513-e14d-443f-9d6c-8c958e187dcd"},{"name":"Group Outgoing Calling Plan Digit Plan Redirecting","id":"d638270c-6b09-4154-a730-09c34f4912bc","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/redirecting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","digit-plan","redirecting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"08ac9176-6968-4c80-8671-e892580c5fa4","name":"Group Outgoing Calling Plan Digit Plan Redirecting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/redirecting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:08:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"330"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"d638270c-6b09-4154-a730-09c34f4912bc"},{"name":"Group Outgoing Calling Plan Digit Plan Call Me Now","id":"c3a9d094-65fc-4c68-a2a2-8d69c030f78f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/call-me-now?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","digit-plan","call-me-now"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"2c0542dd-8a8a-4180-9f6d-563342dc82b1","name":"Group Outgoing Calling Plan Digit Plan Call Me Now","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/call-me-now?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","digit-plan","call-me-now"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:08:23 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"330"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"c3a9d094-65fc-4c68-a2a2-8d69c030f78f"},{"name":"Group Outgoing Calling Plan Digit Plan Call Me Now","id":"93af8144-c12b-42fc-b833-ae87db702089","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/call-me-now","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","digit-plan","call-me-now"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"26a7488e-ad39-48d2-9588-78e38bb9284d","name":"Group Outgoing Calling Plan Digit Plan Call Me Now","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/digit-plan/call-me-now"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:08:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"330"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"digitstring1\",\n                    \"permission\": true\n                }\n            ],\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            }\n        }\n    ]\n}"}],"_postman_id":"93af8144-c12b-42fc-b833-ae87db702089"},{"name":"Group Outgoing Calling Plan Pinhole Digit Plan Originating","id":"c004b20a-4aae-42f7-81b0-03ac77cd0401","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/originating?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","originating"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"c84d7c8d-a35b-45e0-af5b-da1b0e05d4c3","name":"Group Outgoing Calling Plan Pinhole Digit Plan Originating","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/originating?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","originating"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:14:48 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"330"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"c004b20a-4aae-42f7-81b0-03ac77cd0401"},{"name":"Group Outgoing Calling Plan Pinhole Digit Plan Originating","id":"1d393e3c-a504-4a29-9e94-f161ccfbcf07","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/originating","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","originating"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"70ee0d19-873c-4394-b98a-21f715a105a5","name":"Group Outgoing Calling Plan Pinhole Digit Plan Originating","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/originating"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:15:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"330"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"1d393e3c-a504-4a29-9e94-f161ccfbcf07"},{"name":"Group Outgoing Calling Plan Pinhole Digit Plan Redirecting","id":"c435399c-6a4c-4dd4-94e3-0598699098d7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/redirecting?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","redirecting"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"1234af6d-508a-4687-a3bf-6499981374a2","name":"Group Outgoing Calling Plan Pinhole Digit Plan Redirecting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/redirecting?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","redirecting"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:15:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"426"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"c435399c-6a4c-4dd4-94e3-0598699098d7"},{"name":"Group Outgoing Calling Plan Pinhole Digit Plan Redirecting","id":"8e5ec214-1fc5-48c7-9998-4050f7b15e58","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/redirecting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","redirecting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03d4b879-d8e2-4eea-b1fe-debbaf209f09","name":"Group Outgoing Calling Plan Pinhole Digit Plan Redirecting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/redirecting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:15:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"426"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"8e5ec214-1fc5-48c7-9998-4050f7b15e58"},{"name":"Group Outgoing Calling Plan Pinhole Digit Plan Call Me Now","id":"ab99b97e-0191-4501-aee2-71ab2bf8fb4b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/call-me-now?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","call-me-now"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"2365c89d-6eb6-4aa2-872c-b4a99a761402","name":"Group Outgoing Calling Plan Pinhole Digit Plan Call Me Now","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/call-me-now?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","call-me-now"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:16:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"426"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"ab99b97e-0191-4501-aee2-71ab2bf8fb4b"},{"name":"Group Outgoing Calling Plan Pinhole Digit Plan Call Me Now","id":"d99d90e0-2a55-497a-955e-40a72896d13f","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/call-me-now","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-plan","call-me-now"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d570c240-518f-440f-b1a2-ee424218d00a","name":"Group Outgoing Calling Plan Pinhole Digit Plan Call Me Now","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-plan/call-me-now"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:16:23 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"426"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"departments\": [\n        {\n            \"default\": true,\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        },\n        {\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"permissions\": {\n                \"digitPatternPermissions\": {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            },\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"digitPatterns\": [\n                {\n                    \"digitPatternName\": \"pinhole1\",\n                    \"permission\": \"Ignore\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"d99d90e0-2a55-497a-955e-40a72896d13f"},{"name":"Group Calling Plan Digit Patterns","id":"864c4bfa-8e95-4d58-9ef8-19ac33cfcb61","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/digit-patterns?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","digit-patterns"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"f3334775-6579-4196-b814-f0478f68049e","name":"Group Calling Plan Digit Patterns","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/digit-patterns?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","digit-patterns"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:28:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"108"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"digitstring1\",\n        \"digitPattern\": 333,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    }\n]"}],"_postman_id":"864c4bfa-8e95-4d58-9ef8-19ac33cfcb61"},{"name":"Group Calling Plan Digit Pattern","id":"fb2e5457-a637-4057-9bd0-32446aa84f3f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"digitpattern2\",\n    \"digitPattern\": \"444\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/digit-patterns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","digit-patterns"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"af09e854-ec99-4885-83f8-91c162465f40","name":"Group Calling Plan Digit Pattern","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"digitpattern2\",\n    \"digitPattern\": \"444\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/digit-patterns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:28:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"fb2e5457-a637-4057-9bd0-32446aa84f3f"},{"name":"Group Calling Plan Digit Pattern","id":"11320649-7d0b-40e6-827b-54d29179185e","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"digitpattern2\",\n    \"digitPattern\": 444,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/digit-patterns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","digit-patterns"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3b3b2482-42d6-4522-ad50-f7b06c4419cf","name":"Group Calling Plan Digit Pattern","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"digitpattern2\",\n    \"digitPattern\": 444,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/digit-patterns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:29:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"11320649-7d0b-40e6-827b-54d29179185e"},{"name":"Group Calling Plan Digit Pattern","id":"cc1b9c07-fd95-499b-9fd0-0ed32c9966a4","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/digit-patterns?groupId=odin.mock.grp1&name=digitpattern2&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","digit-patterns"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"digitpattern2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"e0c3752f-ca29-4f7d-adab-1a456f3fd87e","name":"Group Calling Plan Digit Pattern","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/digit-patterns?groupId=odin.mock.grp1&name=digitpattern2&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","digit-patterns"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"digitpattern2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:29:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"cc1b9c07-fd95-499b-9fd0-0ed32c9966a4"},{"name":"Group Outgoing Calling Plan Pinhole Digit Patterns","id":"8b263773-12b2-4574-ba88-fc92e000e692","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-patterns"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"da578093-6f8a-44c9-9e2c-1c3395f4c67f","name":"Group Outgoing Calling Plan Pinhole Digit Patterns","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-patterns"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:37:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"104"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"pinhole1\",\n        \"digitPattern\": 444,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    }\n]"}],"_postman_id":"8b263773-12b2-4574-ba88-fc92e000e692"},{"name":"Group Outgoing Calling Plan Pinhole Digit Pattern","id":"c8ccb29b-2409-4da7-8209-02b7edba8d81","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"pinhole2\",\n    \"digitPattern\": \"555\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-patterns"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e67b157d-5557-4624-a0cc-4fd40a1c1377","name":"Group Outgoing Calling Plan Pinhole Digit Pattern","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"pinhole2\",\n    \"digitPattern\": \"555\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:37:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c8ccb29b-2409-4da7-8209-02b7edba8d81"},{"name":"Group Outgoing Calling Plan Pinhole Digit Pattern","id":"80cf2e09-1df1-402a-a5df-4aa00222acc0","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"pinhole2\",\n    \"digitPattern\": 555,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-patterns"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c2f8a9cc-4959-4fb2-a95e-b3b71f3d6a3c","name":"Group Outgoing Calling Plan Pinhole Digit Pattern","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"pinhole2\",\n    \"digitPattern\": 555,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:37:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"80cf2e09-1df1-402a-a5df-4aa00222acc0"},{"name":"Group Outgoing Calling Plan Pinhole Digit Pattern","id":"d630a0fa-cb05-4d81-b2c8-3a8f01e6b173","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns?groupId=odin.mock.grp1&name=pinhole2&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-patterns"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"pinhole2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"11fd6fd4-f0fe-4eee-82e7-de414f0135b9","name":"Group Outgoing Calling Plan Pinhole Digit Pattern","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/pinhole-digit-patterns?groupId=odin.mock.grp1&name=pinhole2&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","pinhole-digit-patterns"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"pinhole2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:38:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"d630a0fa-cb05-4d81-b2c8-3a8f01e6b173"},{"name":"Group Outgoing Calling Plan Transfer Numbers","id":"06731036-7bc1-4b99-8c3c-a2194298dce9","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/calling-plans/outgoing/transfer-numbers?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","transfer-numbers"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"99beed96-7dd1-4802-90e9-d7294c12943b","name":"Group Outgoing Calling Plan Transfer Numbers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/calling-plans/outgoing/transfer-numbers?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","calling-plans","outgoing","transfer-numbers"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:42:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"440"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"transferNumbers\": {\n                \"phoneNumber01\": null,\n                \"phoneNumber02\": null,\n                \"phoneNumber03\": null\n            }\n        },\n        {\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"transferNumbers\": {\n                \"phoneNumber01\": \"5133334444\",\n                \"phoneNumber02\": \"5133334455\",\n                \"phoneNumber03\": \"5133334456\"\n            }\n        }\n    ]\n}"}],"_postman_id":"06731036-7bc1-4b99-8c3c-a2194298dce9"},{"name":"Group Outgoing Calling Plan Transfer Numbers","id":"a3c8a620-7f65-4577-af71-a11efc5936b3","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"transferNumbers\": {\n                \"phoneNumber01\": \"5133334444\",\n                \"phoneNumber02\": \"5133334455\",\n                \"phoneNumber03\": \"5133334456\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/transfer-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","calling-plans","outgoing","transfer-numbers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"309a5a9a-64c9-4c47-8b65-4f2aaa3efc04","name":"Group Outgoing Calling Plan Transfer Numbers","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"transferNumbers\": {\n                \"phoneNumber01\": \"5133334444\",\n                \"phoneNumber02\": \"5133334455\",\n                \"phoneNumber03\": \"5133334456\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/calling-plans/outgoing/transfer-numbers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 17:42:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"440"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"departments\": [\n        {\n            \"default\": true,\n            \"transferNumbers\": {\n                \"phoneNumber01\": null,\n                \"phoneNumber02\": null,\n                \"phoneNumber03\": null\n            }\n        },\n        {\n            \"department\": {\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"name\": \"Department 1\"\n            },\n            \"departmentName\": \"Department 1 (odin.mock.grp1)\",\n            \"transferNumbers\": {\n                \"phoneNumber01\": \"5133334444\",\n                \"phoneNumber02\": \"5133334455\",\n                \"phoneNumber03\": \"5133334456\"\n            }\n        }\n    ]\n}"}],"_postman_id":"a3c8a620-7f65-4577-af71-a11efc5936b3"}],"id":"28763abc-7693-4e77-8017-01742d2828da","_postman_id":"28763abc-7693-4e77-8017-01742d2828da","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Callbacks","item":[{"name":"Callback Logs","id":"f6b47248-1150-4f7f-88ed-9cd45bbb8a77","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/callbacks/logs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks","logs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"de22dcd6-5051-48f7-b733-7d9ed3dd4753","name":"User Collaborate Bridge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/collaborate/bridge?userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","collaborate","bridge"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"175","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:24:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"bridgeId\":\"ent.odin-grp.odin-Default\",\"bridgeName\":\"grp.odin-Default\",\"supportOutDial\":false,\"maxCollaborateRoomParticipants\":15,\"userId\":\"9589581000@as3.xdp.broadsoft.com\"}"}],"_postman_id":"f6b47248-1150-4f7f-88ed-9cd45bbb8a77"}],"id":"87954327-0be6-4b8c-8568-c0fdc768a24c","_postman_id":"87954327-0be6-4b8c-8568-c0fdc768a24c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"ChargeNumber","item":[{"name":"User Charge Number v1","id":"4c8bd8b6-8a32-4cdf-a5e8-0e19d1e5b6ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v1/services/users/charge-number/user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v1","services","users","charge-number","user-1@voicecci.net"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e26f3e5c-25af-48d1-bb12-8b6b07f005fc","name":"User Charge Number v1","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v1/services/users/charge-number/user-1@voicecci.net"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useChargeNumberForEnhancedTranslations\": true,\n    \"sendChargeNumberToNetwork\": true,\n    \"userId\": \"user-1@voicecci.net\"\n}"}],"_postman_id":"4c8bd8b6-8a32-4cdf-a5e8-0e19d1e5b6ca"},{"name":"User Charge Number v1","id":"0e85c175-9067-4aca-9362-fe7d159a5619","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useChargeNumberForEnhancedTranslations\": true,\n    \"sendChargeNumberToNetwork\": false\n}"},"url":"{{url}}/api/v1/services/users/charge-number/user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v1","services","users","charge-number","user-1@voicecci.net"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"16dd6a1b-8309-4d27-9595-97a20b072084","name":"User Charge Number v1","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useChargeNumberForEnhancedTranslations\": true,\n    \"sendChargeNumberToNetwork\": false\n}"},"url":"{{url}}/api/v1/services/users/charge-number/user-1@voicecci.net"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useChargeNumberForEnhancedTranslations\": true,\n    \"sendChargeNumberToNetwork\": false,\n    \"userId\": \"user-1@voicecci.net\"\n}"}],"_postman_id":"0e85c175-9067-4aca-9362-fe7d159a5619"},{"name":"User Charge Number v2","id":"fab73860-fe90-47e2-af3d-7a143e82a725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/charge-number?userId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","charge-number"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"e2753e4c-bd9a-41db-bd7e-780d44ff1137","name":"User Charge Number","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/charge-number?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","charge-number"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useChargeNumberForEnhancedTranslations\": false,\n    \"sendChargeNumberToNetwork\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},{"id":"fe724366-1ac9-4e6c-a134-32c6f72582a2","name":"User Charge Number v2","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/charge-number?userId=user-1@voicecci.net","host":["{{url}}"],"path":["api","v2","users","charge-number"],"query":[{"key":"userId","value":"user-1@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"phoneNumber\": \"5139228863\",\n    \"useChargeNumberForEnhancedTranslations\": true,\n    \"sendChargeNumberToNetwork\": true,\n    \"userId\": \"user-1@voicecci.net\"\n}"}],"_postman_id":"fab73860-fe90-47e2-af3d-7a143e82a725"},{"name":"User Charge Number v2","id":"8d4a790d-0740-44d1-8d4f-12dcb4f612dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"5139228860\",\n    \"useChargeNumberForEnhancedTranslations\": false,\n    \"sendChargeNumberToNetwork\": true,\n    \"userId\": \"user-1@voicecci.net\"\n}"},"url":"{{url}}/api/v2/users/charge-number","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","charge-number"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9bff7ecc-9d77-43a5-929c-698adc8aca42","name":"User Charge Number Copy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useChargeNumberForEnhancedTranslations\": true,\n    \"sendChargeNumberToNetwork\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/charge-number"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useChargeNumberForEnhancedTranslations\": true,\n    \"sendChargeNumberToNetwork\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6240\n}"}],"_postman_id":"8d4a790d-0740-44d1-8d4f-12dcb4f612dd"}],"id":"2f76f356-2f82-496c-b9cc-32086c092c61","_postman_id":"2f76f356-2f82-496c-b9cc-32086c092c61","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Classmark","item":[{"name":"User Classmark","id":"864b287e-3aad-4da6-9403-8ddf69490750","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/classmark?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","classmark"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"0222ce10-bbe9-4d60-9ca2-d976d3c7d6ad","name":"User Classmark","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/classmark?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","classmark"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"864b287e-3aad-4da6-9403-8ddf69490750"},{"name":"User Classmark","id":"7cf5c894-7dd1-449b-bd0b-b710bdbfb73b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"classmark\": \"\"\n}"},"url":"{{url}}/api/v2/users/classmark","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","classmark"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1c334d49-e633-4052-9819-338f062bc487","name":"User Classmark","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"classmark\": \"\"\n}"},"url":"{{url}}/api/v2/users/classmark"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6271\n}"}],"_postman_id":"7cf5c894-7dd1-449b-bd0b-b710bdbfb73b"}],"id":"db343dcd-e32a-4450-a9dd-9329c5e3a22e","_postman_id":"db343dcd-e32a-4450-a9dd-9329c5e3a22e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Clone","item":[{"name":"Clone Group Services","id":"41748f7c-f2f1-4103-9b40-dda27181d5bc","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp2-clone\"\n    },\n    \"options\": {},\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/clone/services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","clone","services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d8160cfd-7261-4c7e-820f-4bf675c84204","name":"Clone Group Services","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp2-clone\"\n    },\n    \"options\": {},\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/clone/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 23:16:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp2-clone\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Limited\",\n            \"quantity\": 500,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Voice Messaging Group\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"LDAP Integration\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Service Scripts Group\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"alias\": \"Auto Attendant - Standard\"\n        }\n    ],\n    \"servicePackServices\": [\n        {\n            \"servicePackName\": \"Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"allowed\": -1,\n            \"usage\": 0,\n            \"description\": \"Basic\",\n            \"serviceName\": \"Basic\",\n            \"quantity\": -1,\n            \"alias\": \"Basic\"\n        },\n        {\n            \"servicePackName\": \"Clone Test\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"allowed\": -1,\n            \"usage\": 0,\n            \"description\": \"Clone Test\",\n            \"serviceName\": \"Clone Test\",\n            \"quantity\": -1,\n            \"alias\": \"Clone Test\"\n        },\n        {\n            \"servicePackName\": \"Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"allowed\": -1,\n            \"usage\": 0,\n            \"description\": \"Premium\",\n            \"serviceName\": \"Premium\",\n            \"quantity\": -1,\n            \"alias\": \"Premium\"\n        },\n        {\n            \"servicePackName\": \"Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"allowed\": -1,\n            \"usage\": 0,\n            \"description\": \"Standard\",\n            \"serviceName\": \"Standard\",\n            \"quantity\": -1,\n            \"alias\": \"Standard\"\n        },\n        {\n            \"servicePackName\": \"uc-one\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"allowed\": -1,\n            \"usage\": 0,\n            \"description\": \"uc-one\",\n            \"serviceName\": \"uc-one\",\n            \"quantity\": -1,\n            \"alias\": \"uc-one\"\n        },\n        {\n            \"servicePackName\": \"uc-one with vm\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"allowed\": -1,\n            \"usage\": 0,\n            \"description\": \"uc-one with vm\",\n            \"serviceName\": \"uc-one with vm\",\n            \"quantity\": -1,\n            \"alias\": \"uc-one with vm\"\n        }\n    ]\n}"}],"_postman_id":"41748f7c-f2f1-4103-9b40-dda27181d5bc"},{"name":"Clone Group Auto Attendant","id":"3bccee1d-4355-4384-a1cf-4a9cf1c21274","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp2-clone\",\n        \"serviceInstanceProfile\": {\n            \"aliases\": [],\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"name\": \"Odin AA 2\"\n        },\n        \"serviceUserId\": \"odin.mock.aa2@microv-works.com\"\n    },\n    \"options\": {},\n    \"serviceUserId\": \"templateAA\"\n}"},"url":"{{url}}/api/v2/groups/clone/auto-attendant","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","clone","auto-attendant"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e36a4ae6-a76e-4859-a623-9af9610fff85","name":"Clone Group Auto Attendant","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp2-clone\",\n        \"serviceInstanceProfile\": {\n            \"aliases\": [],\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"name\": \"Odin AA 2\"\n        },\n        \"serviceUserId\": \"odin.mock.aa2@microv-works.com\"\n    },\n    \"options\": {},\n    \"serviceUserId\": \"templateAA\"\n}"},"url":"{{url}}/api/v2/groups/clone/auto-attendant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 23:15:23 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1162"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"aliases\": [],\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"name\": \"Odin AA 2\"\n    },\n    \"type\": \"Basic\",\n    \"enableVideo\": false,\n    \"extensionDialingScope\": \"Group\",\n    \"nameDialingScope\": \"Group\",\n    \"nameDialingEntries\": \"LastName + FirstName\",\n    \"businessHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"afterHoursMenu\": {\n        \"announcementSelection\": \"Default\",\n        \"enableFirstMenuLevelExtensionDialing\": false,\n        \"keys\": [\n            {\n                \"key\": \"0\",\n                \"action\": \"Transfer To Operator\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"1\",\n                \"action\": \"Extension Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            },\n            {\n                \"key\": \"2\",\n                \"action\": \"Name Dialing\",\n                \"description\": null,\n                \"phoneNumber\": null,\n                \"submenuId\": null\n            }\n        ]\n    },\n    \"serviceUserId\": \"odin.mock.aa2@microv-works.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp2-clone\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"3bccee1d-4355-4384-a1cf-4a9cf1c21274"},{"name":"Clone Group","id":"7be31b14-bc95-418b-a07f-d8246c89b442","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"groupId\": \"grp.odin.clone.1.passwordRules\",\n        \"groupName\": \"grp.odin.clone.1.passwordRules\",\n        \"serviceProviderId\": \"ent.odin.passwordRules\"\n    },\n    \"options\": {\n        \"featureAccessCode\": false,\n        \"callProcessingPolicy\": false,\n        \"networkClassOfService\": false,\n        \"extensionLength\": false,\n        \"services\": false,\n        \"policy\": false,\n        \"schedule\": false,\n        \"outgoingCallingPlan\": false,\n        \"routingProfile\": false,\n        \"departments\": false,\n        \"domains\": false,\n        \"passwordRules\": false,\n        \"groupPagingTargetsCapacity\": true\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/clone/group","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","clone","group"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1ae245da-04f0-4355-9428-3393c412ba6a","name":"Clone Group","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"groupId\": \"odin.mock.grp2-clone\",\n        \"groupName\": \"New Group 2\",\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    \"options\": {\n        \"featureAccessCode\": true,\n        \"callProcessingPolicy\": true,\n        \"networkClassOfService\": true,\n        \"extensionLength\": true,\n        \"services\": true,\n        \"policy\": true,\n        \"schedule\": true,\n        \"outgoingCallingPlan\": true,\n        \"routingProfile\": true\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/clone/group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 23:14:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"496"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"defaultDomain\": \"microv-works.com\",\n    \"userLimit\": 25,\n    \"userCount\": 0,\n    \"groupName\": \"New Group 2\",\n    \"callingLineIdName\": \"Odin Mock Group\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"contact\": {\n        \"contactName\": \"Support\",\n        \"contactNumber\": \"111-333-4444\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"city\": \"Phoenix\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"85022\",\n        \"country\": \"US\"\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp2-clone\"\n}"}],"_postman_id":"7be31b14-bc95-418b-a07f-d8246c89b442"},{"name":"Clone Service Provider","id":"473990fa-7e11-43f9-87ca-8e6870da271a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"data\": {\n        \"serviceProviderId\": \"ent.odin.passwordRules\",\n        \"serviceProviderName\": \"ent odin passwordRules\"\n    },\n    \"options\": {\n        \"services\": true,\n        \"servicePacks\": true,\n        \"networkClassOfService\": false,\n        \"enterpriseVoiceVPN\": true,\n        \"callProcessingPolicy\": false,\n        \"schedule\": true,\n        \"passwordRules\": true\n\n    }\n}"},"url":"{{url}}/api/v2/service-providers/clone/service-provider","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","clone","service-provider"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e31c4a5e-3fff-4a8d-bf3f-1be3a297044e","name":"Service Provider","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"serviceProviderId\": \"odin.mock.ent3\",\n        \"serviceProviderName\": \"Odin Mock Ent 3\"\n    },\n    \"options\": {\n        \"services\": true,\n        \"servicePacks\": true,\n        \"networkClassOfService\": false,\n        \"enterpriseVoiceVPN\": true,\n        \"callProcessingPolicy\": true\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/clone/service-provider"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 23:22:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"465"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"microv-works.com\",\n    \"serviceProviderName\": \"Odin Mock Ent 3\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false,\n    \"serviceProviderId\": \"odin.mock.ent3\"\n}"}],"_postman_id":"473990fa-7e11-43f9-87ca-8e6870da271a"},{"name":"Clone Service Provider Feature Access Code","id":"ab611cdd-a690-4747-9c0d-cc963d73750c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"data\": {\n        \"serviceProviderIds\": \n        \t[\n        \t\"ent.odin.1\",\n        \t\"ent.odin.2\",\n        \t\"ent.odin.3\"\n        \t]\n    }\n}"},"url":"{{url}}/api/v2/service-providers/clone/feature-access-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","clone","feature-access-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab611cdd-a690-4747-9c0d-cc963d73750c"},{"name":"Clone Service Provider Group Policy","id":"d0d41459-0689-4107-87f5-0ae01481c12b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"data\": {\n        \"serviceProviderIds\": \n        \t[\n        \t\"ent.odin.1\",\n        \t\"ent.odin.2\",\n        \t\"ent.odin.3\"\n        \t]\n    }\n}"},"url":"{{url}}/api/v2/service-providers/clone/group-policy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","clone","group-policy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0d41459-0689-4107-87f5-0ae01481c12b"},{"name":"Clone Service Provider Schedule","id":"605295b4-84c8-463d-9c67-05e6c645f5aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"data\": {\n        \"serviceProviderIds\": \n        \t[\n        \t\"ent.odin.1\",\n        \t\"ent.odin.2\",\n        \t\"ent.odin.3\"\n        \t]\n    }\n}"},"url":"{{url}}/api/v2/service-providers/clone/schedules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","clone","schedules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"605295b4-84c8-463d-9c67-05e6c645f5aa"}],"id":"44ab0570-9fc8-4338-8a20-aecf2d56bda4","_postman_id":"44ab0570-9fc8-4338-8a20-aecf2d56bda4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Collaborate","item":[{"name":"User Collaborate Bridge","id":"b6861950-888a-4b9d-9fa3-dbcfe0f919c6","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/collaborate/bridge?userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","bridge"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"4c59d3bb-f0e2-4a51-b541-5d2365c70a92","name":"User Collaborate Bridge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/collaborate/bridge?userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","collaborate","bridge"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"175","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:24:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"bridgeId\":\"ent.odin-grp.odin-Default\",\"bridgeName\":\"grp.odin-Default\",\"supportOutDial\":false,\"maxCollaborateRoomParticipants\":15,\"userId\":\"9589581000@as3.xdp.broadsoft.com\"}"}],"_postman_id":"b6861950-888a-4b9d-9fa3-dbcfe0f919c6"},{"name":"User Collaborate Instant Room","id":"b699c7c3-aa3e-438d-9e42-f5986bd2cf68","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/collaborate/instant-room?userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","instant-room"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"12ec5dbe-5107-45e3-a3a3-b1b17762bd0a","name":"User Collaborate Instant Room","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/collaborate/instant-room?userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","collaborate","instant-room"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"145","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:25:50 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"attendeeNotification\":\"Play Tone\",\"endCollaborateRoomSessionOnOwnerExit\":true,\"ownerRequired\":true,\"userId\":\"9589581000@as3.xdp.broadsoft.com\"}"}],"_postman_id":"b699c7c3-aa3e-438d-9e42-f5986bd2cf68"},{"name":"User Collaborate Instant Room","id":"04300a3c-521a-4465-98a8-1a3bf5d19474","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true,\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/collaborate/instant-room","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","instant-room"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9e9819b4-1108-4b72-af95-78201841e414","name":"User Collaborate Instant Room","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true,\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/collaborate/instant-room"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:26:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"04300a3c-521a-4465-98a8-1a3bf5d19474"},{"name":"User Collaborate My Room","id":"858e2c6e-01f8-41dd-8000-0541bea74c35","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/collaborate/my-room?userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","my-room"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"f04188f6-53fa-4871-8d2a-ab0afeb2e5d0","name":"User Collaborate My Room","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/collaborate/my-room?userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","collaborate","my-room"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"188","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:27:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"roomId\":548199,\"roomName\":\"My Room\",\"attendeeNotification\":\"No Notification\",\"endCollaborateRoomSessionOnOwnerExit\":true,\"ownerRequired\":true,\"userId\":\"9589581000@as3.xdp.broadsoft.com\"}"}],"_postman_id":"858e2c6e-01f8-41dd-8000-0541bea74c35"},{"name":"User Collaborate My Room","id":"a7295313-524e-463d-81d8-fe5e4f7ff56c","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"roomId\":753419,\n\t\"roomName\":\"My Room\",\n\t\"attendeeNotification\":\"No Notification\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true,\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/collaborate/my-room","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","my-room"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7c923ac5-5179-4554-8968-05a4b16d3f82","name":"User Collaborate My Room","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"roomId\":753419,\n\t\"roomName\":\"My Room\",\n\t\"attendeeNotification\":\"No Notification\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true,\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/collaborate/my-room"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:28:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a7295313-524e-463d-81d8-fe5e4f7ff56c"},{"name":"User Collaborate Project Rooms","id":"c426f622-7e7c-489e-92ef-e8211a54da83","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/collaborate/project-rooms?userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","project-rooms"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"ecd74383-4f1e-40cc-970e-cb185ba2a5dc","name":"User Collaborate Project Rooms","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/collaborate/project-rooms?userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","collaborate","project-rooms"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"325","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:31:52 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"roomType\":\"My Room\",\"roomId\":548199,\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"roomName\":\"My Room\"},{\"roomType\":\"Project Room\",\"roomId\":800325,\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"roomName\":\"TEst123\"},{\"roomType\":\"Project Room\",\"roomId\":971267,\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"roomName\":\"Test Room\"}]"}],"_postman_id":"c426f622-7e7c-489e-92ef-e8211a54da83"},{"name":"User Collaborate Project Room","id":"2f100c9b-1e23-4523-8188-a2f3c2e259bf","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"roomName\":\"Test Room\",\n\t\"attendeeNotification\":\"No Notification\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true\n}"},"url":"{{url}}/api/v2/users/collaborate/project-rooms","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","project-rooms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"43a46b11-4dff-436c-867e-ded5bd72d599","name":"User Collaborate Project Room","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"roomName\":\"Test Room\",\n\t\"attendeeNotification\":\"No Notification\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true\n}"},"url":"{{url}}/api/v2/users/collaborate/project-rooms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"17","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:29:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"roomId\":971267}"}],"_postman_id":"2f100c9b-1e23-4523-8188-a2f3c2e259bf"},{"name":"User Collaborate Project Room","id":"6d271271-7a98-42e2-9a8e-1bf2249c575c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/collaborate/project-rooms?roomId=971267&userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","project-rooms"],"host":["{{url}}"],"query":[{"key":"roomId","value":"971267"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"8d4e856f-03b0-4e38-8e64-fd679c3a8f7b","name":"User Collaborate Project Room","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/collaborate/project-rooms?roomId=971267&userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","collaborate","project-rooms"],"query":[{"key":"roomId","value":"971267"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"294","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:30:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"roomName\":\"Test Room\",\"attendeeNotification\":\"No Notification\",\"endCollaborateRoomSessionOnOwnerExit\":true,\"ownerRequired\":true,\"roomSchedule\":{\"scheduleReservationless\":{\"startTime\":\"2018-10-04T20:29:56.000-06:00\",\"endTime\":{}}},\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"roomId\":\"971267\"}"}],"_postman_id":"6d271271-7a98-42e2-9a8e-1bf2249c575c"},{"name":"User Collaborate Project Room","id":"76501222-f00a-49bc-a2f4-7aa3c75709eb","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"roomName\":\"Test Room\",\n\t\"attendeeNotification\":\"No Notification\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true,\n\t\"roomId\":\"971267\",\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/collaborate/project-rooms","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","project-rooms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d2f2b8d1-ba78-4a59-a9b4-e8914e100381","name":"User Collaborate Project Room","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"roomName\":\"Test Room\",\n\t\"attendeeNotification\":\"No Notification\",\n\t\"endCollaborateRoomSessionOnOwnerExit\":true,\n\t\"ownerRequired\":true,\n\t\"roomId\":\"971267\",\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/collaborate/project-rooms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:33:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"76501222-f00a-49bc-a2f4-7aa3c75709eb"},{"name":"User Collaborate Project Room","id":"5f6bcef3-7613-4392-9b77-f4a916be7b64","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/collaborate/project-rooms?roomId=971267&userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","project-rooms"],"host":["{{url}}"],"query":[{"key":"roomId","value":"971267"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"abf969cc-160c-425e-8329-bb23b37b8a92","name":"User Collaborate Project Room","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/collaborate/project-rooms?roomId=971267&userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","collaborate","project-rooms"],"query":[{"key":"roomId","value":"971267"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:33:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5f6bcef3-7613-4392-9b77-f4a916be7b64"},{"name":"User Collaborate Regenerate Room ID","id":"4283bd17-6793-4a71-a3ee-abe5230392e4","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"roomId\":800325\n}"},"url":"{{url}}/api/v2/users/collaborate/regenerate","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","collaborate","regenerate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a3e05d55-b602-4634-a53c-1ce698f8724b","name":"User Collaborate Regenerate Room ID","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"roomId\":800325\n}"},"url":"{{url}}/api/v2/users/collaborate/regenerate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"17","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 22:34:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"roomId\":816585}"}],"_postman_id":"4283bd17-6793-4a71-a3ee-abe5230392e4"},{"name":"Group Collaborate Bridges","id":"1de60fa3-cec9-47e5-80db-e20d206c89a0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/collaborate/bridges?groupId=TribbeGroup&serviceProviderId=TribbeEnt","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","collaborate","bridges"],"host":["{{url}}"],"query":[{"key":"groupId","value":"TribbeGroup"},{"key":"serviceProviderId","value":"TribbeEnt"}],"variable":[]}},"response":[{"id":"7cd96eb4-ae80-47e4-9cc5-cf93fb2ef151","name":"Group Collaborate Bridges","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/collaborate/bridges?groupId=TribbeGroup&serviceProviderId=TribbeEnt","host":["{{url}}"],"path":["api","v2","groups","collaborate","bridges"],"query":[{"key":"groupId","value":"TribbeGroup"},{"key":"serviceProviderId","value":"TribbeEnt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"196","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 22:03:24 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"serviceUserId\":\"TribbeEnt-TribbeGroup-Default@xdp.broadsoft.com\",\"name\":\"TribbeGroup-Default\",\"phoneNumber\":null,\"extension\":null,\"department\":null,\"participants\":\"Unlimited\",\"isDefault\":true}]"}],"_postman_id":"1de60fa3-cec9-47e5-80db-e20d206c89a0"},{"name":"Group Collaborate Bridges Details","id":"6f4585a5-5275-4d38-a629-4da82066c071","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/collaborate/bridges/details?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","collaborate","bridges","details"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"21094c9c-4697-4db0-a782-5ded311461b7","name":"Group Collaborate Bridges Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/collaborate/bridges/users?groupId=grp.odin&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","groups","collaborate","bridges","users"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceUserId\": \"grp.odin-Default\",\n        \"name\": \"grp.odin-Default\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"participants\": \"Unlimited\",\n        \"isDefault\": true,\n        \"serviceInstanceProfile\": {\n            \"name\": \"grp.odin-Default\",\n            \"callingLineIdLastName\": \"grp.odin\",\n            \"callingLineIdFirstName\": \"CollaborateBridge\",\n            \"hiraganaLastName\": \"grp.odin-Default\",\n            \"hiraganaFirstName\": \"Collaborate - Audio\",\n            \"language\": \"English\",\n            \"timeZone\": \"America/New_York\",\n            \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\"\n        },\n        \"maximumBridgeParticipants\": -1,\n        \"maxCollaborateRoomParticipants\": 15,\n        \"supportOutdial\": true,\n        \"users\": null,\n        \"userId\": \"odin-user1\",\n        \"lastName\": \"odin\",\n        \"firstName\": \"user1\",\n        \"hiraganaLastName\": \"odin\",\n        \"hiraganaFirstName\": \"user1\",\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"serviceUserId\": \"grp.odin-Test\",\n        \"name\": \"grp.odin-Test\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"participants\": 4,\n        \"isDefault\": false,\n        \"serviceInstanceProfile\": {\n            \"name\": \"grp.odin-Test\",\n            \"callingLineIdLastName\": \"3Test\",\n            \"callingLineIdFirstName\": \"3Test\",\n            \"hiraganaLastName\": \"grp.odin-Test\",\n            \"hiraganaFirstName\": \"Collaborate - Audio\",\n            \"language\": \"English\",\n            \"timeZone\": \"America/New_York\",\n            \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\"\n        },\n        \"maximumBridgeParticipants\": 4,\n        \"maxCollaborateRoomParticipants\": 14,\n        \"supportOutdial\": true,\n        \"users\": null,\n        \"userId\": \"odin-user2\",\n        \"lastName\": \"odin\",\n        \"firstName\": \"user2\",\n        \"hiraganaLastName\": null,\n        \"hiraganaFirstName\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    }\n]"}],"_postman_id":"6f4585a5-5275-4d38-a629-4da82066c071"},{"name":"Group Collaborate Bridge","id":"c97bf1aa-40b4-42db-ab7d-77f57eb97126","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"TribbeEnt\",\n\t\"groupId\":\"TribbeGroup\",\n\t\"supportOutdial\":false,\n\t\"serviceUserId\":\"odin-collab-1@xdp.broadsoft.com\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin-collab-1\",\n\t\t\"callingLineIdLastName\":\"odin-collab-1\",\n\t\t\"callingLineIdFirstName\":\"odin-collab-1\",\n\t\t\"phoneNumber\":\"2401014503\",\n\t\t\"extension\":\"4503\",\n\t\t\"password\":\"a#0I33\"\n\t},\n\t\"maxCollaborateRoomParticipants\":5,\n\t\"maximumBridgeParticipants\":5\n}"},"url":"{{url}}/api/v2/groups/collaborate/bridges","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","collaborate","bridges"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ab29040b-3718-4477-8e49-b85f25ca268f","name":"Group Collaborate Bridge","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"TribbeEnt\",\n\t\"groupId\":\"TribbeGroup\",\n\t\"supportOutdial\":false,\n\t\"serviceUserId\":\"odin-collab-1@xdp.broadsoft.com\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin-collab-1\",\n\t\t\"callingLineIdLastName\":\"odin-collab-1\",\n\t\t\"callingLineIdFirstName\":\"odin-collab-1\",\n\t\t\"phoneNumber\":\"2401014503\",\n\t\t\"extension\":\"4503\",\n\t\t\"password\":\"a#0I33\"\n\t},\n\t\"maxCollaborateRoomParticipants\":5,\n\t\"maximumBridgeParticipants\":5\n}"},"url":"{{url}}/api/v2/groups/collaborate/bridges"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 22:04:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c97bf1aa-40b4-42db-ab7d-77f57eb97126"},{"name":"Group Collaborate Bridge","id":"7346d316-d50a-4ce5-a64c-0c64d3a65a5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/collaborate/bridges?serviceUserId=211430195-282491478-Default@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","collaborate","bridges"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"211430195-282491478-Default@voicecci.net"}],"variable":[]}},"response":[{"id":"5a16bfeb-42b5-4b76-98e8-da1a9f3e1969","name":"Group Collaborate Bridge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/collaborate/bridges?serviceUserId=odin-collab-1@xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","groups","collaborate","bridges"],"query":[{"key":"serviceUserId","value":"odin-collab-1@xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"534","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 22:05:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceInstanceProfile\":{\"name\":\"odin-collab-1\",\"callingLineIdLastName\":\"odin-collab-1\",\"callingLineIdFirstName\":\"odin-collab-1\",\"hiraganaLastName\":\"odin-collab-1\",\"hiraganaFirstName\":\"Collaborate - Audio\",\"phoneNumber\":\"2401014503\",\"extension\":\"4503\",\"countryCode\":\"1\",\"language\":\"English\",\"timeZone\":\"US\\/Eastern\",\"timeZoneDisplayName\":\"(GMT-04:00) US\\/Eastern\"},\"maximumBridgeParticipants\":5,\"isDefault\":false,\"maxCollaborateRoomParticipants\":5,\"supportOutdial\":false,\"serviceUserId\":\"odin-collab-1@xdp.broadsoft.com\",\"users\":[]}"}],"_postman_id":"7346d316-d50a-4ce5-a64c-0c64d3a65a5a"},{"name":"Group Collaborate Bridge","id":"b99a002e-69e6-422e-9ca9-db1ad88def71","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin-collab-1\",\n\t\t\"callingLineIdLastName\":\"odin-collab-1\",\n\t\t\"callingLineIdFirstName\":\"odin-collab-1\",\n\t\t\"phoneNumber\":\"2401014503\",\n\t\t\"extension\":\"4503\",\n\t\t\"countryCode\":\"1\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"US/Eastern\"\n\t},\n\t\"maximumBridgeParticipants\":5,\n\t\"maxCollaborateRoomParticipants\":5,\n\t\"supportOutdial\":false,\n\t\"serviceUserId\":\"odin-collab-1@xdp.broadsoft.com\",\n\t\"users\":[{\"userId\":\"TribbeUser1@xdp.broadsoft.com\"}]\n}"},"url":"{{url}}/api/v2/groups/collaborate/bridges","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","collaborate","bridges"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f56288f6-42af-4371-8e98-517f2de3a1bd","name":"Group Collaborate Bridge","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin-collab-1\",\n\t\t\"callingLineIdLastName\":\"odin-collab-1\",\n\t\t\"callingLineIdFirstName\":\"odin-collab-1\",\n\t\t\"phoneNumber\":\"2401014503\",\n\t\t\"extension\":\"4503\",\n\t\t\"countryCode\":\"1\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"US/Eastern\"\n\t},\n\t\"maximumBridgeParticipants\":5,\n\t\"maxCollaborateRoomParticipants\":5,\n\t\"supportOutdial\":false,\n\t\"serviceUserId\":\"odin-collab-1@xdp.broadsoft.com\",\n\t\"users\":[{\"userId\":\"TribbeUser1@xdp.broadsoft.com\"}]\n}"},"url":"{{url}}/api/v2/groups/collaborate/bridges"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 22:06:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b99a002e-69e6-422e-9ca9-db1ad88def71"},{"name":"Group Collaborate Bridge Available Users","id":"36591420-8d56-406e-b1ac-9d89e7f31e4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/collaborate/users?groupId=MayurGroup&serviceProviderId=ent.odin.testxp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","collaborate","users"],"host":["{{url}}"],"query":[{"key":"groupId","value":"MayurGroup"},{"key":"serviceProviderId","value":"ent.odin.testxp"}],"variable":[]}},"response":[{"id":"029875a1-bed9-40d9-b33e-be83c59f0e69","name":"Group Collaborate Bridge Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/collaborate/users?groupId=TribbeGroup&serviceProviderId=TribbeEnt","host":["{{url}}"],"path":["api","v2","groups","collaborate","users"],"query":[{"key":"groupId","value":"TribbeGroup"},{"key":"serviceProviderId","value":"TribbeEnt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"225","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 22:07:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":\"TribbeUser1@xdp.broadsoft.com\",\"lastName\":\"User1\",\"firstName\":\"Tribbe\",\"hiraganaLastName\":\"User1\",\"hiraganaFirstName\":\"Tribbe\",\"phoneNumber\":\"+1-2401014500\",\"extension\":4500,\"department\":null,\"emailAddress\":null}]"}],"_postman_id":"36591420-8d56-406e-b1ac-9d89e7f31e4a"},{"name":"Group Collaborate Bridge","id":"c3240160-6501-452e-8dac-0e1a995abdd0","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/collaborate/bridges?serviceUserId=odin-collab-1@xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","collaborate","bridges"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin-collab-1@xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"b27fa6dd-137e-498e-829a-6a13ed744643","name":"Group Collaborate Bridge","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/collaborate/bridges?serviceUserId=odin-collab-1@xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","groups","collaborate","bridges"],"query":[{"key":"serviceUserId","value":"odin-collab-1@xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 22:07:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c3240160-6501-452e-8dac-0e1a995abdd0"},{"name":"System Collaborate","id":"3f9f8c19-a384-492d-b083-cadd94833d0c","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/collaborate","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","collaborate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f7198919-cf7d-4ce1-90ac-e10c0cfa1fba","name":"System Collaborate","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/collaborate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:46:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"428"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"collaborateRoomIdLength\": 6,\n    \"instantRoomIdleTimeoutSeconds\": 300,\n    \"collaborateRoomMaximumDurationMinutes\": 1440,\n    \"supportOutdial\": false,\n    \"maxCollaborateRoomParticipants\": 15,\n    \"collaborateActiveTalkerRefreshIntervalSeconds\": 2,\n    \"terminateCollaborateAfterGracePeriod\": false,\n    \"collaborateGracePeriod\": {\n        \"hours\": 0,\n        \"minutes\": 30\n    },\n    \"enableActiveCollaborateNotification\": false,\n    \"collaborateFromAddress\": \"CollaborateNotification@systemprovider.com\"\n}"}],"_postman_id":"3f9f8c19-a384-492d-b083-cadd94833d0c"},{"name":"System Collaborate","id":"468c271e-507a-4d59-a528-420a5ad1fba1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"collaborateRoomIdLength\": 6,\n    \"instantRoomIdleTimeoutSeconds\": 60,\n    \"collaborateRoomMaximumDurationMinutes\": 1440,\n    \"supportOutdial\": false,\n    \"maxCollaborateRoomParticipants\": 15,\n    \"collaborateActiveTalkerRefreshIntervalSeconds\": 2,\n    \"terminateCollaborateAfterGracePeriod\": false,\n    \"collaborateGracePeriod\": {\n        \"hours\": 0,\n        \"minutes\": 30\n    },\n    \"enableActiveCollaborateNotification\": false,\n    \"collaborateFromAddress\": \"CollaborateNotification@systemprovider.com\"\n}"},"url":"{{url}}/api/v2/system/collaborate","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","collaborate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"11e6ee57-392a-42d4-bab6-9d6ab0624fb3","name":"System Collaborate","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"collaborateRoomIdLength\": 6,\n    \"instantRoomIdleTimeoutSeconds\": 60,\n    \"collaborateRoomMaximumDurationMinutes\": 1440,\n    \"supportOutdial\": false,\n    \"maxCollaborateRoomParticipants\": 15,\n    \"collaborateActiveTalkerRefreshIntervalSeconds\": 2,\n    \"terminateCollaborateAfterGracePeriod\": false,\n    \"collaborateGracePeriod\": {\n        \"hours\": 0,\n        \"minutes\": 30\n    },\n    \"enableActiveCollaborateNotification\": false,\n    \"collaborateFromAddress\": \"CollaborateNotification@systemprovider.com\"\n}"},"url":"{{url}}/api/v2/system/collaborate"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"468c271e-507a-4d59-a528-420a5ad1fba1"}],"id":"c06e1367-8f63-48ad-ad41-eb9dfbb29240","_postman_id":"c06e1367-8f63-48ad-ad41-eb9dfbb29240","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Comm Pilot Call Manager","item":[{"name":"User Comm Pilot Call Manager","id":"466f369c-3f9a-48f8-af11-dfe92aa1367a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/comm-pilot-call-manager?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","comm-pilot-call-manager"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"eb208c70-5110-42c7-ad3c-7be10b78301e","name":"User Comm Pilot Call Manager","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/comm-pilot-call-manager?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","comm-pilot-call-manager"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"launchOnLogin\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"466f369c-3f9a-48f8-af11-dfe92aa1367a"},{"name":"User Comm Pilot Call Manager","id":"ae6d7acd-1bc6-45ff-b179-aa0c22e305de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"launchOnLogin\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/comm-pilot-call-manager","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","comm-pilot-call-manager"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d8c8f820-a38e-424d-9aad-eb4a982c63e0","name":"User Comm Pilot Call Manager","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"launchOnLogin\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/comm-pilot-call-manager"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"launchOnLogin\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6302\n}"}],"_postman_id":"ae6d7acd-1bc6-45ff-b179-aa0c22e305de"}],"id":"0ffa39af-82e9-44dc-be0d-77775c69f512","description":"<p>CommPilot Call Manager provides a web-based tool you use to customize your services. To activate the tool, click on the Call Manager link at the top of the page. This opens the CommPilot Call Manager which allows you to initiate, manipulate and receive calls, as well as access your user directories including Microsoft Outlook.\nThe Call Manager uses Microsoft Active/X components to access your directories so be sure you accept the downloads when prompted so that the CommPilot Call Manager functions correctly. Also, the CommPilot Call Manager may be logged out if you lose network connectivity or your PC hibernates.</p>\n","_postman_id":"0ffa39af-82e9-44dc-be0d-77775c69f512","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Comm Pilot Express","item":[{"name":"User Comm Pilot Express","id":"dda68848-f73c-4379-9ba9-0b5c381a6ab4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/comm-pilot-express?userId=user-2@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","comm-pilot-express"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"userId","value":"user-2@voicecci.net"}],"variable":[]}},"response":[{"id":"13492835-066a-41c7-a761-517c3db31ee5","name":"User Comm Pilot Express","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/comm-pilot-express?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","comm-pilot-express"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"profile\": \"Available In Office\",\n    \"availableInOffice\": {\n        \"additionalPhoneNumberToRing\": \"123123123123123\",\n        \"busySetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"33333\"\n        },\n        \"noAnswerSetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        }\n    },\n    \"availableOutOfOffice\": {\n        \"incomingCalls\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        },\n        \"incomingCallNotify\": {\n            \"sendEmail\": \"true\",\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    },\n    \"busy\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\",\n            \"excludedPhoneNumber01\": \"+3333\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"123123123\"\n        },\n        \"voiceMailNotify\": {\n            \"sendEmail\": \"false\"\n        }\n    },\n    \"unavailable\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": \"true\",\n            \"excludedPhoneNumber01\": \"+1123123\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"123123\"\n        },\n        \"voiceMailGreeting\": \"No Answer\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"dda68848-f73c-4379-9ba9-0b5c381a6ab4"},{"name":"User Comm Pilot Express","id":"94eb196b-959e-4afe-a3ae-d8237c3e6eab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": \"Available In Office\",\n    \"availableInOffice\": {\n        \"additionalPhoneNumberToRing\": \"123123123123123\",\n        \"busySetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"33333\"\n        },\n        \"noAnswerSetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        }\n    },\n    \"availableOutOfOffice\": {\n        \"incomingCalls\": {\n             \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        },\n        \"incomingCallNotify\": {\n            \"sendEmail\": false,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    },\n    \"busy\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": false,\n            \"excludedPhoneNumber01\": \"+3333\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"+4141\"\n        },\n        \"voiceMailNotify\": {\n            \"sendEmail\": false,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    },\n    \"unavailable\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": false,\n            \"excludedPhoneNumber01\": \"+2442\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"321321\"\n        },\n        \"voiceMailGreeting\": \"Unavailable\"\n    },\n    \"userId\": \"user-2@voicecci.net\"\n}"},"url":"{{url}}/api/v2/users/comm-pilot-express","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","comm-pilot-express"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fd16d62a-88f2-4a1c-b55d-220923065395","name":"User Comm Pilot Express","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": \"Available In Office\",\n    \"availableInOffice\": {\n        \"additionalPhoneNumberToRing\": \"123123123123123\",\n        \"busySetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"33333\"\n        },\n        \"noAnswerSetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        }\n    },\n    \"availableOutOfOffice\": {\n        \"incomingCalls\": {\n             \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        },\n        \"incomingCallNotify\": {\n            \"sendEmail\": \"false\",\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    },\n    \"busy\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": \"true\",\n            \"excludedPhoneNumber01\": \"+3333\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"+1414\"\n        },\n        \"voiceMailNotify\": {\n            \"sendEmail\": \"true\",\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    },\n    \"unavailable\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": \"true\",\n            \"excludedPhoneNumber01\": \"+2442\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"123123\"\n        },\n        \"voiceMailGreeting\": \"Unavailable\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/comm-pilot-express"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"profile\": \"Available In Office\",\n    \"availableInOffice\": {\n        \"additionalPhoneNumberToRing\": \"123123123123123\",\n        \"busySetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"33333\"\n        },\n        \"noAnswerSetting\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        }\n    },\n    \"availableOutOfOffice\": {\n        \"incomingCalls\": {\n            \"action\": \"Forward\",\n            \"forwardingPhoneNumber\": \"123123\"\n        },\n        \"incomingCallNotify\": {\n            \"sendEmail\": \"false\",\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    },\n    \"busy\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": \"true\",\n            \"excludedPhoneNumber01\": \"+3333\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"+1414\"\n        },\n        \"voiceMailNotify\": {\n            \"sendEmail\": \"true\",\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    },\n    \"unavailable\": {\n        \"incomingCalls\": {\n            \"sendCallsToVoiceMailExceptExcludedNumbers\": \"true\",\n            \"excludedPhoneNumber01\": \"+2442\",\n            \"excludedPhoneNumber02\": \"+1123123\",\n            \"excludedPhoneNumber03\": \"+1123123\",\n            \"forwardExcludedNumbersTo\": \"123123\"\n        },\n        \"voiceMailGreeting\": \"Unavailable\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"94eb196b-959e-4afe-a3ae-d8237c3e6eab"}],"id":"0e55242c-d11f-43c0-b005-e6f3e37b689c","_postman_id":"0e55242c-d11f-43c0-b005-e6f3e37b689c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Common Phone List","item":[{"name":"Group Common Phone List Entries","id":"df464422-cf92-4f65-9959-3a65bb615a67","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/common-phone-list?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","common-phone-list"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"f484ed47-9110-441f-8e9d-6428d36eb505","name":"Group Common Phone List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/common-phone-list?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","common-phone-list"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:41:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"123"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"entries\": [\n        {\n            \"phoneNumber\": \"5133334444\",\n            \"name\": \"Dusty\"\n        }\n    ]\n}"}],"_postman_id":"df464422-cf92-4f65-9959-3a65bb615a67"},{"name":"Group Common Phone List Entries","id":"82bad188-19d1-4e46-88d8-ba85276f8274","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"entries\": [\n        {\n            \"newName\": \"Marc T\",\n            \"phoneNumber\": \"5133334455\",\n            \"name\": \"Marc T\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/common-phone-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","common-phone-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"264afcf3-cd26-4120-8384-d36be5b3dbd3","name":"Group Common Phone List Entries","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"entries\": [\n        {\n            \"newName\": \"Marc T\",\n            \"phoneNumber\": \"5133334455\",\n            \"name\": \"Marc T\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/common-phone-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:52:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"82bad188-19d1-4e46-88d8-ba85276f8274"},{"name":"Group Common Phone List Entries","id":"89e3104d-e549-467a-85da-07baae16a072","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"entries\": [\n        {\n            \"newName\": \"Marc T\",\n            \"phoneNumber\": \"5133334455\",\n            \"name\": \"Marc T\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/common-phone-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","common-phone-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"20ed2a0a-7b7e-44c9-9f8c-5ae18b750c37","name":"Group Common Phone List Entries","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"entries\": [\n        {\n            \"newName\": \"Marc T\",\n            \"phoneNumber\": \"5133334455\",\n            \"name\": \"Marc T\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/common-phone-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:53:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"89e3104d-e549-467a-85da-07baae16a072"},{"name":"Group Common Phone List Entry","id":"40c788e0-78ce-45a0-af4e-8e0d83d237b9","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"phoneNumber\": \"5133334444\",\n    \"name\": \"Dusty\",\n    \"newName\": \"Dusty D\"\n}"},"url":"{{url}}/api/v2/groups/common-phone-list","description":"<p>Edit a Single Phone List Entry</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","common-phone-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"860b8bfc-525b-4051-a2ef-950e54e87ff8","name":"Group Custom Contact Directory Entry","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"phoneNumber\": \"5133334444\",\n    \"name\": \"Dusty\",\n    \"newName\": \"Dusty D\"\n}"},"url":"{{url}}/api/v2/groups/common-phone-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:45:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"40c788e0-78ce-45a0-af4e-8e0d83d237b9"}],"id":"6431cd9c-8b88-437f-ab8d-e54fc3717672","_postman_id":"6431cd9c-8b88-437f-ab8d-e54fc3717672","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Communication Barring","item":[{"name":"System Communication Barring Profiles","id":"527002ec-1a8c-40d0-98f3-dc35bae14d17","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/communication-barring/profiles","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","communication-barring","profiles"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f3d73921-0df2-4b3f-923e-6ba608200250","name":"System Communication Barring Profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/communication-barring/profiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 00:25:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"107"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"system.profile1\",\n        \"description\": \"system.profile1\"\n    },\n    {\n        \"name\": \"pbs-test-profile\",\n        \"description\": null\n    }\n]"}],"_postman_id":"527002ec-1a8c-40d0-98f3-dc35bae14d17"},{"name":"Group Communication Barring","id":"66300313-41bd-4738-af4d-859964bcd4c7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/communication-barring?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"478e2c48-a549-48c0-baf6-b908407358f9","name":"Group Communication Barring","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/communication-barring?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","communication-barring"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useDefaultServiceProviderProfile\": true,\n    \"profile\": \"test\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"66300313-41bd-4738-af4d-859964bcd4c7"},{"name":"Group Communication Barring","id":"099aba9a-32f1-455c-b11e-82bbcc2d21b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useDefaultServiceProviderProfile\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/communication-barring?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"bbb6a089-795f-4bec-b2c9-b6dd4c8695bb","name":"Group Communication Barring","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useDefaultServiceProviderProfile\": false,\n\t\"profile\": \"test\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/communication-barring?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","communication-barring"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useDefaultServiceProviderProfile\": true,\n    \"profile\": \"test\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"099aba9a-32f1-455c-b11e-82bbcc2d21b1"},{"name":"Group Communication Barring Profiles","id":"f14ece10-e23c-4dc6-8351-bbd99f1b3011","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/communication-barring/profiles?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring","profiles"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"66496360-d343-48d2-b46e-eb8b35454260","name":"Group Communication Barring Profiles","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/communication-barring/profiles?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","communication-barring","profiles"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"profiles\": [\n        \"test\",\n        \"profile1\",\n        \"profile2\"\n    ]\n}"}],"_postman_id":"f14ece10-e23c-4dc6-8351-bbd99f1b3011"},{"name":"Group Communication Barring Profiles","id":"b8091ca9-22c2-4b37-a196-0da670dba71f","request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"profiles\": [\n        \"profile1\",\n        \"profile2\",\n        \"test\"\n    ]\n}"},"url":"{{url}}/api/v2/groups/communication-barring/profiles","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring","profiles"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c4f62f40-7c64-47a3-a2ca-a7fe9069b80e","name":"Group Communication Barring Profiles","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"profiles\": [\n        \"profile1\",\n        \"profile2\",\n        \"test\"\n    ]\n}"},"url":"{{url}}/api/v2/groups/communication-barring/profiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"profiles\": [\n        \"test\",\n        \"profile1\",\n        \"profile2\"\n    ]\n}"}],"_postman_id":"b8091ca9-22c2-4b37-a196-0da670dba71f"},{"name":"Group Communication Barring Authorization Codes","id":"afb16ee5-9577-4fe7-a717-4853f39a61ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"46ac1c63-8758-4b8d-a6f9-83791ad3208d","name":"Group Communication Barring Authorization Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/communication-barring/authorization-codes?groupId=grp.odin&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","groups","communication-barring","authorization-codes"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Dec 2021 23:49:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"519"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"1081\",\n            \"description\": \"aTest1081\",\n            \"networkClassOfService\": \"testncosuu\"\n        },\n        {\n            \"code\": \"123123\",\n            \"description\": \"12312313\"\n        },\n        {\n            \"code\": \"123123123\",\n            \"description\": \"123123123\"\n        },\n        {\n            \"code\": \"457\",\n            \"description\": \"Test457\"\n        },\n        {\n            \"code\": \"458\",\n            \"description\": \"Test458\"\n        },\n        {\n            \"code\": \"555\",\n            \"description\": \"Desc 555\"\n        },\n        {\n            \"code\": \"666\",\n            \"description\": \"kumar\"\n        },\n        {\n            \"code\": \"6665\",\n            \"description\": \"kumar\"\n        },\n        {\n            \"code\": \"777\",\n            \"description\": \"Description 777\"\n        },\n        {\n            \"code\": \"888\",\n            \"description\": \"Description 888\"\n        }\n    ]\n}"}],"_postman_id":"afb16ee5-9577-4fe7-a717-4853f39a61ed"},{"name":"Group Communication Barring Authorization Code","id":"43343a71-5889-41da-b8c2-0f52118e69e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes?groupId=grp.odin&serviceProviderId=ent.odin&code=123123","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"code","value":"123123"}],"variable":[]}},"response":[{"id":"a735d0b1-8c0d-465c-9a45-60cb65ee53a9","name":"Group Communication Barring Authorization Code","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/communication-barring/authorization-codes?groupId=grp.odin&serviceProviderId=ent.odin&code=123123","host":["{{url}}"],"path":["api","v2","groups","communication-barring","authorization-codes"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"code","value":"123123"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Dec 2021 00:03:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"92"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"code\": \"123123\",\n    \"description\": 12312313\n}"}],"_postman_id":"43343a71-5889-41da-b8c2-0f52118e69e0"},{"name":"Group Communication Barring Authorization Codes","id":"0204a1d9-fe6b-4d82-9e35-f4caa4549294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"1080\",\n            \"description\": \"aTest1081\",\n            \"networkClassOfService\": \"testncosuu\"\n        },\n        {\n            \"code\": \"1082\",\n            \"description\": \"aTest1082\",\n            \"networkClassOfService\": \"testnco\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b4228ef5-7312-4f2b-be06-72d0b409c712","name":"Group Communication Barring Authorization Codes","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"1080\",\n            \"description\": \"aTest1081\",\n            \"networkClassOfService\": \"testncosuu\"\n        },\n        {\n            \"code\": \"1082\",\n            \"description\": \"aTest1082\",\n            \"networkClassOfService\": \"testnco\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Dec 2021 00:07:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"674"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"1080\",\n            \"description\": \"aTest1081\",\n            \"networkClassOfService\": \"testncosuu\"\n        },\n        {\n            \"code\": \"1081\",\n            \"description\": \"aTest1081\",\n            \"networkClassOfService\": \"testncosuu\"\n        },\n        {\n            \"code\": \"1082\",\n            \"description\": \"aTest1082\",\n            \"networkClassOfService\": \"testnco\"\n        },\n        {\n            \"code\": \"123123\",\n            \"description\": \"12312313\"\n        },\n        {\n            \"code\": \"123123123\",\n            \"description\": \"123123123\"\n        },\n        {\n            \"code\": \"457\",\n            \"description\": \"Test457\"\n        },\n        {\n            \"code\": \"458\",\n            \"description\": \"Test458\"\n        },\n        {\n            \"code\": \"555\",\n            \"description\": \"Desc 555\"\n        },\n        {\n            \"code\": \"666\",\n            \"description\": \"kumar\"\n        },\n        {\n            \"code\": \"6665\",\n            \"description\": \"kumar\"\n        },\n        {\n            \"code\": \"777\",\n            \"description\": \"Description 777\"\n        },\n        {\n            \"code\": \"888\",\n            \"description\": \"Description 888\"\n        }\n    ]\n}"}],"_postman_id":"0204a1d9-fe6b-4d82-9e35-f4caa4549294"},{"name":"Group Communication Barring Authorization Code","id":"f969628b-4038-4485-826d-492d8b94aab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"code\": \"1080\",\n    \"description\": \"aBigTest1080\",\n    \"networkClassOfService\": \"testncosuu\"\n}"},"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"873f024b-7b15-4765-9001-c61a82030fb9","name":"Group Communication Barring Authorization Code","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"code\": \"1080\",\n    \"description\": \"aBigTest1080\",\n    \"networkClassOfService\": \"testncosuu\"\n}"},"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Dec 2021 00:18:10 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"133"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"code\": \"1080\",\n    \"description\": \"aBigTest1080\",\n    \"networkClassOfService\": \"testncosuu\"\n}"}],"_postman_id":"f969628b-4038-4485-826d-492d8b94aab2"},{"name":"Group Communication Barring Authorization Codes","id":"0564bf5f-7028-47a7-9aa8-41bcbe297883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"1082\"\n        },\n        {\n            \"code\": \"1083\"\n        },\n        {\n            \"code\": \"1084\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c9d245e7-9b7f-41fb-a6ad-7b20c51c39f6","name":"Group Communication Barring Authorization Codes","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"1082\"\n        },\n        {\n            \"code\": \"1083\"\n        },\n        {\n            \"code\": \"1084\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/communication-barring/authorization-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Dec 2021 00:13:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"598"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"code\": \"1080\",\n            \"description\": \"aTest1081\",\n            \"networkClassOfService\": \"testncosuu\"\n        },\n        {\n            \"code\": \"1081\",\n            \"description\": \"aTest1081\",\n            \"networkClassOfService\": \"testncosuu\"\n        },\n        {\n            \"code\": \"123123\",\n            \"description\": \"12312313\"\n        },\n        {\n            \"code\": \"123123123\",\n            \"description\": \"123123123\"\n        },\n        {\n            \"code\": \"457\",\n            \"description\": \"Test457\"\n        },\n        {\n            \"code\": \"458\",\n            \"description\": \"Test458\"\n        },\n        {\n            \"code\": \"555\",\n            \"description\": \"Desc 555\"\n        },\n        {\n            \"code\": \"666\",\n            \"description\": \"kumar\"\n        },\n        {\n            \"code\": \"6665\",\n            \"description\": \"kumar\"\n        },\n        {\n            \"code\": \"777\",\n            \"description\": \"Description 777\"\n        },\n        {\n            \"code\": \"888\",\n            \"description\": \"Description 888\"\n        }\n    ]\n}"}],"_postman_id":"0564bf5f-7028-47a7-9aa8-41bcbe297883"},{"name":"User Communication Barring Authorization Codes","id":"06f2080f-1a3d-4f7e-aaa2-17bacac44f4f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/communication-barring/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"f29eda9c-3848-4f4f-b526-a26cb5fffb95","name":"User Communication Barring Authorization Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/communication-barring/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","communication-barring","authorization-codes"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:52:03 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"86"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"code\": \"333\",\n        \"description\": \"AuthCode1\",\n        \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n    }\n]"}],"_postman_id":"06f2080f-1a3d-4f7e-aaa2-17bacac44f4f"},{"name":"User Communication Barring Authorization Codes","id":"eb63e2d8-4751-44d3-814e-673745c054d0","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"333\",\n    \"description\": \"AuthCode1\",\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/communication-barring/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"21b8d0c8-2e79-4cf5-91ab-ae8c650e8304","name":"User Communication Barring Authorization Codes Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\": \"333\",\n    \"description\": \"AuthCode1\",\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":{"raw":"{{url}}/api/v2/users/communication-barring/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","communication-barring","authorization-codes"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:54:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"eb63e2d8-4751-44d3-814e-673745c054d0"},{"name":"User Communication Barring Authorization Codes","id":"ff99b4bb-bfdb-447d-a0b4-8aa6439f0e06","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/communication-barring/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com&code=333","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","communication-barring","authorization-codes"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"},{"key":"code","value":"333"}],"variable":[]}},"response":[{"id":"5e394319-bd65-4218-98c5-4b8c2e743d92","name":"User Communication Barring Authorization Codes Copy","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/communication-barring/authorization-codes?userId=9589582000@as3.xdp.broadsoft.com&code=333","host":["{{url}}"],"path":["api","v2","users","communication-barring","authorization-codes"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"},{"key":"code","value":"333"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:54:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ff99b4bb-bfdb-447d-a0b4-8aa6439f0e06"},{"name":"User Communication Barring","id":"2fed8912-144c-4515-9626-f32e92e854b1","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useGroupSetting\": true,\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/communication-barring?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","communication-barring"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"d6786135-6210-457b-8508-51aecfa05db2","name":"User Communication Barring","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useGroupSetting\": true,\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":{"raw":"{{url}}/api/v2/users/communication-barring?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","communication-barring"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:52:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2fed8912-144c-4515-9626-f32e92e854b1"},{"name":"User Communication Barring","id":"8fdbee1f-aa1f-40f8-94fa-fb8a82227bbe","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/communication-barring?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","communication-barring"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"2f255aa8-6cd6-446c-a57c-8a1bbdd49a83","name":"User Communication Barring","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/communication-barring?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","communication-barring"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:37:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"68"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useGroupSetting\": true,\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"}],"_postman_id":"8fdbee1f-aa1f-40f8-94fa-fb8a82227bbe"}],"id":"896cbaff-8799-474b-a8a9-041718f77099","_postman_id":"896cbaff-8799-474b-a8a9-041718f77099","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Communication Barring User","item":[{"name":"User Communication Barring User","id":"cf4a490f-4c19-4e40-be74-d812f018c59f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/communication-barring-user-control?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","communication-barring-user-control"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"4cd7e28b-0d7a-44b1-aa69-9edf82e66322","name":"User Communication Barring User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/communication-barring-user-control?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","communication-barring-user-control"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"lockoutStatus\": false,\n    \"profileTable\": [],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"cf4a490f-4c19-4e40-be74-d812f018c59f"},{"name":"User Communication Barring User","id":"906377d6-6401-4955-a0ba-036306229c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"newPasscode\": \"1234\",\n    \"profileTable\": [],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/communication-barring-user-control","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","communication-barring-user-control"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6e181f6f-6eac-46a2-8eb8-463ccc645bf1","name":"User Communication Barring User","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"newPasscode\": \"1234\",\n    \"profileTable\": [],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/communication-barring-user-control"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"lockoutStatus\": false,\n    \"profileTable\": [],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7953\n}"}],"_postman_id":"906377d6-6401-4955-a0ba-036306229c3f"}],"id":"043c5173-6165-4d16-8da3-fc1807595587","_postman_id":"043c5173-6165-4d16-8da3-fc1807595587","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Connected Line Identification","item":[{"name":"System Connected Line Identification Presentation","id":"15afb5d7-9428-4f95-822e-2fe36c087829","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/connected-line-identification-presentation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","connected-line-identification-presentation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d5aff1fa-d1da-4791-81a7-e0d423e4392e","name":"System Connected Line Identification Presentation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/connected-line-identification-presentation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Oct 2018 23:56:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"37"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enforceUserServiceAssignment\": true\n}"}],"_postman_id":"15afb5d7-9428-4f95-822e-2fe36c087829"},{"name":"System Connected Line Identification Presentation","id":"901757ef-820b-4ae9-9fc1-52d01a9ff71c","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enforceUserServiceAssignment\": true\n}"},"url":"{{url}}/api/v2/system/connected-line-identification-presentation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","connected-line-identification-presentation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"901757ef-820b-4ae9-9fc1-52d01a9ff71c"},{"name":"User Connected Line Identification Restriction","id":"edc9e882-145c-44b9-87d9-bb3539ebf6f6","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/connected-line-identification-restriction?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","connected-line-identification-restriction"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"b9e6c9a7-bc93-43ab-9ee5-6ee569ee8a8c","name":"User Connected Line Identification Restriction","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/connected-line-identification-restriction?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","connected-line-identification-restriction"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"edc9e882-145c-44b9-87d9-bb3539ebf6f6"},{"name":"User Connected Line Identification Restriction","id":"334b42bb-3d8e-4ae5-8877-aea7922fd113","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/connected-line-identification-restriction","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","connected-line-identification-restriction"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8ac3f283-28ff-456c-aafc-8ec7fa2e8f0f","name":"User Connected Line Identification Restriction","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/connected-line-identification-restriction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6405\n}"}],"_postman_id":"334b42bb-3d8e-4ae5-8877-aea7922fd113"}],"id":"4bf3a5eb-e6b0-406a-9de5-f2bcdd61d1e6","_postman_id":"4bf3a5eb-e6b0-406a-9de5-f2bcdd61d1e6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Custom Contact Directory","item":[{"name":"Group Custom Contact Directories","id":"af0ed5aa-c3f2-4b07-a5eb-259f77256ab1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/custom-contact-directory?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","custom-contact-directory"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"ab490339-5213-4b81-a6dd-58bc32eb6dd4","name":"Group Custom Contact Directories","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/custom-contact-directory?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","custom-contact-directory"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:17:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"90"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"name\": \"Directory One\"\n    }\n]"}],"_postman_id":"af0ed5aa-c3f2-4b07-a5eb-259f77256ab1"},{"name":"Group Custom Contact Directories Available Users","id":"f5d6f38d-ead8-440c-8a3f-78354efcc320","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/custom-contact-directory/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","custom-contact-directory","users"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"cb348ea8-97f7-4cf7-8296-6fae417d8e3b","name":"Group Custom Contact Directories Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/custom-contact-directory/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","custom-contact-directory","users"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:18:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2756"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9589582001\",\n        \"lastName\": \"mock-2001\",\n        \"firstName\": \"mock-2001\",\n        \"hiraganaLastName\": null,\n        \"hiraganaFirstName\": null,\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": \"+1-9589582001\",\n        \"extension\": \"2001\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"userId\": \"mock.cc.1\",\n        \"lastName\": \"mock.cc.1\",\n        \"firstName\": \"Call Center\",\n        \"hiraganaLastName\": \"mock.cc.1\",\n        \"hiraganaFirstName\": \"Call Center\",\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": null,\n        \"extension\": \"\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"userId\": \"9589582004\",\n        \"lastName\": \"mock-2004\",\n        \"firstName\": \"mock-2004\",\n        \"hiraganaLastName\": null,\n        \"hiraganaFirstName\": null,\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": \"+1-9589582004\",\n        \"extension\": \"2004\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"userId\": \"9589582002\",\n        \"lastName\": \"mock-2002\",\n        \"firstName\": \"mock-2002\",\n        \"hiraganaLastName\": null,\n        \"hiraganaFirstName\": null,\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": \"+1-9589582002\",\n        \"extension\": \"2002\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"userId\": \"156902679_128205304_VMR\",\n        \"lastName\": \"Voice Portal\",\n        \"firstName\": \"Voice Messaging Group\",\n        \"hiraganaLastName\": \"Voice Portal\",\n        \"hiraganaFirstName\": \"Voice Portal\",\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": null,\n        \"extension\": \"\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"userId\": \"9589582003\",\n        \"lastName\": \"mock-2003\",\n        \"firstName\": \"mock-2003\",\n        \"hiraganaLastName\": null,\n        \"hiraganaFirstName\": null,\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": \"+1-9589582003\",\n        \"extension\": \"2003\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"userId\": \"9589582000\",\n        \"lastName\": \"mock-2000\",\n        \"firstName\": \"mock-2000\",\n        \"hiraganaLastName\": null,\n        \"hiraganaFirstName\": null,\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": \"+1-9589582000\",\n        \"extension\": \"2000\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"userId\": \"odin.mock.ent1-odin.mock.grp1-Default\",\n        \"lastName\": \"odin.mock.grp1-Default\",\n        \"firstName\": \"Collaborate - Audio\",\n        \"hiraganaLastName\": \"odin.mock.grp1-Default\",\n        \"hiraganaFirstName\": \"Collaborate - Audio\",\n        \"virtualOn-NetPhoneNumber\": null,\n        \"groupId\": \"odin.mock.grp1\",\n        \"isVirtualOn-NetUser\": false,\n        \"phoneNumber\": null,\n        \"extension\": \"\",\n        \"department\": null,\n        \"emailAddress\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    }\n]"}],"_postman_id":"f5d6f38d-ead8-440c-8a3f-78354efcc320"},{"name":"Group Custom Contact Directory","id":"620f89d8-d2a7-4c89-88b0-8a820634b0ed","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Directory One\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n        {\n            \"userId\": \"9589582000\"\n        },\n        {\n            \"userId\": \"9589582001\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/custom-contact-directory","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","custom-contact-directory"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03052f9b-1bd9-4192-ad10-08e27fccab7c","name":"Group Custom Contact Directory","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Directory One\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"users\": [\n        {\n            \"userId\": \"9589582000\"\n        },\n        {\n            \"userId\": \"9589582001\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/custom-contact-directory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:17:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"620f89d8-d2a7-4c89-88b0-8a820634b0ed"},{"name":"Group Custom Contact Directory","id":"afe28401-4fc2-488f-8c84-1c1166d7fc1f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/custom-contact-directory?groupId=odin.mock.grp1&name=Directory+One&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","custom-contact-directory"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Directory+One"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"334e986a-9b28-432a-9c3a-b4a6df48b048","name":"Group Custom Contact Directory","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/custom-contact-directory?groupId=odin.mock.grp1&name=Directory+One&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","custom-contact-directory"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Directory+One"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:18:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"796"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Directory One\",\n    \"users\": [\n        {\n            \"userId\": \"9589582000\",\n            \"lastName\": \"mock-2000\",\n            \"firstName\": \"mock-2000\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"virtualOn-NetPhoneNumber\": null,\n            \"groupId\": \"odin.mock.grp1\",\n            \"isVirtualOn-NetUser\": false,\n            \"department\": null,\n            \"phoneNumber\": \"+1-9589582000\",\n            \"extension\": \"2000\",\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"yahooId\": null,\n            \"title\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"9589582001\",\n            \"lastName\": \"mock-2001\",\n            \"firstName\": \"mock-2001\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"virtualOn-NetPhoneNumber\": null,\n            \"groupId\": \"odin.mock.grp1\",\n            \"isVirtualOn-NetUser\": false,\n            \"department\": null,\n            \"phoneNumber\": \"+1-9589582001\",\n            \"extension\": \"2001\",\n            \"mobile\": null,\n            \"emailAddress\": null,\n            \"yahooId\": null,\n            \"title\": null,\n            \"iMPId\": null\n        }\n    ]\n}"}],"_postman_id":"afe28401-4fc2-488f-8c84-1c1166d7fc1f"},{"name":"Group Custom Contact Directory","id":"2be9dd90-04ab-4a11-a9b4-a39bdf75187a","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Directory One\",\n    \"newName\": \"Directory One\",\n    \"users\": [\n        {\n            \"userId\": \"9589582000\"\n        },\n        {\n            \"userId\": \"9589582001\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/custom-contact-directory","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","custom-contact-directory"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f50f5025-f48d-4b98-9429-05e0b66c2bcd","name":"Group Custom Contact Directory","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Directory One\",\n    \"newName\": \"Directory One\",\n    \"users\": [\n        {\n            \"userId\": \"9589582000\"\n        },\n        {\n            \"userId\": \"9589582001\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/custom-contact-directory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:19:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2be9dd90-04ab-4a11-a9b4-a39bdf75187a"},{"name":"Group Custom Contact Directory","id":"da68d512-f98e-4bd5-abe8-3dfcf3ec0794","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/custom-contact-directory?groupId=odin.mock.grp1&name=Directory+One&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","custom-contact-directory"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Directory+One"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"46365f36-dca2-4883-934c-f6c06f517696","name":"Group Custom Contact Directory","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/custom-contact-directory?groupId=odin.mock.grp1&name=Directory+One&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","custom-contact-directory"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Directory+One"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 22:17:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"da68d512-f98e-4bd5-abe8-3dfcf3ec0794"}],"id":"9f6dae77-bf00-4d62-866b-243e126adef5","_postman_id":"9f6dae77-bf00-4d62-866b-243e126adef5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Departments","item":[{"name":"Enterprise Departments","id":"5e8871ee-7364-4a36-947a-978f6710e92a","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/departments?serviceProviderId=ent.odin&includeGroupDepartments=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","departments"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"includeGroupDepartments","value":"true"}],"variable":[]}},"response":[{"id":"25166ff3-ce39-4855-8ee4-77abf813bf9a","name":"Enterprise Departments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/departments?serviceProviderId=ent.odin&includeGroupDepartments=true","host":["{{url}}"],"path":["api","v2","enterprises","departments"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"includeGroupDepartments","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept1\",\n        \"fullPathName\": \"ent.odin.dept1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.sub.dept.1\",\n        \"fullPathName\": \"ent.odin.dept1 \\\\ ent.odin.sub.dept.1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"grp.odin.dept1\",\n        \"fullPathName\": \"grp.odin.dept1 (grp.odin)\",\n        \"isEnterpriseDepartment\": false\n    }\n]"}],"_postman_id":"5e8871ee-7364-4a36-947a-978f6710e92a"},{"name":"Enterprise Department","id":"7d74f188-3619-413d-92bb-d2eb06db699c","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"ent.odin.dept3\",\n    \"parentDepartment\": {\n        \"serviceProviderId\":\"ent.odin\",\n        \"name\": \"ent.odin.dept1\"\n    }\n}"},"url":"{{url}}/api/v2/enterprises/departments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","departments"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"94e17b64-a581-4344-ab8f-5c9b338d7b9a","name":"Enterprise Department","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"ent.odin.dept3\",\n    \"parentDepartment\": {\n        \"serviceProviderId\":\"ent.odin\",\n        \"name\": \"ent.odin.dept1\"\n    }\n}"},"url":"{{url}}/api/v2/enterprises/departments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept1\",\n        \"fullPathName\": \"ent.odin.dept1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept3\",\n        \"fullPathName\": \"ent.odin.dept1 \\\\ ent.odin.dept3\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.sub.dept.1\",\n        \"fullPathName\": \"ent.odin.dept1 \\\\ ent.odin.sub.dept.1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept2\",\n        \"fullPathName\": \"ent.odin.dept2\",\n        \"isEnterpriseDepartment\": true\n    }\n]"}],"_postman_id":"7d74f188-3619-413d-92bb-d2eb06db699c"},{"name":"Enterprise Department","id":"f74b20b0-5c44-475a-bcbc-7ee7dfeffda6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"ent.odin.dept3\",\n    \"parentDepartment\": \"\"\n}"},"url":"{{url}}/api/v2/enterprises/departments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","departments"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"62f1e0d3-93c0-418e-a346-fb84fda173f5","name":"Enterprise Department","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"ent.odin.dept3\",\n    \"parentDepartment\": \"\"\n}"},"url":"{{url}}/api/v2/enterprises/departments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept1\",\n        \"fullPathName\": \"ent.odin.dept1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.sub.dept.1\",\n        \"fullPathName\": \"ent.odin.dept1 \\\\ ent.odin.sub.dept.1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept2\",\n        \"fullPathName\": \"ent.odin.dept2\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept3\",\n        \"fullPathName\": \"ent.odin.dept3\",\n        \"isEnterpriseDepartment\": true\n    }\n]"}],"_postman_id":"f74b20b0-5c44-475a-bcbc-7ee7dfeffda6"},{"name":"Enterprise Department","id":"85836b2b-397d-4b12-8cec-7c3109c0f3cc","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/enterprises/departments?serviceProviderId=ent.odin&name=Test12 Department","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","departments"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"Test12 Department"}],"variable":[]}},"response":[{"id":"c1e5cf9e-34d8-4ca1-ba57-abfad23528d8","name":"Enterprise Department","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/enterprises/departments?serviceProviderId=ent.odin&name=ent odin dept3","host":["{{url}}"],"path":["api","v2","enterprises","departments"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"ent odin dept3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept1\",\n        \"fullPathName\": \"ent.odin.dept1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.sub.dept.1\",\n        \"fullPathName\": \"ent.odin.dept1 \\\\ ent.odin.sub.dept.1\",\n        \"isEnterpriseDepartment\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"name\": \"ent.odin.dept2\",\n        \"fullPathName\": \"ent.odin.dept2\",\n        \"isEnterpriseDepartment\": true\n    }\n]"}],"_postman_id":"85836b2b-397d-4b12-8cec-7c3109c0f3cc"},{"name":"Departments","id":"c0122c6c-3eb4-4c02-b28b-4fa441555830","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/departments?groupId=odin.mock.grp1&includeEnterprise=true&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"includeEnterprise","value":"true"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"15cbd965-2226-42a0-be68-2c73be28c6d0","name":"Departments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/departments?groupId=odin.mock.grp1&includeEnterprise=true&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","departments"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"includeEnterprise","value":"true"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"228","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 20:53:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"isEnterpriseDepartment\":false,\"fullPathName\":\"Odin Mock Dept (odin.mock.grp1)\",\"callingLineIdName\":null,\"callingLineIdPhoneNumber\":null,\"name\":\"Odin Mock Dept\",\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\"}]"}],"_postman_id":"c0122c6c-3eb4-4c02-b28b-4fa441555830"},{"name":"Department","id":"37a39cf0-180e-464f-a579-f6e1298f37b4","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Test / Department\",\n\t\"callingLineIdName\":\"Test Department\"\n}"},"url":"{{url}}/api/v2/groups/departments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"784d520e-6577-4bb1-9d52-a51b25497580","name":"Department","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Test / Department\",\n\t\"callingLineIdName\":\"Test Department\"\n}"},"url":"{{url}}/api/v2/groups/departments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 20:54:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"37a39cf0-180e-464f-a579-f6e1298f37b4"},{"name":"Department","id":"9a2fb913-2767-4fbd-9ef0-85b53216d7da","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/departments?groupId=odin.mock.grp1&name=Test+%2F+Department&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test+%2F+Department"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"0b68439d-70d6-459f-8729-8dc8aaf0141e","name":"Department","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/departments?groupId=odin.mock.grp1&name=Test+%2F+Department&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","departments"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test+%2F+Department"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"322","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 20:54:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"callingLineIdName\":\"Test Department\",\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Test \\/ Department\",\"availableParents\":[{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Odin Mock Dept\",\"fullPathName\":\"Odin Mock Dept (odin.mock.grp1)\",\"isEnterpriseDepartment\":false}]}"}],"_postman_id":"9a2fb913-2767-4fbd-9ef0-85b53216d7da"},{"name":"Department","id":"6f01b783-3f46-438a-beca-f610e44bbf10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin.testxp\",\n\t\"groupId\":\"MayurGroup\",\n\t\"name\":\"deptTest\",\n\t\"newName\":\"newDepartment\"\n}"},"url":"{{url}}/api/v2/groups/departments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"791d06f0-3de3-45e0-bf6c-9a504dceab40","name":"Department","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"callingLineIdName\":\"Test Department\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Test / Department\",\n\t\"newName\":\"Test / Department\",\n\t\"callingLineIdPhoneNumber\":\"9709580008\"\n}"},"url":"{{url}}/api/v2/groups/departments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 20:55:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6f01b783-3f46-438a-beca-f610e44bbf10"},{"name":"Department","id":"40934007-a095-4011-96ed-3bc28a26d96d","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/departments?groupId=odin.mock.grp1&name=Test+%2F+Department&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test+%2F+Department"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"fef30658-6b51-4270-84a6-6754fec1d72d","name":"Department","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/departments?groupId=odin.mock.grp1&name=Test+%2F+Department&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","departments"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test+%2F+Department"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 20:56:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"40934007-a095-4011-96ed-3bc28a26d96d"},{"name":"Department Admins","id":"b97fd650-daf7-48f0-85ef-979de12bea65","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/departments/admins?groupId=odin.mock.grp1&name=Test+%2F+Department&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments","admins"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test+%2F+Department"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"e2d530ff-a56a-443a-9e9e-7f89171c1812","name":"Department Admins","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/departments/admins?groupId=odin.mock.grp1&name=Test+%2F+Department&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","departments","admins"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test+%2F+Department"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"137","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 21:35:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"lastName\":\"test\",\"firstName\":\"admin\",\"department\":\"Test \\/ Department (odin.mock.grp1)\",\"language\":\"English\",\"userId\":\"test-admin-1\"}]"}],"_postman_id":"b97fd650-daf7-48f0-85ef-979de12bea65"},{"name":"Department Admin","id":"c2bb3b16-44c9-4a04-867b-6eca264e5371","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"department\":{\n\t\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\t\"groupId\":\"odin.mock.grp1\",\n\t\t\"name\":\"Test / Department\"\n\t},\n\t\"language\":\"English\",\n\t\"userId\":\"test-admin-1@microv-works.com\",\n\t\"lastName\":\"test\",\n\t\"password\":\"Siq^3g\",\n\t\"firstName\":\"admin\"\n}"},"url":"{{url}}/api/v2/groups/departments/admins","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"53af8367-0e19-4ece-bfdf-b6ea2b07ba39","name":"Department Admin","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"department\":{\n\t\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\t\"groupId\":\"odin.mock.grp1\",\n\t\t\"name\":\"Test / Department\"\n\t},\n\t\"language\":\"English\",\n\t\"userId\":\"test-admin-1@microv-works.com\",\n\t\"lastName\":\"test\",\n\t\"password\":\"Siq^3g\",\n\t\"firstName\":\"admin\"\n}"},"url":"{{url}}/api/v2/groups/departments/admins"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 21:39:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c2bb3b16-44c9-4a04-867b-6eca264e5371"},{"name":"Department Admin","id":"3c41f90d-5c93-4c29-8055-9ce9688e74a4","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/departments/admins?userId=odin.lab.slatsa.dept@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments","admins"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin.lab.slatsa.dept@voicecci.net"}],"variable":[]}},"response":[{"id":"d5aefe8f-850f-4c9f-9822-5ecfa5ef9b0f","name":"Department Admin","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/departments/admins?userId=test-admin-1","host":["{{url}}"],"path":["api","v2","groups","departments","admins"],"query":[{"key":"userId","value":"test-admin-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"244","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 21:37:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"firstName\":\"admin\",\"lastName\":\"test\",\"language\":\"English\",\"userId\":\"test-admin-1\",\"department\":{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"name\":\"Test \\/ Department\",\"fullPathName\":\"Test \\/ Department (odin.mock.grp1)\"}}"}],"_postman_id":"3c41f90d-5c93-4c29-8055-9ce9688e74a4"},{"name":"Department Admin","id":"fc293ced-55e6-491b-b1cd-69b823c16818","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"lastName\":\"First\",\n\t\"firstName\":\"Last\",\n\t\"language\":\"English\",\n\t\"userId\":\"test-admin-1\"\n}"},"url":"{{url}}/api/v2/groups/departments/admins","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments","admins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ca23f191-1cc3-407a-a468-f0ce9c9a1f6a","name":"Department Admin","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"lastName\":\"First\",\n\t\"firstName\":\"Last\",\n\t\"language\":\"English\",\n\t\"userId\":\"test-admin-1\"\n}"},"url":"{{url}}/api/v2/groups/departments/admins"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 21:40:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"fc293ced-55e6-491b-b1cd-69b823c16818"},{"name":"Department Admin","id":"02138c23-f3f2-4639-9fa6-a9177c78cb79","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/departments/admins?userId=test-admin-1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","departments","admins"],"host":["{{url}}"],"query":[{"key":"userId","value":"test-admin-1"}],"variable":[]}},"response":[{"id":"1a7bf0aa-5dc5-4774-a622-b5d5b16352f6","name":"Department Admin","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/departments/admins?userId=test-admin-1","host":["{{url}}"],"path":["api","v2","groups","departments","admins"],"query":[{"key":"userId","value":"test-admin-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Sep 2018 21:40:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"02138c23-f3f2-4639-9fa6-a9177c78cb79"}],"id":"5506ab65-7d82-4638-930e-91a6445e0d82","_postman_id":"5506ab65-7d82-4638-930e-91a6445e0d82","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Device Policies","item":[{"name":"User Device Policies","id":"bb28d6b3-6ba5-4358-8846-92f3f076d977","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/device-policies?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","device-policies"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[],"_postman_id":"bb28d6b3-6ba5-4358-8846-92f3f076d977"},{"name":"User Device Policies","id":"84672a03-8e4e-48cf-9e54-6e655466b93f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"lineMode\": \"Single User Private and Shared\",\n    \"enableDeviceFeatureSynchronization\": true,\n    \"enableDnd\": false,\n    \"enableCallForwardingAlways\": true,\n    \"enableCallForwardingBusy\": false,\n    \"enableCallForwardingNoAnswer\": false,\n    \"enableAcd\": false,\n    \"enableExecutive\": false,\n    \"enableExecutiveAssistant\": false,\n    \"enableSecurityClassification\": false,\n    \"enableCallRecording\": false,\n    \"enableCallDecline\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/device-policies","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","device-policies"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d8edd1ae-619d-4d3c-b550-f68e45ba1d62","name":"User Device Policies","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"lineMode\": \"Single User Private and Shared\",\n    \"enableDeviceFeatureSynchronization\": true,\n    \"enableDnd\": false,\n    \"enableCallForwardingAlways\": true,\n    \"enableCallForwardingBusy\": false,\n    \"enableCallForwardingNoAnswer\": false,\n    \"enableAcd\": false,\n    \"enableExecutive\": false,\n    \"enableExecutiveAssistant\": false,\n    \"enableSecurityClassification\": false,\n    \"enableCallRecording\": false,\n    \"enableCallDecline\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/device-policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"lineMode\": \"Single User Private and Shared\",\n    \"enableDeviceFeatureSynchronization\": true,\n    \"enableDnd\": false,\n    \"enableCallForwardingAlways\": true,\n    \"enableCallForwardingBusy\": false,\n    \"enableCallForwardingNoAnswer\": false,\n    \"enableAcd\": false,\n    \"enableExecutive\": false,\n    \"enableExecutiveAssistant\": false,\n    \"enableSecurityClassification\": false,\n    \"enableCallRecording\": false,\n    \"enableCallDecline\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"84672a03-8e4e-48cf-9e54-6e655466b93f"}],"id":"5f5f6e40-26ca-45e6-93e8-dc2973dee8d8","_postman_id":"5f5f6e40-26ca-45e6-93e8-dc2973dee8d8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Devices","item":[{"name":"Group Devices","event":[{"listen":"test","script":{"id":"7d394ee9-6ad5-46ce-b8be-cd674133f3ef","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"3601dd74-ad65-4c78-bba1-fb6d9e8fcfaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=Grandstream-portTest","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"Grandstream-portTest"},{"disabled":true,"key":"q","value":"available"},{"disabled":true,"key":"deviceName","value":"2WireHomeDevice"},{"disabled":true,"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"fbee01cb-f060-46e3-9ea0-a458527dffb8","name":"Group Devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"deviceName\": \"4001-dev1\",\n        \"deviceType\": \"Polycom IP550\",\n        \"availablePorts\": 4,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"4001-dev1-video\",\n        \"deviceType\": \"Polycom VVX1500\",\n        \"availablePorts\": 5,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551000,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551001,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551002,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551003,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551004,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551005,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551006,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551007,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551008,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551009,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\",\n        \"deviceType\": \"Polycom VVX500\",\n        \"availablePorts\": 31,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-2\",\n        \"deviceType\": \"Polycom-VVX500\",\n        \"availablePorts\": 11,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    }\n]"}],"_postman_id":"3601dd74-ad65-4c78-bba1-fb6d9e8fcfaf"},{"name":"Group Device","event":[{"listen":"test","script":{"id":"119c57b4-684f-410f-824c-79d7564d4551","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"94c11ede-9f23-45e2-b9e6-bf627419c2c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/devices?q=available&deviceName=sadasdasd","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"key":"deviceName","value":"yealink-with-port"},{"key":"q","value":"available"},{"key":"deviceName","value":"sadasdasd"},{"disabled":true,"key":"deviceName","value":"aaasssddd"}],"variable":[]}},"response":[{"id":"18654ffe-37cc-4023-9595-78162a4d6d49","name":"Group Devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"deviceName\": \"4001-dev1\",\n        \"deviceType\": \"Polycom IP550\",\n        \"availablePorts\": 4,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"4001-dev1-video\",\n        \"deviceType\": \"Polycom VVX1500\",\n        \"availablePorts\": 5,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551000,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551001,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551002,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551003,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551004,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551005,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551006,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551007,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551008,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551009,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\",\n        \"deviceType\": \"Polycom VVX500\",\n        \"availablePorts\": 31,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-2\",\n        \"deviceType\": \"Polycom-VVX500\",\n        \"availablePorts\": 11,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    }\n]"},{"id":"36e10c04-3c9a-47ea-85a0-693697fe9aba","name":"Group Device","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=my-new-device-name","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"my-new-device-name"},{"key":"q","value":"available","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"protocol\": \"SIP 2.0\",\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": 2222,\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": 123456789,\n    \"description\": \"description\",\n    \"numberOfPorts\": {\n        \"quantity\": \"1\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": true,\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"accessDeviceCredentials\": {\n        \"userName\": 9871515000\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"94c11ede-9f23-45e2-b9e6-bf627419c2c1"},{"name":"Group Device Available Ports","event":[{"listen":"test","script":{"id":"119c57b4-684f-410f-824c-79d7564d4551","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"6d3b665a-e812-486d-a332-23d4e7371872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/devices/available-ports?deviceLevel=Group&serviceProviderId=Sandbox Testing&groupId=cjcarr&deviceName=000B82ABA315","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","available-ports"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"key":"deviceLevel","value":"Group"},{"disabled":true,"key":"deviceName","value":"yealink-with-port"},{"key":"serviceProviderId","value":"Sandbox Testing"},{"key":"groupId","value":"cjcarr"},{"key":"deviceName","value":"000B82ABA315"}],"variable":[]}},"response":[{"id":"068598b3-ccd3-472b-b66c-1caad0e16026","name":"Group Devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"deviceName\": \"4001-dev1\",\n        \"deviceType\": \"Polycom IP550\",\n        \"availablePorts\": 4,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"4001-dev1-video\",\n        \"deviceType\": \"Polycom VVX1500\",\n        \"availablePorts\": 5,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551000,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551001,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551002,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551003,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551004,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551005,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551006,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551007,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551008,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551009,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\",\n        \"deviceType\": \"Polycom VVX500\",\n        \"availablePorts\": 31,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-2\",\n        \"deviceType\": \"Polycom-VVX500\",\n        \"availablePorts\": 11,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    }\n]"},{"id":"ffa62a93-a04f-4266-bbcf-43d0f281ad1b","name":"Group Device","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=my-new-device-name","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"my-new-device-name"},{"key":"q","value":"available","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"protocol\": \"SIP 2.0\",\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": 2222,\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": 123456789,\n    \"description\": \"description\",\n    \"numberOfPorts\": {\n        \"quantity\": \"1\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": true,\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"accessDeviceCredentials\": {\n        \"userName\": 9871515000\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"6d3b665a-e812-486d-a332-23d4e7371872"},{"name":"Group Devices Available","event":[{"listen":"test","script":{"id":"c6f5764d-87e4-4f26-b153-1609afdcd872","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"a556ae8c-2d57-4a6c-8180-013790fff739","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=Grandstream-portTest&q=available","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"Grandstream-portTest"},{"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"3b433499-883a-4c32-9be1-4e82864fa92c","name":"Group Devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/devices?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"deviceName\": \"4001-dev1\",\n        \"deviceType\": \"Polycom IP550\",\n        \"availablePorts\": 4,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"4001-dev1-video\",\n        \"deviceType\": \"Polycom VVX1500\",\n        \"availablePorts\": 5,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551000,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551001,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551002,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551003,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551004,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551005,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551006,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551007,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551008,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 9,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": 8135551009,\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"availablePorts\": 10,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\",\n        \"deviceType\": \"Polycom VVX500\",\n        \"availablePorts\": 31,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    {\n        \"deviceName\": \"PolycommFlexibleSeatingVVX500-2\",\n        \"deviceType\": \"Polycom-VVX500\",\n        \"availablePorts\": 11,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Group\",\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    }\n]"}],"_postman_id":"a556ae8c-2d57-4a6c-8180-013790fff739"},{"name":"Group Device Users (WIP)","id":"6eea4f26-9e30-493d-8ac1-b5fb9ece6b02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/devices/users?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=4002@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"4002@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"d71beee3-43f1-4dc8-84f2-fa1f9144aefc","name":"Group Device","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices?deviceName=Alog 8180 New&groupId=grp.voixp&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"deviceName","value":"Alog 8180 New"},{"key":"groupId","value":"grp.voixp"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:07:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"425"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 430\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"2\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"mock-test-device-1\",\n    \"deviceLevel\": \"Group\",\n    \"accessDeviceCredentials\": {\n        \"userName\": null\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"6eea4f26-9e30-493d-8ac1-b5fb9ece6b02"},{"name":"Group Device","id":"aeef85c0-376d-4d3c-b1a7-f37d90fcb872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"useCustomUserNamePassword\": true,\n    \"accessDeviceCredentials\": {\n        \"userName\": \"9871515000\",\n        \"password\": \"ym7#zIuA\"\n    },\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": \"2222\",\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": \"123456789\",\n    \"description\": \"description\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"groupId\": \"grp.odin\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"profile\": \"Intelligent Proxy Addressing\",\n    \"staticRegistrationCapable\": \"false\",\n    \"configType\": \"3 File Configuration\",\n    \"protocolChoice\": [\n        \"SIP 2.0\"\n    ],\n    \"isIpAddressOptional\": \"true\",\n    \"useDomain\": \"true\",\n    \"isMobilityManagerDevice\": \"false\",\n    \"deviceConfigurationOption\": \"Device Management\",\n    \"staticLineOrdering\": \"false\",\n    \"deviceTypeLevel\": \"System\",\n    \"tags\": [],\n    \"relatedServices\": [],\n    \"protocol\": \"SIP 2.0\",\n    \"userName\": \"9871515000\"\n}"},"url":"{{url}}/api/v2/groups/devices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4df97111-2274-4ccb-a29a-6966aff5ea8c","name":"Group Device","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": \"Intelligent Proxy Addressing\",\n    \"staticRegistrationCapable\": \"false\",\n    \"configType\": \"3 File Configuration\",\n    \"protocolChoice\": [\n        \"SIP 2.0\"\n    ],\n    \"isIpAddressOptional\": \"true\",\n    \"useDomain\": \"true\",\n    \"isMobilityManagerDevice\": \"false\",\n    \"deviceConfigurationOption\": \"Device Management\",\n    \"staticLineOrdering\": \"false\",\n    \"deviceType\": \"Polycom Soundpoint IP 430\",\n    \"tags\": [],\n    \"relatedServices\": [],\n    \"protocol\": \"SIP 2.0\",\n    \"useCustomUserNamePassword\": false,\n    \"transportProtocol\": \"UDP\",\n    \"deviceName\": \"mock-test-device-1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:06:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"},{"id":"d5b9cba6-1756-496c-a68f-a0bb7f527c46","name":"Group Device","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"useCustomUserNamePassword\": true,\n    \"accessDeviceCredentials\": {\n        \"userName\": \"9871515000\",\n        \"password\": \"ym7#zIuA\"\n    },\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": \"2222\",\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": \"123456789\",\n    \"description\": \"description\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"groupId\": \"grp.odin\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"profile\": \"Intelligent Proxy Addressing\",\n    \"staticRegistrationCapable\": \"false\",\n    \"configType\": \"3 File Configuration\",\n    \"protocolChoice\": [\n        \"SIP 2.0\"\n    ],\n    \"isIpAddressOptional\": \"true\",\n    \"useDomain\": \"true\",\n    \"isMobilityManagerDevice\": \"false\",\n    \"deviceConfigurationOption\": \"Device Management\",\n    \"staticLineOrdering\": \"false\",\n    \"deviceTypeLevel\": \"System\",\n    \"tags\": [],\n    \"relatedServices\": [],\n    \"protocol\": \"SIP 2.0\",\n    \"userName\": \"9871515000\"\n}"},"url":"{{url}}/api/v2/groups/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"protocol\": \"SIP 2.0\",\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": 2222,\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": 123456789,\n    \"description\": \"description\",\n    \"numberOfPorts\": {\n        \"quantity\": \"1\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": true,\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"accessDeviceCredentials\": {\n        \"userName\": 9871515000\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"aeef85c0-376d-4d3c-b1a7-f37d90fcb872"},{"name":"Group Device","id":"4d39ee78-b2c0-4b2c-be2e-cea89a2f8c73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"protocol\": \"SIP 2.0\",\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": 2222,\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": 123456789,\n    \"description\": \"description\",\n    \"numberOfPorts\": {\n        \"quantity\": \"1\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": true,\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"accessDeviceCredentials\": {\n        \"userName\": 9871515000\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"},"url":"{{url}}/api/v2/groups/devices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"15a7f82a-ca4f-4cc2-976b-5f4781cd061e","name":"Group Device","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"protocol\": \"SIP 2.0\",\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": 2222,\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": 123456789,\n    \"description\": \"description\",\n    \"numberOfPorts\": {\n        \"quantity\": \"1\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": true,\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"accessDeviceCredentials\": {\n        \"userName\": 9871515000\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"},"url":"{{url}}/api/v2/groups/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 4000\",\n    \"protocol\": \"SIP 2.0\",\n    \"netAddress\": \"111.111.111.111\",\n    \"port\": 2222,\n    \"outboundProxyServerNetAddress\": \"222.222.222.222\",\n    \"stunServerNetAddress\": \"333.333.333.333\",\n    \"macAddress\": \"CBFB0EBBF325\",\n    \"serialNumber\": 123456789,\n    \"description\": \"description\",\n    \"numberOfPorts\": {\n        \"quantity\": \"1\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"physicalLocation\": \"usa\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": true,\n    \"deviceName\": \"my-new-device-name\",\n    \"deviceLevel\": \"Group\",\n    \"accessDeviceCredentials\": {\n        \"userName\": 9871515000\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"},{"id":"8d8219be-06ce-45e1-968e-aaddae8569ec","name":"Group Devices","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceType\": \"Polycom Soundpoint IP 430\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"2\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"configurationMode\": \"Default\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"mock-test-device-1\",\n    \"deviceLevel\": \"Group\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"},"url":"{{url}}/api/v2/groups/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:07:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"4d39ee78-b2c0-4b2c-be2e-cea89a2f8c73"},{"name":"Group Device","id":"99461ca5-b939-4f51-b7ab-0a7ac40e9a90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/devices?deviceName=scott-1&groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"scott-1"},{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"9c7014e7-73f0-431a-8104-2e6e581249e4","name":"Group Devices","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices?deviceName=mock-test-device-1&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","devices"],"query":[{"key":"deviceName","value":"mock-test-device-1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:08:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"99461ca5-b939-4f51-b7ab-0a7ac40e9a90"},{"name":"Service Provider Devices","id":"bc585eb9-7f1e-4c85-afaf-0d5d495d3c8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/devices?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"9198c5e7-f1e8-4a6c-92c6-e0328b945689","name":"Service Provider Devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","devices"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Oct 2018 23:06:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"271"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"deviceName\": \"odin.mock.ent1-device1\",\n        \"deviceType\": \"Polycom Soundpoint IP 500\",\n        \"availablePorts\": 3,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"Service Provider\"\n    }\n]"}],"_postman_id":"bc585eb9-7f1e-4c85-afaf-0d5d495d3c8e"},{"name":"Service Provider Device","id":"e3fa2d88-738f-4a5d-99ad-6ff2572f243d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/devices?serviceProviderId=ent.odin&deviceName=yealink-t41p-ent.odin&q=available&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"deviceName","value":"mac-address-aastra-int"},{"key":"deviceName","value":"yealink-t41p-ent.odin"},{"key":"q","value":"available"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"d39d01a9-3e13-4988-af52-839c907cf19b","name":"Service Provider Device","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices?serviceProviderId=ent.odin&deviceName=mac-address-aastra-int","host":["{{url}}"],"path":["api","v2","service-providers","devices"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"deviceName","value":"mac-address-aastra-int"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Aastra 480i\",\n    \"protocol\": \"SIP 2.0\",\n    \"macAddress\": \"556688995568\",\n    \"numberOfPorts\": {\n        \"quantity\": \"9\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"mac-address-aastra-int\",\n    \"deviceLevel\": \"Service Provider\",\n    \"accessDeviceCredentials\": {\n        \"userName\": null\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"e3fa2d88-738f-4a5d-99ad-6ff2572f243d"},{"name":"Service Provider Device User (WIP)","id":"d61b2305-9178-4eb8-a179-d8edb1c330e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/devices/users?deviceName=PolycomFlexibleSeatingVVX500&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","users"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"aef2ba1e-5447-4e12-b160-13307a8ab04a","name":"Service Provider Device","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices?deviceName=odin.mock.ent1-device2&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","devices"],"query":[{"key":"deviceName","value":"odin.mock.ent1-device2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Oct 2018 23:07:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"383"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"3\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"odin.mock.ent1-device2\",\n    \"deviceLevel\": \"Service Provider\",\n    \"accessDeviceCredentials\": {\n        \"userName\": null\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"d61b2305-9178-4eb8-a179-d8edb1c330e6"},{"name":"Service Provider Device","id":"f61eceb5-da3b-44c2-82b8-f380a5101716","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"3\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"macAddress\": \"0123456780AB\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"ent1device2\",\n    \"deviceLevel\": \"Service Provider\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"},"url":"{{url}}/api/v2/service-providers/devices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"10510a0c-ce3f-4f53-9efc-0f221f937f91","name":"Service Provider Device","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"3\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"odin.mock.ent1-device2\",\n    \"deviceLevel\": \"Service Provider\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"},"url":"{{url}}/api/v2/service-providers/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Oct 2018 23:07:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"383"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"3\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"odin.mock.ent1-device2\",\n    \"deviceLevel\": \"Service Provider\",\n    \"accessDeviceCredentials\": {\n        \"userName\": null\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"f61eceb5-da3b-44c2-82b8-f380a5101716"},{"name":"Service Provider Device","id":"65a05fe8-ab35-454a-bceb-fb669a70a4f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": \"Intelligent Proxy Addressing1\",\n    \"staticRegistrationCapable\": \"false\",\n    \"configType\": \"3 File Configuration\",\n    \"protocolChoice\": [\n        \"SIP 2.0\"\n    ],\n    \"isIpAddressOptional\": \"true\",\n    \"useDomain\": \"true\",\n    \"isMobilityManagerDevice\": \"false\",\n    \"deviceConfigurationOption\": \"Device Management\",\n    \"staticLineOrdering\": \"false\",\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"tags\": [\n        \"%LDAP_ENABLE%\",\n        \"%ANOTHER_ENABLE%\"\n    ],\n    \"relatedServices\": [],\n    \"protocol\": \"SIP 2.0\",\n    \"useCustomUserNamePassword\": false,\n    \"transportProtocol\": \"UDP\",\n    \"deviceName\": \"ent1device2\",\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/devices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"25184095-6b41-4e2f-b281-43cdaf886d55","name":"Service Provider Device","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": \"Intelligent Proxy Addressing\",\n    \"staticRegistrationCapable\": \"false\",\n    \"configType\": \"3 File Configuration\",\n    \"protocolChoice\": [\n        \"SIP 2.0\"\n    ],\n    \"isIpAddressOptional\": \"true\",\n    \"useDomain\": \"true\",\n    \"isMobilityManagerDevice\": \"false\",\n    \"deviceConfigurationOption\": \"Device Management\",\n    \"staticLineOrdering\": \"false\",\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"tags\": [],\n    \"relatedServices\": [],\n    \"protocol\": \"SIP 2.0\",\n    \"useCustomUserNamePassword\": false,\n    \"transportProtocol\": \"UDP\",\n    \"deviceName\": \"odin.mock.ent1-device2\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Oct 2018 23:07:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"383"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"3\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"odin.mock.ent1-device2\",\n    \"deviceLevel\": \"Service Provider\",\n    \"accessDeviceCredentials\": {\n        \"userName\": null\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"65a05fe8-ab35-454a-bceb-fb669a70a4f6"},{"name":"Service Provider Device","id":"83d31f94-19b8-4d79-a06d-5fc002fb2340","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/devices?deviceName=ent1device1&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"ent1device1"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"4025cfae-112b-4bb7-8e1e-58cfb0594d59","name":"Service Provider Device","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices?deviceName=odin.mock.ent1-device2&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","devices"],"query":[{"key":"deviceName","value":"odin.mock.ent1-device2"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Oct 2018 23:07:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"383"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom Soundpoint IP 500\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"3\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"odin.mock.ent1-device2\",\n    \"deviceLevel\": \"Service Provider\",\n    \"accessDeviceCredentials\": {\n        \"userName\": null\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"83d31f94-19b8-4d79-a06d-5fc002fb2340"},{"name":"System Device Types","event":[{"listen":"test","script":{"id":"54edf775-c673-42e7-828b-7aad9957d5a9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"e0f6248c-5dd1-4039-90d2-b895591e3fe1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/device-types","description":"<p>Get a list of all Device Types in the System</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","device-types"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c1aa3286-d4be-418a-95ed-e4cb5b3e2b55","name":"System Device Types","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/system/device-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:26:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 480i\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 480i CT\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 53i\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 55i\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 57i\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 57iCT\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 9112i\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Aastra 9133i\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA604\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA608\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA612\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA616\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA624\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA900 Series-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA904\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA904 MGCP\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA908\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA908 MGCP\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA912\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA912 MGCP\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA916\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA916 MGCP\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA924\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Adtran TA924 MGCP\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris 402P/502A/502G/602A/602G/632\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris 504A/504G/604A/604G\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris 508/608\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris 512\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris SVG6582\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris TM401/TM501 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris TM402/TM502 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris TM402/TM502 NCS Payphone\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris TM508 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Arris TM512 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes MP-102\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes MP-104\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes MP-108\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes MP-112\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes MP-114\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes MP-118\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes MP-124\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes Mediant 1000-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes Mediant 1000-Trunk Reg\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes Mediant 2000-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"AudioCodes Mediant 2000-Trunk Reg\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"BNMUX PCX3200,BCX330J Customized\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"BroadWorks Communicator\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"BroadWorks Media Server\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Carrier Access 3500\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Carrier Access Adit 3104\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP NCS 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Carrier Access Adit 600-48\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 1760\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 1760-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"SNAP\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP 0.1\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2421-16\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"SNAP\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP 0.1\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2421-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"SNAP\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2430-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2430-24 (SIP)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2430-24 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"SNAP\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2431-16\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2431-16 (SIP)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2431-16 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"SNAP\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2431-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2431-8 (SIP)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2431-8 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"SNAP\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2432-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2432-24 (SIP)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2432-24 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 243x-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2600-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 27xx-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2801 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2811 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2821 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 2851 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 28xx-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 36xx-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 37xx-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 3825 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 3845 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 53xx-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 5400-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 7905\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 7912\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 7940\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco 7960\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco ATA-186\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco Call Manager\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco Call Manager Express\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco IOS-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco IOS-Trunk Reg\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco VG224 (SIP-INFO)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-CP-8811-3PCC\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-CP-8841-3PCC\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-CP-8851-3PCC\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-CP-8861-3PCC\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-GSPA51x\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-SPA-232\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-SPA50x\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco-SPA525\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Cisco79x0\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"CounterPath eyeBeam\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Counterpath Bria\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"D-Link DG-102S\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Empirix Hammer MGCP\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP NCS 1.5\",\n            \"MGCP NCS 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic MGCP\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic MGCP eMTA1 - Japan\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic MGCP eMTA2 - Japan\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP Gateway - Trusted\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP IP-PBX\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP IP-PBX Proxy\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP IP-PBX Single Registration\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP Int Device Domain GW\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP Int Proxy Domain GW\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP Music On Hold\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP Non-Int Device Domain GW\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP Non-Int Proxy Domain GW\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP Phone\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Generic SIP TDM PBX\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream BT-200\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream GXP-2000\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream GXP-2020\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream GXV-3000\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream GXW-4004\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream GXW-4008\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream HT-502\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Grandstream Handytone-486_286\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Huawei MD5500\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"InnoMedia 3328-1\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"InnoMedia 3328-2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"InnoMedia 3328-4\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"InnoMedia 3328-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"InnoMedia 6328-2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Integrated Conferencing Server (sys)\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"LG Electronics LDK-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"LG-Nortel LIP-6812\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"LG-Nortel LIP-6830\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys PAP2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys PAP2T\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys RTP300_WRTP54G\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-1000 1001\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-2000 2002 2100\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-2102\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-3000 3100\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-3102\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-841\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-9000\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-901_921_922\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-941_942\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Linksys SPA-962\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"MediaTrix 1102\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"MediaTrix 1104\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"MediaTrix 1124\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"MediaTrix 2102\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Microsoft Office Communicator\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Mitel 5055\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Mitel 5212\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Mitel 5215\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Mitel 5220\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Mitel 5224\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Mitel 5235\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Mitel Navigator\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Moimstone IP250C\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Motorola SBV5120\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Motorola SBV5121\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Motorola SBV5122 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Motorola SBV5220\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Motorola SBV5220 Payphone\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Occam BLC 1200-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Occam BLC 6000-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Occam BLC 6000-48\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP1632-16\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP1632-32\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP1632-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP200-1\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP200-2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP4220-1\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP4220-2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP4220-3\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP4220-4\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP8440-4\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP8440-6\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Octtel SP8440-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"OneAccess ONE Series-Trunk Reg\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Pannaway BAS-ADSL16R\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Pannaway BAS-ADSL32R\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Pannaway BAS-ADSL48R\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Pannaway BAS-POTS48R\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4112_4522\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4114_4524\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4116_4526\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4118_4528\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4912\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4916\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4924\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode 4932\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Patton SmartNode Series-Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Phonism-generic\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Phonism-nonvvx-test\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Phonism_template\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Pingtel xpressa\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 300\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 320 330\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 4000\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 430\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 500\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 550\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 600\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 601\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom Soundpoint IP 650\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom-560\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom-650\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom_NonVVX\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom_SPIP45x-65x\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom_VVX300\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom_VVX400\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom_VVX500\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom_VVX600\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"3 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Polycom_VVX_x00\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quantier IPR-720E\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AF-2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AF-4\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AF-6\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AF-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AS-2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AS-4\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AX-16\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AX-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AX-48\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor AX-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Quintum Tenor Trunk\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"SNOM 320\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"SNOM 360\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"SPA2102\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Sagemcom Fast 3184\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Samsung SMT-i8000\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Samsung SSX5000\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Scientific Atlanta DPC2203/C/C2 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Scientific Atlanta DPC2434 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP NCS 1.5\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Scientific Atlanta DPX2213 NCS\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Sentito NSS19\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 410 Advanced\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 410 Economy\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 410 Economy Plus\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 410 Entry\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 410 Standard\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 420 Advanced\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 420 Economy\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 420 Economy Plus\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens Optipoint 420 Standard\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens WL2 S\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens optiPoint 150S\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Siemens optiPoint 400\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Sonus GSX\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"true\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Sonus PSX\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink 8000 12 port\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink 8000 16 port\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink 8000 24 port\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink 8000 4 port\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink 8000 8 port\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP NCS 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink NetEngine 6x02-2\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP NCS 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink NetEngine 6x04-4\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP NCS 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink NetEngine 6x08-8\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP NCS 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink NetEngine 7x16-16\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\",\n            \"MGCP NCS 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Verilink NetEngine 7x24-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Windows Messenger Soft Client\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Not Supported\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Xten Soft Client\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Yealink-T41P\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Yealink-T42G\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Yealink-T46G\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Zhone MALC\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Zhone Z-Edge 6100-12\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Zhone Z-Edge 6100-24\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Non-intelligent Device Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"protocolChoice\": [\n            \"MGCP IETF 1.0\"\n        ],\n        \"isIpAddressOptional\": \"false\",\n        \"useDomain\": \"false\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"Zhone Z-Edge 6200\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"ZyXEL P2002\",\n        \"tags\": [],\n        \"relatedServices\": []\n    },\n    {\n        \"profile\": \"Intelligent Proxy Addressing\",\n        \"staticRegistrationCapable\": \"false\",\n        \"configType\": \"2 File Configuration\",\n        \"protocolChoice\": [\n            \"SIP 2.0\"\n        ],\n        \"isIpAddressOptional\": \"true\",\n        \"useDomain\": \"true\",\n        \"isMobilityManagerDevice\": \"false\",\n        \"deviceConfigurationOption\": \"Device Management\",\n        \"staticLineOrdering\": \"false\",\n        \"deviceType\": \"ZyXEL P2302R\",\n        \"tags\": [],\n        \"relatedServices\": []\n    }\n]"}],"_postman_id":"e0f6248c-5dd1-4039-90d2-b895591e3fe1"},{"name":"System Devices","id":"aa6ce38a-d7e0-4364-9553-0426de97c273","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/system/devices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5b358af7-0415-497e-a50a-619b31f5ae18","name":"System Devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:37:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"216"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"deviceName\": \"pbs-test-system-device-1\",\n        \"deviceType\": \"Polycom_VVX400\",\n        \"availablePorts\": 12,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"System\"\n    }\n]"}],"_postman_id":"aa6ce38a-d7e0-4364-9553-0426de97c273"},{"name":"System Device","id":"f5041307-8791-4fd6-a7fe-142b054b5d8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/system/devices?deviceName=2WireHomeDevice&serviceProviderId=ent.odin&groupId=grp.odin&q=available","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"2WireHomeDevice"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"f7871159-3346-466e-b1ba-68996d96ff22","name":"System Devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:37:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"216"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"deviceName\": \"pbs-test-system-device-1\",\n        \"deviceType\": \"Polycom_VVX400\",\n        \"availablePorts\": 12,\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"version\": null,\n        \"macAddress\": null,\n        \"tags\": [],\n        \"relatedServices\": [],\n        \"deviceLevel\": \"System\"\n    }\n]"}],"_postman_id":"f5041307-8791-4fd6-a7fe-142b054b5d8f"},{"name":"System Device User (WIP)","id":"f21f8de8-fad1-47b9-aa47-1f73593baf9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/devices/users?deviceName=Lab VVX1500","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","users"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"Lab VVX1500"}],"variable":[]}},"response":[{"id":"9786e4a2-72ef-42c9-8dfa-b4b0d907b07a","name":"System Device","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/system/devices?deviceName=pbs-test-system-device-1","host":["{{url}}"],"path":["api","v2","system","devices"],"query":[{"key":"deviceName","value":"pbs-test-system-device-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:38:10 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"328"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"deviceType\": \"Polycom_VVX400\",\n    \"protocol\": \"SIP 2.0\",\n    \"numberOfPorts\": {\n        \"quantity\": \"12\"\n    },\n    \"numberOfAssignedPorts\": 0,\n    \"status\": \"Online\",\n    \"transportProtocol\": \"UDP\",\n    \"useCustomUserNamePassword\": false,\n    \"deviceName\": \"pbs-test-system-device-1\",\n    \"deviceLevel\": \"System\",\n    \"accessDeviceCredentials\": {\n        \"userName\": null\n    },\n    \"tags\": [],\n    \"relatedServices\": []\n}"}],"_postman_id":"f21f8de8-fad1-47b9-aa47-1f73593baf9f"},{"name":"System Device","id":"71f2ed19-9106-4d46-8ea7-039e9d78108d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"profile\":\"Intelligent Proxy Addressing\",\n\t\"staticRegistrationCapable\":\"false\",\n\t\"configType\":\"2 File Configuration\",\n\t\"protocolChoice\":[\"SIP 2.0\"],\n\t\"isIpAddressOptional\":\"true\",\n\t\"useDomain\":\"true\",\n\t\"isMobilityManagerDevice\":\"false\",\n\t\"deviceConfigurationOption\":\"Device Management\",\n\t\"staticLineOrdering\":\"false\",\n\t\"deviceType\":\"Polycom VVX1500\",\n\t\"protocol\":\"SIP 2.0\",\n\t\"useCustomUserNamePassword\":false,\n\t\"transportProtocol\":\"UDP\",\n\t\"deviceName\":\"sysdevice1\"\n}"},"url":"{{url}}/api/v2/system/devices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0026a6e1-2543-47fd-8812-d5f346044680","name":"System Device","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"profile\":\"Intelligent Proxy Addressing\",\n\t\"staticRegistrationCapable\":\"false\",\n\t\"configType\":\"2 File Configuration\",\n\t\"protocolChoice\":[\"SIP 2.0\"],\n\t\"isIpAddressOptional\":\"true\",\n\t\"useDomain\":\"true\",\n\t\"isMobilityManagerDevice\":\"false\",\n\t\"deviceConfigurationOption\":\"Device Management\",\n\t\"staticLineOrdering\":\"false\",\n\t\"deviceType\":\"Polycom_VVX400\",\n\t\"protocol\":\"SIP 2.0\",\n\t\"useCustomUserNamePassword\":false,\n\t\"transportProtocol\":\"UDP\",\n\t\"deviceName\":\"pbs-test-system-device-1\"\n}"},"url":"{{url}}/api/v2/system/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:37:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"71f2ed19-9106-4d46-8ea7-039e9d78108d"},{"name":"System Device","id":"e4dbcaaf-c641-4e8e-b665-eb4dd5981419","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"deviceType\":\"aastra 01\",\n\t\"protocol\":\"SIP 2.0\",\n\t\"transportProtocol\":\"UDP\",\n\t\"useCustomUserNamePassword\":false,\n\t\"deviceName\":\"sysdevice1\",\n\t\"deviceLevel\":\"System\",\n\t\"macAddress\": \"0123456789AC\"\n}"},"url":"{{url}}/api/v2/system/devices","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a9103b6a-bc58-46c3-b358-02addf7a4498","name":"System Device","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"deviceType\":\"Polycom_VVX400\",\n\t\"protocol\":\"SIP 2.0\",\n\t\"transportProtocol\":\"UDP\",\n\t\"useCustomUserNamePassword\":false,\n\t\"deviceName\":\"pbs-test-system-device-1\",\n\t\"deviceLevel\":\"System\"\n}"},"url":"{{url}}/api/v2/system/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:39:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"e4dbcaaf-c641-4e8e-b665-eb4dd5981419"},{"name":"System Device","id":"1e92a2db-f121-47a6-a3fe-dd619324ba40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/devices?deviceName=sysdevice1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"sysdevice1"}],"variable":[]}},"response":[{"id":"85b4c884-b52a-4e9c-8921-97a954ad9675","name":"System Device","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/system/devices?deviceName=pbs-test-system-device-1","host":["{{url}}"],"path":["api","v2","system","devices"],"query":[{"key":"deviceName","value":"pbs-test-system-device-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:39:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1e92a2db-f121-47a6-a3fe-dd619324ba40"},{"name":"Group Device Reset","id":"8107df74-1561-4bed-b03e-2b553f00b81b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"scott-1\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/devices/reset","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","reset"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d766cae4-17f2-4455-9d13-b8788e2fe929","name":"Group Device Reset","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"9709580001-dev1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/devices/reset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:12:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8107df74-1561-4bed-b03e-2b553f00b81b"},{"name":"Group Device Rebuild","id":"5e7f1c52-12d1-4460-9fd8-5710de7e6405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"scott-1\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/devices/rebuild","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","rebuild"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"45710161-c779-474d-9d71-10d701b5716d","name":"Group Device Rebuild","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"9709580001-dev1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/devices/rebuild"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:12:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5e7f1c52-12d1-4460-9fd8-5710de7e6405"},{"name":"Service Provider Device Reset","id":"90908ea8-e782-4b09-be3a-aa449006c666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"ent1device2\",\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/reset","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","reset"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1487f82d-804b-46bd-8424-1495a4c1c6c8","name":"Service Provider Device Reset","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"odin.mock.ent1-device1\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/reset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:13:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"90908ea8-e782-4b09-be3a-aa449006c666"},{"name":"Service Provider Device Rebuild","id":"9dabc838-abe6-423a-878f-62a1df465f63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"NewDeviceTagsPoly5\",\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/rebuild","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","rebuild"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"955644f9-6fd7-49f8-a36f-023638ac47e0","name":"Service Provider Device Rebuild","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"odin.mock.ent1-device1\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/rebuild"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:13:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9dabc838-abe6-423a-878f-62a1df465f63"},{"name":"System Device Reset","id":"cd1e9b44-ea63-4714-b55a-961f73fb9eeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"Lab VVX1500\"\n}"},"url":"{{url}}/api/v2/system/devices/reset","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","reset"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9cc8c642-45d1-4f62-a2a4-ed4d367623f1","name":"Service Provider Device Reset","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"odin.mock.ent1-device1\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/reset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:13:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"cd1e9b44-ea63-4714-b55a-961f73fb9eeb"},{"name":"Systen Device Rebuild","id":"78e1cc37-95ca-4e9c-ba9a-3a26865413bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"Lab VVX1500\"\n}"},"url":"{{url}}/api/v2/system/devices/rebuild","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","rebuild"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"944c9d3e-da88-40f0-9c05-7fae4fcbbd11","name":"Service Provider Device Rebuild","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"odin.mock.ent1-device1\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/rebuild"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 15:13:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"78e1cc37-95ca-4e9c-ba9a-3a26865413bd"},{"name":"Group Device Files","id":"026d26ff-ff74-4055-a987-1ba8e1c2b118","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/devices/files?deviceName=4001-dev1-video&groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","files"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"4001-dev1-video"},{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"ed8495d5-39e2-45a6-90dc-3de679364761","name":"Group Device Files","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices/files?deviceName=9709580001-dev1&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","devices","files"],"query":[{"key":"deviceName","value":"9709580001-dev1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 16:30:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2140"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/9709580001-dev1%20(Group%20odin.mock.ent1-odin.mock.grp1).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/2/6192/261921865/Polycom_VVX400/Custom_odin.mock.grp1_9709580001-dev1_%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"000000000000.cfg\",\n        \"isAuthenticated\": false,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/000000000000.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/000000000000_2017.10.17%2016:50:14:167%20EDT.cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/000000000000.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"phone%BWDEVICEID%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/phone9709580001-dev1.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/phone9709580001-dev1%20(Group%20odin.mock.ent1-odin.mock.grp1).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/phone%25BWDEVICEID%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"qsetup.cfg\",\n        \"isAuthenticated\": false,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/qsetup.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/qsetup_2017.10.17%2016:50:14:360%20EDT.cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/qsetup.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"sys.cfg\",\n        \"isAuthenticated\": false,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/sys.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/sys-2017.10.17%2016:50:14:442%20EDT.cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/sys.cfg.template\"\n    }\n]"}],"_postman_id":"026d26ff-ff74-4055-a987-1ba8e1c2b118"},{"name":"Group Device File","id":"56c099ca-8339-46e0-9edc-109b5b267afa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwMzk4Mzg5LCJuYnAiOjE1NDAzOTgzODksImV4cCI6MTU0MDQ0MTU4OSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbFJpVWpRNFdUaGlaVnd2WlVZeVhDOUtUV1p2ZWpscVVUMDlJaXdpZG1Gc2RXVWlPaUl6WW5aa2RWbExlamhMUzJSQlkzSktjVmg2VDBsak5UVnlVM0EzWld4RVVrZGNMME5qTld4V05sWlhVVDBpTENKdFlXTWlPaUpqWldVd1lUQXpaVEkzTUdSak5EaG1NemRtWXpnd05qa3hNRFkyTjJGallqUmlNekJtWkRCaU16TTFOV1l6WkRFMFpqSTBaakl4WW1WaU9EUmlaREpqSW4wPSIsInAiOiJleUpwZGlJNklpc3dWa2cxTkVkUFVWb3lXbmt4UzNGY0wzUlpaM1pSUFQwaUxDSjJZV3gxWlNJNklucHBkSFJ6UVZjeldWWjNObEpOVVhOSVpXMUphbmRvVEVaWk1tUXdRMHRaYVhSaWRHWmNMMDFGZUVsUWJrTnRlRGhPY1VnM1EwMVpWR3AwTUdKcU1HMXNNM1paVjJVNGVWcFlXRkp6U25OUmNIRjVabGRVVVQwOUlpd2liV0ZqSWpvaVpqWXpOekJtTVdNeFl6VmhNbVUzWXpBM09XWmxNR1kyTldVM05EQTVaRFJpTUdKaVpXSm1ZVE13TmpobE0yUXhNRGRpWWpSaVlqVTNNell4TWpVNVpTSjkiLCJlIjoiZXlKcGRpSTZJbEJ4UmxCb1NHRmlWakkzUVhKYWJuVnBPRWN6YlVFOVBTSXNJblpoYkhWbElqb2lhWG8zZVZsSWExaG5LMFY2Y21ONE0zWXhWbE5GZHowOUlpd2liV0ZqSWpvaVkyVXhNRGhsTXpNNVlqYzJZekZqT0RsbVlqaG1aV1kwTTJVek1HRTRNRGRtTkdOak9EWTJOamszTmpCa05qUXdNelptWWpCa016azFNMlppTkRWaU5pSjkifX0.Ca_taMRY36LUHqK3LA8yGtKn1AIKsKlu5nkk1Vytn7I"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":"{{url}}/api/v2/groups/devices/files?deviceName=sub_00069529_274586&fileFormat=%BWMACADDRESS%.cfg&groupId=customer_7021&serviceProviderId=customer_7021","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","files"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"sub_00069529_274586"},{"key":"fileFormat","value":"%BWMACADDRESS%.cfg"},{"key":"groupId","value":"customer_7021"},{"key":"serviceProviderId","value":"customer_7021"}],"variable":[]}},"response":[{"id":"5027e515-469f-43aa-852f-6a4fa9cf1f4b","name":"Group Device File","originalRequest":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwMzk4Mzg5LCJuYnAiOjE1NDAzOTgzODksImV4cCI6MTU0MDQ0MTU4OSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbFJpVWpRNFdUaGlaVnd2WlVZeVhDOUtUV1p2ZWpscVVUMDlJaXdpZG1Gc2RXVWlPaUl6WW5aa2RWbExlamhMUzJSQlkzSktjVmg2VDBsak5UVnlVM0EzWld4RVVrZGNMME5qTld4V05sWlhVVDBpTENKdFlXTWlPaUpqWldVd1lUQXpaVEkzTUdSak5EaG1NemRtWXpnd05qa3hNRFkyTjJGallqUmlNekJtWkRCaU16TTFOV1l6WkRFMFpqSTBaakl4WW1WaU9EUmlaREpqSW4wPSIsInAiOiJleUpwZGlJNklpc3dWa2cxTkVkUFVWb3lXbmt4UzNGY0wzUlpaM1pSUFQwaUxDSjJZV3gxWlNJNklucHBkSFJ6UVZjeldWWjNObEpOVVhOSVpXMUphbmRvVEVaWk1tUXdRMHRaYVhSaWRHWmNMMDFGZUVsUWJrTnRlRGhPY1VnM1EwMVpWR3AwTUdKcU1HMXNNM1paVjJVNGVWcFlXRkp6U25OUmNIRjVabGRVVVQwOUlpd2liV0ZqSWpvaVpqWXpOekJtTVdNeFl6VmhNbVUzWXpBM09XWmxNR1kyTldVM05EQTVaRFJpTUdKaVpXSm1ZVE13TmpobE0yUXhNRGRpWWpSaVlqVTNNell4TWpVNVpTSjkiLCJlIjoiZXlKcGRpSTZJbEJ4UmxCb1NHRmlWakkzUVhKYWJuVnBPRWN6YlVFOVBTSXNJblpoYkhWbElqb2lhWG8zZVZsSWExaG5LMFY2Y21ONE0zWXhWbE5GZHowOUlpd2liV0ZqSWpvaVkyVXhNRGhsTXpNNVlqYzJZekZqT0RsbVlqaG1aV1kwTTJVek1HRTRNRGRtTkdOak9EWTJOamszTmpCa05qUXdNelptWWpCa016azFNMlppTkRWaU5pSjkifX0.Ca_taMRY36LUHqK3LA8yGtKn1AIKsKlu5nkk1Vytn7I"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":{"raw":"{{url}}/api/v2/groups/devices/files?deviceName=9709580001-dev1&fileFormat=%25BWMACADDRESS%25.cfg&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","devices","files"],"query":[{"key":"deviceName","value":"9709580001-dev1"},{"key":"fileFormat","value":"%25BWMACADDRESS%25.cfg"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 16:30:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"752"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fileSource\": \"Custom\",\n    \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/2/6192/261921865/Polycom_VVX400/Custom_odin.mock.grp1_9709580001-dev1_%BWMACADDRESS%.cfg.template\",\n    \"accessUrl\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/{%25BWMACADDRESS%25}.cfg\",\n    \"repositoryUrl\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/9709580001-dev1%20(Group%20odin.mock.ent1-odin.mock.grp1).cfg\",\n    \"templateUrl\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/2/6192/261921865/Polycom_VVX400/Custom_odin.mock.grp1_9709580001-dev1_%25BWMACADDRESS%25.cfg.template\",\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"9709580001-dev1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"}],"_postman_id":"56c099ca-8339-46e0-9edc-109b5b267afa"},{"name":"System Device File","id":"885294b7-2228-4968-8d60-e92cfc7c75fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Custom\",\n    \"fileFormat\": \"user%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"Lab VVX1500\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4KPCEtLSBEZWZhdWx0IE1hc3RlciBTSVAgQ29uZmlndXJhdGlvbiBGaWxlLS0+CjwhLS0gRm9yIGluZm9ybWF0aW9uIG9uIGNvbmZpZ3VyaW5nIFBvbHljb20gVm9JUCBwaG9uZXMgcGxlYXNlIHJlZmVyIHRvIHRoZSAtLT4KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+CjwhLS0gaHR0cDovL3d3dy5wb2x5Y29tLmNvbS9jb21tb24vZG9jdW1lbnRzL3doaXRlcGFwZXJzL2NvbmZpZ3VyYXRpb25fZmlsZV9tYW5hZ2VtZW50X29uX3NvdW5kcG9pbnRfaXBfcGhvbmVzLnBkZiAtLT4KPCEtLSAkUkNTZmlsZTogMDAwMDAwMDAwMDAwLmNmZyx2ICQgICRSZXZpc2lvbjogMS4yMy44LjMgJCAtLT4KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9ImZ0cDovLzE2Mi4yNTAuMjQwLjEzMS9maXJtd2FyZS8lZmlybXdhcmUlL3NpcC5sZCIgQ09ORklHX0ZJTEVTPSJ1c2VyJUJXTUFDQUREUkVTUyUuY2ZnLGZlYXR1cmVzJUJXTUFDQUREUkVTUyUuY2ZnLHN5c3RlbSVCV01BQ0FERFJFU1MlLmNmZywlQldNQUNBRERSRVNTJV9kZWN0LmNmZyIgTUlTQ19GSUxFUz0iIiBMT0dfRklMRV9ESVJFQ1RPUlk9IiIgT1ZFUlJJREVTX0RJUkVDVE9SWT0iIiBDT05UQUNUU19ESVJFQ1RPUlk9IiIgTElDRU5TRV9ESVJFQ1RPUlk9IiI+CjwvQVBQTElDQVRJT04+Cg==\"\n}"},"url":"{{url}}/api/v2/system/devices/files","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","files"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6ac61dea-3c32-44f1-ac1d-26b6ecb9c8bf","name":"Service Provider Device File","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Custom\",\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4KPCEtLSBEZWZhdWx0IE1hc3RlciBTSVAgQ29uZmlndXJhdGlvbiBGaWxlLS0+CjwhLS0gRm9yIGluZm9ybWF0aW9uIG9uIGNvbmZpZ3VyaW5nIFBvbHljb20gVm9JUCBwaG9uZXMgcGxlYXNlIHJlZmVyIHRvIHRoZSAtLT4KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+CjwhLS0gaHR0cDovL3d3dy5wb2x5Y29tLmNvbS9jb21tb24vZG9jdW1lbnRzL3doaXRlcGFwZXJzL2NvbmZpZ3VyYXRpb25fZmlsZV9tYW5hZ2VtZW50X29uX3NvdW5kcG9pbnRfaXBfcGhvbmVzLnBkZiAtLT4KPCEtLSAkUkNTZmlsZTogMDAwMDAwMDAwMDAwLmNmZyx2ICQgICRSZXZpc2lvbjogMS4yMy44LjMgJCAtLT4KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9ImZ0cDovLzE2Mi4yNTAuMjQwLjEzMS9maXJtd2FyZS8lZmlybXdhcmUlL3NpcC5sZCIgQ09ORklHX0ZJTEVTPSJ1c2VyJUJXTUFDQUREUkVTUyUuY2ZnLGZlYXR1cmVzJUJXTUFDQUREUkVTUyUuY2ZnLHN5c3RlbSVCV01BQ0FERFJFU1MlLmNmZywlQldNQUNBRERSRVNTJV9kZWN0LmNmZyIgTUlTQ19GSUxFUz0iIiBMT0dfRklMRV9ESVJFQ1RPUlk9IiIgT1ZFUlJJREVTX0RJUkVDVE9SWT0iIiBDT05UQUNUU19ESVJFQ1RPUlk9IiIgTElDRU5TRV9ESVJFQ1RPUlk9IiI+CjwvQVBQTElDQVRJT04+Cg==\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 21:37:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"885294b7-2228-4968-8d60-e92cfc7c75fc"},{"name":"Service Provider Device Files","id":"c34c3ca8-a3ea-4923-8069-600deb6ccd7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/devices/files?deviceName=PolycomFlexibleSeatingVVX500&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","files"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"4c97f1f2-7eab-4fee-b204-7fdf0218ab34","name":"Service Provider Device Files","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices/files?deviceName=PolycomFlexibleSeatingVVX500&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","devices","files"],"query":[{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"},{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 21:23:11 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2412"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"fileFormat\": \"%BWMACADDRESS%-app.log\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}-app.log\",\n        \"repositoryURL\": null,\n        \"templateURL\": null\n    },\n    {\n        \"fileFormat\": \"%BWMACADDRESS%-boot.log\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}-boot.log\",\n        \"repositoryURL\": null,\n        \"templateURL\": null\n    },\n    {\n        \"fileFormat\": \"%BWMACADDRESS%-calls.xml\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}-calls.xml\",\n        \"repositoryURL\": null,\n        \"templateURL\": null\n    },\n    {\n        \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/PolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"features%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/features{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/featuresPolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/features%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"system%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/system{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/systemPolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/system%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"user%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/user{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/userPolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/user%25BWMACADDRESS%25.cfg.template\"\n    }\n]"}],"_postman_id":"c34c3ca8-a3ea-4923-8069-600deb6ccd7e"},{"name":"Service Provider Device File","id":"fad2b95b-33b1-47c2-9bd5-a30cc77a18a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwMzk4Mzg5LCJuYnAiOjE1NDAzOTgzODksImV4cCI6MTU0MDQ0MTU4OSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbFJpVWpRNFdUaGlaVnd2WlVZeVhDOUtUV1p2ZWpscVVUMDlJaXdpZG1Gc2RXVWlPaUl6WW5aa2RWbExlamhMUzJSQlkzSktjVmg2VDBsak5UVnlVM0EzWld4RVVrZGNMME5qTld4V05sWlhVVDBpTENKdFlXTWlPaUpqWldVd1lUQXpaVEkzTUdSak5EaG1NemRtWXpnd05qa3hNRFkyTjJGallqUmlNekJtWkRCaU16TTFOV1l6WkRFMFpqSTBaakl4WW1WaU9EUmlaREpqSW4wPSIsInAiOiJleUpwZGlJNklpc3dWa2cxTkVkUFVWb3lXbmt4UzNGY0wzUlpaM1pSUFQwaUxDSjJZV3gxWlNJNklucHBkSFJ6UVZjeldWWjNObEpOVVhOSVpXMUphbmRvVEVaWk1tUXdRMHRaYVhSaWRHWmNMMDFGZUVsUWJrTnRlRGhPY1VnM1EwMVpWR3AwTUdKcU1HMXNNM1paVjJVNGVWcFlXRkp6U25OUmNIRjVabGRVVVQwOUlpd2liV0ZqSWpvaVpqWXpOekJtTVdNeFl6VmhNbVUzWXpBM09XWmxNR1kyTldVM05EQTVaRFJpTUdKaVpXSm1ZVE13TmpobE0yUXhNRGRpWWpSaVlqVTNNell4TWpVNVpTSjkiLCJlIjoiZXlKcGRpSTZJbEJ4UmxCb1NHRmlWakkzUVhKYWJuVnBPRWN6YlVFOVBTSXNJblpoYkhWbElqb2lhWG8zZVZsSWExaG5LMFY2Y21ONE0zWXhWbE5GZHowOUlpd2liV0ZqSWpvaVkyVXhNRGhsTXpNNVlqYzJZekZqT0RsbVlqaG1aV1kwTTJVek1HRTRNRGRtTkdOak9EWTJOamszTmpCa05qUXdNelptWWpCa016azFNMlppTkRWaU5pSjkifX0.Ca_taMRY36LUHqK3LA8yGtKn1AIKsKlu5nkk1Vytn7I"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":"{{url}}/api/v2/service-providers/devices/files?deviceName=PolycomFlexibleSeatingVVX500&fileFormat=%25BWMACADDRESS%25.cfg&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","files"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"},{"key":"fileFormat","value":"%25BWMACADDRESS%25.cfg"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"f199c830-41bf-46fc-9575-4a11f6aa1a50","name":"Service Provider Device File","originalRequest":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwMzk4Mzg5LCJuYnAiOjE1NDAzOTgzODksImV4cCI6MTU0MDQ0MTU4OSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbFJpVWpRNFdUaGlaVnd2WlVZeVhDOUtUV1p2ZWpscVVUMDlJaXdpZG1Gc2RXVWlPaUl6WW5aa2RWbExlamhMUzJSQlkzSktjVmg2VDBsak5UVnlVM0EzWld4RVVrZGNMME5qTld4V05sWlhVVDBpTENKdFlXTWlPaUpqWldVd1lUQXpaVEkzTUdSak5EaG1NemRtWXpnd05qa3hNRFkyTjJGallqUmlNekJtWkRCaU16TTFOV1l6WkRFMFpqSTBaakl4WW1WaU9EUmlaREpqSW4wPSIsInAiOiJleUpwZGlJNklpc3dWa2cxTkVkUFVWb3lXbmt4UzNGY0wzUlpaM1pSUFQwaUxDSjJZV3gxWlNJNklucHBkSFJ6UVZjeldWWjNObEpOVVhOSVpXMUphbmRvVEVaWk1tUXdRMHRaYVhSaWRHWmNMMDFGZUVsUWJrTnRlRGhPY1VnM1EwMVpWR3AwTUdKcU1HMXNNM1paVjJVNGVWcFlXRkp6U25OUmNIRjVabGRVVVQwOUlpd2liV0ZqSWpvaVpqWXpOekJtTVdNeFl6VmhNbVUzWXpBM09XWmxNR1kyTldVM05EQTVaRFJpTUdKaVpXSm1ZVE13TmpobE0yUXhNRGRpWWpSaVlqVTNNell4TWpVNVpTSjkiLCJlIjoiZXlKcGRpSTZJbEJ4UmxCb1NHRmlWakkzUVhKYWJuVnBPRWN6YlVFOVBTSXNJblpoYkhWbElqb2lhWG8zZVZsSWExaG5LMFY2Y21ONE0zWXhWbE5GZHowOUlpd2liV0ZqSWpvaVkyVXhNRGhsTXpNNVlqYzJZekZqT0RsbVlqaG1aV1kwTTJVek1HRTRNRGRtTkdOak9EWTJOamszTmpCa05qUXdNelptWWpCa016azFNMlppTkRWaU5pSjkifX0.Ca_taMRY36LUHqK3LA8yGtKn1AIKsKlu5nkk1Vytn7I"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices/files?deviceName=PolycomFlexibleSeatingVVX500&fileFormat=%25BWMACADDRESS%25.cfg&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","devices","files"],"query":[{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"},{"key":"fileFormat","value":"%25BWMACADDRESS%25.cfg"},{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 21:29:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"650"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fileSource\": \"Default\",\n    \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_VVX500/%BWMACADDRESS%.cfg.template\",\n    \"accessUrl\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}.cfg\",\n    \"repositoryUrl\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/PolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n    \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/%25BWMACADDRESS%25.cfg.template\",\n    \"extendedCaptureEnabled\": false,\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"fad2b95b-33b1-47c2-9bd5-a30cc77a18a0"},{"name":"Service Provider Device File","id":"a0e608d4-8dd6-4b2a-9ac4-99da5779369e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Default\",\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4KPCEtLSBEZWZhdWx0IE1hc3RlciBTSVAgQ29uZmlndXJhdGlvbiBGaWxlLS0+CjwhLS0gRm9yIGluZm9ybWF0aW9uIG9uIGNvbmZpZ3VyaW5nIFBvbHljb20gVm9JUCBwaG9uZXMgcGxlYXNlIHJlZmVyIHRvIHRoZSAtLT4KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+CjwhLS0gaHR0cDovL3d3dy5wb2x5Y29tLmNvbS9jb21tb24vZG9jdW1lbnRzL3doaXRlcGFwZXJzL2NvbmZpZ3VyYXRpb25fZmlsZV9tYW5hZ2VtZW50X29uX3NvdW5kcG9pbnRfaXBfcGhvbmVzLnBkZiAtLT4KPCEtLSAkUkNTZmlsZTogMDAwMDAwMDAwMDAwLmNmZyx2ICQgICRSZXZpc2lvbjogMS4yMy44LjMgJCAtLT4KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9ImZ0cDovLzE2Mi4yNTAuMjQwLjEzMS9maXJtd2FyZS8lZmlybXdhcmUlL3NpcC5sZCIgQ09ORklHX0ZJTEVTPSJ1c2VyJUJXTUFDQUREUkVTUyUuY2ZnLGZlYXR1cmVzJUJXTUFDQUREUkVTUyUuY2ZnLHN5c3RlbSVCV01BQ0FERFJFU1MlLmNmZywlQldNQUNBRERSRVNTJV9kZWN0LmNmZyIgTUlTQ19GSUxFUz0iIiBMT0dfRklMRV9ESVJFQ1RPUlk9IiIgT1ZFUlJJREVTX0RJUkVDVE9SWT0iIiBDT05UQUNUU19ESVJFQ1RPUlk9IiIgTElDRU5TRV9ESVJFQ1RPUlk9IiI+CjwvQVBQTElDQVRJT04+Cg==\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/files","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","files"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5153f91a-b06d-4183-ad39-2c068fe5e3e1","name":"Service Provider Device File","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Custom\",\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4KPCEtLSBEZWZhdWx0IE1hc3RlciBTSVAgQ29uZmlndXJhdGlvbiBGaWxlLS0+CjwhLS0gRm9yIGluZm9ybWF0aW9uIG9uIGNvbmZpZ3VyaW5nIFBvbHljb20gVm9JUCBwaG9uZXMgcGxlYXNlIHJlZmVyIHRvIHRoZSAtLT4KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+CjwhLS0gaHR0cDovL3d3dy5wb2x5Y29tLmNvbS9jb21tb24vZG9jdW1lbnRzL3doaXRlcGFwZXJzL2NvbmZpZ3VyYXRpb25fZmlsZV9tYW5hZ2VtZW50X29uX3NvdW5kcG9pbnRfaXBfcGhvbmVzLnBkZiAtLT4KPCEtLSAkUkNTZmlsZTogMDAwMDAwMDAwMDAwLmNmZyx2ICQgICRSZXZpc2lvbjogMS4yMy44LjMgJCAtLT4KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9ImZ0cDovLzE2Mi4yNTAuMjQwLjEzMS9maXJtd2FyZS8lZmlybXdhcmUlL3NpcC5sZCIgQ09ORklHX0ZJTEVTPSJ1c2VyJUJXTUFDQUREUkVTUyUuY2ZnLGZlYXR1cmVzJUJXTUFDQUREUkVTUyUuY2ZnLHN5c3RlbSVCV01BQ0FERFJFU1MlLmNmZywlQldNQUNBRERSRVNTJV9kZWN0LmNmZyIgTUlTQ19GSUxFUz0iIiBMT0dfRklMRV9ESVJFQ1RPUlk9IiIgT1ZFUlJJREVTX0RJUkVDVE9SWT0iIiBDT05UQUNUU19ESVJFQ1RPUlk9IiIgTElDRU5TRV9ESVJFQ1RPUlk9IiI+CjwvQVBQTElDQVRJT04+Cg==\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 21:37:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a0e608d4-8dd6-4b2a-9ac4-99da5779369e"},{"name":"System Device Files","id":"e139fa78-55b8-4475-b08c-2ab2847e5d8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/devices/files?deviceName=Lab VVX1500","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","files"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"Lab VVX1500"},{"disabled":true,"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"5821d20c-78d3-4703-afdb-9d45dc70ada3","name":"Service Provider Device Files","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices/files?deviceName=PolycomFlexibleSeatingVVX500&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","devices","files"],"query":[{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"},{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 21:23:11 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2412"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"fileFormat\": \"%BWMACADDRESS%-app.log\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}-app.log\",\n        \"repositoryURL\": null,\n        \"templateURL\": null\n    },\n    {\n        \"fileFormat\": \"%BWMACADDRESS%-boot.log\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}-boot.log\",\n        \"repositoryURL\": null,\n        \"templateURL\": null\n    },\n    {\n        \"fileFormat\": \"%BWMACADDRESS%-calls.xml\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}-calls.xml\",\n        \"repositoryURL\": null,\n        \"templateURL\": null\n    },\n    {\n        \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/PolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"features%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/features{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/featuresPolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/features%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"system%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/system{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/systemPolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/system%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"user%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/user{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/userPolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/user%25BWMACADDRESS%25.cfg.template\"\n    }\n]"}],"_postman_id":"e139fa78-55b8-4475-b08c-2ab2847e5d8d"},{"name":"System Device File","id":"92abb260-9c89-4463-977a-b614e6666e92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwMzk4Mzg5LCJuYnAiOjE1NDAzOTgzODksImV4cCI6MTU0MDQ0MTU4OSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbFJpVWpRNFdUaGlaVnd2WlVZeVhDOUtUV1p2ZWpscVVUMDlJaXdpZG1Gc2RXVWlPaUl6WW5aa2RWbExlamhMUzJSQlkzSktjVmg2VDBsak5UVnlVM0EzWld4RVVrZGNMME5qTld4V05sWlhVVDBpTENKdFlXTWlPaUpqWldVd1lUQXpaVEkzTUdSak5EaG1NemRtWXpnd05qa3hNRFkyTjJGallqUmlNekJtWkRCaU16TTFOV1l6WkRFMFpqSTBaakl4WW1WaU9EUmlaREpqSW4wPSIsInAiOiJleUpwZGlJNklpc3dWa2cxTkVkUFVWb3lXbmt4UzNGY0wzUlpaM1pSUFQwaUxDSjJZV3gxWlNJNklucHBkSFJ6UVZjeldWWjNObEpOVVhOSVpXMUphbmRvVEVaWk1tUXdRMHRaYVhSaWRHWmNMMDFGZUVsUWJrTnRlRGhPY1VnM1EwMVpWR3AwTUdKcU1HMXNNM1paVjJVNGVWcFlXRkp6U25OUmNIRjVabGRVVVQwOUlpd2liV0ZqSWpvaVpqWXpOekJtTVdNeFl6VmhNbVUzWXpBM09XWmxNR1kyTldVM05EQTVaRFJpTUdKaVpXSm1ZVE13TmpobE0yUXhNRGRpWWpSaVlqVTNNell4TWpVNVpTSjkiLCJlIjoiZXlKcGRpSTZJbEJ4UmxCb1NHRmlWakkzUVhKYWJuVnBPRWN6YlVFOVBTSXNJblpoYkhWbElqb2lhWG8zZVZsSWExaG5LMFY2Y21ONE0zWXhWbE5GZHowOUlpd2liV0ZqSWpvaVkyVXhNRGhsTXpNNVlqYzJZekZqT0RsbVlqaG1aV1kwTTJVek1HRTRNRGRtTkdOak9EWTJOamszTmpCa05qUXdNelptWWpCa016azFNMlppTkRWaU5pSjkifX0.Ca_taMRY36LUHqK3LA8yGtKn1AIKsKlu5nkk1Vytn7I"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":"{{url}}/api/v2/system/devices/files?deviceName=Lab VVX1500&fileFormat=user%BWMACADDRESS%.cfg&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","files"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"Lab VVX1500"},{"key":"fileFormat","value":"user%BWMACADDRESS%.cfg"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"f2c4e486-e2c0-40ab-bd00-d4365c491797","name":"Service Provider Device File","originalRequest":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwMzk4Mzg5LCJuYnAiOjE1NDAzOTgzODksImV4cCI6MTU0MDQ0MTU4OSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbFJpVWpRNFdUaGlaVnd2WlVZeVhDOUtUV1p2ZWpscVVUMDlJaXdpZG1Gc2RXVWlPaUl6WW5aa2RWbExlamhMUzJSQlkzSktjVmg2VDBsak5UVnlVM0EzWld4RVVrZGNMME5qTld4V05sWlhVVDBpTENKdFlXTWlPaUpqWldVd1lUQXpaVEkzTUdSak5EaG1NemRtWXpnd05qa3hNRFkyTjJGallqUmlNekJtWkRCaU16TTFOV1l6WkRFMFpqSTBaakl4WW1WaU9EUmlaREpqSW4wPSIsInAiOiJleUpwZGlJNklpc3dWa2cxTkVkUFVWb3lXbmt4UzNGY0wzUlpaM1pSUFQwaUxDSjJZV3gxWlNJNklucHBkSFJ6UVZjeldWWjNObEpOVVhOSVpXMUphbmRvVEVaWk1tUXdRMHRaYVhSaWRHWmNMMDFGZUVsUWJrTnRlRGhPY1VnM1EwMVpWR3AwTUdKcU1HMXNNM1paVjJVNGVWcFlXRkp6U25OUmNIRjVabGRVVVQwOUlpd2liV0ZqSWpvaVpqWXpOekJtTVdNeFl6VmhNbVUzWXpBM09XWmxNR1kyTldVM05EQTVaRFJpTUdKaVpXSm1ZVE13TmpobE0yUXhNRGRpWWpSaVlqVTNNell4TWpVNVpTSjkiLCJlIjoiZXlKcGRpSTZJbEJ4UmxCb1NHRmlWakkzUVhKYWJuVnBPRWN6YlVFOVBTSXNJblpoYkhWbElqb2lhWG8zZVZsSWExaG5LMFY2Y21ONE0zWXhWbE5GZHowOUlpd2liV0ZqSWpvaVkyVXhNRGhsTXpNNVlqYzJZekZqT0RsbVlqaG1aV1kwTTJVek1HRTRNRGRtTkdOak9EWTJOamszTmpCa05qUXdNelptWWpCa016azFNMlppTkRWaU5pSjkifX0.Ca_taMRY36LUHqK3LA8yGtKn1AIKsKlu5nkk1Vytn7I"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":{"raw":"{{url}}/api/v2/service-providers/devices/files?deviceName=PolycomFlexibleSeatingVVX500&fileFormat=%25BWMACADDRESS%25.cfg&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","devices","files"],"query":[{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"},{"key":"fileFormat","value":"%25BWMACADDRESS%25.cfg"},{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 21:29:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"650"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fileSource\": \"Default\",\n    \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_VVX500/%BWMACADDRESS%.cfg.template\",\n    \"accessUrl\": \"http://labsetup.alliedtelecom.net:80/dms/vvx500/{%25BWMACADDRESS%25}.cfg\",\n    \"repositoryUrl\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_VVX500/PolycomFlexibleSeatingVVX500%20(SP%20ent.odin).cfg\",\n    \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_VVX500/%25BWMACADDRESS%25.cfg.template\",\n    \"extendedCaptureEnabled\": false,\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"92abb260-9c89-4463-977a-b614e6666e92"},{"name":"Group Device File","id":"0dc43934-e8b6-4894-8ca8-02c6a5f1a97c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Custom\",\n    \"fileFormat\": \"user%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"4001-dev1-video\",\n    \"groupId\": \"grp.odin\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4NCjwhLS0gRGVmYXVsdCBNYXN0ZXIgU0lQIENvbmZpZ3VyYXRpb24gRmlsZS0tPg0KPCEtLSBGb3IgaW5mb3JtYXRpb24gb24gY29uZmlndXJpbmcgUG9seWNvbSBWb0lQIHBob25lcyBwbGVhc2UgcmVmZXIgdG8gdGhlIC0tPg0KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+DQo8IS0tIGh0dHA6Ly93d3cucG9seWNvbS5jb20vY29tbW9uL2RvY3VtZW50cy93aGl0ZXBhcGVycy9jb25maWd1cmF0aW9uX2ZpbGVfbWFuYWdlbWVudF9vbl9zb3VuZHBvaW50X2lwX3Bob25lcy5wZGYgLS0+DQo8IS0tICRSQ1NmaWxlOiAwMDAwMDAwMDAwMDAuY2ZnLHYgJCAgJFJldmlzaW9uOiAxLjIzLjguMyAkIC0tPg0KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9IiVBUFBfVkVSU0lPTiUuc2lwLmxkIiBDT05GSUdfRklMRVM9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIiBNSVNDX0ZJTEVTPSIiIExPR19GSUxFX0RJUkVDVE9SWT0iIiBPVkVSUklERVNfRElSRUNUT1JZPSIiIENPTlRBQ1RTX0RJUkVDVE9SWT0iIiBMSUNFTlNFX0RJUkVDVE9SWT0iIj4NCg0KICAgPEFQUExJQ0FUSU9OX1ZWWDMwMCBBUFBfRklMRV9QQVRIX1ZWWDMwMD0iJUFQUF9WRVJTSU9OX1ZWWC0zMDAtNDAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlgzMDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQogICA8QVBQTElDQVRJT05fVlZYNDAwIEFQUF9GSUxFX1BBVEhfVlZYNDAwPSIlQVBQX1ZFUlNJT05fVlZYLTMwMC00MDAlLnNpcC5sZCIgQ09ORklHX0ZJTEVTX1ZWWDQwMD0icGhvbmUlQldERVZJQ0VJRCUuY2ZnLHN5cy5jZmciLz4NCiAgIDxBUFBMSUNBVElPTl9WVlg1MDAgQVBQX0ZJTEVfUEFUSF9WVlg1MDA9IiVBUFBfVkVSU0lPTl9WVlgtNTAwLTYwMCUuc2lwLmxkIiBDT05GSUdfRklMRVNfVlZYNTAwPSJwaG9uZSVCV0RFVklDRUlEJS5jZmcsc3lzLmNmZyIvPg0KICAgPEFQUExJQ0FUSU9OX1ZWWDYwMCBBUFBfRklMRV9QQVRIX1ZWWDYwMD0iJUFQUF9WRVJTSU9OX1ZWWC01MDAtNjAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlg2MDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQo8L0FQUExJQ0FUSU9OPg==\"\n}"},"url":"{{url}}/api/v2/groups/devices/files","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","files"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b8152d92-18b0-4105-a3e2-4177fd368e8c","name":"Group Device File","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Custom\",\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceName\": \"9709580001-dev1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4NCjwhLS0gRGVmYXVsdCBNYXN0ZXIgU0lQIENvbmZpZ3VyYXRpb24gRmlsZS0tPg0KPCEtLSBGb3IgaW5mb3JtYXRpb24gb24gY29uZmlndXJpbmcgUG9seWNvbSBWb0lQIHBob25lcyBwbGVhc2UgcmVmZXIgdG8gdGhlIC0tPg0KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+DQo8IS0tIGh0dHA6Ly93d3cucG9seWNvbS5jb20vY29tbW9uL2RvY3VtZW50cy93aGl0ZXBhcGVycy9jb25maWd1cmF0aW9uX2ZpbGVfbWFuYWdlbWVudF9vbl9zb3VuZHBvaW50X2lwX3Bob25lcy5wZGYgLS0+DQo8IS0tICRSQ1NmaWxlOiAwMDAwMDAwMDAwMDAuY2ZnLHYgJCAgJFJldmlzaW9uOiAxLjIzLjguMyAkIC0tPg0KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9IiVBUFBfVkVSU0lPTiUuc2lwLmxkIiBDT05GSUdfRklMRVM9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIiBNSVNDX0ZJTEVTPSIiIExPR19GSUxFX0RJUkVDVE9SWT0iIiBPVkVSUklERVNfRElSRUNUT1JZPSIiIENPTlRBQ1RTX0RJUkVDVE9SWT0iIiBMSUNFTlNFX0RJUkVDVE9SWT0iIj4NCg0KICAgPEFQUExJQ0FUSU9OX1ZWWDMwMCBBUFBfRklMRV9QQVRIX1ZWWDMwMD0iJUFQUF9WRVJTSU9OX1ZWWC0zMDAtNDAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlgzMDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQogICA8QVBQTElDQVRJT05fVlZYNDAwIEFQUF9GSUxFX1BBVEhfVlZYNDAwPSIlQVBQX1ZFUlNJT05fVlZYLTMwMC00MDAlLnNpcC5sZCIgQ09ORklHX0ZJTEVTX1ZWWDQwMD0icGhvbmUlQldERVZJQ0VJRCUuY2ZnLHN5cy5jZmciLz4NCiAgIDxBUFBMSUNBVElPTl9WVlg1MDAgQVBQX0ZJTEVfUEFUSF9WVlg1MDA9IiVBUFBfVkVSU0lPTl9WVlgtNTAwLTYwMCUuc2lwLmxkIiBDT05GSUdfRklMRVNfVlZYNTAwPSJwaG9uZSVCV0RFVklDRUlEJS5jZmcsc3lzLmNmZyIvPg0KICAgPEFQUExJQ0FUSU9OX1ZWWDYwMCBBUFBfRklMRV9QQVRIX1ZWWDYwMD0iJUFQUF9WRVJTSU9OX1ZWWC01MDAtNjAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlg2MDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQo8L0FQUExJQ0FUSU9OPg==\"\n}"},"url":"{{url}}/api/v2/groups/devices/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 16:31:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0dc43934-e8b6-4894-8ca8-02c6a5f1a97c"},{"name":"Group Device Tags","id":"84fe1bdd-eb95-422a-87f0-90fc69be8d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=PolycomIP5000","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","tags"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"PolycomIP5000"}],"variable":[]}},"response":[{"id":"86197c36-67a7-407f-bf0b-ef10b72ce82f","name":"Group Device Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"tagName\": \"%tag_name%\",\n        \"tagValue\": \"tag value\"\n    }\n]"}],"_postman_id":"84fe1bdd-eb95-422a-87f0-90fc69be8d98"},{"name":"Group Device Tags Profile","id":"aa90a67e-bf1f-4c5b-a4b7-afe85f144626","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/devices/profile?serviceProviderId=ent.odin&groupId=grp.odin&deviceType=Polycom VVX 300 DM&deviceName=0101_5957_Poly","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","profile"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"disabled":true,"key":"deviceName","value":"Polycom 300"},{"key":"deviceType","value":"Polycom VVX 300 DM"},{"key":"deviceName","value":"0101_5957_Poly"}],"variable":[]}},"response":[{"id":"e338f570-c709-4c22-a8e3-2c532ab4e488","name":"Group Device Profile","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices/profile?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=Polycom 300&deviceType=Polycom VVX 300 DM","host":["{{url}}"],"path":["api","v2","groups","devices","profile"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"Polycom 300"},{"key":"deviceType","value":"Polycom VVX 300 DM"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Oct 2023 22:16:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"4626"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"Dial Template\",\n    \"name\": \"Polycom Speed Dial Template\",\n    \"deviceType\": \"Polycom VVX 300 DM\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"totalKeys\": 33,\n    \"tagName\": \"Speed Dial #\",\n    \"tagNames\": [\n        \"%LK-SDial-Lbl#%\",\n        \"%LK-SDial-Str#%\"\n    ],\n    \"tags\": [\n        {\n            \"key\": 1,\n            \"name\": \"Speed Dial 1\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl1%\",\n                    \"tagValue\": \"Conference\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str1%\",\n                    \"tagValue\": \"541-555-1212\"\n                }\n            ]\n        },\n        {\n            \"key\": 2,\n            \"name\": \"Speed Dial 2\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl2%\",\n                    \"tagValue\": \"Mark\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str2%\",\n                    \"tagValue\": \"555-121-2222\"\n                }\n            ]\n        },\n        {\n            \"key\": 3,\n            \"name\": \"Speed Dial 3\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl3%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str3%\"\n                }\n            ]\n        },\n        {\n            \"key\": 4,\n            \"name\": \"Speed Dial 4\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl4%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str4%\"\n                }\n            ]\n        },\n        {\n            \"key\": 5,\n            \"name\": \"Speed Dial 5\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl5%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str5%\"\n                }\n            ]\n        },\n        {\n            \"key\": 6,\n            \"name\": \"Speed Dial 6\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl6%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str6%\"\n                }\n            ]\n        },\n        {\n            \"key\": 7,\n            \"name\": \"Speed Dial 7\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl7%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str7%\"\n                }\n            ]\n        },\n        {\n            \"key\": 8,\n            \"name\": \"Speed Dial 8\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl8%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str8%\"\n                }\n            ]\n        },\n        {\n            \"key\": 9,\n            \"name\": \"Speed Dial 9\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl9%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str9%\"\n                }\n            ]\n        },\n        {\n            \"key\": 10,\n            \"name\": \"Speed Dial 10\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl10%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str10%\"\n                }\n            ]\n        },\n        {\n            \"key\": 11,\n            \"name\": \"Speed Dial 11\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl11%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str11%\"\n                }\n            ]\n        },\n        {\n            \"key\": 12,\n            \"name\": \"Speed Dial 12\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl12%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str12%\"\n                }\n            ]\n        },\n        {\n            \"key\": 13,\n            \"name\": \"Speed Dial 13\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl13%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str13%\"\n                }\n            ]\n        },\n        {\n            \"key\": 14,\n            \"name\": \"Speed Dial 14\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl14%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str14%\"\n                }\n            ]\n        },\n        {\n            \"key\": 15,\n            \"name\": \"Speed Dial 15\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl15%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str15%\"\n                }\n            ]\n        },\n        {\n            \"key\": 16,\n            \"name\": \"Speed Dial 16\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl16%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str16%\"\n                }\n            ]\n        },\n        {\n            \"key\": 17,\n            \"name\": \"Speed Dial 17\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl17%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str17%\"\n                }\n            ]\n        },\n        {\n            \"key\": 18,\n            \"name\": \"Speed Dial 18\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl18%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str18%\"\n                }\n            ]\n        },\n        {\n            \"key\": 19,\n            \"name\": \"Speed Dial 19\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl19%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str19%\"\n                }\n            ]\n        },\n        {\n            \"key\": 20,\n            \"name\": \"Speed Dial 20\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl20%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str20%\"\n                }\n            ]\n        },\n        {\n            \"key\": 21,\n            \"name\": \"Speed Dial 21\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl21%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str21%\"\n                }\n            ]\n        },\n        {\n            \"key\": 22,\n            \"name\": \"Speed Dial 22\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl22%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str22%\"\n                }\n            ]\n        },\n        {\n            \"key\": 23,\n            \"name\": \"Speed Dial 23\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl23%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str23%\"\n                }\n            ]\n        },\n        {\n            \"key\": 24,\n            \"name\": \"Speed Dial 24\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl24%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str24%\"\n                }\n            ]\n        },\n        {\n            \"key\": 25,\n            \"name\": \"Speed Dial 25\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl25%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str25%\"\n                }\n            ]\n        },\n        {\n            \"key\": 26,\n            \"name\": \"Speed Dial 26\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl26%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str26%\"\n                }\n            ]\n        },\n        {\n            \"key\": 27,\n            \"name\": \"Speed Dial 27\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl27%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str27%\"\n                }\n            ]\n        },\n        {\n            \"key\": 28,\n            \"name\": \"Speed Dial 28\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl28%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str28%\"\n                }\n            ]\n        },\n        {\n            \"key\": 29,\n            \"name\": \"Speed Dial 29\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl29%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str29%\"\n                }\n            ]\n        },\n        {\n            \"key\": 30,\n            \"name\": \"Speed Dial 30\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl30%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str30%\"\n                }\n            ]\n        },\n        {\n            \"key\": 31,\n            \"name\": \"Speed Dial 31\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl31%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str31%\"\n                }\n            ]\n        },\n        {\n            \"key\": 32,\n            \"name\": \"Speed Dial 32\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl32%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str32%\"\n                }\n            ]\n        },\n        {\n            \"key\": 33,\n            \"name\": \"Speed Dial 33\",\n            \"elements\": [\n                {\n                    \"column\": 1,\n                    \"tagName\": \"%LK-SDial-Lbl33%\"\n                },\n                {\n                    \"column\": 2,\n                    \"tagName\": \"%LK-SDial-Str33%\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"aa90a67e-bf1f-4c5b-a4b7-afe85f144626"},{"name":"Group Device Tags Profile","id":"8ad0acb4-8d7f-4e72-bfb8-59616f306231","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"Polycom 300\",\n    \"tags\": [\n        {\n            \"elements\": [\n                {\n                    \"tagName\": \"%LK-SDial-Lbl4%\",\n                    \"tagValue\": \"label4\"\n                },\n                {\n                    \"tagName\": \"%LK-SDial-Str4%\",\n                    \"tagValue\": \"string4\"\n                }\n            ]    \n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/devices/profile","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","profile"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"key":"deviceName","value":"Polycom 300"},{"disabled":true,"key":"deviceType","value":"Polycom VVX 300 DM"},{"disabled":true,"key":"tags","value":""}],"variable":[]}},"response":[{"id":"48cfbaa1-347a-42b1-9637-b78f43bc0a9c","name":"Group Device Tags Profile","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"Polycom 300\",\n    \"tags\": [\n        {\n            \"elements\": [\n                {\n                    \"tagName\": \"%LK-SDial-Lbl4%\",\n                    \"tagValue\": \"label4\"\n                },\n                {\n                    \"tagName\": \"%LK-SDial-Str4%\",\n                    \"tagValue\": \"string4\"\n                }\n            ]    \n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/groups/devices/profile","host":["{{url}}"],"path":["api","v2","groups","devices","profile"],"query":[{"key":"serviceProviderId","value":"ent.odin","disabled":true},{"key":"groupId","value":"grp.odin","disabled":true},{"key":"deviceName","value":"Polycom 300","disabled":true},{"key":"deviceType","value":"Polycom VVX 300 DM","disabled":true},{"key":"tags","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Oct 2023 21:08:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"575"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"Polycom 300\",\n    \"tags\": [\n        {\n            \"tagName\": \"%LK-SDial-Lbl1%\",\n            \"tagValue\": \"Conference\",\n            \"actualTagValue\": \"Conference\"\n        },\n        {\n            \"tagName\": \"%LK-SDial-Lbl2%\",\n            \"tagValue\": \"Mark\",\n            \"actualTagValue\": \"Mark\"\n        },\n        {\n            \"tagName\": \"%LK-SDial-Lbl4%\",\n            \"tagValue\": \"label4\",\n            \"actualTagValue\": \"label4\"\n        },\n        {\n            \"tagName\": \"%LK-SDial-Str1%\",\n            \"tagValue\": \"541-555-1212\",\n            \"actualTagValue\": \"541-555-1212\"\n        },\n        {\n            \"tagName\": \"%LK-SDial-Str2%\",\n            \"tagValue\": \"555-121-2222\",\n            \"actualTagValue\": \"555-121-2222\"\n        },\n        {\n            \"tagName\": \"%LK-SDial-Str4%\",\n            \"tagValue\": \"string4\",\n            \"actualTagValue\": \"string4\"\n        }\n    ]\n}"}],"_postman_id":"8ad0acb4-8d7f-4e72-bfb8-59616f306231"},{"name":"Group Device Tags Bulk","id":"3ab7ce04-bf65-4e97-a0b8-bf94ea2aa55d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=PolycomIP5000","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","tags"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"PolycomIP5000"}],"variable":[]}},"response":[{"id":"9ed8c6e3-6411-4121-9a37-0f181f449a4f","name":"Group Device Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"tagName\": \"%tag_name%\",\n        \"tagValue\": \"tag value\"\n    }\n]"}],"_postman_id":"3ab7ce04-bf65-4e97-a0b8-bf94ea2aa55d"},{"name":"Group Device Tag","id":"4d9025e9-0fbb-43b5-9a83-a9cf41f8e9bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%foo2%\",\n    \"tagValue\": \"bar2\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"PolycomIP5000\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2c4375f6-d7b4-4a5f-874b-7521de7786f0","name":"Group Device Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"polycomvvx_500_iii\",\n    \"tagName\": \"%ODIN%\",\n    \"tagValue\": \"AUTOMATION\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"4d9025e9-0fbb-43b5-9a83-a9cf41f8e9bb"},{"name":"Group Device Tag","id":"ef3ab4e4-7a03-48c8-a2b3-20cb11114a90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%foo5%\",\n    \"tagValue\": \"bar2q\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"PolycomIP5000\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"331d5718-6ba7-4f62-91bd-49a25cf4ffda","name":"Group Device Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"polycomvvx_500_iii\",\n    \"tagName\": \"%ODIN%\",\n    \"tagValue\": \"AUTOMATION\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ef3ab4e4-7a03-48c8-a2b3-20cb11114a90"},{"name":"Group Device Tag","id":"2ba9eeed-dece-4140-8ddc-24f3165bba58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%junk%\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"PolycomIP5000\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c82160ff-7775-4907-9db5-7b5851a108e3","name":"Group Device Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii&tagName=%ODIN%","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"},{"key":"tagName","value":"%ODIN%"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2ba9eeed-dece-4140-8ddc-24f3165bba58"},{"name":"Group Device Multiple Tag","id":"fbd1bf92-e497-453b-a3ca-b02560ab3134","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"tags\": [\"%key2type%\", \"%key4type%\"],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"8783449000\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/devices/multiple-tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","devices","multiple-tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"68843a3d-10f6-48b2-bd89-a781aca1dedb","name":"Group Device Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii&tagName=%ODIN%","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"},{"key":"tagName","value":"%ODIN%"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"fbd1bf92-e497-453b-a3ca-b02560ab3134"},{"name":"Sevice Provider Device Tags","id":"e94ac53c-8f08-4999-a64b-e0ac677b69c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/devices/tags?serviceProviderId=ent.odin&deviceName=PolycomFlexibleSeatingVVX500","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","tags"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"deviceName","value":"PolycomFlexibleSeatingVVX500"}],"variable":[]}},"response":[{"id":"848bd10d-a022-4d79-88f5-286673df21ef","name":"Group Device Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"tagName\": \"%tag_name%\",\n        \"tagValue\": \"tag value\"\n    }\n]"}],"_postman_id":"e94ac53c-8f08-4999-a64b-e0ac677b69c5"},{"name":"Service Provider Device Tag","id":"b00eeadd-3735-4bb1-8463-c34d04f4afdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"1\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6382ea21-db8c-4d6e-85c4-33e862352ef0","name":"Group Device Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"polycomvvx_500_iii\",\n    \"tagName\": \"%ODIN%\",\n    \"tagValue\": \"AUTOMATION\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b00eeadd-3735-4bb1-8463-c34d04f4afdc"},{"name":"Service Provider Device Tag","id":"2d3b6c33-4a37-42a5-b05c-2f24ce5aa81a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"1\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\"\n}"},"url":"{{url}}/api/v2/service-providers/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7eaf12ac-8811-482e-88c2-f42dbdb7766f","name":"Group Device Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"polycomvvx_500_iii\",\n    \"tagName\": \"%ODIN%\",\n    \"tagValue\": \"AUTOMATION\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2d3b6c33-4a37-42a5-b05c-2f24ce5aa81a"},{"name":"Service Provider Device Tag","id":"76e7567e-da0e-4342-aae0-6c530b42d1ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%foo5%\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/service-providers/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"05bca56c-d628-4414-b1f0-dfb8948ea023","name":"Group Device Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii&tagName=%ODIN%","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"},{"key":"tagName","value":"%ODIN%"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"76e7567e-da0e-4342-aae0-6c530b42d1ba"},{"name":"Service Provider Device Tag Multiple","id":"28951ed2-3185-413a-ac1c-b6d27051f07b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"tags\": [\n        \"%foo4%\",\n        \"%foo3%\"\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"deviceName\": \"PolycomFlexibleSeatingVVX500\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/service-providers/devices/multiple-tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","devices","multiple-tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"616ccc46-2945-425d-9007-c7eefe16ab3e","name":"Group Device Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii&tagName=%ODIN%","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"},{"key":"tagName","value":"%ODIN%"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"28951ed2-3185-413a-ac1c-b6d27051f07b"},{"name":"System Device Tags","id":"68fe26ad-0672-4d7b-8fb4-012cacc4d4bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/devices/tags?deviceName=testSl01","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","tags"],"host":["{{url}}"],"query":[{"key":"deviceName","value":"testSl01"}],"variable":[]}},"response":[{"id":"188c93ff-38c7-420f-8428-3b31ad41123f","name":"Group Device Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"tagName\": \"%tag_name%\",\n        \"tagValue\": \"tag value\"\n    }\n]"}],"_postman_id":"68fe26ad-0672-4d7b-8fb4-012cacc4d4bc"},{"name":"System Device Tag","id":"fcf27bbb-299a-4f5f-8564-8d2fd85475fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%foo5%\",\n    \"tagValue\": \"foo5\",\n    \"deviceName\": \"testSl01\"\n}"},"url":"{{url}}/api/v2/system/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"eaaa2b9b-7a20-4941-b612-67292d957694","name":"Group Device Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"polycomvvx_500_iii\",\n    \"tagName\": \"%ODIN%\",\n    \"tagValue\": \"AUTOMATION\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"fcf27bbb-299a-4f5f-8564-8d2fd85475fa"},{"name":"System Device Tag","id":"44d4cad2-aff6-4642-8e39-b1ab9d41a6cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%foo5%\",\n    \"tagValue\": \"tested again2\",\n    \"deviceName\": \"testSl01\"\n}"},"url":"{{url}}/api/v2/system/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9be010b4-157e-48a0-a617-f3b3c9520fbc","name":"Group Device Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceName\": \"polycomvvx_500_iii\",\n    \"tagName\": \"%ODIN%\",\n    \"tagValue\": \"AUTOMATION\"\n}"},"url":"{{url}}/api/v2/groups/devices/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"44d4cad2-aff6-4642-8e39-b1ab9d41a6cb"},{"name":"System Device Tag","id":"826bf8b1-bc53-4995-900a-4563bff5a4f2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"testSl01\",\n    \"tagName\": \"%foo5%\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/devices/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3c0bb3a5-02be-452d-97e1-0a4977dbcad5","name":"Group Device Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii&tagName=%ODIN%","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"},{"key":"tagName","value":"%ODIN%"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"826bf8b1-bc53-4995-900a-4563bff5a4f2"},{"name":"System Device Tag Multiple","id":"593a6d2d-03ff-41cf-aefd-33e6b39db212","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"deviceName\": \"testSl01\",\n    \"tags\": [\n        \"%foo2%\",\n        \"%foo3%\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/devices/multiple-tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices","multiple-tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7ec9a370-6eb1-4295-ada2-661a4ecd0343","name":"Group Device Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/devices/tags?serviceProviderId=ent.odin&groupId=grp.odin&deviceName=polycomvvx_500_iii&tagName=%ODIN%","host":["{{url}}"],"path":["api","v2","groups","devices","tags"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"polycomvvx_500_iii"},{"key":"tagName","value":"%ODIN%"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"593a6d2d-03ff-41cf-aefd-33e6b39db212"},{"name":"Group Device Types","id":"933df6b6-33c1-4cf3-b792-424db4ce6294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/device-types?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"184500cf-4de4-453f-9433-e5850b337baf","name":"Group Device Types","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/device-types?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","device-types"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 16:59:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"32"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    \"Polycom_VVX400\",\n    \"Aastra 480i\"\n]"}],"_postman_id":"933df6b6-33c1-4cf3-b792-424db4ce6294"},{"name":"Group Device Type","id":"a2d6dea1-870f-4409-a84e-42b97186305b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/device-types?serviceProviderId=ent.odin&groupId=grp.odin&deviceType=slatsa-profile-type-port-4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"disabled":true,"key":"deviceType","value":"VegaStream Vega 50"},{"key":"deviceType","value":"slatsa-profile-type-port-4"}],"variable":[]}},"response":[{"id":"31372348-1d55-4038-b5a3-5023d6bac688","name":"Group Device Type","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/device-types?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&deviceType=Polycom_VVX400","host":["{{url}}"],"path":["api","v2","groups","device-types"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"deviceType","value":"Polycom_VVX400"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:00:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"324"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"supportsEnhancedConfiguration\": true,\n    \"supportsReset\": true,\n    \"configurationType\": \"2 File Configuration\",\n    \"configurationFileName\": \"/var/broadworks/IpDeviceConfig//2/6192/261921865/Group_odin.mock.grp1_Polycom_VVX400.template\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"}],"_postman_id":"a2d6dea1-870f-4409-a84e-42b97186305b"},{"name":"Group Device Type Rebuild","id":"60c4ec99-bc79-45a4-b80f-78b1e2222ff1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceType\": \"VegaStream Vega 50\"\n}"},"url":"{{url}}/api/v2/groups/device-types/rebuild","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","rebuild"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0a3084c8-7ae7-45f5-8dd1-a54b2f39895f","name":"Group Device Type Rebuild","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"},"url":"{{url}}/api/v2/groups/device-types/rebuild"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:04:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"60c4ec99-bc79-45a4-b80f-78b1e2222ff1"},{"name":"Group Device Type Reset","id":"b1c5badc-7651-44d9-8130-6d1e15eac1eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceType\": \"VegaStream Vega 50\"\n}"},"url":"{{url}}/api/v2/groups/device-types/reset","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","reset"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6db97b38-da71-4baa-9635-e56d92e3e1b1","name":"Group Device Type Reset","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"},"url":"{{url}}/api/v2/groups/device-types/reset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:05:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b1c5badc-7651-44d9-8130-6d1e15eac1eb"},{"name":"Group Device Type Files","id":"de2771d8-d3c4-40b8-9b9f-14625f539afa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwNDAwNTk0LCJuYnAiOjE1NDA0MDA1OTQsImV4cCI6MTU0MDQ0Mzc5NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbXhQWVd0VGNsZFRYQzlhTTBobldFWnJRVTFuWWxKblBUMGlMQ0oyWVd4MVpTSTZJbEpNVlZaUlpGd3ZVRUZPYzF3dlpURmFkMndyT1dnNFNqVjNXVlF5WlZwTllraFBPRU55ZG1sdFZrZFRPRDBpTENKdFlXTWlPaUptT1RNMk5HWmhZV0l5WmpCaVptWmlZV1l3TURoalpHTm1OamhoWWpreE5UQXhOalU0WXpReU5ESXhPR0psT0Rjek1ERmhNamhpTlRrek16RmpZVGRsSW4wPSIsInAiOiJleUpwZGlJNkluRk1SRzFJUzFsV1prTnRTakp5U0dreVUxQlVhRUU5UFNJc0luWmhiSFZsSWpvaVVuSm5TRUZzYmtOc1RtMTFObk5TVlZsYVlWZGFVME5QZDJaM2RsSnZWM05zVUZVME9UUjNUbkpXVUhWR1dYVXdNRXBHUlVSVVZFbzViMjVzU2xJcmJVcDBWV1ZYY2xoek1XcG1TbEF4TUZjelNFRlRUWGM5UFNJc0ltMWhZeUk2SW1KalpUVXdabU5sTjJVMU1tUTNaamswT1RVMllUWTVOekExTTJKbE5HSm1NR0V3WlRRd1lqVTBZemhoWVdOaE1qRXhOVGhoWVdVMU1qWmlOek00TnpFaWZRPT0iLCJlIjoiZXlKcGRpSTZJazlLUTFKclhDOUZNMHBNUTBOQ04zaGlUa1JyVkZwblBUMGlMQ0oyWVd4MVpTSTZJa3hCVDFOb1pXZzBiWEpxWmxsa1JrSm1VMlZWYUhjOVBTSXNJbTFoWXlJNklqVmtNMlUyWkRNeVlUTXpNbUl3TlRGa09XTmhOelE1Tm1SaE5HSmlObVpsWlRjd05UTTJabUkwTmpSa05UZzFZVE5rT1RNNE5ESmtOVEF3TW1Oak9XTWlmUT09In19.n3_48GfgiPh_fyZ3TKnynBelm3n0wz1W0C6RBZWn1W0"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":"{{url}}/api/v2/groups/device-types/files?deviceType=Polycom IP5000&groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","files"],"host":["{{url}}"],"query":[{"key":"deviceType","value":"Polycom IP5000"},{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"4d9f3b6c-9864-4a19-8f37-e5ed1947434c","name":"Group Device Type Files","originalRequest":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwNDAwNTk0LCJuYnAiOjE1NDA0MDA1OTQsImV4cCI6MTU0MDQ0Mzc5NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbXhQWVd0VGNsZFRYQzlhTTBobldFWnJRVTFuWWxKblBUMGlMQ0oyWVd4MVpTSTZJbEpNVlZaUlpGd3ZVRUZPYzF3dlpURmFkMndyT1dnNFNqVjNXVlF5WlZwTllraFBPRU55ZG1sdFZrZFRPRDBpTENKdFlXTWlPaUptT1RNMk5HWmhZV0l5WmpCaVptWmlZV1l3TURoalpHTm1OamhoWWpreE5UQXhOalU0WXpReU5ESXhPR0psT0Rjek1ERmhNamhpTlRrek16RmpZVGRsSW4wPSIsInAiOiJleUpwZGlJNkluRk1SRzFJUzFsV1prTnRTakp5U0dreVUxQlVhRUU5UFNJc0luWmhiSFZsSWpvaVVuSm5TRUZzYmtOc1RtMTFObk5TVlZsYVlWZGFVME5QZDJaM2RsSnZWM05zVUZVME9UUjNUbkpXVUhWR1dYVXdNRXBHUlVSVVZFbzViMjVzU2xJcmJVcDBWV1ZYY2xoek1XcG1TbEF4TUZjelNFRlRUWGM5UFNJc0ltMWhZeUk2SW1KalpUVXdabU5sTjJVMU1tUTNaamswT1RVMllUWTVOekExTTJKbE5HSm1NR0V3WlRRd1lqVTBZemhoWVdOaE1qRXhOVGhoWVdVMU1qWmlOek00TnpFaWZRPT0iLCJlIjoiZXlKcGRpSTZJazlLUTFKclhDOUZNMHBNUTBOQ04zaGlUa1JyVkZwblBUMGlMQ0oyWVd4MVpTSTZJa3hCVDFOb1pXZzBiWEpxWmxsa1JrSm1VMlZWYUhjOVBTSXNJbTFoWXlJNklqVmtNMlUyWkRNeVlUTXpNbUl3TlRGa09XTmhOelE1Tm1SaE5HSmlObVpsWlRjd05UTTJabUkwTmpSa05UZzFZVE5rT1RNNE5ESmtOVEF3TW1Oak9XTWlmUT09In19.n3_48GfgiPh_fyZ3TKnynBelm3n0wz1W0C6RBZWn1W0"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":{"raw":"{{url}}/api/v2/groups/device-types/files?deviceType=Polycom_VVX400&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","device-types","files"],"query":[{"key":"deviceType","value":"Polycom_VVX400"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:11:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1867"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/{%25BWMACADDRESS%25}.cfg\",\n        \"repositoryURL\": null,\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/2/6192/261921865/Polycom_VVX400/Group_odin.mock.grp1_%25BWMACADDRESS%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"000000000000.cfg\",\n        \"isAuthenticated\": false,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/000000000000.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/000000000000_2017.10.17%2016:50:14:167%20EDT.cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/000000000000.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"phone%BWDEVICEID%.cfg\",\n        \"isAuthenticated\": true,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/phone{%25BWDEVICEID%25}.cfg\",\n        \"repositoryURL\": null,\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/phone%25BWDEVICEID%25.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"qsetup.cfg\",\n        \"isAuthenticated\": false,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/qsetup.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/qsetup_2017.10.17%2016:50:14:360%20EDT.cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/qsetup.cfg.template\"\n    },\n    {\n        \"fileFormat\": \"sys.cfg\",\n        \"isAuthenticated\": false,\n        \"accessURL\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/sys.cfg\",\n        \"repositoryURL\": \"http://fileadmin:admin123@ps.microv-works.com:80/Polycom_VVX400/sys-2017.10.17%2016:50:14:442%20EDT.cfg\",\n        \"templateURL\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/type/Polycom_VVX400/sys.cfg.template\"\n    }\n]"}],"_postman_id":"de2771d8-d3c4-40b8-9b9f-14625f539afa"},{"name":"Group Device Type File","id":"790b07bb-a095-4d6f-afc5-d8e9a5a9d192","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwNDAwNTk0LCJuYnAiOjE1NDA0MDA1OTQsImV4cCI6MTU0MDQ0Mzc5NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbXhQWVd0VGNsZFRYQzlhTTBobldFWnJRVTFuWWxKblBUMGlMQ0oyWVd4MVpTSTZJbEpNVlZaUlpGd3ZVRUZPYzF3dlpURmFkMndyT1dnNFNqVjNXVlF5WlZwTllraFBPRU55ZG1sdFZrZFRPRDBpTENKdFlXTWlPaUptT1RNMk5HWmhZV0l5WmpCaVptWmlZV1l3TURoalpHTm1OamhoWWpreE5UQXhOalU0WXpReU5ESXhPR0psT0Rjek1ERmhNamhpTlRrek16RmpZVGRsSW4wPSIsInAiOiJleUpwZGlJNkluRk1SRzFJUzFsV1prTnRTakp5U0dreVUxQlVhRUU5UFNJc0luWmhiSFZsSWpvaVVuSm5TRUZzYmtOc1RtMTFObk5TVlZsYVlWZGFVME5QZDJaM2RsSnZWM05zVUZVME9UUjNUbkpXVUhWR1dYVXdNRXBHUlVSVVZFbzViMjVzU2xJcmJVcDBWV1ZYY2xoek1XcG1TbEF4TUZjelNFRlRUWGM5UFNJc0ltMWhZeUk2SW1KalpUVXdabU5sTjJVMU1tUTNaamswT1RVMllUWTVOekExTTJKbE5HSm1NR0V3WlRRd1lqVTBZemhoWVdOaE1qRXhOVGhoWVdVMU1qWmlOek00TnpFaWZRPT0iLCJlIjoiZXlKcGRpSTZJazlLUTFKclhDOUZNMHBNUTBOQ04zaGlUa1JyVkZwblBUMGlMQ0oyWVd4MVpTSTZJa3hCVDFOb1pXZzBiWEpxWmxsa1JrSm1VMlZWYUhjOVBTSXNJbTFoWXlJNklqVmtNMlUyWkRNeVlUTXpNbUl3TlRGa09XTmhOelE1Tm1SaE5HSmlObVpsWlRjd05UTTJabUkwTmpSa05UZzFZVE5rT1RNNE5ESmtOVEF3TW1Oak9XTWlmUT09In19.n3_48GfgiPh_fyZ3TKnynBelm3n0wz1W0C6RBZWn1W0"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":"{{url}}/api/v2/groups/device-types/files?deviceType=Polycom IP5000&fileFormat=user%BWMACADDRESS%.cfg&groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","files"],"host":["{{url}}"],"query":[{"key":"deviceType","value":"Polycom IP5000"},{"key":"fileFormat","value":"user%BWMACADDRESS%.cfg"},{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"56c64c46-7e7c-469a-9811-d07fb53658c2","name":"Group Device Type File","originalRequest":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwNDAwNTk0LCJuYnAiOjE1NDA0MDA1OTQsImV4cCI6MTU0MDQ0Mzc5NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbXhQWVd0VGNsZFRYQzlhTTBobldFWnJRVTFuWWxKblBUMGlMQ0oyWVd4MVpTSTZJbEpNVlZaUlpGd3ZVRUZPYzF3dlpURmFkMndyT1dnNFNqVjNXVlF5WlZwTllraFBPRU55ZG1sdFZrZFRPRDBpTENKdFlXTWlPaUptT1RNMk5HWmhZV0l5WmpCaVptWmlZV1l3TURoalpHTm1OamhoWWpreE5UQXhOalU0WXpReU5ESXhPR0psT0Rjek1ERmhNamhpTlRrek16RmpZVGRsSW4wPSIsInAiOiJleUpwZGlJNkluRk1SRzFJUzFsV1prTnRTakp5U0dreVUxQlVhRUU5UFNJc0luWmhiSFZsSWpvaVVuSm5TRUZzYmtOc1RtMTFObk5TVlZsYVlWZGFVME5QZDJaM2RsSnZWM05zVUZVME9UUjNUbkpXVUhWR1dYVXdNRXBHUlVSVVZFbzViMjVzU2xJcmJVcDBWV1ZYY2xoek1XcG1TbEF4TUZjelNFRlRUWGM5UFNJc0ltMWhZeUk2SW1KalpUVXdabU5sTjJVMU1tUTNaamswT1RVMllUWTVOekExTTJKbE5HSm1NR0V3WlRRd1lqVTBZemhoWVdOaE1qRXhOVGhoWVdVMU1qWmlOek00TnpFaWZRPT0iLCJlIjoiZXlKcGRpSTZJazlLUTFKclhDOUZNMHBNUTBOQ04zaGlUa1JyVkZwblBUMGlMQ0oyWVd4MVpTSTZJa3hCVDFOb1pXZzBiWEpxWmxsa1JrSm1VMlZWYUhjOVBTSXNJbTFoWXlJNklqVmtNMlUyWkRNeVlUTXpNbUl3TlRGa09XTmhOelE1Tm1SaE5HSmlObVpsWlRjd05UTTJabUkwTmpSa05UZzFZVE5rT1RNNE5ESmtOVEF3TW1Oak9XTWlmUT09In19.n3_48GfgiPh_fyZ3TKnynBelm3n0wz1W0C6RBZWn1W0"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":{"raw":"{{url}}/api/v2/groups/device-types/files?deviceType=Polycom_VVX400&fileFormat=%25BWMACADDRESS%25.cfg&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","device-types","files"],"query":[{"key":"deviceType","value":"Polycom_VVX400"},{"key":"fileFormat","value":"%25BWMACADDRESS%25.cfg"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:11:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"569"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fileSource\": \"Custom\",\n    \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/2/6192/261921865/Polycom_VVX400/Group_odin.mock.grp1_%BWMACADDRESS%.cfg.template\",\n    \"accessUrl\": \"http://portal.microv-works.com:80/dms/Polycom_VVX400/{%25BWMACADDRESS%25}.cfg\",\n    \"templateUrl\": \"http://device_management:d*2m*$ment@10.0.0.10:80/DeviceManagement/2/6192/261921865/Polycom_VVX400/Group_odin.mock.grp1_%25BWMACADDRESS%25.cfg.template\",\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceType\": \"Polycom_VVX400\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"}],"_postman_id":"790b07bb-a095-4d6f-afc5-d8e9a5a9d192"},{"name":"Group Device Type File","id":"24d7d8bb-7cd2-40a2-83e1-a07bc3192924","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Custom\",\n    \"fileFormat\": \"user%BWMACADDRESS%.cfg\",\n    \"deviceType\": \"Polycom IP5000\",\n    \"groupId\": \"grp.odin\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4NCjwhLS0gRGVmYXVsdCBNYXN0ZXIgU0lQIENvbmZpZ3VyYXRpb24gRmlsZS0tPg0KPCEtLSBGb3IgaW5mb3JtYXRpb24gb24gY29uZmlndXJpbmcgUG9seWNvbSBWb0lQIHBob25lcyBwbGVhc2UgcmVmZXIgdG8gdGhlIC0tPg0KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+DQo8IS0tIGh0dHA6Ly93d3cucG9seWNvbS5jb20vY29tbW9uL2RvY3VtZW50cy93aGl0ZXBhcGVycy9jb25maWd1cmF0aW9uX2ZpbGVfbWFuYWdlbWVudF9vbl9zb3VuZHBvaW50X2lwX3Bob25lcy5wZGYgLS0+DQo8IS0tICRSQ1NmaWxlOiAwMDAwMDAwMDAwMDAuY2ZnLHYgJCAgJFJldmlzaW9uOiAxLjIzLjguMyAkIC0tPg0KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9IiVBUFBfVkVSU0lPTiUuc2lwLmxkIiBDT05GSUdfRklMRVM9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIiBNSVNDX0ZJTEVTPSIiIExPR19GSUxFX0RJUkVDVE9SWT0iIiBPVkVSUklERVNfRElSRUNUT1JZPSIiIENPTlRBQ1RTX0RJUkVDVE9SWT0iIiBMSUNFTlNFX0RJUkVDVE9SWT0iIj4NCg0KICAgPEFQUExJQ0FUSU9OX1ZWWDMwMCBBUFBfRklMRV9QQVRIX1ZWWDMwMD0iJUFQUF9WRVJTSU9OX1ZWWC0zMDAtNDAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlgzMDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQogICA8QVBQTElDQVRJT05fVlZYNDAwIEFQUF9GSUxFX1BBVEhfVlZYNDAwPSIlQVBQX1ZFUlNJT05fVlZYLTMwMC00MDAlLnNpcC5sZCIgQ09ORklHX0ZJTEVTX1ZWWDQwMD0icGhvbmUlQldERVZJQ0VJRCUuY2ZnLHN5cy5jZmciLz4NCiAgIDxBUFBMSUNBVElPTl9WVlg1MDAgQVBQX0ZJTEVfUEFUSF9WVlg1MDA9IiVBUFBfVkVSU0lPTl9WVlgtNTAwLTYwMCUuc2lwLmxkIiBDT05GSUdfRklMRVNfVlZYNTAwPSJwaG9uZSVCV0RFVklDRUlEJS5jZmcsc3lzLmNmZyIvPg0KICAgPEFQUExJQ0FUSU9OX1ZWWDYwMCBBUFBfRklMRV9QQVRIX1ZWWDYwMD0iJUFQUF9WRVJTSU9OX1ZWWC01MDAtNjAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlg2MDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQo8L0FQUExJQ0FUSU9OPg==\"\n}\n"},"url":"{{url}}/api/v2/groups/device-types/files","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","files"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"69c6c7a8-36a4-4342-9eec-860b7a2783f7","name":"Group Device Type File","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fileSource\": \"Custom\",\n    \"fileFormat\": \"%BWMACADDRESS%.cfg\",\n    \"deviceType\": \"Polycom_VVX400\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4NCjwhLS0gRGVmYXVsdCBNYXN0ZXIgU0lQIENvbmZpZ3VyYXRpb24gRmlsZS0tPg0KPCEtLSBGb3IgaW5mb3JtYXRpb24gb24gY29uZmlndXJpbmcgUG9seWNvbSBWb0lQIHBob25lcyBwbGVhc2UgcmVmZXIgdG8gdGhlIC0tPg0KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+DQo8IS0tIGh0dHA6Ly93d3cucG9seWNvbS5jb20vY29tbW9uL2RvY3VtZW50cy93aGl0ZXBhcGVycy9jb25maWd1cmF0aW9uX2ZpbGVfbWFuYWdlbWVudF9vbl9zb3VuZHBvaW50X2lwX3Bob25lcy5wZGYgLS0+DQo8IS0tICRSQ1NmaWxlOiAwMDAwMDAwMDAwMDAuY2ZnLHYgJCAgJFJldmlzaW9uOiAxLjIzLjguMyAkIC0tPg0KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9IiVBUFBfVkVSU0lPTiUuc2lwLmxkIiBDT05GSUdfRklMRVM9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIiBNSVNDX0ZJTEVTPSIiIExPR19GSUxFX0RJUkVDVE9SWT0iIiBPVkVSUklERVNfRElSRUNUT1JZPSIiIENPTlRBQ1RTX0RJUkVDVE9SWT0iIiBMSUNFTlNFX0RJUkVDVE9SWT0iIj4NCg0KICAgPEFQUExJQ0FUSU9OX1ZWWDMwMCBBUFBfRklMRV9QQVRIX1ZWWDMwMD0iJUFQUF9WRVJTSU9OX1ZWWC0zMDAtNDAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlgzMDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQogICA8QVBQTElDQVRJT05fVlZYNDAwIEFQUF9GSUxFX1BBVEhfVlZYNDAwPSIlQVBQX1ZFUlNJT05fVlZYLTMwMC00MDAlLnNpcC5sZCIgQ09ORklHX0ZJTEVTX1ZWWDQwMD0icGhvbmUlQldERVZJQ0VJRCUuY2ZnLHN5cy5jZmciLz4NCiAgIDxBUFBMSUNBVElPTl9WVlg1MDAgQVBQX0ZJTEVfUEFUSF9WVlg1MDA9IiVBUFBfVkVSU0lPTl9WVlgtNTAwLTYwMCUuc2lwLmxkIiBDT05GSUdfRklMRVNfVlZYNTAwPSJwaG9uZSVCV0RFVklDRUlEJS5jZmcsc3lzLmNmZyIvPg0KICAgPEFQUExJQ0FUSU9OX1ZWWDYwMCBBUFBfRklMRV9QQVRIX1ZWWDYwMD0iJUFQUF9WRVJTSU9OX1ZWWC01MDAtNjAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlg2MDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQo8L0FQUExJQ0FUSU9OPg==\"\n}"},"url":"{{url}}/api/v2/groups/device-types/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:12:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"24d7d8bb-7cd2-40a2-83e1-a07bc3192924"},{"name":"Group Device Type Tags","id":"7834f8cc-2883-4afb-b037-8a6b4f7179ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/device-types/tags?deviceType=Polycom VVX1500&groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","tags"],"host":["{{url}}"],"query":[{"key":"deviceType","value":"Polycom VVX1500"},{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"68b670d6-c47d-4406-8cbe-42ba7b92ae8e","name":"Group Device Type Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/device-types/tags?deviceType=Polycom_VVX400&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","device-types","tags"],"query":[{"key":"deviceType","value":"Polycom_VVX400"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:28:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"42"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"tagName\": \"%LDAP_ENABLE%\",\n        \"tagValue\": 1\n    }\n]"}],"_postman_id":"7834f8cc-2883-4afb-b037-8a6b4f7179ff"},{"name":"Group Device Type Tag","id":"d6dd3080-86e4-43ba-81bb-bf1a746fb0b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%foo3%\",\n    \"tagValue\": \"bar3\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceType\": \"Polycom VVX1500\"\n}"},"url":"{{url}}/api/v2/groups/device-types/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"812f740e-52ae-42c8-a256-2c83110b6f1f","name":"Group Device Type Tag","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"},"url":"{{url}}/api/v2/groups/device-types/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:28:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"d6dd3080-86e4-43ba-81bb-bf1a746fb0b0"},{"name":"Group Device Type Tag","id":"ee3d2c11-b282-41a2-a78e-d2f9c772f166","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"1\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceType\": \"Polycom VVX1500\"\n}"},"url":"{{url}}/api/v2/groups/device-types/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"340c0958-5c31-420d-ac67-40befca2e194","name":"Group Device Type Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"0\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"},"url":"{{url}}/api/v2/groups/device-types/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:29:14 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ee3d2c11-b282-41a2-a78e-d2f9c772f166"},{"name":"Group Device Type Tag","id":"c227eeb8-f9f6-4ac2-b4ab-e5195dfddf7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%foo3%\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"deviceType\": \"Polycom VVX1500\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/device-types/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","device-types","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2224664b-d623-402c-a92d-fb383cccd0cd","name":"Group Device Type Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/device-types/tags?deviceType=Polycom_VVX400&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&tagName=%25LDAP_ENABLE%25","host":["{{url}}"],"path":["api","v2","groups","device-types","tags"],"query":[{"key":"deviceType","value":"Polycom_VVX400"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"tagName","value":"%25LDAP_ENABLE%25"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:27:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c227eeb8-f9f6-4ac2-b4ab-e5195dfddf7b"},{"name":"Service Provider Device Type Tags","id":"f2408fea-cc8a-405b-879b-c307851f8eb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/device-types/tags?deviceType=Polycom Soundpoint IP 550&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","device-types","tags"],"host":["{{url}}"],"query":[{"key":"deviceType","value":"Polycom Soundpoint IP 550"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"1f6e4027-8feb-4fac-8983-8eb286e69a3f","name":"Group Device Type Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/device-types/tags?deviceType=Polycom_VVX400&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","device-types","tags"],"query":[{"key":"deviceType","value":"Polycom_VVX400"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:28:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"42"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"tagName\": \"%LDAP_ENABLE%\",\n        \"tagValue\": 1\n    }\n]"}],"_postman_id":"f2408fea-cc8a-405b-879b-c307851f8eb4"},{"name":"Service Provider Device Type Tag","id":"b44faacc-62a9-495a-9951-b189b506596d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"0\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"},"url":"{{url}}/api/v2/service-providers/device-types/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","device-types","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"26dc3567-f833-4b44-8754-c07189d74e45","name":"Group Device Type Tag","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"0\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"},"url":"{{url}}/api/v2/groups/device-types/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:29:14 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b44faacc-62a9-495a-9951-b189b506596d"},{"name":"Service Provider Device Type Tag","id":"09afbd07-d80d-4479-8871-3180e8b19998","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/device-types/tags?deviceType=Polycom_VVX400&serviceProviderId=ent,odin&tagName=%25LDAP_ENABLE%25","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","device-types","tags"],"host":["{{url}}"],"query":[{"key":"deviceType","value":"Polycom_VVX400"},{"key":"serviceProviderId","value":"ent,odin"},{"key":"tagName","value":"%25LDAP_ENABLE%25"}],"variable":[]}},"response":[{"id":"78f2af87-23e1-4800-9105-630b9cc3307a","name":"Group Device Type Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/device-types/tags?deviceType=Polycom_VVX400&groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&tagName=%25LDAP_ENABLE%25","host":["{{url}}"],"path":["api","v2","groups","device-types","tags"],"query":[{"key":"deviceType","value":"Polycom_VVX400"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"tagName","value":"%25LDAP_ENABLE%25"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:27:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"09afbd07-d80d-4479-8871-3180e8b19998"},{"name":"Service Provider Device Type Tag","id":"35ec5a23-9463-412f-8bd5-14349cfe1465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"1\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"deviceType\": \"Business Communicator - Mobile\"\n}"},"url":"{{url}}/api/v2/service-providers/device-types/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","device-types","tags"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f81ee249-080e-462f-9e58-a97d9bc2a9e9","name":"Group Device Type Tag","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"tagName\": \"%LDAP_ENABLE%\",\n    \"tagValue\": \"1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"deviceType\": \"Polycom_VVX400\"\n}"},"url":"{{url}}/api/v2/groups/device-types/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 17:28:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"35ec5a23-9463-412f-8bd5-14349cfe1465"},{"name":"System Device Search","id":"d575d746-471b-4b62-922e-2142eeecfc78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"responseSizeLimit\": 200,\r\n    \"deviceType\": null,\r\n    \"serviceProviderId\": \"ent.odin.ken3\",\r\n    \"searchCriteriaDeviceName\": {\r\n        \"mode\": \"Starts With\",\r\n        \"value\": \"Polycom 500\",\r\n        \"isCaseInsensitive\": 0\r\n    },\r\n    \"searchCriteriaDeviceMACAddress\": null,\r\n    \"searchCriteriaDeviceNetAddress\": null,\r\n    \"searchCriteriaGroupId\": {\r\n        \"mode\": \"Starts With\",\r\n        \"value\": \"grp.odin\",\r\n        \"isCaseInsensitive\": 0\r\n    },\r\n    \"resellerId\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/devices","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Returns array of devices based on search criteria\nvalid search criteria are: \n- searchCriteriaDeviceName \n- searchCriteriaDeviceMACAddress\n- searchCriteriaDeviceNetAddress\n- searchCriteriaGroupId\n- resellerId \n Each of the above criteria is an object with the following properties:\n- mode - string\n- value -string\n- isCaseInsensitive - bool \nValid values for mode are: \n - \"Equal To\" \n - \"Starts With\"\n - \"Contains\" \n \n NOTE: When one of these search criteria are not being used, the entire object needs to be set to \n null as opposed to just the internal properties e.g. \"searchCriteriaDeviceMACAddress\": null\n \nAdditional Search Criteria Fields\n - serviceProviderId\n - deviceType \n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","devices"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"360455fe-23da-461c-b690-bdf2349401dd","name":"System Device Search","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"responseSizeLimit\": 200,\r\n    \"deviceType\": null,\r\n    \"serviceProviderId\": \"ent.odin.ken3\",\r\n    \"searchCriteriaDeviceName\": {\r\n        \"mode\": \"Starts With\",\r\n        \"value\": \"Polycom 500\",\r\n        \"isCaseInsensitive\": 0\r\n    },\r\n    \"searchCriteriaDeviceMACAddress\": null,\r\n    \"searchCriteriaDeviceNetAddress\": null,\r\n    \"searchCriteriaGroupId\": {\r\n        \"mode\": \"Starts With\",\r\n        \"value\": \"grp.odin\",\r\n        \"isCaseInsensitive\": 0\r\n    },\r\n    \"resellerId\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Sep 2024 18:28:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin.ken3\",\n        \"isEnterprise\": true,\n        \"groupId\": \"grp.odin.ken3-3\",\n        \"deviceName\": \"Polycom 500\",\n        \"deviceType\": \"PolyTemplate\",\n        \"netAddress\": null,\n        \"status\": \"Online\",\n        \"resellerId\": null,\n        \"accessDeviceExternalId\": null,\n        \"deviceLevel\": \"Group\",\n        \"macAddress\": \"\",\n        \"tags\": [],\n        \"relatedServices\": []\n    }\n]"}],"_postman_id":"d575d746-471b-4b62-922e-2142eeecfc78"}],"id":"a8507b30-baf5-426f-b198-3a1d5e507977","_postman_id":"a8507b30-baf5-426f-b198-3a1d5e507977","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Dial Plan Policy","item":[{"name":"Group Dial Plan Policy","event":[{"listen":"test","script":{"id":"370cd72d-5b76-495a-bdf0-7198f8291a43","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"ec45caa0-31e8-407e-bc60-e565e184eab1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/dial-plan-policy?serviceProviderId=ent.odin&groupId=grp.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n<li>useSetting: [\"System\", \"Service Provider\", \"Group\"]</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"c34d5715-0ed3-4729-8e92-67153fe5cca5","name":"Group Dial Plan Policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"4002@parkbenchsolutions.com","disabled":true},{"key":"q","type":"text","value":"available","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": false,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": false,\n    \"publicDigitMap\": \"()\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"ec45caa0-31e8-407e-bc60-e565e184eab1"},{"name":"Group Dial Plan Policy","id":"d6a742c3-ba77-4a88-87a6-dfd814902e17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\"\n}"},"url":"{{url}}/api/v2/groups/dial-plan-policy?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"6d96f8c9-0ae6-499a-9748-85e1826fcd54","name":"Group Dial Plan Policy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"d6a742c3-ba77-4a88-87a6-dfd814902e17"},{"name":"Group Dial Plan Policy AIM","event":[{"listen":"test","script":{"id":"d4875ff1-e095-47f9-9360-5b553c983ce8","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"ae8eaf4e-0dbd-4eb4-81ae-49034aa2ce12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/dial-plan-policy/aim?serviceProviderId=ent.odin&groupId=grp.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","aim"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"259013dd-5aec-4aa2-9523-b1610f23477f","name":"Group Dial Plan Policy AIM","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/aim?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","aim"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": null\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"}],"_postman_id":"ae8eaf4e-0dbd-4eb4-81ae-49034aa2ce12"},{"name":"Group Dial Plan Policy AIM","id":"fbf920cb-b0a1-4c7a-9e9f-ec86a746605e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": false,\n    \"allowE164PublicCalls\": false,\n    \"preferE164NumberFormatForCallbackServices\": false,\n    \"publicDigitMap\": \"[1-9]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": \"nine\"\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/dial-plan-policy/aim","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","aim"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7f056eec-362d-4106-b350-b6c9945edc9c","name":"Group Dial Plan Policy AIM","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": false,\n    \"allowE164PublicCalls\": false,\n    \"preferE164NumberFormatForCallbackServices\": false,\n    \"publicDigitMap\": \"[1-9]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": \"nine\"\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/dial-plan-policy/aim"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useSetting\": \"Group\",\n    \"requiresAccessCodeForPublicCalls\": false,\n    \"allowE164PublicCalls\": false,\n    \"preferE164NumberFormatForCallbackServices\": false,\n    \"publicDigitMap\": \"[1-9]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": \"nine\"\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"}],"_postman_id":"fbf920cb-b0a1-4c7a-9e9f-ec86a746605e"},{"name":"Group Dial Plan Policy Access Codes","event":[{"listen":"test","script":{"id":"fac7393d-f0ec-432e-b1cb-ec864f2d31db","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"a7f1a84d-99c0-4214-8617-2b739456c080","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/dial-plan-policy/access-codes?serviceProviderId=ent.odin&groupId=grp.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","access-codes"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"f0c3006e-c258-4b3c-842c-e751d15c617c","name":"Group Dial Plan Policy Access Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/access-codes?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","access-codes"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"deviceName","value":"4002@parkbenchsolutions.com","disabled":true},{"key":"q","type":"text","value":"available","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": null\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"}],"_postman_id":"a7f1a84d-99c0-4214-8617-2b739456c080"},{"name":"Group Dial Plan Policy Access Code","event":[{"listen":"test","script":{"id":"e8310c92-e9bb-4097-afb4-6f751ed686d6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"07d2b442-9f67-4e69-9721-0d66b8405c3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin&accessCode=8","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"accessCode","value":"8"}],"variable":[]}},"response":[{"id":"c1c0bbf8-9e5d-4c5d-9dda-45990b4af4b0","name":"Group Dial Plan Policy Access Code","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin&accessCode=8","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"accessCode","value":"8"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"8\"\n}"}],"_postman_id":"07d2b442-9f67-4e69-9721-0d66b8405c3e"},{"name":"Group Dial Plan Policy Access Code","id":"e4fdb540-b247-4e21-905c-a7e301fc98e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"seven\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"7\"\n}"},"url":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"865c2ab0-54e6-471b-af27-db5ea00646e8","name":"Group Dial Plan Policy Access Code","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"seven\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"7\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"seven\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"7\"\n}"}],"_postman_id":"e4fdb540-b247-4e21-905c-a7e301fc98e2"},{"name":"Group Dial Plan Policy Access Code","id":"2f7ddce0-1aa6-4136-9b31-eb53d1083302","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"8\"\n}"},"url":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"1cbaa288-8aa9-4e11-ab43-82cab6b686b6","name":"Group Dial Plan Policy Access Code","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"8\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"8\"\n}"}],"_postman_id":"2f7ddce0-1aa6-4136-9b31-eb53d1083302"},{"name":"Group Dial Plan Policy Access Code","id":"7a3090bb-8ffd-4000-a099-6a6f437f50d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"8\"\n}"},"url":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"a99807f7-3fea-4729-956d-d736ee4c9e5c","name":"Group Dial Plan Policy Access Code","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"accessCode\": \"8\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/access-code?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"7a3090bb-8ffd-4000-a099-6a6f437f50d9"},{"name":"Group Dial Plan Policy Access Codes AIM","event":[{"listen":"test","script":{"id":"708275fd-30d8-4487-8c2f-ce7bbf79da30","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"ce4c6186-9dc5-4eb7-ab57-11aa14859cf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/dial-plan-policy/access-codes/aim?serviceProviderId=ent.odin&groupId=grp.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","access-codes","aim"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"d5ca9db5-812d-471a-a7ed-e2534700a5b9","name":"Group Dial Plan Policy Access Codes AIM","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/access-codes/audit?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","access-codes","audit"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": null\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"}],"_postman_id":"ce4c6186-9dc5-4eb7-ab57-11aa14859cf5"},{"name":"Group Dial Plan Policy Access Code AIM","id":"2af0ea37-9735-4622-afdc-37c16250353f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": null\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/dial-plan-policy/access-codes/aim?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dial-plan-policy","access-codes","aim"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"e90f205b-0747-4019-a5bd-b8140aaa562a","name":"Group Dial Plan Policy Access Code Import","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": null\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/groups/dial-plan-policy/access-codes/aim?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dial-plan-policy","access-codes","aim"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"accessCode\": 9,\n            \"description\": null\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        }\n    ]\n}"}],"_postman_id":"2af0ea37-9735-4622-afdc-37c16250353f"},{"name":"Service Provider Dial Plan Policy","event":[{"listen":"test","script":{"id":"a1a4a814-82a7-42b9-adef-17b7ab60960e","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"71581136-85bf-482f-8b9e-880483b1f3d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/dial-plan-policy?serviceProviderId=ent.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"0d9ce6c7-2997-4166-a2d9-21dfed6ba09a","name":"Service Provider Dial Plan Policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"requiresAccessCodeForPublicCalls\": false,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": false,\n    \"publicDigitMap\": \"()\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"71581136-85bf-482f-8b9e-880483b1f3d3"},{"name":"Service Provider Dial Plan Policy","id":"7059a194-b336-4ead-98da-2d42ca75fa3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/dial-plan-policy?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"d0932ea3-58e5-4d6c-b498-6417aff5dd2a","name":"Service Provider Dial Plan Policy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"7059a194-b336-4ead-98da-2d42ca75fa3a"},{"name":"Service Provider Dial Plan Policy AIM","event":[{"listen":"test","script":{"id":"048c5e46-0f00-4cc0-a3f0-c74b0c9db1dc","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"5c220699-ae7c-4468-b26e-293b3c982bbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/dial-plan-policy/aim?serviceProviderId=ent.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","aim"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"4a84e3c7-32cd-47ed-a436-b903956b2f96","name":"Service Provider Dial Plan Policy AIM","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/aim?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","aim"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[]\",\n    \"privateDigitMap\": \"()\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"}],"_postman_id":"5c220699-ae7c-4468-b26e-293b3c982bbd"},{"name":"Service Provider Dial Plan Policy AIM","id":"fc05a7d0-b0f8-41f1-9b79-032bab97e82d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]\",\n    \"privateDigitMap\": \"()\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine-nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/dial-plan-policy/aim","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","aim"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"93df4856-2e4d-441f-afd0-95e761df07a2","name":"Service Provider Dial Plan Policy AIM","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]\",\n    \"privateDigitMap\": \"()\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine-nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/dial-plan-policy/aim"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]\",\n    \"privateDigitMap\": \"()\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": false,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine-nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"}],"_postman_id":"fc05a7d0-b0f8-41f1-9b79-032bab97e82d"},{"name":"Service Provider Dial Plan Policy Access Codes","event":[{"listen":"test","script":{"id":"a854c3b7-3a7b-47ab-80ab-3766e849eb39","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"58951321-d29e-4181-92a1-f68419199f30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/dial-plan-policy/access-codes?serviceProviderId=ent.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","access-codes"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"af87089a-c666-44d6-8998-30c4cc31b202","name":"Service Provider Dial Plan Policy Access Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-codes?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-codes"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        }\n    ]\n}"}],"_postman_id":"58951321-d29e-4181-92a1-f68419199f30"},{"name":"Service Provider Dial Plan Policy Access Code","event":[{"listen":"test","script":{"id":"d93f6884-12d8-4e93-8b41-6e66d55ac882","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"fed85327-7902-425b-93ed-7b067e7c52a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin&accessCode=9","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"accessCode","value":"9"}],"variable":[]}},"response":[{"id":"89d97d49-f866-4b60-9604-ec2895339346","name":"Service Provider Dial Plan Policy Access Code","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin&accessCode=9","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"accessCode","value":"9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": true,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"nine\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"9\"\n}"}],"_postman_id":"fed85327-7902-425b-93ed-7b067e7c52a2"},{"name":"Service Provider Dial Plan Policy Access Code","id":"2f58b2d2-f3bf-4f9f-a2f0-cd09eec511c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight\"\n}"},"url":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"564114e7-c03e-45fa-b7a2-3c72c4d8db27","name":"Service Provider Dial Plan Policy Access Code","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"7\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"seven\"\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"seven\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"7\"\n}"},{"id":"f0d8f608-93cf-48da-8975-b8002d7c6282","name":"Service Provider Dial Plan Policy Access Code","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight\"\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\"\n}"}],"_postman_id":"2f58b2d2-f3bf-4f9f-a2f0-cd09eec511c2"},{"name":"Service Provider Dial Plan Policy Access Code","id":"b7f11fad-0d30-4519-8dc8-af1bc2f949ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\"\n}"},"url":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"703f65b7-b856-4c18-8363-805c48003219","name":"Service Provider Dial Plan Policy Access Code","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\"\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\"\n}"}],"_postman_id":"b7f11fad-0d30-4519-8dc8-af1bc2f949ec"},{"name":"Service Provider Dial Plan Policy Access Code","id":"c0250643-98ff-41bb-b2e1-40b2fcbc70d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\"\n}"},"url":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin&accessCode=9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"accessCode","value":"9"}],"variable":[]}},"response":[{"id":"991b8702-6a11-4a7d-8eca-3e5d3288dd83","name":"Service Provider Dial Plan Policy Access Code","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"accessCode\": \"8\"\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-code?serviceProviderId=ent.odin&accessCode=9","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-code"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"accessCode","value":"9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c0250643-98ff-41bb-b2e1-40b2fcbc70d4"},{"name":"Service Provider Dial Plan Policy Access Codes AIM","event":[{"listen":"test","script":{"id":"fde03a63-927f-4bdf-bf66-c37aba8ba5af","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"027f9e2a-0ee5-4952-9058-115346b94285","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/dial-plan-policy/access-codes/aim?serviceProviderId=ent.odin","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","access-codes","aim"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"99bb7e44-7ee6-42b9-a363-0eb79879447f","name":"Service Provider Dial Plan Policy Access Codes AIM","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-codes/aim?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-codes","aim"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"}],"_postman_id":"027f9e2a-0ee5-4952-9058-115346b94285"},{"name":"Service Provider Dial Plan Policy Access Code AIM","id":"edb3ada0-05e2-4a72-8f11-7f0bcb1b73a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/dial-plan-policy/access-codes/aim?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dial-plan-policy","access-codes","aim"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"8754b898-7355-4e3c-90e2-0448a662e26d","name":"Service Provider Dial Plan Policy Access Code AIM","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/dial-plan-policy/access-codes/aim?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","dial-plan-policy","access-codes","aim"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"}],"_postman_id":"edb3ada0-05e2-4a72-8f11-7f0bcb1b73a1"},{"name":"System Dial Plan Policy","event":[{"listen":"test","script":{"id":"5bbfe41f-8b99-496f-8dc1-ae157c7f6287","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"1ea18082-8f07-4999-9eff-8d27b1d84a62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c6757dc5-473e-4aed-8bc7-7e8b77623419","name":"System Dial Plan Policy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[2-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[2-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\"\n}"}],"_postman_id":"1ea18082-8f07-4999-9eff-8d27b1d84a62"},{"name":"System Dial Plan Policy","id":"df7d084a-5633-4644-8c20-2d7ca25017ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\"\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bbdb7db2-e8d6-410f-b60b-6d46cae2c52f","name":"System Dial Plan Policy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[2-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[2-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\"\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[2-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[2-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\"\n}"}],"_postman_id":"df7d084a-5633-4644-8c20-2d7ca25017ca"},{"name":"System Dial Plan Policy AIM","event":[{"listen":"test","script":{"id":"367e284c-3f5c-476d-97cb-b031f1defdbc","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"32e4848e-50ca-4518-9fcd-11bb56bc2d31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy/aim","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","aim"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"232cd89a-f179-4ebf-b42c-51e25a9bd7e4","name":"System Dial Plan Policy AIM","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy/aim"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        }\n    ]\n}"}],"_postman_id":"32e4848e-50ca-4518-9fcd-11bb56bc2d31"},{"name":"System Dial Plan Policy AIM","id":"eeef44fc-986b-480f-a332-b0a34b5f636f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"requiresAccessCodeForPublicCalls\": false,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven-seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        }\n    ]\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/aim","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","aim"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7e4939e0-edd1-40b6-acda-bd0609991169","name":"System Dial Plan Policy AIM","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        }\n    ]\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/aim"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"requiresAccessCodeForPublicCalls\": true,\n    \"allowE164PublicCalls\": true,\n    \"preferE164NumberFormatForCallbackServices\": true,\n    \"publicDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"privateDigitMap\": \"[1-9]11|[0-1][2-9]11|0[#T]|00|01[2-9]xx.[#T]|*xx|011x.[#T]|[0-1]xxxxxxx[#T]|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxxxx[#T]|101xxxx.[#T]|11|[2-9][#T]\",\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": false,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        }\n    ]\n}"}],"_postman_id":"eeef44fc-986b-480f-a332-b0a34b5f636f"},{"name":"System Dial Plan Policy Access Codes","event":[{"listen":"test","script":{"id":"a6607607-c6ef-4978-b528-5d4c9cd504f5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"1902f960-6160-4e21-8249-94acba25221a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy/access-codes","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","access-codes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dd862f29-2477-40a3-893f-50e6a5ce46bc","name":"System Dial Plan Policy Access Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy/access-codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        }\n    ]\n}"}],"_postman_id":"1902f960-6160-4e21-8249-94acba25221a"},{"name":"System Dial Plan Policy Access Code","event":[{"listen":"test","script":{"id":"651f2a75-9060-416b-a0f3-f37dfa55f9b1","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"269415d2-5189-44e5-bc1b-192ced69ad78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy/access-code?accessCode=9","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"accessCode","value":"9"}],"variable":[]}},"response":[{"id":"f818d301-d222-4bf0-bc55-e0c1a403363b","name":"System Dial Plan Policy Access Code Copy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/system/dial-plan-policy/access-code?accessCode=9","host":["{{url}}"],"path":["api","v2","system","dial-plan-policy","access-code"],"query":[{"key":"accessCode","value":"9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"nine\",\n    \"accessCode\": \"9\"\n}"}],"_postman_id":"269415d2-5189-44e5-bc1b-192ced69ad78"},{"name":"System Dial Plan Policy Access Code","id":"d9e8beda-8c2e-4706-a510-ee1fd52da025","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"accessCode\": \"9\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"nine\"\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/access-code","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"87aa49f3-8945-4782-aafa-3c473c4e819b","name":"System Dial Plan Policy Access Code","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"accessCode\": \"9\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"nine\"\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/access-code"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"nine\",\n    \"accessCode\": \"9\"\n}"}],"_postman_id":"d9e8beda-8c2e-4706-a510-ee1fd52da025"},{"name":"System Dial Plan Policy Access Code","id":"f1d4084c-ca45-4eb1-8365-6b19f2a1be0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"accessCode\": \"8\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\"\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/access-code","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e847fe36-03d1-463d-a7b9-2b35d243dc8e","name":"System Dial Plan Policy Access Code","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"accessCode\": \"8\",\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\"\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/access-code"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"includeCodeForNetworkTranslationsAndRouting\": true,\n    \"includeCodeForScreeningServices\": false,\n    \"enableSecondaryDialTone\": true,\n    \"description\": \"eight-eight\",\n    \"accessCode\": \"8\"\n}"}],"_postman_id":"f1d4084c-ca45-4eb1-8365-6b19f2a1be0c"},{"name":"System Dial Plan Policy Access Code","id":"0fa3135c-b65c-42be-a568-e094752d30d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"accessCode\": \"8\"\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/access-code?accessCode=9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","access-code"],"host":["{{url}}"],"query":[{"key":"accessCode","value":"9"}],"variable":[]}},"response":[{"id":"280a3cf1-59dc-415f-af79-c045c74407df","name":"System Dial Plan Policy Access Code","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"accessCode\": \"8\"\n}"},"url":{"raw":"{{url}}/api/v2/system/dial-plan-policy/access-code?accessCode=9","host":["{{url}}"],"path":["api","v2","system","dial-plan-policy","access-code"],"query":[{"key":"accessCode","value":"9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0fa3135c-b65c-42be-a568-e094752d30d4"},{"name":"System Dial Plan Policy Access Codes AIM","event":[{"listen":"test","script":{"id":"22b1dd01-4ae0-41b8-b015-cb41f6274ae7","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"42c565d2-de4d-4a8e-a366-36ede2293aad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy/access-codes/aim","description":"<p><em>REQUIRED</em></p>\n<ul>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>deviceType: filter by Device Type</li>\n<li>macAddress: search by MAC Address</li>\n<li>netAddress: search by NET Address</li>\n<li>deviceVersion: search by Device Version</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","access-codes","aim"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"107e167a-863f-4eb4-9483-e4a8a4c81d55","name":"System Dial Plan Policy Access Codes AIM","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/dial-plan-policy/access-codes/aim"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        }\n    ]\n}"}],"_postman_id":"42c565d2-de4d-4a8e-a366-36ede2293aad"},{"name":"System Dial Plan Policy Access Code AIM","id":"ee290ee8-ea87-4ba0-8bde-d5a8f0ca6e3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/access-codes/aim","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dial-plan-policy","access-codes","aim"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e86f4c6e-eed2-4905-9b7c-08ace06a8f8a","name":"System Dial Plan Policy Access Code AIM","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/system/dial-plan-policy/access-codes/aim"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"codes\": [\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": true,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"nine\",\n            \"accessCode\": 9\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"seven\",\n            \"accessCode\": 7\n        },\n        {\n            \"includeCodeForNetworkTranslationsAndRouting\": true,\n            \"includeCodeForScreeningServices\": false,\n            \"enableSecondaryDialTone\": true,\n            \"description\": \"eight\",\n            \"accessCode\": 8\n        }\n    ]\n}"}],"_postman_id":"ee290ee8-ea87-4ba0-8bde-d5a8f0ca6e3e"}],"id":"a670a3b7-955b-41c0-b323-d2b6e6b470d5","description":"<blockquote>\n<p>The <strong>privateDigitMap</strong> must have a value if the access codes are present and\n<strong>enableSecondaryDialTone</strong> is set to <strong>true</strong></p>\n</blockquote>\n<h6 id=\"group-dial-plan-policy-settings\">Group Dial Plan Policy Settings:</h6>\n<blockquote>\n<p><strong>useSetting</strong> : <em>[\"System\", \"Service Provider\", \"Group\"]</em></p>\n</blockquote>\n","_postman_id":"a670a3b7-955b-41c0-b323-d2b6e6b470d5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Directed Call Pickup With Barge In","item":[{"name":"User Directed Call Pickup With Barge In","id":"7368099b-2d08-495f-a7a1-b137690e72f4","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/directed-call-pickup-with-barge-in?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","directed-call-pickup-with-barge-in"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"47c28450-4094-4b86-a56c-47d510dcbfea","name":"User Directed Call Pickup With Barge In","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/directed-call-pickup-with-barge-in?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","directed-call-pickup-with-barge-in"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"110","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 18:38:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"enableBargeInWarningTone\":true,\"enableAutomaticTargetSelection\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"7368099b-2d08-495f-a7a1-b137690e72f4"},{"name":"User Directed Call Pickup With Barge In","id":"202c6a86-a3e2-4043-b9e3-bee2921bfa5b","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enableBargeInWarningTone\": false,\n    \"enableAutomaticTargetSelection\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/directed-call-pickup-with-barge-in","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","directed-call-pickup-with-barge-in"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1fe50efa-4acd-4807-8e61-b972dcc1dad9","name":"User Directed Call Pickup With Barge In","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enableBargeInWarningTone\": true,\n    \"enableAutomaticTargetSelection\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/directed-call-pickup-with-barge-in"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableBargeInWarningTone\": true,\n    \"enableAutomaticTargetSelection\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6435\n}"}],"_postman_id":"202c6a86-a3e2-4043-b9e3-bee2921bfa5b"}],"id":"97cc17b7-0469-45af-ad8e-6ec95eb4083a","_postman_id":"97cc17b7-0469-45af-ad8e-6ec95eb4083a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"DirectRoute","item":[{"name":"User Direct Route","id":"f9386370-4f0b-43aa-b561-c5888c90332a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/direct-route?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","direct-route"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"f1a33bd9-380c-4bd0-9b63-e4d5e3ca627a","name":"User Direct Route","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/direct-route?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","direct-route"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n    \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n    \"routes\": {\n        \"dtgIdentity\": [\n            \"123\",\n            \"321\"\n        ],\n        \"trunkIdentity\": [\n            \"abc@parkbenchsolutions.com\",\n            \"cba@parkbenchsolutions.com\"\n        ]\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"f9386370-4f0b-43aa-b561-c5888c90332a"},{"name":"User Direct Route","id":"b851e160-f0a7-4c88-bc22-0dc683db7dff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n    \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n    \"routes\": {\n        \"dtgIdentity\": [\n            \"123\",\n            \"321\"\n        ],\n        \"trunkIdentity\": [\n            \"abc@parkbenchsolutions.com\",\n            \"cba@parkbenchsolutions.com\"\n        ]\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/direct-route","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","direct-route"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bd7da730-f5f2-40a1-be71-33e2ed225f0d","name":"User Direct Route","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n    \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n    \"routes\": {\n        \"dtgIdentity\": [\n            \"123\",\n            \"321\"\n        ],\n        \"trunkIdentity\": [\n            \"abc@parkbenchsolutions.com\",\n            \"cba@parkbenchsolutions.com\"\n        ]\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/direct-route"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n    \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n    \"routes\": {\n        \"dtgIdentity\": [\n            \"123\",\n            \"321\"\n        ],\n        \"trunkIdentity\": [\n            \"abc@parkbenchsolutions.com\",\n            \"cba@parkbenchsolutions.com\"\n        ]\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6466\n}"}],"_postman_id":"b851e160-f0a7-4c88-bc22-0dc683db7dff"}],"id":"181ae7c1-5708-4606-83f2-47f4b85175cf","_postman_id":"181ae7c1-5708-4606-83f2-47f4b85175cf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Dn","item":[{"name":"User DNs","id":"b43a4918-6147-4d62-a99d-e72206dc26e9","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/users/dns?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","dns"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"ec1cc037-6f90-49ae-a7cc-cfd58f145086","name":"User DNs","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/users/dns?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","dns"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 21:46:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"39"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"min\": \"9589582000\",\n        \"activated\": true\n    }\n]"}],"_postman_id":"b43a4918-6147-4d62-a99d-e72206dc26e9"},{"name":"Group Dns","id":"29c7ef4a-320b-42f7-9eea-2b55189b11f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/dns?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>Legacy, does not include country code</p>\n","type":"text/plain"},"key":"q","value":"available"},{"disabled":true,"description":{"content":"<p>assigned &amp; activated is false; includes country code</p>\n","type":"text/plain"},"key":"q","value":"cc-available"},{"disabled":true,"description":{"content":"<p>activated is true; includes country code</p>\n","type":"text/plain"},"key":"q","value":"activated"}],"variable":[]}},"response":[{"id":"e6044654-cfed-4330-8089-ba7bcaaa4caf","name":"Group Dns","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/dns?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","dns"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"q","value":"available","description":"(optional)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"dns\": [\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-9709580001\",\n            \"max\": \"+1-9709580009\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-9709580010\",\n            \"max\": null\n        }\n    ]\n}"}],"_postman_id":"29c7ef4a-320b-42f7-9eea-2b55189b11f2"},{"name":"Group Dn Search","id":"d1c6eec8-f002-4710-bc5b-289d179568dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/dns/search?dn=513*&serviceProviderId=ent.odin&groupId=grp.odin","description":"<p><em>PARAMETERS</em></p>\n<ul>\n<li>dn: dn to search for</li>\n<li>serviceProviderId: service provider to limit search</li>\n<li>groupId: group to limit the search</li>\n<li>limit: limit the results</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>dn=9589582000   | Equal To</li>\n<li>dn=958958200*   | Starts With</li>\n<li>dn=*958958*     | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns","search"],"host":["{{url}}"],"query":[{"key":"dn","value":"513*"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"b0663747-a376-41fd-bad4-4c33ce118c8a","name":"Group Dn Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/groups/dns/search?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dns","search"],"query":[{"key":"dn","value":"958958*","disabled":true},{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"phoneNumbers\": \"+1-2345678900\",\n        \"department\": null,\n        \"activated\": false,\n        \"userId\": \"group.paging2@parkbenchsolutions.com\",\n        \"lastName\": \"group.paging2\",\n        \"firstName\": \"Group Paging\",\n        \"extension\": \"78900\",\n        \"emailAddress\": null,\n        \"userType\": \"Group Paging\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"group.paging2@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-2345678900\",\n            \"max\": \"\",\n            \"activated\": false\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-2345678905\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"huntgroup1@parkbenchsolutions.com\",\n        \"lastName\": \"huntgroup1\",\n        \"firstName\": \"Hunt Group\",\n        \"extension\": \"\",\n        \"emailAddress\": null,\n        \"userType\": \"Hunt Group\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"huntgroup1@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-2345678905\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-5132224003\",\n        \"department\": null,\n        \"activated\": false,\n        \"userId\": \"aavis1@parkbenchsolutions.com\",\n        \"lastName\": \"aavis1\",\n        \"firstName\": \"Auto Attendant\",\n        \"extension\": \"24003\",\n        \"emailAddress\": null,\n        \"userType\": \"Auto Attendant\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"aavis1@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-5132224003\",\n            \"max\": \"\",\n            \"activated\": false\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-5134004003\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"6106424235X4020@parkbenchsolutions.com\",\n        \"lastName\": 4003,\n        \"firstName\": 4003,\n        \"extension\": \"04003\",\n        \"emailAddress\": \"developer@parkbenchsolutions.com\",\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"6106424235X4020@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-5134004003\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-5135564000\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"5135564000@parkbenchsolutions.com\",\n        \"lastName\": \"Demo user\",\n        \"firstName\": \"Marc\",\n        \"extension\": \"64000\",\n        \"emailAddress\": null,\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"5135564000@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-5135564000\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-8135551001\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"flexible1@parkbenchsolutions.com\",\n        \"lastName\": \"flexible1\",\n        \"firstName\": \"Flexible Seating Host\",\n        \"extension\": \"51001\",\n        \"emailAddress\": null,\n        \"userType\": \"Flexible Seating Host\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"flexible1@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-8135551001\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-8135551002\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"4001@parkbenchsolutions.com\",\n        \"lastName\": 4001,\n        \"firstName\": 4001,\n        \"extension\": \"51401\",\n        \"emailAddress\": \"developer@parkbenchsolutions.com\",\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"4001@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-8135551002\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-8135551006 - +1-8135551008\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"huntgroup1@parkbenchsolutions.com\",\n        \"lastName\": \"huntgroup1\",\n        \"firstName\": \"Hunt Group\",\n        \"extension\": \"\",\n        \"emailAddress\": null,\n        \"userType\": \"Hunt Group\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"huntgroup1@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-8135551006\",\n            \"max\": \"+1-8135551008\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-8595551020\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"aatest1@parkbenchsolutions.com\",\n        \"lastName\": \"aatest11\",\n        \"firstName\": \"Auto Attendant\",\n        \"extension\": \"51020\",\n        \"emailAddress\": null,\n        \"userType\": \"Auto Attendant\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"aatest1@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-8595551020\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-8595551024\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"group.paging1@parkbenchsolutions.com\",\n        \"lastName\": \"group.paging1\",\n        \"firstName\": \"Group Paging\",\n        \"extension\": \"51024\",\n        \"emailAddress\": null,\n        \"userType\": \"Group Paging\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"group.paging1@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-8595551024\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-8595551401\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"4001@parkbenchsolutions.com\",\n        \"lastName\": 4001,\n        \"firstName\": 4001,\n        \"extension\": \"51401\",\n        \"emailAddress\": \"developer@parkbenchsolutions.com\",\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"4001@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-8595551401\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-8595551402\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"flexible2@parkbenchsolutions.com\",\n        \"lastName\": \"flexible2\",\n        \"firstName\": \"Flexible Seating Host\",\n        \"extension\": \"51402\",\n        \"emailAddress\": null,\n        \"userType\": \"Flexible Seating Host\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userIdShort\": \"flexible2@parkbenchsolutions.com\",\n        \"domain\": \"parkbenchsolutions.com\",\n        \"dns\": {\n            \"min\": \"+1-8595551402\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    }\n]"}],"_postman_id":"d1c6eec8-f002-4710-bc5b-289d179568dd"},{"name":"Group Dn Details","id":"82561f07-3ae5-47e5-b980-04949030d319","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/dns/details?serviceProviderId=ent.odin&groupId=grp.odin","description":"<p><em>PARAMETERS</em></p>\n<ul>\n<li>dn: dn to search for</li>\n<li>serviceProviderId: service provider to limit search</li>\n<li>groupId: group to limit the search</li>\n<li>limit: limit the results</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>dn=9589582000   | Equal To</li>\n<li>dn=958958200*   | Starts With</li>\n<li>dn=*958958*     | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns","details"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"3ed26d51-9acb-457e-837a-3a767230b77e","name":"Group Dn Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/groups/dns/details?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","dns","details"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"phoneNumbers\": \"+1-2345678900\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": \"Group Calling Line ID\",\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-2345678900\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-2345678900\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": \"group.paging2@parkbenchsolutions.com\",\n            \"lastName\": \"group.paging2\",\n            \"firstName\": \"Group Paging\",\n            \"extension\": 78900,\n            \"emailAddress\": null,\n            \"userType\": \"Group Paging\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-2345678900\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-2345678905\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"huntgroup1@parkbenchsolutions.com\",\n            \"lastName\": \"huntgroup1\",\n            \"firstName\": \"Hunt Group\",\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": \"Hunt Group\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-2345678905\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-2345678908\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-2345678908\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-5132224003\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": \"aavis1@parkbenchsolutions.com\",\n            \"lastName\": \"aavis1\",\n            \"firstName\": \"Auto Attendant\",\n            \"extension\": 24003,\n            \"emailAddress\": null,\n            \"userType\": \"Auto Attendant\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-5132224003\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-5134004000 - +1-5134004002\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-5134004000\",\n            \"max\": \"+1-5134004002\"\n        },\n        {\n            \"phoneNumbers\": \"+1-5134004003\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"6106424235X4020@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"extension\": \"04003\",\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"userType\": \"Normal\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-5134004003\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-5135564000\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"5135564000@parkbenchsolutions.com\",\n            \"lastName\": \"Demo user\",\n            \"firstName\": \"Marc\",\n            \"extension\": 64000,\n            \"emailAddress\": null,\n            \"userType\": \"Normal\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-5135564000\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-5135564001 - +1-5135564004\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-5135564001\",\n            \"max\": \"+1-5135564004\"\n        },\n        {\n            \"phoneNumbers\": \"+1-5135779000 - +1-5135779005\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-5135779000\",\n            \"max\": \"+1-5135779005\"\n        },\n        {\n            \"phoneNumbers\": \"+1-7275551000\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-7275551000\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8001236780 - +1-8001236782\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8001236780\",\n            \"max\": \"+1-8001236782\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8135551001\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"flexible1@parkbenchsolutions.com\",\n            \"lastName\": \"flexible1\",\n            \"firstName\": \"Flexible Seating Host\",\n            \"extension\": 51001,\n            \"emailAddress\": null,\n            \"userType\": \"Flexible Seating Host\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8135551001\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8135551002\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"extension\": 51401,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"userType\": \"Normal\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8135551002\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8135551004\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8135551004\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8135551005\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8135551005\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8135551006 - +1-8135551008\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"huntgroup1@parkbenchsolutions.com\",\n            \"lastName\": \"huntgroup1\",\n            \"firstName\": \"Hunt Group\",\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": \"Hunt Group\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8135551006\",\n            \"max\": \"+1-8135551008\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8135551009\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8135551009\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551001\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551001\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551020\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"aatest1@parkbenchsolutions.com\",\n            \"lastName\": \"aatest11\",\n            \"firstName\": \"Auto Attendant\",\n            \"extension\": 51020,\n            \"emailAddress\": null,\n            \"userType\": \"Auto Attendant\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551020\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551021 - +1-8595551022\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551021\",\n            \"max\": \"+1-8595551022\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551023\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551023\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551024\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"group.paging1@parkbenchsolutions.com\",\n            \"lastName\": \"group.paging1\",\n            \"firstName\": \"Group Paging\",\n            \"extension\": 51024,\n            \"emailAddress\": null,\n            \"userType\": \"Group Paging\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551024\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551025 - +1-8595551029\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551025\",\n            \"max\": \"+1-8595551029\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551031 - +1-8595551102\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551031\",\n            \"max\": \"+1-8595551102\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551104 - +1-8595551202\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551104\",\n            \"max\": \"+1-8595551202\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551204 - +1-8595551400\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551204\",\n            \"max\": \"+1-8595551400\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551401\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"extension\": 51401,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"userType\": \"Normal\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551401\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551402\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": \"flexible2@parkbenchsolutions.com\",\n            \"lastName\": \"flexible2\",\n            \"firstName\": \"Flexible Seating Host\",\n            \"extension\": 51402,\n            \"emailAddress\": null,\n            \"userType\": \"Flexible Seating Host\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551402\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551403\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551403\",\n            \"max\": \"\"\n        },\n        {\n            \"phoneNumbers\": \"+1-8595551404 - +1-8595552001\",\n            \"department\": null,\n            \"activated\": true,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-8595551404\",\n            \"max\": \"+1-8595552001\"\n        },\n        {\n            \"phoneNumbers\": \"+1-9709010012 - +1-9709010014\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-9709010012\",\n            \"max\": \"+1-9709010014\"\n        },\n        {\n            \"phoneNumbers\": \"+1-9709580011\",\n            \"department\": null,\n            \"activated\": false,\n            \"userId\": null,\n            \"lastName\": null,\n            \"firstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null,\n            \"userType\": null,\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"min\": \"+1-9709580011\",\n            \"max\": \"\"\n        }\n    ]\n}"}],"_postman_id":"82561f07-3ae5-47e5-b980-04949030d319"},{"name":"Group Dns","id":"ca360909-f406-43a5-8459-0dfb04162c67","request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"dns\": [\n        {\n            \"min\": \"9709580010\",\n            \"max\": \"9709580010\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/dns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"description":{"content":"<p>(optional)</p>\n","type":"text/plain"},"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"6575048e-1373-4a7c-afde-b394ccf255ea","name":"Group Dns","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"dns\": [\n        {\n            \"min\": \"9709580010\",\n            \"max\": \"9709580010\"\n        }\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/groups/dns","host":["{{url}}"],"path":["api","v2","groups","dns"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true},{"key":"q","value":"available","description":"(optional)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ca360909-f406-43a5-8459-0dfb04162c67"},{"name":"Group Dns","id":"2d65f2ae-7bcf-47c9-8778-44f2241e5d78","request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580011\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/dns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"description":{"content":"<p>(optional)</p>\n","type":"text/plain"},"key":"q","value":"available"}],"variable":[]}},"response":[],"_postman_id":"2d65f2ae-7bcf-47c9-8778-44f2241e5d78"},{"name":"Group Dns Assign Bulk","id":"da3ce19c-33a0-4966-8fa9-8780d497fdcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580011\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/dns/assign/bulk","description":"<p>This will assign the array of dns to both the service provider/enterprise and the group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns","assign","bulk"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"description":{"content":"<p>(optional)</p>\n","type":"text/plain"},"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"c8ea6add-855e-4fac-aa17-003f26d0f426","name":"Group Dns Assign Bulk","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580011\"\n        }\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/groups/dns/assign/bulk","host":["{{url}}"],"path":["api","v2","groups","dns","assign","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true},{"key":"q","value":"available","description":"(optional)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-5132224003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-5134004000\",\n            \"max\": \"+1-5134004002\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5134004003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5134004016\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5134004018\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5135564000\",\n            \"max\": \"+1-5135564002\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-5135564003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5135564004\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-7275551000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8135551001\",\n            \"max\": \"+1-8135551002\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8135551004\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8135551005\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8135551006\",\n            \"max\": \"+1-8135551008\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8135551009\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551001\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8595551020\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551021\",\n            \"max\": \"+1-8595551022\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": false,\n            \"min\": \"+1-8595551023\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551024\",\n            \"max\": \"+1-8595551029\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551031\",\n            \"max\": \"+1-8595551102\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551104\",\n            \"max\": \"+1-8595551202\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551204\",\n            \"max\": \"+1-8595551400\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8595551401\",\n            \"max\": \"+1-8595551402\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": false,\n            \"min\": \"+1-8595551403\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551404\",\n            \"max\": \"+1-8595552001\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-9709580011\",\n            \"max\": null\n        }\n    ]\n}"}],"_postman_id":"da3ce19c-33a0-4966-8fa9-8780d497fdcb"},{"name":"Group Dns un-assign Bulk","id":"a641819c-a437-4821-b568-4f6f21b343e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580011\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/dns/unassign/bulk","description":"<p>This will un-assign the array of dns to both the service provider/enterprise and the group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns","unassign","bulk"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"description":{"content":"<p>(optional)</p>\n","type":"text/plain"},"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"b0e29ec7-ea97-424a-a5ac-50b0ae33aed5","name":"Group Dns UnAssign Bulk","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580011\"\n        }\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/groups/dns/unassign/bulk","host":["{{url}}"],"path":["api","v2","groups","dns","unassign","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true},{"description":"(optional)","key":"q","value":"available","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-5132224003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-5134004000\",\n            \"max\": \"+1-5134004002\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5134004003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5134004016\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5134004018\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5135564000\",\n            \"max\": \"+1-5135564002\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": false,\n            \"min\": \"+1-5135564003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5135564004\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-7275551000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8135551001\",\n            \"max\": \"+1-8135551002\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8135551004\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8135551005\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8135551006\",\n            \"max\": \"+1-8135551008\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8135551009\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551001\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8595551020\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551021\",\n            \"max\": \"+1-8595551022\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": false,\n            \"min\": \"+1-8595551023\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551024\",\n            \"max\": \"+1-8595551029\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551031\",\n            \"max\": \"+1-8595551102\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551104\",\n            \"max\": \"+1-8595551202\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551204\",\n            \"max\": \"+1-8595551400\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8595551401\",\n            \"max\": \"+1-8595551402\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": false,\n            \"min\": \"+1-8595551403\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8595551404\",\n            \"max\": \"+1-8595552001\"\n        }\n    ]\n}"}],"_postman_id":"a641819c-a437-4821-b568-4f6f21b343e2"},{"name":"Group Dns","id":"cb8aa12b-fe4c-425f-b2d9-2ebd7eba1314","request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"dns\": [{\n\t\t\"assigned\": true,\n\t\t\"activated\": true,\n\t\t\"min\": \"+1-9709580010\",\n\t\t\"max\": null,\n\t\t\"expanded\": [\"+1-9709580010\"]\n\t}]\n}"},"url":"{{url}}/api/v2/groups/dns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"description":{"content":"<p>(optional)</p>\n","type":"text/plain"},"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"e2ba8039-b74f-4965-9b5d-ac4c35143e29","name":"Group Dns","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"dns\": [{\n\t\t\"assigned\": true,\n\t\t\"activated\": true,\n\t\t\"min\": \"+1-9709580010\",\n\t\t\"max\": null,\n\t\t\"expanded\": [\"+1-9709580010\"]\n\t}]\n}"},"url":{"raw":"{{url}}/api/v2/groups/dns","host":["{{url}}"],"path":["api","v2","groups","dns"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true},{"key":"q","value":"available","description":"(optional)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"cb8aa12b-fe4c-425f-b2d9-2ebd7eba1314"},{"name":"Group Dns Activate","id":"10fb8b2c-0c2c-41b1-85b1-fe74b06074af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n\t\"groupId\": \"grp.odin\",\n\t\"dns\": [{\n\t\t\"assigned\": true,\n\t\t\"activated\": false,\n\t\t\"min\": \"+1-5132851520\",\n\t\t\"max\": null\n\t}, {\n\t\t\"assigned\": true,\n\t\t\"activated\": false,\n\t\t\"min\": \"+1-5132851521\",\n\t\t\"max\": null\n\t}]\n}"},"url":"{{url}}/api/v2/groups/dns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","dns"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"disabled":true,"description":{"content":"<p>(optional)</p>\n","type":"text/plain"},"key":"q","value":"available"}],"variable":[]}},"response":[{"id":"20fb3b6e-edb1-47e0-a207-01684ecbdfb3","name":"Group Dns Activate","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n\t\"groupId\": \"grp.odin\",\n\t\"dns\": [{\n\t\t\"assigned\": true,\n\t\t\"activated\": false,\n\t\t\"min\": \"+1-5132851520\",\n\t\t\"max\": null\n\t}, {\n\t\t\"assigned\": true,\n\t\t\"activated\": false,\n\t\t\"min\": \"+1-5132851521\",\n\t\t\"max\": null\n\t}]\n}"},"url":{"raw":"{{url}}/api/v2/groups/dns","host":["{{url}}"],"path":["api","v2","groups","dns"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true},{"key":"q","value":"available","description":"(optional)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"dns\": [\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-2345678900\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-2345678908\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5123875553\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5131004000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5132011000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5132198500\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5132337654\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5132337655\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": false,\n            \"min\": \"+1-5132655005\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5132655006\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5132655007\",\n            \"max\": \"+1-5132655010\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": false,\n            \"min\": \"+1-5132851520\",\n            \"max\": \"+1-5132851521\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5133825000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5134031000\",\n            \"max\": \"+1-5134031001\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5134031002\",\n            \"max\": \"+1-5134031003\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5134221000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5134221001\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-5134221002\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5136549851\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5136549856\",\n            \"max\": \"+1-5136549859\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5136569842\",\n            \"max\": \"+1-5136569844\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5136569851\",\n            \"max\": \"+1-5136569852\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5136569856\",\n            \"max\": \"+1-5136569859\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5138881000\",\n            \"max\": \"+1-5138881004\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5139228863\",\n            \"max\": \"+1-5139228870\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5223875553\",\n            \"max\": \"+1-5223875554\"\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-5551001000\",\n            \"max\": \"+1-5551001001\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8783449000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8783449001\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8783449002\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-8783449003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-8783449004\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-9135559716\",\n            \"max\": null\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-9871515000\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-9871515001\",\n            \"max\": \"+1-9871515002\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-9871515003\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-9871515004\",\n            \"max\": \"+1-9871515006\"\n        },\n        {\n            \"assigned\": true,\n            \"activated\": true,\n            \"min\": \"+1-9871515007\",\n            \"max\": null\n        },\n        {\n            \"assigned\": false,\n            \"activated\": true,\n            \"min\": \"+1-9871515008\",\n            \"max\": \"+1-9871515010\"\n        }\n    ]\n}"}],"_postman_id":"10fb8b2c-0c2c-41b1-85b1-fe74b06074af"},{"name":"System Dn Search","id":"b3fc9395-2b40-42c2-bd8d-75bb075ff37f","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/dns/search?dn=%2b19589582000","description":"<ul>\n<li>Searches the entire system for the DN specified.  </li>\n<li>Must have Provisioning access or Higher to perform this search.</li>\n<li>Full dn including country code is required</li>\n</ul>\n<p>**NOTE: please encode the + sign (eg: %2b)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dns","search"],"host":["{{url}}"],"query":[{"key":"dn","value":"%2b19589582000"}],"variable":[]}},"response":[{"id":"86d783ac-3c34-485f-9127-a78b971155ff","name":"System Dn Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/system/dns/search?dn=%2b19589582000","host":["{{url}}"],"path":["api","v2","system","dns","search"],"query":[{"key":"dn","value":"%2b19589582000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 18:24:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"437"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"phoneNumbers\": \"+1-9589582000\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2000\",\n        \"firstName\": \"mock-2000\",\n        \"extension\": \"2000\",\n        \"emailAddress\": null,\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userIdShort\": \"9589582000\",\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"dns\": {\n            \"min\": \"+1-9589582000\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    }\n]"}],"_postman_id":"b3fc9395-2b40-42c2-bd8d-75bb075ff37f"},{"name":"System Dn List","id":"f1acfffc-abb5-4df8-bfeb-478bc0a9f4df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/dns/index","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dns","index"],"host":["{{url}}"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"b3344daa-015d-4fe0-a716-bb42d81f5e57","name":"System Dn List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/system/dns/index","host":["{{url}}"],"path":["api","v2","system","dns","index"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2025 21:14:11 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    \"+1-234\",\n    \"+1-235\",\n    \"+1-236\",\n    \"+1-237\",\n    \"+1-01234567890\",\n    \"+1-01234567891\",\n    \"+1-01234567892\",\n    \"+1-01234567893\",\n    \"+1-01234567894\",\n    \"+1-01234567895\",\n    \"+1-01234567896\",\n    \"+1-01234567897\",\n    \"+1-01234567898\",\n    \"+1-01234567899\",\n    \"+1-01234567900\",\n    \"+1-01234567901\",\n    \"+61-294232400\",\n    \"+61-294232401\",\n    \"+61-294232402\",\n    \"+61-294232403\",\n    \"+61-294232404\",\n    \"+61-294232405\",\n    \"+61-294232406\",\n    \"+61-294232407\",\n    \"+61-294232408\",\n    \"+61-294232409\",\n    \"+61-294232410\",\n    \"+1-3172251000\",\n    \"+1-3172251001\",\n    \"+1-3172251002\",\n    \"+1-3172251003\",\n    \"+1-3172251004\",\n    \"+1-6145596388\",\n    \"+1-6145596389\",\n    \"+1-2345688905\",\n    \"+1-2345688906\",\n    \"+1-2345688907\",\n    \"+1-2345688908\",\n    \"+1-2345688909\",\n    \"+1-6145596328\",\n    \"+1-6145596329\",\n    \"+1-5135779000\",\n    \"+1-5135779001\",\n    \"+1-5135779002\",\n    \"+1-5135779003\",\n    \"+1-5135779004\",\n    \"+1-5135779005\",\n    \"+1-7279892000\",\n    \"+1-7279892001\",\n    \"+1-7279892002\",\n    \"+1-5551001000\",\n    \"+1-5551001001\",\n    \"+1-5132298700\",\n    \"+1-5132298701\",\n    \"+1-5132298702\",\n    \"+1-5132298703\",\n    \"+1-5139228863\",\n    \"+1-5139228864\",\n    \"+1-5139228865\",\n    \"+1-5139228866\",\n    \"+1-5139228867\",\n    \"+1-5139228868\",\n    \"+1-5139228869\",\n    \"+1-5139228870\",\n    \"+1-5131005000\",\n    \"+1-5131005001\",\n    \"+1-5131005002\",\n    \"+1-5131005003\",\n    \"+1-5131005004\",\n    \"+1-9871515000\",\n    \"+1-9871515001\",\n    \"+1-9871515002\",\n    \"+1-9871515003\",\n    \"+1-9871515004\",\n    \"+1-9871515005\",\n    \"+1-9871515006\",\n    \"+1-9871515007\",\n    \"+1-9871515008\",\n    \"+1-9871515009\",\n    \"+1-9871515010\",\n    \"+1-5138881000\",\n    \"+1-5138881001\",\n    \"+1-5138881002\",\n    \"+1-5138881003\",\n    \"+1-5138881004\",\n    \"+1-3202271460\",\n    \"+1-3202271461\",\n    \"+1-3202271462\",\n    \"+1-3202271463\",\n    \"+1-3202271464\",\n    \"+1-3202271465\",\n    \"+1-5551005000\",\n    \"+1-5551005001\",\n    \"+1-5551005002\",\n    \"+1-5551005003\",\n    \"+1-5551005004\",\n    \"+1-8783449000\",\n    \"+1-8783449001\",\n    \"+1-8783449002\",\n    \"+1-8783449003\",\n    \"+1-8783449004\",\n    \"+1-7272254000\",\n    \"+1-7272254001\",\n    \"+1-7272254002\",\n    \"+1-5136569851\",\n    \"+1-5136569852\",\n    \"+1-2345678901\",\n    \"+1-2345678902\",\n    \"+1-2345678903\",\n    \"+1-2345678904\",\n    \"+1-2345678905\",\n    \"+1-2345678906\",\n    \"+1-2345678907\",\n    \"+1-5355678905\",\n    \"+1-5355678906\",\n    \"+1-5355678907\",\n    \"+1-5355678908\",\n    \"+1-5355678909\",\n    \"+1-7274543000\",\n    \"+1-7274543001\",\n    \"+1-7274543002\",\n    \"+1-5416677524\",\n    \"+1-5416677525\",\n    \"+1-5416677526\",\n    \"+1-5416677527\",\n    \"+1-5416677528\",\n    \"+1-5416677529\",\n    \"+1-5136569856\",\n    \"+1-5136569857\",\n    \"+1-5136569858\",\n    \"+1-5136569859\",\n    \"+1-9709010012\",\n    \"+1-9709010013\",\n    \"+1-9709010014\",\n    \"+1-8595551031\",\n    \"+1-8595551032\",\n    \"+1-8595551033\",\n    \"+1-8595551034\",\n    \"+1-8595551035\",\n    \"+1-8595551036\",\n    \"+1-8595551037\",\n    \"+1-8595551038\",\n    \"+1-8595551039\",\n    \"+1-8595551040\",\n    \"+1-8595551041\",\n    \"+1-8595551042\",\n    \"+1-8595551043\",\n    \"+1-8595551044\",\n    \"+1-8595551045\",\n    \"+1-8595551046\",\n    \"+1-8595551047\",\n    \"+1-8595551048\",\n    \"+1-8595551049\",\n    \"+1-8595551050\",\n    \"+1-8595551051\",\n    \"+1-8595551052\",\n    \"+1-8595551053\",\n    \"+1-8595551054\",\n    \"+1-8595551055\",\n    \"+1-8595551056\",\n    \"+1-8595551057\",\n    \"+1-8595551058\",\n    \"+1-8595551059\",\n    \"+1-8595551060\",\n    \"+1-8595551061\",\n    \"+1-8595551062\",\n    \"+1-8595551063\",\n    \"+1-8595551064\",\n    \"+1-8595551065\",\n    \"+1-8595551066\",\n    \"+1-8595551067\",\n    \"+1-8595551068\",\n    \"+1-8595551069\",\n    \"+1-8595551070\",\n    \"+1-8595551071\",\n    \"+1-8595551072\",\n    \"+1-8595551073\",\n    \"+1-8595551074\",\n    \"+1-8595551075\",\n    \"+1-8595551076\",\n    \"+1-8595551077\",\n    \"+1-8595551078\",\n    \"+1-8595551079\",\n    \"+1-8595551080\",\n    \"+1-8595551081\",\n    \"+1-8595551082\",\n    \"+1-8595551083\",\n    \"+1-8595551084\",\n    \"+1-8595551085\",\n    \"+1-8595551086\",\n    \"+1-8595551087\",\n    \"+1-8595551088\",\n    \"+1-8595551089\",\n    \"+1-8595551090\",\n    \"+1-8595551091\",\n    \"+1-8595551092\",\n    \"+1-8595551093\",\n    \"+1-8595551094\",\n    \"+1-8595551095\",\n    \"+1-8595551096\",\n    \"+1-8595551097\",\n    \"+1-8595551098\",\n    \"+1-8595551099\",\n    \"+1-8595551100\",\n    \"+1-8595551101\",\n    \"+1-8595551102\",\n    \"+1-8595551103\",\n    \"+1-8595551104\",\n    \"+1-8595551105\",\n    \"+1-8595551106\",\n    \"+1-8595551107\",\n    \"+1-8595551108\",\n    \"+1-8595551109\",\n    \"+1-8595551110\",\n    \"+1-8595551111\",\n    \"+1-8595551112\",\n    \"+1-8595551113\",\n    \"+1-8595551114\",\n    \"+1-8595551115\",\n    \"+1-8595551116\",\n    \"+1-8595551117\",\n    \"+1-8595551118\",\n    \"+1-8595551119\",\n    \"+1-8595551120\",\n    \"+1-8595551121\",\n    \"+1-8595551122\",\n    \"+1-8595551123\",\n    \"+1-8595551124\",\n    \"+1-8595551125\",\n    \"+1-8595551126\",\n    \"+1-8595551127\",\n    \"+1-8595551128\",\n    \"+1-8595551129\",\n    \"+1-8595551130\",\n    \"+1-8595551131\",\n    \"+1-8595551132\",\n    \"+1-8595551133\",\n    \"+1-8595551134\",\n    \"+1-8595551135\",\n    \"+1-8595551136\",\n    \"+1-8595551137\",\n    \"+1-8595551138\",\n    \"+1-8595551139\",\n    \"+1-8595551140\",\n    \"+1-8595551141\",\n    \"+1-8595551142\",\n    \"+1-8595551143\",\n    \"+1-8595551144\",\n    \"+1-8595551145\",\n    \"+1-8595551146\",\n    \"+1-8595551147\",\n    \"+1-8595551148\",\n    \"+1-8595551149\",\n    \"+1-8595551150\",\n    \"+1-8595551151\",\n    \"+1-8595551152\",\n    \"+1-8595551153\",\n    \"+1-8595551154\",\n    \"+1-8595551155\",\n    \"+1-8595551156\",\n    \"+1-8595551157\",\n    \"+1-8595551158\",\n    \"+1-8595551159\",\n    \"+1-8595551160\",\n    \"+1-8595551161\",\n    \"+1-8595551162\",\n    \"+1-8595551163\",\n    \"+1-8595551164\",\n    \"+1-8595551165\",\n    \"+1-8595551166\",\n    \"+1-8595551167\",\n    \"+1-8595551168\",\n    \"+1-8595551169\",\n    \"+1-8595551170\",\n    \"+1-8595551171\",\n    \"+1-8595551172\",\n    \"+1-8595551173\",\n    \"+1-8595551174\",\n    \"+1-8595551175\",\n    \"+1-8595551176\",\n    \"+1-8595551177\",\n    \"+1-8595551178\",\n    \"+1-8595551179\",\n    \"+1-8595551180\",\n    \"+1-8595551181\",\n    \"+1-8595551182\",\n    \"+1-8595551183\",\n    \"+1-8595551184\",\n    \"+1-8595551185\",\n    \"+1-8595551186\",\n    \"+1-8595551187\",\n    \"+1-8595551188\",\n    \"+1-8595551189\",\n    \"+1-8595551190\",\n    \"+1-8595551191\",\n    \"+1-8595551192\",\n    \"+1-8595551193\",\n    \"+1-8595551194\",\n    \"+1-8595551195\",\n    \"+1-8595551196\",\n    \"+1-8595551197\",\n    \"+1-8595551198\",\n    \"+1-8595551199\",\n    \"+1-8595551200\",\n    \"+1-8595551201\",\n    \"+1-8595551202\",\n    \"+1-8595551203\",\n    \"+1-8595551204\",\n    \"+1-8595551205\",\n    \"+1-8595551206\",\n    \"+1-8595551207\",\n    \"+1-8595551208\",\n    \"+1-8595551209\",\n    \"+1-8595551210\",\n    \"+1-8595551211\",\n    \"+1-8595551212\",\n    \"+1-8595551213\",\n    \"+1-8595551214\",\n    \"+1-8595551215\",\n    \"+1-8595551216\",\n    \"+1-8595551217\",\n    \"+1-8595551218\",\n    \"+1-8595551219\",\n    \"+1-8595551220\",\n    \"+1-8595551221\",\n    \"+1-8595551222\",\n    \"+1-8595551223\",\n    \"+1-8595551224\",\n    \"+1-8595551225\",\n    \"+1-8595551226\",\n    \"+1-8595551227\",\n    \"+1-8595551228\",\n    \"+1-8595551229\",\n    \"+1-8595551230\",\n    \"+1-8595551231\",\n    \"+1-8595551232\",\n    \"+1-8595551233\",\n    \"+1-8595551234\",\n    \"+1-8595551235\",\n    \"+1-8595551236\",\n    \"+1-8595551237\",\n    \"+1-8595551238\",\n    \"+1-8595551239\",\n    \"+1-8595551240\",\n    \"+1-8595551241\",\n    \"+1-8595551242\",\n    \"+1-8595551243\",\n    \"+1-8595551244\",\n    \"+1-8595551245\",\n    \"+1-8595551246\",\n    \"+1-8595551247\",\n    \"+1-8595551248\",\n    \"+1-8595551249\",\n    \"+1-8595551250\",\n    \"+1-8595551251\",\n    \"+1-8595551252\",\n    \"+1-8595551253\",\n    \"+1-8595551254\",\n    \"+1-8595551255\",\n    \"+1-8595551256\",\n    \"+1-8595551257\",\n    \"+1-8595551258\",\n    \"+1-8595551259\",\n    \"+1-8595551260\",\n    \"+1-8595551261\",\n    \"+1-8595551262\",\n    \"+1-8595551263\",\n    \"+1-8595551264\",\n    \"+1-8595551265\",\n    \"+1-8595551266\",\n    \"+1-8595551267\",\n    \"+1-8595551268\",\n    \"+1-8595551269\",\n    \"+1-8595551270\",\n    \"+1-8595551271\",\n    \"+1-8595551272\",\n    \"+1-8595551273\",\n    \"+1-8595551274\",\n    \"+1-8595551275\",\n    \"+1-8595551276\",\n    \"+1-8595551277\",\n    \"+1-8595551278\",\n    \"+1-8595551279\",\n    \"+1-8595551280\",\n    \"+1-8595551281\",\n    \"+1-8595551282\",\n    \"+1-8595551283\",\n    \"+1-8595551284\",\n    \"+1-8595551285\",\n    \"+1-8595551286\",\n    \"+1-8595551287\",\n    \"+1-8595551288\",\n    \"+1-8595551289\",\n    \"+1-8595551290\",\n    \"+1-8595551291\",\n    \"+1-8595551292\",\n    \"+1-8595551293\",\n    \"+1-8595551294\",\n    \"+1-8595551295\",\n    \"+1-8595551296\",\n    \"+1-8595551297\",\n    \"+1-8595551298\",\n    \"+1-8595551299\",\n    \"+1-8595551300\",\n    \"+1-8595551301\",\n    \"+1-8595551302\",\n    \"+1-8595551303\",\n    \"+1-8595551304\",\n    \"+1-8595551305\",\n    \"+1-8595551306\",\n    \"+1-8595551307\",\n    \"+1-8595551308\",\n    \"+1-8595551309\",\n    \"+1-8595551310\",\n    \"+1-8595551311\",\n    \"+1-8595551312\",\n    \"+1-8595551313\",\n    \"+1-8595551314\",\n    \"+1-8595551315\",\n    \"+1-8595551316\",\n    \"+1-8595551317\",\n    \"+1-8595551318\",\n    \"+1-8595551319\",\n    \"+1-8595551320\",\n    \"+1-8595551321\",\n    \"+1-8595551322\",\n    \"+1-8595551323\",\n    \"+1-8595551324\",\n    \"+1-8595551325\",\n    \"+1-8595551326\",\n    \"+1-8595551327\",\n    \"+1-8595551328\",\n    \"+1-8595551329\",\n    \"+1-8595551330\",\n    \"+1-8595551331\",\n    \"+1-8595551332\",\n    \"+1-8595551333\",\n    \"+1-8595551334\",\n    \"+1-8595551335\",\n    \"+1-8595551336\",\n    \"+1-8595551337\",\n    \"+1-8595551338\",\n    \"+1-8595551339\",\n    \"+1-8595551340\",\n    \"+1-8595551341\",\n    \"+1-8595551342\",\n    \"+1-8595551343\",\n    \"+1-8595551344\",\n    \"+1-8595551345\",\n    \"+1-8595551346\",\n    \"+1-8595551347\",\n    \"+1-8595551348\",\n    \"+1-8595551349\",\n    \"+1-8595551350\",\n    \"+1-8595551351\",\n    \"+1-8595551352\",\n    \"+1-8595551353\",\n    \"+1-8595551354\",\n    \"+1-8595551355\",\n    \"+1-8595551356\",\n    \"+1-8595551357\",\n    \"+1-8595551358\",\n    \"+1-8595551359\",\n    \"+1-8595551360\",\n    \"+1-8595551361\",\n    \"+1-8595551362\",\n    \"+1-8595551363\",\n    \"+1-8595551364\",\n    \"+1-8595551365\",\n    \"+1-8595551366\",\n    \"+1-8595551367\",\n    \"+1-8595551368\",\n    \"+1-8595551369\",\n    \"+1-8595551370\",\n    \"+1-8595551371\",\n    \"+1-8595551372\",\n    \"+1-8595551373\",\n    \"+1-8595551374\",\n    \"+1-8595551375\",\n    \"+1-8595551376\",\n    \"+1-8595551377\",\n    \"+1-8595551378\",\n    \"+1-8595551379\",\n    \"+1-8595551380\",\n    \"+1-8595551381\",\n    \"+1-8595551382\",\n    \"+1-8595551383\",\n    \"+1-8595551384\",\n    \"+1-8595551385\",\n    \"+1-8595551386\",\n    \"+1-8595551387\",\n    \"+1-8595551388\",\n    \"+1-8595551389\",\n    \"+1-8595551390\",\n    \"+1-8595551391\",\n    \"+1-8595551392\",\n    \"+1-8595551393\",\n    \"+1-8595551394\",\n    \"+1-8595551395\",\n    \"+1-8595551396\",\n    \"+1-8595551397\",\n    \"+1-8595551398\",\n    \"+1-8595551399\",\n    \"+1-8595551400\",\n    \"+1-8595551401\",\n    \"+1-8595551402\",\n    \"+1-8595551403\",\n    \"+1-8595551404\",\n    \"+1-8595551405\",\n    \"+1-8595551406\",\n    \"+1-8595551407\",\n    \"+1-8595551408\",\n    \"+1-8595551409\",\n    \"+1-8595551410\",\n    \"+1-8595551411\",\n    \"+1-8595551412\",\n    \"+1-8595551413\",\n    \"+1-8595551414\",\n    \"+1-8595551415\",\n    \"+1-8595551416\",\n    \"+1-8595551417\",\n    \"+1-8595551418\",\n    \"+1-8595551419\",\n    \"+1-8595551420\",\n    \"+1-8595551421\",\n    \"+1-8595551422\",\n    \"+1-8595551423\",\n    \"+1-8595551424\",\n    \"+1-8595551425\",\n    \"+1-8595551426\",\n    \"+1-8595551427\",\n    \"+1-8595551428\",\n    \"+1-8595551429\",\n    \"+1-8595551430\",\n    \"+1-8595551431\",\n    \"+1-8595551432\",\n    \"+1-8595551433\",\n    \"+1-8595551434\",\n    \"+1-8595551435\",\n    \"+1-8595551436\",\n    \"+1-8595551437\",\n    \"+1-8595551438\",\n    \"+1-8595551439\",\n    \"+1-8595551440\",\n    \"+1-8595551441\",\n    \"+1-8595551442\",\n    \"+1-8595551443\",\n    \"+1-8595551444\",\n    \"+1-8595551445\",\n    \"+1-8595551446\",\n    \"+1-8595551447\",\n    \"+1-8595551448\",\n    \"+1-8595551449\",\n    \"+1-8595551450\",\n    \"+1-8595551451\",\n    \"+1-8595551452\",\n    \"+1-8595551453\",\n    \"+1-8595551454\",\n    \"+1-8595551455\",\n    \"+1-8595551456\",\n    \"+1-8595551457\",\n    \"+1-8595551458\",\n    \"+1-8595551459\",\n    \"+1-8595551460\",\n    \"+1-8595551461\",\n    \"+1-8595551462\",\n    \"+1-8595551463\",\n    \"+1-8595551464\",\n    \"+1-8595551465\",\n    \"+1-8595551466\",\n    \"+1-8595551467\",\n    \"+1-8595551468\",\n    \"+1-8595551469\",\n    \"+1-8595551470\",\n    \"+1-8595551471\",\n    \"+1-8595551472\",\n    \"+1-8595551473\",\n    \"+1-8595551474\",\n    \"+1-8595551475\",\n    \"+1-8595551476\",\n    \"+1-8595551477\",\n    \"+1-8595551478\",\n    \"+1-8595551479\",\n    \"+1-8595551480\",\n    \"+1-8595551481\",\n    \"+1-8595551482\",\n    \"+1-8595551483\",\n    \"+1-8595551484\",\n    \"+1-8595551485\",\n    \"+1-8595551486\",\n    \"+1-8595551487\",\n    \"+1-8595551488\",\n    \"+1-8595551489\",\n    \"+1-8595551490\",\n    \"+1-8595551491\",\n    \"+1-8595551492\",\n    \"+1-8595551493\",\n    \"+1-8595551494\",\n    \"+1-8595551495\",\n    \"+1-8595551496\",\n    \"+1-8595551497\",\n    \"+1-8595551498\",\n    \"+1-8595551499\",\n    \"+1-8595551500\",\n    \"+1-8595551501\",\n    \"+1-8595551502\",\n    \"+1-8595551503\",\n    \"+1-8595551504\",\n    \"+1-8595551505\",\n    \"+1-8595551506\",\n    \"+1-8595551507\",\n    \"+1-8595551508\",\n    \"+1-8595551509\",\n    \"+1-8595551510\",\n    \"+1-8595551511\",\n    \"+1-8595551512\",\n    \"+1-8595551513\",\n    \"+1-8595551514\",\n    \"+1-8595551515\",\n    \"+1-8595551516\",\n    \"+1-8595551517\",\n    \"+1-8595551518\",\n    \"+1-8595551519\",\n    \"+1-8595551520\",\n    \"+1-8595551521\",\n    \"+1-8595551522\",\n    \"+1-8595551523\",\n    \"+1-8595551524\",\n    \"+1-8595551525\",\n    \"+1-8595551526\",\n    \"+1-8595551527\",\n    \"+1-8595551528\",\n    \"+1-8595551529\",\n    \"+1-8595551530\",\n    \"+1-8595551531\",\n    \"+1-8595551532\",\n    \"+1-8595551533\",\n    \"+1-8595551534\",\n    \"+1-8595551535\",\n    \"+1-8595551536\",\n    \"+1-8595551537\",\n    \"+1-8595551538\",\n    \"+1-8595551539\",\n    \"+1-8595551540\",\n    \"+1-8595551541\",\n    \"+1-8595551542\",\n    \"+1-8595551543\",\n    \"+1-8595551544\",\n    \"+1-8595551545\",\n    \"+1-8595551546\",\n    \"+1-8595551547\",\n    \"+1-8595551548\",\n    \"+1-8595551549\",\n    \"+1-8595551550\",\n    \"+1-8595551551\",\n    \"+1-8595551552\",\n    \"+1-8595551553\",\n    \"+1-8595551554\",\n    \"+1-8595551555\",\n    \"+1-8595551556\",\n    \"+1-8595551557\",\n    \"+1-8595551558\",\n    \"+1-8595551559\",\n    \"+1-8595551560\",\n    \"+1-8595551561\",\n    \"+1-8595551562\",\n    \"+1-8595551563\",\n    \"+1-8595551564\",\n    \"+1-8595551565\",\n    \"+1-8595551566\",\n    \"+1-8595551567\",\n    \"+1-8595551568\",\n    \"+1-8595551569\",\n    \"+1-8595551570\",\n    \"+1-8595551571\",\n    \"+1-8595551572\",\n    \"+1-8595551573\",\n    \"+1-8595551574\",\n    \"+1-8595551575\",\n    \"+1-8595551576\",\n    \"+1-8595551577\",\n    \"+1-8595551578\",\n    \"+1-8595551579\",\n    \"+1-8595551580\",\n    \"+1-8595551581\",\n    \"+1-8595551582\",\n    \"+1-8595551583\",\n    \"+1-8595551584\",\n    \"+1-8595551585\",\n    \"+1-8595551586\",\n    \"+1-8595551587\",\n    \"+1-8595551588\",\n    \"+1-8595551589\",\n    \"+1-8595551590\",\n    \"+1-8595551591\",\n    \"+1-8595551592\",\n    \"+1-8595551593\",\n    \"+1-8595551594\",\n    \"+1-8595551595\",\n    \"+1-8595551596\",\n    \"+1-8595551597\",\n    \"+1-8595551598\",\n    \"+1-8595551599\",\n    \"+1-8595551600\",\n    \"+1-8595551601\",\n    \"+1-8595551602\",\n    \"+1-8595551603\",\n    \"+1-8595551604\",\n    \"+1-8595551605\",\n    \"+1-8595551606\",\n    \"+1-8595551607\",\n    \"+1-8595551608\",\n    \"+1-8595551609\",\n    \"+1-8595551610\",\n    \"+1-8595551611\",\n    \"+1-8595551612\",\n    \"+1-8595551613\",\n    \"+1-8595551614\",\n    \"+1-8595551615\",\n    \"+1-8595551616\",\n    \"+1-8595551617\",\n    \"+1-8595551618\",\n    \"+1-8595551619\",\n    \"+1-8595551620\",\n    \"+1-8595551621\",\n    \"+1-8595551622\",\n    \"+1-8595551623\",\n    \"+1-8595551624\",\n    \"+1-8595551625\",\n    \"+1-8595551626\",\n    \"+1-8595551627\",\n    \"+1-8595551628\",\n    \"+1-8595551629\",\n    \"+1-8595551630\",\n    \"+1-8595551631\",\n    \"+1-8595551632\",\n    \"+1-8595551633\",\n    \"+1-8595551634\",\n    \"+1-8595551635\",\n    \"+1-8595551636\",\n    \"+1-8595551637\",\n    \"+1-8595551638\",\n    \"+1-8595551639\",\n    \"+1-8595551640\",\n    \"+1-8595551641\",\n    \"+1-8595551642\",\n    \"+1-8595551643\",\n    \"+1-8595551644\",\n    \"+1-8595551645\",\n    \"+1-8595551646\",\n    \"+1-8595551647\",\n    \"+1-8595551648\",\n    \"+1-8595551649\",\n    \"+1-8595551650\",\n    \"+1-8595551651\",\n    \"+1-8595551652\",\n    \"+1-8595551653\",\n    \"+1-8595551654\",\n    \"+1-8595551655\",\n    \"+1-8595551656\",\n    \"+1-8595551657\",\n    \"+1-8595551658\",\n    \"+1-8595551659\",\n    \"+1-8595551660\",\n    \"+1-8595551661\",\n    \"+1-8595551662\",\n    \"+1-8595551663\",\n    \"+1-8595551664\",\n    \"+1-8595551665\",\n    \"+1-8595551666\",\n    \"+1-8595551667\",\n    \"+1-8595551668\",\n    \"+1-8595551669\",\n    \"+1-8595551670\",\n    \"+1-8595551671\",\n    \"+1-8595551672\",\n    \"+1-8595551673\",\n    \"+1-8595551674\",\n    \"+1-8595551675\",\n    \"+1-8595551676\",\n    \"+1-8595551677\",\n    \"+1-8595551678\",\n    \"+1-8595551679\",\n    \"+1-8595551680\",\n    \"+1-8595551681\",\n    \"+1-8595551682\",\n    \"+1-8595551683\",\n    \"+1-8595551684\",\n    \"+1-8595551685\",\n    \"+1-8595551686\",\n    \"+1-8595551687\",\n    \"+1-8595551688\",\n    \"+1-8595551689\",\n    \"+1-8595551690\",\n    \"+1-8595551691\",\n    \"+1-8595551692\",\n    \"+1-8595551693\",\n    \"+1-8595551694\",\n    \"+1-8595551695\",\n    \"+1-8595551696\",\n    \"+1-8595551697\",\n    \"+1-8595551698\",\n    \"+1-8595551699\",\n    \"+1-8595551700\",\n    \"+1-8595551701\",\n    \"+1-8595551702\",\n    \"+1-8595551703\",\n    \"+1-8595551704\",\n    \"+1-8595551705\",\n    \"+1-8595551706\",\n    \"+1-8595551707\",\n    \"+1-8595551708\",\n    \"+1-8595551709\",\n    \"+1-8595551710\",\n    \"+1-8595551711\",\n    \"+1-8595551712\",\n    \"+1-8595551713\",\n    \"+1-8595551714\",\n    \"+1-8595551715\",\n    \"+1-8595551716\",\n    \"+1-8595551717\",\n    \"+1-8595551718\",\n    \"+1-8595551719\",\n    \"+1-8595551720\",\n    \"+1-8595551721\",\n    \"+1-8595551722\",\n    \"+1-8595551723\",\n    \"+1-8595551724\",\n    \"+1-8595551725\",\n    \"+1-8595551726\",\n    \"+1-8595551727\",\n    \"+1-8595551728\",\n    \"+1-8595551729\",\n    \"+1-8595551730\",\n    \"+1-8595551731\",\n    \"+1-8595551732\",\n    \"+1-8595551733\",\n    \"+1-8595551734\",\n    \"+1-8595551735\",\n    \"+1-8595551736\",\n    \"+1-8595551737\",\n    \"+1-8595551738\",\n    \"+1-8595551739\",\n    \"+1-8595551740\",\n    \"+1-8595551741\",\n    \"+1-8595551742\",\n    \"+1-8595551743\",\n    \"+1-8595551744\",\n    \"+1-8595551745\",\n    \"+1-8595551746\",\n    \"+1-8595551747\",\n    \"+1-8595551748\",\n    \"+1-8595551749\",\n    \"+1-8595551750\",\n    \"+1-8595551751\",\n    \"+1-8595551752\",\n    \"+1-8595551753\",\n    \"+1-8595551754\",\n    \"+1-8595551755\",\n    \"+1-8595551756\",\n    \"+1-8595551757\",\n    \"+1-8595551758\",\n    \"+1-8595551759\",\n    \"+1-8595551760\",\n    \"+1-8595551761\",\n    \"+1-8595551762\",\n    \"+1-8595551763\",\n    \"+1-8595551764\",\n    \"+1-8595551765\",\n    \"+1-8595551766\",\n    \"+1-8595551767\",\n    \"+1-8595551768\",\n    \"+1-8595551769\",\n    \"+1-8595551770\",\n    \"+1-8595551771\",\n    \"+1-8595551772\",\n    \"+1-8595551773\",\n    \"+1-8595551774\",\n    \"+1-8595551775\",\n    \"+1-8595551776\",\n    \"+1-8595551777\",\n    \"+1-8595551778\",\n    \"+1-8595551779\",\n    \"+1-8595551780\",\n    \"+1-8595551781\",\n    \"+1-8595551782\",\n    \"+1-8595551783\",\n    \"+1-8595551784\",\n    \"+1-8595551785\",\n    \"+1-8595551786\",\n    \"+1-8595551787\",\n    \"+1-8595551788\",\n    \"+1-8595551789\",\n    \"+1-8595551790\",\n    \"+1-8595551791\",\n    \"+1-8595551792\",\n    \"+1-8595551793\",\n    \"+1-8595551794\",\n    \"+1-8595551795\",\n    \"+1-8595551796\",\n    \"+1-8595551797\",\n    \"+1-8595551798\",\n    \"+1-8595551799\",\n    \"+1-8595551800\",\n    \"+1-8595551801\",\n    \"+1-8595551802\",\n    \"+1-8595551803\",\n    \"+1-8595551804\",\n    \"+1-8595551805\",\n    \"+1-8595551806\",\n    \"+1-8595551807\",\n    \"+1-8595551808\",\n    \"+1-8595551809\",\n    \"+1-8595551810\",\n    \"+1-8595551811\",\n    \"+1-8595551812\",\n    \"+1-8595551813\",\n    \"+1-8595551814\",\n    \"+1-8595551815\",\n    \"+1-8595551816\",\n    \"+1-8595551817\",\n    \"+1-8595551818\",\n    \"+1-8595551819\",\n    \"+1-8595551820\",\n    \"+1-8595551821\",\n    \"+1-8595551822\",\n    \"+1-8595551823\",\n    \"+1-8595551824\",\n    \"+1-8595551825\",\n    \"+1-8595551826\",\n    \"+1-8595551827\",\n    \"+1-8595551828\",\n    \"+1-8595551829\",\n    \"+1-8595551830\",\n    \"+1-8595551831\",\n    \"+1-8595551832\",\n    \"+1-8595551833\",\n    \"+1-8595551834\",\n    \"+1-8595551835\",\n    \"+1-8595551836\",\n    \"+1-8595551837\",\n    \"+1-8595551838\",\n    \"+1-8595551839\",\n    \"+1-8595551840\",\n    \"+1-8595551841\",\n    \"+1-8595551842\",\n    \"+1-8595551843\",\n    \"+1-8595551844\",\n    \"+1-8595551845\",\n    \"+1-8595551846\",\n    \"+1-8595551847\",\n    \"+1-8595551848\",\n    \"+1-8595551849\",\n    \"+1-8595551850\",\n    \"+1-8595551851\",\n    \"+1-8595551852\",\n    \"+1-8595551853\",\n    \"+1-8595551854\",\n    \"+1-8595551855\",\n    \"+1-8595551856\",\n    \"+1-8595551857\",\n    \"+1-8595551858\",\n    \"+1-8595551859\",\n    \"+1-8595551860\",\n    \"+1-8595551861\",\n    \"+1-8595551862\",\n    \"+1-8595551863\",\n    \"+1-8595551864\",\n    \"+1-8595551865\",\n    \"+1-8595551866\",\n    \"+1-8595551867\",\n    \"+1-8595551868\",\n    \"+1-8595551869\",\n    \"+1-8595551870\",\n    \"+1-8595551871\",\n    \"+1-8595551872\",\n    \"+1-8595551873\",\n    \"+1-8595551874\",\n    \"+1-8595551875\",\n    \"+1-8595551876\",\n    \"+1-8595551877\",\n    \"+1-8595551878\",\n    \"+1-8595551879\",\n    \"+1-8595551880\",\n    \"+1-8595551881\",\n    \"+1-8595551882\",\n    \"+1-8595551883\",\n    \"+1-8595551884\",\n    \"+1-8595551885\",\n    \"+1-8595551886\",\n    \"+1-8595551887\",\n    \"+1-8595551888\",\n    \"+1-8595551889\",\n    \"+1-8595551890\",\n    \"+1-8595551891\",\n    \"+1-8595551892\",\n    \"+1-8595551893\",\n    \"+1-8595551894\",\n    \"+1-8595551895\",\n    \"+1-8595551896\",\n    \"+1-8595551897\",\n    \"+1-8595551898\",\n    \"+1-8595551899\",\n    \"+1-8595551900\",\n    \"+1-8595551901\",\n    \"+1-8595551902\",\n    \"+1-8595551903\",\n    \"+1-8595551904\",\n    \"+1-8595551905\",\n    \"+1-8595551906\",\n    \"+1-8595551907\",\n    \"+1-8595551908\",\n    \"+1-8595551909\",\n    \"+1-8595551910\",\n    \"+1-8595551911\",\n    \"+1-8595551912\",\n    \"+1-8595551913\",\n    \"+1-8595551914\",\n    \"+1-8595551915\",\n    \"+1-8595551916\",\n    \"+1-8595551917\",\n    \"+1-8595551918\",\n    \"+1-8595551919\",\n    \"+1-8595551920\",\n    \"+1-8595551921\",\n    \"+1-8595551922\",\n    \"+1-8595551923\",\n    \"+1-8595551924\",\n    \"+1-8595551925\",\n    \"+1-8595551926\",\n    \"+1-8595551927\",\n    \"+1-8595551928\",\n    \"+1-8595551929\",\n    \"+1-8595551930\",\n    \"+1-8595551931\",\n    \"+1-8595551932\",\n    \"+1-8595551933\",\n    \"+1-8595551934\",\n    \"+1-8595551935\",\n    \"+1-8595551936\",\n    \"+1-8595551937\",\n    \"+1-8595551938\",\n    \"+1-8595551939\",\n    \"+1-8595551940\",\n    \"+1-8595551941\",\n    \"+1-8595551942\",\n    \"+1-8595551943\",\n    \"+1-8595551944\",\n    \"+1-8595551945\",\n    \"+1-8595551946\",\n    \"+1-8595551947\",\n    \"+1-8595551948\",\n    \"+1-8595551949\",\n    \"+1-8595551950\",\n    \"+1-8595551951\",\n    \"+1-8595551952\",\n    \"+1-8595551953\",\n    \"+1-8595551954\",\n    \"+1-8595551955\",\n    \"+1-8595551956\",\n    \"+1-8595551957\",\n    \"+1-8595551958\",\n    \"+1-8595551959\",\n    \"+1-8595551960\",\n    \"+1-8595551961\",\n    \"+1-8595551962\",\n    \"+1-8595551963\",\n    \"+1-8595551964\",\n    \"+1-8595551965\",\n    \"+1-8595551966\",\n    \"+1-8595551967\",\n    \"+1-8595551968\",\n    \"+1-8595551969\",\n    \"+1-8595551970\",\n    \"+1-8595551971\",\n    \"+1-8595551972\",\n    \"+1-8595551973\",\n    \"+1-8595551974\",\n    \"+1-8595551975\",\n    \"+1-8595551976\",\n    \"+1-8595551977\",\n    \"+1-8595551978\",\n    \"+1-8595551979\",\n    \"+1-8595551980\",\n    \"+1-8595551981\",\n    \"+1-8595551982\",\n    \"+1-8595551983\",\n    \"+1-8595551984\",\n    \"+1-8595551985\",\n    \"+1-8595551986\",\n    \"+1-8595551987\",\n    \"+1-8595551988\",\n    \"+1-8595551989\",\n    \"+1-8595551990\",\n    \"+1-8595551991\",\n    \"+1-8595551992\",\n    \"+1-8595551993\",\n    \"+1-8595551994\",\n    \"+1-8595551995\",\n    \"+1-8595551996\",\n    \"+1-8595551997\",\n    \"+1-8595551998\",\n    \"+1-8595551999\",\n    \"+1-8595552000\",\n    \"+1-8595552001\",\n    \"+1-8135551000\",\n    \"+1-8135551001\",\n    \"+1-8135551002\",\n    \"+1-8135551003\",\n    \"+1-8135551004\",\n    \"+1-8135551005\",\n    \"+1-8135551006\",\n    \"+1-8135551007\",\n    \"+1-8135551008\",\n    \"+1-8135551009\",\n    \"+1-5132655005\",\n    \"+1-5132655006\",\n    \"+1-5132655007\",\n    \"+1-5132655008\",\n    \"+1-5132655009\",\n    \"+1-5132655010\",\n    \"+1-9773950846\",\n    \"+1-9773950847\",\n    \"+1-9773950848\",\n    \"+1-9773950849\",\n    \"+1-9773950850\",\n    \"+1-5134031000\",\n    \"+1-5134031001\",\n    \"+1-5134031002\",\n    \"+1-5134031003\",\n    \"+1-5136549856\",\n    \"+1-5136549857\",\n    \"+1-5136549858\",\n    \"+1-5136549859\",\n    \"+1-8595551001\",\n    \"+1-8595551002\",\n    \"+1-8595551003\",\n    \"+1-8595551004\",\n    \"+1-8595551005\",\n    \"+1-8595551006\",\n    \"+1-8595551007\",\n    \"+1-8595551008\",\n    \"+1-8595551009\",\n    \"+1-8595551010\",\n    \"+1-8595551011\",\n    \"+1-8595551012\",\n    \"+1-8595551013\",\n    \"+1-8595551014\",\n    \"+1-8595551015\",\n    \"+1-8595551016\",\n    \"+1-8595551017\",\n    \"+1-8595551018\",\n    \"+1-8595551019\",\n    \"+1-8595551020\",\n    \"+1-8595551021\",\n    \"+1-8595551022\",\n    \"+1-8595551023\",\n    \"+1-8595551024\",\n    \"+1-8595551025\",\n    \"+1-8595551026\",\n    \"+1-8595551027\",\n    \"+1-8595551028\",\n    \"+1-8595551029\",\n    \"+1-5135564000\",\n    \"+1-5135564001\",\n    \"+1-5135564002\",\n    \"+1-5135564003\",\n    \"+1-5135564004\",\n    \"+1-1014141001\",\n    \"+1-1014141002\",\n    \"+1-1014141003\",\n    \"+1-1014141004\",\n    \"+1-1014141005\",\n    \"+1-1014141006\",\n    \"+1-1014141007\",\n    \"+1-1014141008\",\n    \"+1-1014141009\",\n    \"+1-1014141010\",\n    \"+1-5134004020\",\n    \"+1-5134004021\",\n    \"+1-5134004022\",\n    \"+1-5134004023\",\n    \"+1-5134004024\",\n    \"+1-5134004025\",\n    \"+1-5134004026\",\n    \"+1-5134004027\",\n    \"+1-5134004028\",\n    \"+1-5134004029\",\n    \"+1-5134004030\",\n    \"+1-5134004031\",\n    \"+1-5134004032\",\n    \"+1-5134004033\",\n    \"+1-5134004034\",\n    \"+1-5134004035\",\n    \"+1-5134004036\",\n    \"+1-5134004037\",\n    \"+1-5134004038\",\n    \"+1-5134004039\",\n    \"+1-5134004040\",\n    \"+1-5134004041\",\n    \"+1-5134004042\",\n    \"+1-5134004043\",\n    \"+1-5134004044\",\n    \"+1-5134004045\",\n    \"+1-5134004046\",\n    \"+1-5134004047\",\n    \"+1-5134004048\",\n    \"+1-5134004049\",\n    \"+1-5134004050\",\n    \"+1-5134004051\",\n    \"+1-5134004052\",\n    \"+1-5134004053\",\n    \"+1-5134004054\",\n    \"+1-5134004055\",\n    \"+1-5134004056\",\n    \"+1-5134004057\",\n    \"+1-5134004058\",\n    \"+1-5134004059\",\n    \"+1-5134004060\",\n    \"+1-5134004061\",\n    \"+1-5134004062\",\n    \"+1-5134004063\",\n    \"+1-5134004064\",\n    \"+1-5134004065\",\n    \"+1-5134004066\",\n    \"+1-5134004067\",\n    \"+1-5134004068\",\n    \"+1-5134004069\",\n    \"+1-5134004070\",\n    \"+1-5134004071\",\n    \"+1-5134004072\",\n    \"+1-5134004073\",\n    \"+1-5134004074\",\n    \"+1-5134004075\",\n    \"+1-5134004076\",\n    \"+1-5134004077\",\n    \"+1-5134004078\",\n    \"+1-5134004079\",\n    \"+1-5134004080\",\n    \"+1-5134004081\",\n    \"+1-5134004082\",\n    \"+1-5134004083\",\n    \"+1-5134004084\",\n    \"+1-5134004085\",\n    \"+1-5134004086\",\n    \"+1-5134004087\",\n    \"+1-5134004088\",\n    \"+1-5134004089\",\n    \"+1-5134004090\",\n    \"+1-5134004091\",\n    \"+1-5134004092\",\n    \"+1-5134004093\",\n    \"+1-5134004094\",\n    \"+1-5134004095\",\n    \"+1-5134004096\",\n    \"+1-5134004097\",\n    \"+1-5134004098\",\n    \"+1-5134004099\",\n    \"+1-5134004100\",\n    \"+1-5134004101\",\n    \"+1-5134004102\",\n    \"+1-5134004103\",\n    \"+1-5134004104\",\n    \"+1-5134004105\",\n    \"+1-5134004106\",\n    \"+1-5134004107\",\n    \"+1-5134004108\",\n    \"+1-5134004109\",\n    \"+1-5134004110\",\n    \"+1-5134004111\",\n    \"+1-5134004112\",\n    \"+1-5134004113\",\n    \"+1-5134004114\",\n    \"+1-5134004115\",\n    \"+1-5134004116\",\n    \"+1-5134004117\",\n    \"+1-5134004118\",\n    \"+1-5134004119\",\n    \"+1-5134004120\",\n    \"+1-5134004121\",\n    \"+1-5134004122\",\n    \"+1-5134004123\",\n    \"+1-5134004124\",\n    \"+1-5134004125\",\n    \"+1-5134004126\",\n    \"+1-5134004127\",\n    \"+1-5134004128\",\n    \"+1-5134004129\",\n    \"+1-5134004130\",\n    \"+1-5134004131\",\n    \"+1-5134004132\",\n    \"+1-5134004133\",\n    \"+1-5134004134\",\n    \"+1-5134004135\",\n    \"+1-5134004136\",\n    \"+1-5134004137\",\n    \"+1-5134004138\",\n    \"+1-5134004139\",\n    \"+1-5134004140\",\n    \"+1-5134004141\",\n    \"+1-5134004142\",\n    \"+1-5134004143\",\n    \"+1-5134004144\",\n    \"+1-5134004145\",\n    \"+1-5134004146\",\n    \"+1-5134004147\",\n    \"+1-5134004148\",\n    \"+1-5134004149\",\n    \"+1-5134004150\",\n    \"+1-5134004151\",\n    \"+1-5134004152\",\n    \"+1-5134004153\",\n    \"+1-5134004154\",\n    \"+1-5134004155\",\n    \"+1-5134004156\",\n    \"+1-5134004157\",\n    \"+1-5134004158\",\n    \"+1-5134004159\",\n    \"+1-5134004160\",\n    \"+1-5134004161\",\n    \"+1-5134004162\",\n    \"+1-5134004163\",\n    \"+1-5134004164\",\n    \"+1-5134004165\",\n    \"+1-5134004166\",\n    \"+1-5134004167\",\n    \"+1-5134004168\",\n    \"+1-5134004169\",\n    \"+1-5134004170\",\n    \"+1-5134004171\",\n    \"+1-5134004172\",\n    \"+1-5134004173\",\n    \"+1-5134004174\",\n    \"+1-5134004175\",\n    \"+1-5134004176\",\n    \"+1-5134004177\",\n    \"+1-5134004178\",\n    \"+1-5134004179\",\n    \"+1-5134004180\",\n    \"+1-5134004181\",\n    \"+1-5134004182\",\n    \"+1-5134004183\",\n    \"+1-5134004184\",\n    \"+1-5134004185\",\n    \"+1-5134004186\",\n    \"+1-5134004187\",\n    \"+1-5134004188\",\n    \"+1-5134004189\",\n    \"+1-5134004190\",\n    \"+1-5134004191\",\n    \"+1-5134004192\",\n    \"+1-5134004193\",\n    \"+1-5134004194\",\n    \"+1-5134004195\",\n    \"+1-5134004196\",\n    \"+1-5134004197\",\n    \"+1-5134004198\",\n    \"+1-5134004199\",\n    \"+1-5134004200\",\n    \"+1-5134004201\",\n    \"+1-5134004202\",\n    \"+1-5134004203\",\n    \"+1-5134004204\",\n    \"+1-5134004205\",\n    \"+1-5134004206\",\n    \"+1-5134004207\",\n    \"+1-5134004208\",\n    \"+1-5134004209\",\n    \"+1-5134004210\",\n    \"+1-5134004211\",\n    \"+1-5134004212\",\n    \"+1-5134004213\",\n    \"+1-5134004214\",\n    \"+1-5134004215\",\n    \"+1-5134004216\",\n    \"+1-5134004217\",\n    \"+1-5134004218\",\n    \"+1-5134004219\",\n    \"+1-5134004220\",\n    \"+1-5134004221\",\n    \"+1-5134004222\",\n    \"+1-5134004223\",\n    \"+1-5134004224\",\n    \"+1-5134004225\",\n    \"+1-5134004226\",\n    \"+1-5134004227\",\n    \"+1-5134004228\",\n    \"+1-5134004229\",\n    \"+1-5134004230\",\n    \"+1-5134004231\",\n    \"+1-5134004232\",\n    \"+1-5134004233\",\n    \"+1-5134004234\",\n    \"+1-5134004235\",\n    \"+1-5134004236\",\n    \"+1-5134004237\",\n    \"+1-5134004238\",\n    \"+1-5134004239\",\n    \"+1-5134004240\",\n    \"+1-5134004241\",\n    \"+1-5134004242\",\n    \"+1-5134004243\",\n    \"+1-5134004244\",\n    \"+1-5134004245\",\n    \"+1-5134004246\",\n    \"+1-5134004247\",\n    \"+1-5134004248\",\n    \"+1-5134004249\",\n    \"+1-5134004250\",\n    \"+1-5134004251\",\n    \"+1-5134004252\",\n    \"+1-5134004253\",\n    \"+1-5134004254\",\n    \"+1-5134004255\",\n    \"+1-5134004256\",\n    \"+1-5134004257\",\n    \"+1-5134004258\",\n    \"+1-5134004259\",\n    \"+1-5134004260\",\n    \"+1-5134004261\",\n    \"+1-5134004262\",\n    \"+1-5134004263\",\n    \"+1-5134004264\",\n    \"+1-5134004265\",\n    \"+1-5134004266\",\n    \"+1-5134004267\",\n    \"+1-5134004268\",\n    \"+1-5134004269\",\n    \"+1-5134004270\",\n    \"+1-5134004271\",\n    \"+1-5134004272\",\n    \"+1-5134004273\",\n    \"+1-5134004274\",\n    \"+1-5134004275\",\n    \"+1-5134004276\",\n    \"+1-5134004277\",\n    \"+1-5134004278\",\n    \"+1-5134004279\",\n    \"+1-5134004280\",\n    \"+1-5134004281\",\n    \"+1-5134004282\",\n    \"+1-5134004283\",\n    \"+1-5134004284\",\n    \"+1-5134004285\",\n    \"+1-5134004286\",\n    \"+1-5134004287\",\n    \"+1-5134004288\",\n    \"+1-5134004289\",\n    \"+1-5134004290\",\n    \"+1-5134004291\",\n    \"+1-5134004292\",\n    \"+1-5134004293\",\n    \"+1-5134004294\",\n    \"+1-5134004295\",\n    \"+1-5134004296\",\n    \"+1-5134004297\",\n    \"+1-5134004298\",\n    \"+1-5134004299\",\n    \"+1-5134004300\",\n    \"+1-5134004301\",\n    \"+1-5134004302\",\n    \"+1-5134004303\",\n    \"+1-5134004304\",\n    \"+1-5134004305\",\n    \"+1-5134004306\",\n    \"+1-5134004307\",\n    \"+1-5134004308\",\n    \"+1-5134004309\",\n    \"+1-5134004310\",\n    \"+1-5134004311\",\n    \"+1-5134004312\",\n    \"+1-5134004313\",\n    \"+1-5134004314\",\n    \"+1-5134004315\",\n    \"+1-5134004316\",\n    \"+1-5134004317\",\n    \"+1-5134004318\",\n    \"+1-5134004319\",\n    \"+1-5134004320\",\n    \"+1-5134004321\",\n    \"+1-5134004322\",\n    \"+1-5134004323\",\n    \"+1-5134004324\",\n    \"+1-5134004325\",\n    \"+1-5134004326\",\n    \"+1-5134004327\",\n    \"+1-5134004328\",\n    \"+1-5134004329\",\n    \"+1-5134004330\",\n    \"+1-5134004331\",\n    \"+1-5134004332\",\n    \"+1-5134004333\",\n    \"+1-5134004334\",\n    \"+1-5134004335\",\n    \"+1-5134004336\",\n    \"+1-5134004337\",\n    \"+1-5134004338\",\n    \"+1-5134004339\",\n    \"+1-5134004340\",\n    \"+1-5134004341\",\n    \"+1-5134004342\",\n    \"+1-5134004343\",\n    \"+1-5134004344\",\n    \"+1-5134004345\",\n    \"+1-5134004346\",\n    \"+1-5134004347\",\n    \"+1-5134004348\",\n    \"+1-5134004349\",\n    \"+1-5134004350\",\n    \"+1-5134004351\",\n    \"+1-5134004352\",\n    \"+1-5134004353\",\n    \"+1-5134004354\",\n    \"+1-5134004355\",\n    \"+1-5134004356\",\n    \"+1-5134004357\",\n    \"+1-5134004358\",\n    \"+1-5134004359\",\n    \"+1-5134004360\",\n    \"+1-5134004361\",\n    \"+1-5134004362\",\n    \"+1-5134004363\",\n    \"+1-5134004364\",\n    \"+1-5134004365\",\n    \"+1-5134004366\",\n    \"+1-5134004367\",\n    \"+1-5134004368\",\n    \"+1-5134004369\",\n    \"+1-5134004370\",\n    \"+1-5134004371\",\n    \"+1-5134004372\",\n    \"+1-5134004373\",\n    \"+1-5134004374\",\n    \"+1-5134004375\",\n    \"+1-5134004376\",\n    \"+1-5134004377\",\n    \"+1-5134004378\",\n    \"+1-5134004379\",\n    \"+1-5134004380\",\n    \"+1-5134004381\",\n    \"+1-5134004382\",\n    \"+1-5134004383\",\n    \"+1-5134004384\",\n    \"+1-5134004385\",\n    \"+1-5134004386\",\n    \"+1-5134004387\",\n    \"+1-5134004388\",\n    \"+1-5134004389\",\n    \"+1-5134004390\",\n    \"+1-5134004391\",\n    \"+1-5134004392\",\n    \"+1-5134004393\",\n    \"+1-5134004394\",\n    \"+1-5134004395\",\n    \"+1-5134004396\",\n    \"+1-5134004397\",\n    \"+1-5134004398\",\n    \"+1-5134004399\",\n    \"+1-5134004400\",\n    \"+1-5134004401\",\n    \"+1-5134004402\",\n    \"+1-5134004403\",\n    \"+1-5134004404\",\n    \"+1-5134004405\",\n    \"+1-5134004406\",\n    \"+1-5134004407\",\n    \"+1-5134004408\",\n    \"+1-5134004409\",\n    \"+1-5134004410\",\n    \"+1-5134004411\",\n    \"+1-5134004412\",\n    \"+1-5134004413\",\n    \"+1-5134004414\",\n    \"+1-5134004415\",\n    \"+1-5134004416\",\n    \"+1-5134004417\",\n    \"+1-5134004418\",\n    \"+1-5134004419\",\n    \"+1-5134004420\",\n    \"+1-5134004421\",\n    \"+1-5134004422\",\n    \"+1-5134004423\",\n    \"+1-5134004424\",\n    \"+1-5134004425\",\n    \"+1-5134004426\",\n    \"+1-5134004427\",\n    \"+1-5134004428\",\n    \"+1-5134004429\",\n    \"+1-5134004430\",\n    \"+1-5134004431\",\n    \"+1-5134004432\",\n    \"+1-5134004433\",\n    \"+1-5134004434\",\n    \"+1-5134004435\",\n    \"+1-5134004436\",\n    \"+1-5134004437\",\n    \"+1-5134004438\",\n    \"+1-5134004439\",\n    \"+1-5134004440\",\n    \"+1-5134004441\",\n    \"+1-5134004442\",\n    \"+1-5134004443\",\n    \"+1-5134004444\",\n    \"+1-5134004445\",\n    \"+1-5134004446\",\n    \"+1-5134004447\",\n    \"+1-5134004448\",\n    \"+1-5134004449\",\n    \"+1-5134004450\",\n    \"+1-5134004451\",\n    \"+1-5134004452\",\n    \"+1-5134004453\",\n    \"+1-5134004454\",\n    \"+1-5134004455\",\n    \"+1-5134004456\",\n    \"+1-5134004457\",\n    \"+1-5134004458\",\n    \"+1-5134004459\",\n    \"+1-5134004460\",\n    \"+1-5134004461\",\n    \"+1-5134004462\",\n    \"+1-5134004463\",\n    \"+1-5134004464\",\n    \"+1-5134004465\",\n    \"+1-5134004466\",\n    \"+1-5134004467\",\n    \"+1-5134004468\",\n    \"+1-5134004469\",\n    \"+1-5134004470\",\n    \"+1-5134004471\",\n    \"+1-5134004472\",\n    \"+1-5134004473\",\n    \"+1-5134004474\",\n    \"+1-5134004475\",\n    \"+1-5134004476\",\n    \"+1-5134004477\",\n    \"+1-5134004478\",\n    \"+1-5134004479\",\n    \"+1-5134004480\",\n    \"+1-5134004481\",\n    \"+1-5134004482\",\n    \"+1-5134004483\",\n    \"+1-5134004484\",\n    \"+1-5134004485\",\n    \"+1-5134004486\",\n    \"+1-5134004487\",\n    \"+1-5134004488\",\n    \"+1-5134004489\",\n    \"+1-5134004490\",\n    \"+1-5134004491\",\n    \"+1-5134004492\",\n    \"+1-5134004493\",\n    \"+1-5134004494\",\n    \"+1-5134004495\",\n    \"+1-5134004496\",\n    \"+1-5134004497\",\n    \"+1-5134004498\",\n    \"+1-5134004499\",\n    \"+1-5134004500\",\n    \"+1-5134004501\",\n    \"+1-5134004502\",\n    \"+1-5134004503\",\n    \"+1-5134004504\",\n    \"+1-5134004505\",\n    \"+1-5134004506\",\n    \"+1-5134004507\",\n    \"+1-5134004508\",\n    \"+1-5134004509\",\n    \"+1-5134004510\",\n    \"+1-5134004511\",\n    \"+1-5134004512\",\n    \"+1-5134004513\",\n    \"+1-5134004514\",\n    \"+1-5134004515\",\n    \"+1-5134004516\",\n    \"+1-5134004517\",\n    \"+1-5134004518\",\n    \"+1-5134004519\",\n    \"+1-5134004520\",\n    \"+1-5134004521\",\n    \"+1-5134004522\",\n    \"+1-5134004523\",\n    \"+1-5134004524\",\n    \"+1-5134004525\",\n    \"+1-5134004526\",\n    \"+1-5134004527\",\n    \"+1-5134004528\",\n    \"+1-5134004529\",\n    \"+1-5134004530\",\n    \"+1-5134004531\",\n    \"+1-5134004532\",\n    \"+1-5134004533\",\n    \"+1-5134004534\",\n    \"+1-5134004535\",\n    \"+1-5134004536\",\n    \"+1-5134004537\",\n    \"+1-5134004538\",\n    \"+1-5134004539\",\n    \"+1-5134004540\",\n    \"+1-5134004541\",\n    \"+1-5134004542\",\n    \"+1-5134004543\",\n    \"+1-5134004544\",\n    \"+1-5134004545\",\n    \"+1-5134004546\",\n    \"+1-5134004547\",\n    \"+1-5134004548\",\n    \"+1-5134004549\",\n    \"+1-5134004550\",\n    \"+1-5134004551\",\n    \"+1-5134004552\",\n    \"+1-5134004553\",\n    \"+1-5134004554\",\n    \"+1-5134004555\",\n    \"+1-5134004556\",\n    \"+1-5134004557\",\n    \"+1-5134004558\",\n    \"+1-5134004559\",\n    \"+1-5134004560\",\n    \"+1-5134004561\",\n    \"+1-5134004562\",\n    \"+1-5134004563\",\n    \"+1-5134004564\",\n    \"+1-5134004565\",\n    \"+1-5134004566\",\n    \"+1-5134004567\",\n    \"+1-5134004568\",\n    \"+1-5134004569\",\n    \"+1-5134004570\",\n    \"+1-5134004571\",\n    \"+1-5134004572\",\n    \"+1-5134004573\",\n    \"+1-5134004574\",\n    \"+1-5134004575\",\n    \"+1-5134004576\",\n    \"+1-5134004577\",\n    \"+1-5134004578\",\n    \"+1-5134004579\",\n    \"+1-5134004580\",\n    \"+1-5134004581\",\n    \"+1-5134004582\",\n    \"+1-5134004583\",\n    \"+1-5134004584\",\n    \"+1-5134004585\",\n    \"+1-5134004586\",\n    \"+1-5134004587\",\n    \"+1-5134004588\",\n    \"+1-5134004589\",\n    \"+1-5134004590\",\n    \"+1-5134004591\",\n    \"+1-5134004592\",\n    \"+1-5134004593\",\n    \"+1-5134004594\",\n    \"+1-5134004595\",\n    \"+1-5134004596\",\n    \"+1-5134004597\",\n    \"+1-5134004598\",\n    \"+1-5134004599\",\n    \"+1-5134004600\",\n    \"+1-5134004601\",\n    \"+1-5134004602\",\n    \"+1-5134004603\",\n    \"+1-5134004604\",\n    \"+1-5134004605\",\n    \"+1-5134004606\",\n    \"+1-5134004607\",\n    \"+1-5134004608\",\n    \"+1-5134004609\",\n    \"+1-5134004610\",\n    \"+1-5134004611\",\n    \"+1-5134004612\",\n    \"+1-5134004613\",\n    \"+1-5134004614\",\n    \"+1-5134004615\",\n    \"+1-5134004616\",\n    \"+1-5134004617\",\n    \"+1-5134004618\",\n    \"+1-5134004619\",\n    \"+1-5134004620\",\n    \"+1-5134004621\",\n    \"+1-5134004622\",\n    \"+1-5134004623\",\n    \"+1-5134004624\",\n    \"+1-5134004625\",\n    \"+1-5134004626\",\n    \"+1-5134004627\",\n    \"+1-5134004628\",\n    \"+1-5134004629\",\n    \"+1-5134004630\",\n    \"+1-5134004631\",\n    \"+1-5134004632\",\n    \"+1-5134004633\",\n    \"+1-5134004634\",\n    \"+1-5134004635\",\n    \"+1-5134004636\",\n    \"+1-5134004637\",\n    \"+1-5134004638\",\n    \"+1-5134004639\",\n    \"+1-5134004640\",\n    \"+1-5134004641\",\n    \"+1-5134004642\",\n    \"+1-5134004643\",\n    \"+1-5134004644\",\n    \"+1-5134004645\",\n    \"+1-5134004646\",\n    \"+1-5134004647\",\n    \"+1-5134004648\",\n    \"+1-5134004649\",\n    \"+1-5134004650\",\n    \"+1-5134004651\",\n    \"+1-5134004652\",\n    \"+1-5134004653\",\n    \"+1-5134004654\",\n    \"+1-5134004655\",\n    \"+1-5134004656\",\n    \"+1-5134004657\",\n    \"+1-5134004658\",\n    \"+1-5134004659\",\n    \"+1-5134004660\",\n    \"+1-5134004661\",\n    \"+1-5134004662\",\n    \"+1-5134004663\",\n    \"+1-5134004664\",\n    \"+1-5134004665\",\n    \"+1-5134004666\",\n    \"+1-5134004667\",\n    \"+1-5134004668\",\n    \"+1-5134004669\",\n    \"+1-5134004670\",\n    \"+1-5134004671\",\n    \"+1-5134004672\",\n    \"+1-5134004673\",\n    \"+1-5134004674\",\n    \"+1-5134004675\",\n    \"+1-5134004676\",\n    \"+1-5134004677\",\n    \"+1-5134004678\",\n    \"+1-5134004679\",\n    \"+1-5134004680\",\n    \"+1-5134004681\",\n    \"+1-5134004682\",\n    \"+1-5134004683\",\n    \"+1-5134004684\",\n    \"+1-5134004685\",\n    \"+1-5134004686\",\n    \"+1-5134004687\",\n    \"+1-5134004688\",\n    \"+1-5134004689\",\n    \"+1-5134004690\",\n    \"+1-5134004691\",\n    \"+1-5134004692\",\n    \"+1-5134004693\",\n    \"+1-5134004694\",\n    \"+1-5134004695\",\n    \"+1-5134004696\",\n    \"+1-5134004697\",\n    \"+1-5134004698\",\n    \"+1-5134004699\",\n    \"+1-5134004700\",\n    \"+1-5134004701\",\n    \"+1-5134004702\",\n    \"+1-5134004703\",\n    \"+1-5134004704\",\n    \"+1-5134004705\",\n    \"+1-5134004706\",\n    \"+1-5134004707\",\n    \"+1-5134004708\",\n    \"+1-5134004709\",\n    \"+1-5134004710\",\n    \"+1-5134004711\",\n    \"+1-5134004712\",\n    \"+1-5134004713\",\n    \"+1-5134004714\",\n    \"+1-5134004715\",\n    \"+1-5134004716\",\n    \"+1-5134004717\",\n    \"+1-5134004718\",\n    \"+1-5134004719\",\n    \"+1-5134004720\",\n    \"+1-5134004721\",\n    \"+1-5134004722\",\n    \"+1-5134004723\",\n    \"+1-5134004724\",\n    \"+1-5134004725\",\n    \"+1-5134004726\",\n    \"+1-5134004727\",\n    \"+1-5134004728\",\n    \"+1-5134004729\",\n    \"+1-5134004730\",\n    \"+1-5134004731\",\n    \"+1-5134004732\",\n    \"+1-5134004733\",\n    \"+1-5134004734\",\n    \"+1-5134004735\",\n    \"+1-5134004736\",\n    \"+1-5134004737\",\n    \"+1-5134004738\",\n    \"+1-5134004739\",\n    \"+1-5134004740\",\n    \"+1-5134004741\",\n    \"+1-5134004742\",\n    \"+1-5134004743\",\n    \"+1-5134004744\",\n    \"+1-5134004745\",\n    \"+1-5134004746\",\n    \"+1-5134004747\",\n    \"+1-5134004748\",\n    \"+1-5134004749\",\n    \"+1-5134004750\",\n    \"+1-5134004751\",\n    \"+1-5134004752\",\n    \"+1-5134004753\",\n    \"+1-5134004754\",\n    \"+1-5134004755\",\n    \"+1-5134004756\",\n    \"+1-5134004757\",\n    \"+1-5134004758\",\n    \"+1-5134004759\",\n    \"+1-5134004760\",\n    \"+1-5134004761\",\n    \"+1-5134004762\",\n    \"+1-5134004763\",\n    \"+1-5134004764\",\n    \"+1-5134004765\",\n    \"+1-5134004766\",\n    \"+1-5134004767\",\n    \"+1-5134004768\",\n    \"+1-5134004769\",\n    \"+1-5134004770\",\n    \"+1-5134004771\",\n    \"+1-5134004772\",\n    \"+1-5134004773\",\n    \"+1-5134004774\",\n    \"+1-5134004775\",\n    \"+1-5134004776\",\n    \"+1-5134004777\",\n    \"+1-5134004778\",\n    \"+1-5134004779\",\n    \"+1-5134004780\",\n    \"+1-5134004781\",\n    \"+1-5134004782\",\n    \"+1-5134004783\",\n    \"+1-5134004784\",\n    \"+1-5134004785\",\n    \"+1-5134004786\",\n    \"+1-5134004787\",\n    \"+1-5134004788\",\n    \"+1-5134004789\",\n    \"+1-5134004790\",\n    \"+1-5134004791\",\n    \"+1-5134004792\",\n    \"+1-5134004793\",\n    \"+1-5134004794\",\n    \"+1-5134004795\",\n    \"+1-5134004796\",\n    \"+1-5134004797\",\n    \"+1-5134004798\",\n    \"+1-5134004799\",\n    \"+1-5134004800\",\n    \"+1-5134004801\",\n    \"+1-5134004802\",\n    \"+1-5134004803\",\n    \"+1-5134004804\",\n    \"+1-5134004805\",\n    \"+1-5134004806\",\n    \"+1-5134004807\",\n    \"+1-5134004808\",\n    \"+1-5134004809\",\n    \"+1-5134004810\",\n    \"+1-5134004811\",\n    \"+1-5134004812\",\n    \"+1-5134004813\",\n    \"+1-5134004814\",\n    \"+1-5134004815\",\n    \"+1-5134004816\",\n    \"+1-5134004817\",\n    \"+1-5134004818\",\n    \"+1-5134004819\",\n    \"+1-5134004820\",\n    \"+1-5134004821\",\n    \"+1-5134004822\",\n    \"+1-5134004823\",\n    \"+1-5134004824\",\n    \"+1-5134004825\",\n    \"+1-5134004826\",\n    \"+1-5134004827\",\n    \"+1-5134004828\",\n    \"+1-5134004829\",\n    \"+1-5134004830\",\n    \"+1-5134004831\",\n    \"+1-5134004832\",\n    \"+1-5134004833\",\n    \"+1-5134004834\",\n    \"+1-5134004835\",\n    \"+1-5134004836\",\n    \"+1-5134004837\",\n    \"+1-5134004838\",\n    \"+1-5134004839\",\n    \"+1-5134004840\",\n    \"+1-5134004841\",\n    \"+1-5134004842\",\n    \"+1-5134004843\",\n    \"+1-5134004844\",\n    \"+1-5134004845\",\n    \"+1-5134004846\",\n    \"+1-5134004847\",\n    \"+1-5134004848\",\n    \"+1-5134004849\",\n    \"+1-5134004850\",\n    \"+1-5134004851\",\n    \"+1-5134004852\",\n    \"+1-5134004853\",\n    \"+1-5134004854\",\n    \"+1-5134004855\",\n    \"+1-5134004856\",\n    \"+1-5134004857\",\n    \"+1-5134004858\",\n    \"+1-5134004859\",\n    \"+1-5134004860\",\n    \"+1-5134004861\",\n    \"+1-5134004862\",\n    \"+1-5134004863\",\n    \"+1-5134004864\",\n    \"+1-5134004865\",\n    \"+1-5134004866\",\n    \"+1-5134004867\",\n    \"+1-5134004868\",\n    \"+1-5134004869\",\n    \"+1-5134004870\",\n    \"+1-5134004871\",\n    \"+1-5134004872\",\n    \"+1-5134004873\",\n    \"+1-5134004874\",\n    \"+1-5134004875\",\n    \"+1-5134004876\",\n    \"+1-5134004877\",\n    \"+1-5134004878\",\n    \"+1-5134004879\",\n    \"+1-5134004880\",\n    \"+1-5134004881\",\n    \"+1-5134004882\",\n    \"+1-5134004883\",\n    \"+1-5134004884\",\n    \"+1-5134004885\",\n    \"+1-5134004886\",\n    \"+1-5134004887\",\n    \"+1-5134004888\",\n    \"+1-5134004889\",\n    \"+1-5134004890\",\n    \"+1-5134004891\",\n    \"+1-5134004892\",\n    \"+1-5134004893\",\n    \"+1-5134004894\",\n    \"+1-5134004895\",\n    \"+1-5134004896\",\n    \"+1-5134004897\",\n    \"+1-5134004898\",\n    \"+1-5134004899\",\n    \"+1-5134004900\",\n    \"+1-5134004901\",\n    \"+1-5134004902\",\n    \"+1-5134004903\",\n    \"+1-5134004904\",\n    \"+1-5134004905\",\n    \"+1-5134004906\",\n    \"+1-5134004907\",\n    \"+1-5134004908\",\n    \"+1-5134004909\",\n    \"+1-5134004910\",\n    \"+1-5134004911\",\n    \"+1-5134004912\",\n    \"+1-5134004913\",\n    \"+1-5134004914\",\n    \"+1-5134004915\",\n    \"+1-5134004916\",\n    \"+1-5134004917\",\n    \"+1-5134004918\",\n    \"+1-5134004919\",\n    \"+1-5134004920\",\n    \"+1-5134004921\",\n    \"+1-5134004922\",\n    \"+1-5134004923\",\n    \"+1-5134004924\",\n    \"+1-5134004925\",\n    \"+1-5134004926\",\n    \"+1-5134004927\",\n    \"+1-5134004928\",\n    \"+1-5134004929\",\n    \"+1-5134004930\",\n    \"+1-5134004931\",\n    \"+1-5134004932\",\n    \"+1-5134004933\",\n    \"+1-5134004934\",\n    \"+1-5134004935\",\n    \"+1-5134004936\",\n    \"+1-5134004937\",\n    \"+1-5134004938\",\n    \"+1-5134004939\",\n    \"+1-5134004940\",\n    \"+1-5134004941\",\n    \"+1-5134004942\",\n    \"+1-5134004943\",\n    \"+1-5134004944\",\n    \"+1-5134004945\",\n    \"+1-5134004946\",\n    \"+1-5134004947\",\n    \"+1-5134004948\",\n    \"+1-5134004949\",\n    \"+1-5134004950\",\n    \"+1-5134004951\",\n    \"+1-5134004952\",\n    \"+1-5134004953\",\n    \"+1-5134004954\",\n    \"+1-5134004955\",\n    \"+1-5134004956\",\n    \"+1-5134004957\",\n    \"+1-5134004958\",\n    \"+1-5134004959\",\n    \"+1-5134004960\",\n    \"+1-5134004961\",\n    \"+1-5134004962\",\n    \"+1-5134004963\",\n    \"+1-5134004964\",\n    \"+1-5134004965\",\n    \"+1-5134004966\",\n    \"+1-5134004967\",\n    \"+1-5134004968\",\n    \"+1-5134004969\",\n    \"+1-5134004970\",\n    \"+1-5134004971\",\n    \"+1-5134004972\",\n    \"+1-5134004973\",\n    \"+1-5134004974\",\n    \"+1-5134004975\",\n    \"+1-5134004976\",\n    \"+1-5134004977\",\n    \"+1-5134004978\",\n    \"+1-5134004979\",\n    \"+1-5134004980\",\n    \"+1-5134004981\",\n    \"+1-5134004982\",\n    \"+1-5134004983\",\n    \"+1-5134004984\",\n    \"+1-5134004985\",\n    \"+1-5134004986\",\n    \"+1-5134004987\",\n    \"+1-5134004988\",\n    \"+1-5134004989\",\n    \"+1-5134004990\",\n    \"+1-5134004991\",\n    \"+1-5134004992\",\n    \"+1-5134004993\",\n    \"+1-5134004994\",\n    \"+1-5134004995\",\n    \"+1-5134004996\",\n    \"+1-5134004997\",\n    \"+1-5134004998\",\n    \"+1-5134004999\",\n    \"+1-5132298600\",\n    \"+1-5132298601\",\n    \"+1-5132298602\",\n    \"+1-5132298603\",\n    \"+1-2345278905\",\n    \"+1-2345278906\",\n    \"+1-2345278907\",\n    \"+1-2345278908\",\n    \"+1-2345278909\",\n    \"+1-3211001000\",\n    \"+1-3211001001\",\n    \"+1-3211001002\",\n    \"+1-3211001003\",\n    \"+1-3211001004\",\n    \"+1-3211001005\",\n    \"+1-3211001006\",\n    \"+1-3211001007\",\n    \"+1-3211001008\",\n    \"+1-3211001009\",\n    \"+1-8001236780\",\n    \"+1-8001236781\",\n    \"+1-8001236782\",\n    \"+1-5416677620\",\n    \"+1-5416677621\",\n    \"+1-5416677622\",\n    \"+1-5416677623\",\n    \"+1-5416677624\",\n    \"+1-5416677625\",\n    \"+1-5132541000\",\n    \"+1-5132541001\",\n    \"+1-5132541002\",\n    \"+1-5134431000\",\n    \"+1-5134431001\",\n    \"+1-6145596325\",\n    \"+1-6145596326\",\n    \"+1-5135498876\",\n    \"+1-5135498877\",\n    \"+1-5553875553\",\n    \"+1-5553875554\",\n    \"+1-5223875553\",\n    \"+1-5223875554\",\n    \"+1-5132587001\",\n    \"+1-5132587002\",\n    \"+1-5132587003\",\n    \"+1-5132587004\",\n    \"+1-7755678000\",\n    \"+1-7755678001\",\n    \"+1-7755678002\",\n    \"+1-7755678003\",\n    \"+1-7755678004\",\n    \"+1-7279892500\",\n    \"+1-7279892501\",\n    \"+1-7279892502\",\n    \"+1-7279892503\",\n    \"+1-7279892504\",\n    \"+1-5132298500\",\n    \"+1-5132298501\",\n    \"+1-5132298502\",\n    \"+1-5132298503\",\n    \"+1-5132337654\",\n    \"+1-5132337655\",\n    \"+1-5131004003\",\n    \"+1-5131004004\",\n    \"+1-5134004000\",\n    \"+1-5134004001\",\n    \"+1-5134004002\",\n    \"+1-5134004003\",\n    \"+1-5134004004\",\n    \"+1-5134004005\",\n    \"+1-5134004006\",\n    \"+1-5134004007\",\n    \"+1-5134004008\",\n    \"+1-5134004009\",\n    \"+1-5134004010\",\n    \"+1-5134004011\",\n    \"+1-5134004012\",\n    \"+1-5134004013\",\n    \"+1-5134004014\",\n    \"+1-5134004015\",\n    \"+1-5132298510\",\n    \"+1-5132298511\",\n    \"+1-5132298512\",\n    \"+1-5132298513\",\n    \"+1-5132298514\",\n    \"+1-5132298515\",\n    \"+1-5132298516\",\n    \"+1-5132298517\",\n    \"+1-5132298518\",\n    \"+1-5132298519\",\n    \"+1-5138856321\",\n    \"+1-5138856322\",\n    \"+1-5138856323\",\n    \"+1-5138993000\",\n    \"+1-5138993001\",\n    \"+1-5138993002\",\n    \"+1-5138993003\",\n    \"+1-5138993004\",\n    \"+1-5132851520\",\n    \"+1-5132851521\",\n    \"+1-5132458500\",\n    \"+1-5132458501\",\n    \"+1-5132458502\",\n    \"+1-6145596383\",\n    \"+1-6145596384\",\n    \"+1-6145596385\",\n    \"+1-6145596386\",\n    \"+1-6145596363\",\n    \"+1-6145596364\",\n    \"+1-2345678909\",\n    \"+1-2345678910\",\n    \"+1-5131001001\",\n    \"+1-5131001002\",\n    \"+1-5131001003\",\n    \"+1-5131001004\",\n    \"+1-5131001005\",\n    \"+1-2345678805\",\n    \"+1-2345678806\",\n    \"+1-2345678807\",\n    \"+1-2345678808\",\n    \"+1-2345678809\",\n    \"+1-7156549860\",\n    \"+1-7156549861\",\n    \"+1-5136559856\",\n    \"+1-5136559857\",\n    \"+1-5136559858\",\n    \"+1-5136559859\",\n    \"+1-5416677520\",\n    \"+1-5416677521\",\n    \"+1-5416677522\",\n    \"+1-5132298800\",\n    \"+1-5132298801\",\n    \"+1-5132298802\",\n    \"+1-5132298803\",\n    \"+1-5134221000\",\n    \"+1-5134221001\",\n    \"+1-5134221002\",\n    \"+1-7275551000\",\n    \"+1-7275551001\",\n    \"+1-7275551002\",\n    \"+1-2172345957\",\n    \"+1-2172345958\",\n    \"+1-2365678905\",\n    \"+1-2365678906\",\n    \"+1-2365678907\",\n    \"+1-2365678908\",\n    \"+1-2365678909\",\n    \"+1-5136569842\",\n    \"+1-5136569843\",\n    \"+1-5136569844\",\n    \"+1-4345679905\",\n    \"+1-4345679906\",\n    \"+1-4345679907\",\n    \"+1-4345679908\",\n    \"+1-4345679909\",\n    \"+1-9709580012\",\n    \"+1-9709580013\",\n    \"+1-9709580014\",\n    \"+1-9709580015\",\n    \"+1-9709580016\",\n    \"+1-9709580017\",\n    \"+1-9709580018\",\n    \"+1-9709580019\",\n    \"+1-9709580020\",\n    \"+1-3202271467\",\n    \"+1-3202271468\",\n    \"+1-3202271469\",\n    \"+1-9871514000\",\n    \"+1-9871514001\",\n    \"+1-9871514002\",\n    \"+1-9871514003\",\n    \"+1-9871514004\",\n    \"+1-9871514005\",\n    \"+1-9871514006\",\n    \"+1-9871514007\",\n    \"+1-9871514008\",\n    \"+1-9871514009\",\n    \"+1-9871514010\",\n    \"+1-9871514011\",\n    \"+1-9871514012\",\n    \"+1-9871514013\",\n    \"+1-9871514014\",\n    \"+1-9871514015\",\n    \"+1-9871514016\",\n    \"+1-9871514017\",\n    \"+1-9871514018\",\n    \"+1-9871514019\",\n    \"+1-9871514020\",\n    \"+1-9871515011\",\n    \"+1-9871515012\",\n    \"+1-9871515013\",\n    \"+1-9871515014\",\n    \"+1-9871515015\",\n    \"+1-9871515016\",\n    \"+1-9871515017\",\n    \"+1-9871515018\",\n    \"+1-9871515019\",\n    \"+1-9871515020\",\n    \"+1-5136541000\",\n    \"+1-5136541001\",\n    \"+1-5136541002\",\n    \"+1-5136541003\",\n    \"+1-5131002001\",\n    \"+1-5131002002\",\n    \"+1-5131002003\",\n    \"+1-5131002004\",\n    \"+1-5131002005\",\n    \"+1-6148981000\",\n    \"+1-6148981001\",\n    \"+1-6148981002\",\n    \"+1-6148981003\",\n    \"+1-6148981004\",\n    \"+1-6148981005\",\n    \"+1-6148981006\",\n    \"+1-6148981007\",\n    \"+1-6148981008\",\n    \"+1-6148981009\",\n    \"+1-6148981010\",\n    \"+1-6148981011\",\n    \"+1-6148981012\",\n    \"+1-6148981013\",\n    \"+1-6148981014\",\n    \"+1-6148981015\",\n    \"+1-6148981016\",\n    \"+1-6148981017\",\n    \"+1-6148981018\",\n    \"+1-6148981019\"\n]"}],"_postman_id":"f1acfffc-abb5-4df8-bfeb-478bc0a9f4df"},{"name":"System Dn Summary","id":"083645a6-d1e2-437b-be7e-e7f7eb598bdd","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/dns/summary?dn=1000","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dns","summary"],"host":["{{url}}"],"query":[{"disabled":true,"key":"resellerId","value":"Test001"},{"key":"dn","value":"1000"},{"disabled":true,"key":"serviceProviderId","value":null},{"disabled":true,"key":"organizationType","value":null}],"variable":[]}},"response":[{"id":"d28bcb42-bd7b-4eea-a752-6319635c54e4","name":"System Dn Summary","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/dns/summary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:07:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"isEnterprise\": true,\n        \"serviceProviderId\": \"ent.odin\",\n        \"min\": \"+1-5131111110\",\n        \"max\": \"+1-5131111120\"\n    },\n    {\n        \"isEnterprise\": true,\n        \"serviceProviderId\": \"ent.odin\",\n        \"min\": \"+1-6143334444\",\n        \"max\": \"+1-6143334448\"\n    }\n]"}],"_postman_id":"083645a6-d1e2-437b-be7e-e7f7eb598bdd"},{"name":"System Dn Utilization","id":"74cee761-ff58-4cdc-b254-b8a1c23e2067","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/dns/utilization","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","dns","utilization"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5d9c5d6b-f05c-4c71-a3a4-ee192def0913","name":"System Dn Utilization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/dns/utilization"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:08:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3817"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"phoneNumbers\": 382,\n        \"assignedtoGroups\": 159,\n        \"percentageAssigned\": 41,\n        \"isEnterprise\": true,\n        \"activatedOnGroups\": 20\n    }\n]"}],"_postman_id":"74cee761-ff58-4cdc-b254-b8a1c23e2067"},{"name":"Service Provider Dn Search","id":"62238805-7cb4-447b-83a2-1395d92bfe69","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/service-providers/dns/search?dn=958958*&serviceProviderId=odin.mock.ent1","description":"<p><em>PARAMETERS</em></p>\n<ul>\n<li>dn: dn to search for</li>\n<li>serviceProviderId: service provider to limit search</li>\n<li>limit: limit the results</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>dn=9589582000   | Equal To</li>\n<li>dn=958958200*   | Starts With</li>\n<li>dn=*958958*     | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dns","search"],"host":["{{url}}"],"query":[{"key":"dn","value":"958958*"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"21eff025-071f-4263-9454-0489d9e08115","name":"Service Provider Dn Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/service-providers/dns/search?dn=958958*&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","dns","search"],"query":[{"key":"dn","value":"958958*"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 18:33:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2181"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"phoneNumbers\": \"+1-9589582000\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2000\",\n        \"firstName\": \"mock-2000\",\n        \"extension\": \"2000\",\n        \"emailAddress\": null,\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userIdShort\": \"9589582000\",\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"dns\": {\n            \"min\": \"+1-9589582000\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-9589582001\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"9589582001@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2001\",\n        \"firstName\": \"mock-2001\",\n        \"extension\": \"2001\",\n        \"emailAddress\": null,\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userIdShort\": \"9589582001\",\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"dns\": {\n            \"min\": \"+1-9589582001\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-9589582002\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"9589582002@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2002\",\n        \"firstName\": \"mock-2002\",\n        \"extension\": \"2002\",\n        \"emailAddress\": null,\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userIdShort\": \"9589582002\",\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"dns\": {\n            \"min\": \"+1-9589582002\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-9589582003\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"9589582003@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2003\",\n        \"firstName\": \"mock-2003\",\n        \"extension\": \"2003\",\n        \"emailAddress\": null,\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userIdShort\": \"9589582003\",\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"dns\": {\n            \"min\": \"+1-9589582003\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    },\n    {\n        \"phoneNumbers\": \"+1-9589582004\",\n        \"department\": null,\n        \"activated\": true,\n        \"userId\": \"9589582004@as3.xdp.broadsoft.com\",\n        \"lastName\": \"mock-2004\",\n        \"firstName\": \"mock-2004\",\n        \"extension\": \"2004\",\n        \"emailAddress\": null,\n        \"userType\": \"Normal\",\n        \"countryCode\": 1,\n        \"nationalPrefix\": null,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userIdShort\": \"9589582004\",\n        \"domain\": \"as3.xdp.broadsoft.com\",\n        \"dns\": {\n            \"min\": \"+1-9589582004\",\n            \"max\": \"\",\n            \"activated\": true\n        }\n    }\n]"}],"_postman_id":"62238805-7cb4-447b-83a2-1395d92bfe69"},{"name":"Service Provider Dns","id":"fa660f9e-c497-4391-98a1-35af3e6cf73a","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/dns?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dns"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"c195df11-ce84-4bac-b1ea-854a2b6503fb","name":"Service Provider Dns","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/dns?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","dns"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 20:36:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"215"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"dns\": [\n        {\n            \"canDelete\": true,\n            \"groupId\": null,\n            \"min\": \"+1-9709580015\",\n            \"max\": \"+1-9709580100\"\n        },\n        {\n            \"canDelete\": false,\n            \"groupId\": \"odin.mock.grp1\",\n            \"min\": \"+1-9709580001\",\n            \"max\": \"+1-9709580010\"\n        }\n    ]\n}"}],"_postman_id":"fa660f9e-c497-4391-98a1-35af3e6cf73a"},{"name":"Service Provider Dns","id":"1e8201b6-d683-4417-8600-935dff36554e","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580015\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/dns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dns"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4239017c-e718-4f81-b12f-f2bd212cf02d","name":"Service Provider Dns","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580015\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/dns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 20:38:10 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"1e8201b6-d683-4417-8600-935dff36554e"},{"name":"Service Provider Dns","id":"1dd03064-4986-45a7-b14b-05220993883d","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580015\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/dns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","dns"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c73b2bac-39cc-44bf-bc8b-b85a244a386e","name":"Service Provider Dns","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"dns\": [\n        {\n            \"min\": \"9709580011\",\n            \"max\": \"9709580015\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/dns"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 20:37:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"1dd03064-4986-45a7-b14b-05220993883d"}],"id":"28007f14-37f4-47f9-84e6-1d937f5ef343","_postman_id":"28007f14-37f4-47f9-84e6-1d937f5ef343","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Do Not Disturb","item":[{"name":"User Do Not Disturb","id":"53b6105f-eaab-40af-b43f-88be5ef579b5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/do-not-disturb?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","do-not-disturb"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"f7260658-b5de-474d-98e0-aa614f00d022","name":"User Do Not Disturb","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/do-not-disturb?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","do-not-disturb"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"74","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 18:44:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"ringSplash\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"53b6105f-eaab-40af-b43f-88be5ef579b5"},{"name":"User Do Not Disturb","id":"b704d404-9bc0-4319-951e-e832e86bc4ac","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"ringSplash\":true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/do-not-disturb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","do-not-disturb"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"92eefbbf-12ac-432f-81c4-8e6e8cdbedd1","name":"User Do Not Disturb","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"ringSplash\":true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/do-not-disturb"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"ringSplash\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6703\n}"}],"_postman_id":"b704d404-9bc0-4319-951e-e832e86bc4ac"}],"id":"900672b6-bd13-48bc-ab5f-3c7ed4c3cffb","_postman_id":"900672b6-bd13-48bc-ab5f-3c7ed4c3cffb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Domains","item":[{"name":"System Domains","id":"6e4c352c-0cdf-49ea-8fbd-cc9e53e1a407","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/system/domains","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","domains"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0325ab62-64d2-4dc8-b039-09028c82f525","name":"System Domains","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:15:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"85"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"default\": \"mydomain.com\",\n    \"domains\": [\n        \"mydomain.com\",\n        \"mydomain2.com\"\n    ]\n}"}],"_postman_id":"6e4c352c-0cdf-49ea-8fbd-cc9e53e1a407"},{"name":"System Domains","id":"219d9b6a-9adc-45e3-8c67-d14f58ee545d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"domains\": [\n        \"aex1.com\",\n        \"aex2.com\"\n    ]\n}"},"url":"{{url}}/api/v2/system/domains","description":"<p>test 2</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","domains"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b5fa02a0-4c64-40f6-a8af-6a5fb4f8753e","name":"System Domains","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"domain\": \"example3.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"default\": \"alliedtelecom.net\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"example2.com\",\n        \"example3.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"219d9b6a-9adc-45e3-8c67-d14f58ee545d"},{"name":"System Domains","id":"9e91b9f5-a28a-4b79-a51f-6694c4db766e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"domains\": [\n        \"aex1.com\",\n        \"aex2.com\",\n        \"aex3.com\",\n        \"aex4.com\",\n        \"example0.com\",\n        \"example1.com\",\n        \"example111111.com\",\n        \"example2.com\",\n        \"example3.com\",\n        \"example6.com\",\n        \"example7.com\",\n        \"example8.com\"\n    ]\n}"},"url":"{{url}}/api/v2/system/domains","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","domains"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6650ce90-fb33-499b-98e0-fd32169c49fb","name":"System Domains","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"domain\": \"example3.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"default\": \"alliedtelecom.net\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"example2.com\",\n        \"example3.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"9e91b9f5-a28a-4b79-a51f-6694c4db766e"},{"name":"System Domains","id":"edb3702c-0440-4e35-aaf5-92ed21ec5d34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"domains\": [\n        \"aex1.com\",\n        \"aex2.com\"\n    ]\n}"},"url":"{{url}}/api/v2/system/domains","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","domains"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a0b6955b-c6de-4ed7-b191-f8996b009074","name":"System Domains","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"domain\": \"example3.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"default\": \"alliedtelecom.net\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"example2.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"edb3702c-0440-4e35-aaf5-92ed21ec5d34"},{"name":"Service Provider Domains","id":"d6c851a6-25de-4bc5-94c2-73d89f70daee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"dd7724ae-643c-4c65-9bbc-71583fcef6ad","name":"Service Provider Domains","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","domains"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"d6c851a6-25de-4bc5-94c2-73d89f70daee"},{"name":"Service Provider Domains","id":"39417c32-2233-4350-b8b7-839fb3524bc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin.clone\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example0.com\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin.clone","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin.clone"}],"variable":[]}},"response":[{"id":"ac0a6133-9bc9-4243-8e81-4c2d10d6c492","name":"Service Provider Domains","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example2.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","domains"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"example2.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"39417c32-2233-4350-b8b7-839fb3524bc2"},{"name":"Service Provider Domains","id":"c59ecc32-643b-4858-9657-687aaf8f8790","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example111111.com\",\n        \"lab.tekvoice.net\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"bb18e9f5-341d-4f10-b6db-4f76e613922e","name":"Service Provider Domains","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example2.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","domains"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"example2.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"c59ecc32-643b-4858-9657-687aaf8f8790"},{"name":"Service Provider Domains","id":"1cb57bbf-ab95-4cde-8e1c-9736dd3acfe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example2.com\",\n        \"example4.com\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"9c24c83f-4f88-4c36-9195-4a80913834cd","name":"Service Provider Domains","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example2.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/service-providers/domains?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","domains"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"1cb57bbf-ab95-4cde-8e1c-9736dd3acfe0"},{"name":"Group Domains","id":"ae52bd76-dfbb-4404-a260-55f311ddb9a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/domains?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[],"_postman_id":"ae52bd76-dfbb-4404-a260-55f311ddb9a0"},{"name":"Group Domains","id":"05d0cf85-d6bc-4b86-a06d-0e9fea251ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example31.com\",\n        \"example6.com\",\n        \"example8.com\"\n    ]\n}"},"url":"{{url}}/api/v2/groups/domains?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"e9972ab3-5c18-4868-a29d-7e07e73ee8db","name":"Group Domains","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/groups/domains?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","domains"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"05d0cf85-d6bc-4b86-a06d-0e9fea251ccd"},{"name":"Group Domains","id":"3aba4675-de8b-4f12-b0ed-eeb292f4e859","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example111111asdfasdfsdaf.com\",\n        \"example6.com\",\n        \"example7.com\",\n        \"example8.com\",\n        \"lab.tekvoice.net\"\n    ]\n}"},"url":"{{url}}/api/v2/groups/domains?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"f174f611-645d-4c39-bdea-89c8b54b379d","name":"Group Domains","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/groups/domains?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","domains"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"example.com\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"3aba4675-de8b-4f12-b0ed-eeb292f4e859"},{"name":"Group Domains","id":"4aa5486c-5774-49c2-9d5b-9143d2843f00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example2.com\",\n        \"example8.com\"\n    ]\n}"},"url":"{{url}}/api/v2/groups/domains?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","domains"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"c26f14e9-6c2f-4ba8-a518-951b6239a4a3","name":"Group Domains","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"example.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/groups/domains?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","domains"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"default\": \"parkbenchsolutions.com\",\n    \"domains\": [\n        \"abccorp.com\",\n        \"alliedtelecom.net\",\n        \"false\",\n        \"lab.alliedtelecom.net\",\n        \"labconf.alliedtelecom.net\",\n        \"lendlease.com\",\n        \"parkbenchsolutions.com\",\n        \"unit.test.com\",\n        \"xyzcorp.com\"\n    ]\n}"}],"_postman_id":"4aa5486c-5774-49c2-9d5b-9143d2843f00"}],"id":"abe4bff6-60d5-49ca-8b8b-40cba09f0a38","_postman_id":"abe4bff6-60d5-49ca-8b8b-40cba09f0a38","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Emergency Notifications","item":[{"name":"Group Emergency Call Notifications","id":"8365e1f8-7af8-42c8-9fa0-fba088db6e8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/emergency-call-notification?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","emergency-call-notification"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"5382d79e-22ac-4a79-9e2f-aaeabc4565ee","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"8365e1f8-7af8-42c8-9fa0-fba088db6e8e"},{"name":"Group Emergency Call Notifications","id":"4bcf4b2d-4615-44c4-83ba-9b180e7d97fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"sendEmergencyCallNotificationEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/emergency-call-notification","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","emergency-call-notification"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e41c3cb7-c090-4708-8b43-a0c2d2288ed9","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"4bcf4b2d-4615-44c4-83ba-9b180e7d97fe"},{"name":"Service Provider Emergency Call Notifications","id":"53dde496-88f8-4a96-8668-546842e11d94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/emergency-call-notification?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","emergency-call-notification"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"7c9e4de4-6118-45b8-899d-9d0c8eb858d1","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"53dde496-88f8-4a96-8668-546842e11d94"},{"name":"Service Provider Emergency Call Notifications","id":"1d5c384d-3a21-4c46-b741-e420d2c3d2f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"sendEmergencyCallNotificationEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"allowGroupOverride\": false,\n    \"serviceProviderId\": \"ent.odin\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/service-providers/emergency-call-notification","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","emergency-call-notification"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e4cfb372-8f28-4daa-8923-fdbbe4dfe855","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"1d5c384d-3a21-4c46-b741-e420d2c3d2f1"},{"name":"Reseller Emergency Call Notifications","id":"c379abe5-c4b1-4afd-8d05-8983242add49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/resellers/emergency-call-notification?resellerId=parkbenchsolutions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers","emergency-call-notification"],"host":["{{url}}"],"query":[{"key":"resellerId","value":"parkbenchsolutions"}],"variable":[]}},"response":[{"id":"4c72c310-9487-45ac-a5e9-d149b5e222a3","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"c379abe5-c4b1-4afd-8d05-8983242add49"},{"name":"Reseller Emergency Call Notificationsa","id":"a7d60560-544b-4325-a602-80043f9b3e44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"resellerId\": \"parkbenchsolutions\",\n    \"defaultFromAddress\": \"mreverman@parkbenchsolutions.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/resellers/emergency-call-notification","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers","emergency-call-notification"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e49aec64-de3e-4fee-adac-8dc74cdbbd80","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"a7d60560-544b-4325-a602-80043f9b3e44"},{"name":"System Emergency Call Notifications","id":"6ac27968-83d5-4c42-8236-02549f2d449c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/emergency-call-notification","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","emergency-call-notification"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6c5b3371-f86c-40e6-9357-d59ddaf148e6","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"6ac27968-83d5-4c42-8236-02549f2d449c"},{"name":"System Emergency Call Notificationsa","id":"84154e3e-c45c-44b8-969c-84d916a9a970","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"defaultFromAddress\": \"mreverman@parkbenchsolutions.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/emergency-call-notification","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","emergency-call-notification"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d72aacda-29b2-4187-99fa-86154e3c92c4","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"84154e3e-c45c-44b8-969c-84d916a9a970"}],"id":"cb270d02-324d-42b1-a766-6c53e6174055","_postman_id":"cb270d02-324d-42b1-a766-6c53e6174055","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Emergency Zones","item":[{"name":"Emergency Zones","id":"5d866000-0d06-4098-833e-43e620ac3d8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","description":"<h3 id=\"get-group-emergency-zones-with-details\">Get Group Emergency Zones with Details</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>serviceProviderId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks Servicd Provider Id </code></td>\n</tr>\n<tr>\n<td><code>groupId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks Groupo Id </code> .</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyZonesProhibition</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Emergency zone policy to specify what kind of calls will be prohibited by the service when originated from outside the home zone.</code><br /><code>Values</code><br /><code>Prohibit all registrations and call originations</code><br /><code>Prohibit emergency call originations</code></td>\n</tr>\n<tr>\n<td><code>sendEmergencyCallNotifyEmail</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyCallNotifyEmailAddress</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Email address for emergency call notification</code></td>\n</tr>\n<tr>\n<td><code>serviceProviderId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Service Provider Id</code></td>\n</tr>\n<tr>\n<td><code>groupId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Group Id</code></td>\n</tr>\n<tr>\n<td><code>ipAddresses</code></td>\n<td><code>array</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address for Emergency Zones</code></td>\n</tr>\n<tr>\n<td><code>min</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address minimum value of IP range</code></td>\n</tr>\n<tr>\n<td><code>max</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address maximum value of IP range</code><br /><code>required if as an array element for ipAddresses</code><br /><code>For single IP's set max to the min value</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","emergency-zones"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"79ca100a-4c73-44d5-8087-afbb6886c3d8","name":"Group Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/emergency-zones?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","emergency-zones"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:54:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"336"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"5d866000-0d06-4098-833e-43e620ac3d8e"},{"name":"Group Emergency Zones","id":"7047c3b4-d40c-4b2f-af00-85990619652b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        },\n        {\n            \"min\": \"2.0.0.4\",\n            \"max\": \"2.0.0.5\"\n        }    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/emergency-zones","description":"<h3 id=\"post-group-emergency-zones-with-details\">Post Group Emergency Zones with Details</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyZonesProhibition</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Emergency zone policy to specify what kind of calls will be prohibited by the service when originated from outside the home zone.</code><br /><code>Values</code><br /><code>Prohibit all registrations and call originations</code><br /><code>Prohibit emergency call originations</code></td>\n</tr>\n<tr>\n<td><code>sendEmergencyCallNotifyEmail</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyCallNotifyEmailAddress</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Email address for emergency call notification</code></td>\n</tr>\n<tr>\n<td><code>serviceProviderId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Service Provider Id</code></td>\n</tr>\n<tr>\n<td><code>groupId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Group Id</code></td>\n</tr>\n<tr>\n<td><code>ipAddresses</code></td>\n<td><code>array</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address for Emergency Zones</code></td>\n</tr>\n<tr>\n<td><code>min</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address minimum value of IP range</code></td>\n</tr>\n<tr>\n<td><code>max</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address maximum value of IP range</code><br /><code>required if as an array element for ipAddresses</code><br /><code>For single IP's set max to the min value</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>See Response for GET Group Emergency Zones /groups/emergency-zones\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","emergency-zones"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"76ca9157-15e1-491b-80b6-358a75ea11ae","name":"Group Emergency Zone Lists","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"2.0.0.4\",\n            \"max\": \"2.0.0.4\"\n        },\n        {\n            \"min\": \"2.0.0.3\",\n            \"max\": \"2.0.0.5\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/emergency-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:55:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"404"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": false,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"2.0.0.4\",\n            \"max\": \"2.0.0.4\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        },\n        {\n            \"min\": \"2.0.0.3\",\n            \"max\": \"2.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"7047c3b4-d40c-4b2f-af00-85990619652b"},{"name":"Group Emergency Zones","id":"bda81235-a85f-4f57-b44c-e982ad87d1d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": true,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"2.0.0.2\",\n            \"max\": \"2.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.255\"\n        },\n        {\n            \"min\": \"20.0.1.2\",\n            \"max\": \"20.0.1.255\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/emergency-zones","description":"<h3 id=\"put-group-emergency-zones-with-details\">Put Group Emergency Zones with Details</h3>\n<h5 id=\"note-ips-sent-with-this-endpoint-will-only-be-saved-all-other-ips-will-be-removed-to-remove-all-send-an-empty-ipaddresses-array\">Note: IP's sent with this endpoint will only be saved. All other IP's will be removed. To remove all, send an empty ipAddresses array.</h5>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyZonesProhibition</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Emergency zone policy to specify what kind of calls will be prohibited by the service when originated from outside the home zone.</code><br /><code>Values</code><br /><code>Prohibit all registrations and call originations</code><br /><code>Prohibit emergency call originations</code></td>\n</tr>\n<tr>\n<td><code>sendEmergencyCallNotifyEmail</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyCallNotifyEmailAddress</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Email address for emergency call notification</code></td>\n</tr>\n<tr>\n<td><code>serviceProviderId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Service Provider Id</code></td>\n</tr>\n<tr>\n<td><code>groupId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Group Id</code></td>\n</tr>\n<tr>\n<td><code>ipAddresses</code></td>\n<td><code>array</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address for Emergency Zones</code></td>\n</tr>\n<tr>\n<td><code>min</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address minimum value of IP range</code></td>\n</tr>\n<tr>\n<td><code>max</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address maximum value of IP range</code><br /><code>required if as an array element for ipAddresses</code><br /><code>For single IP's set max to the min value</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>See Response for GET Group Emergency Zones /groups/emergency-zones\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","emergency-zones"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8a893b8d-b4db-42e5-b111-e7bc0e53b9dd","name":"Group Emergency Zone Lists","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": true,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/emergency-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:56:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"335"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": true,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"bda81235-a85f-4f57-b44c-e982ad87d1d6"},{"name":"Group Emergency Zones alternate-identity","id":"af9ecdc2-7855-409d-86d2-0525d06dbba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isActive\": \"true\",\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": \"true\",\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"ipAddresses\": [\n            {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        }   ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/emergency-zones","description":"<h3 id=\"delete-group-emergency-zones-with-details\">Delete Group Emergency Zones with Details</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyZonesProhibition</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Emergency zone policy to specify what kind of calls will be prohibited by the service when originated from outside the home zone.</code><br /><code>Values</code><br /><code>Prohibit all registrations and call originations</code><br /><code>Prohibit emergency call originations</code></td>\n</tr>\n<tr>\n<td><code>sendEmergencyCallNotifyEmail</code></td>\n<td><code>boolean</code></td>\n<td><code>optional</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>emergencyCallNotifyEmailAddress</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Email address for emergency call notification</code></td>\n</tr>\n<tr>\n<td><code>serviceProviderId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Service Provider Id</code></td>\n</tr>\n<tr>\n<td><code>groupId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Group Id</code></td>\n</tr>\n<tr>\n<td><code>ipAddresses</code></td>\n<td><code>array</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address for Emergency Zones</code></td>\n</tr>\n<tr>\n<td><code>min</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address minimum value of IP range</code></td>\n</tr>\n<tr>\n<td><code>max</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>IP Address maximum value of IP range</code><br /><code>required if as an array element for ipAddresses</code><br /><code>For single IP's set max to the min value</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>See Response for GET Group Emergency Zones /groups/emergency-zones\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","emergency-zones"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"904caa5e-91c3-4047-9e13-d27befef09a7","name":"Group Emergency Zone Lists","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isActive\": \"true\",\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": \"true\",\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"20.0.0.2\",\n            \"max\": \"20.0.0.2\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.4\"\n        },\n        {\n            \"min\": \"2.0.0.9\",\n            \"max\": \"2.0.0.11\"\n        },\n        {\n            \"min\": \"2.0.0.3\",\n            \"max\": \"2.0.0.5\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/emergency-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Aug 2020 13:57:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"333"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"emergencyZonesProhibition\": \"Prohibit all registrations and call originations\",\n    \"sendEmergencyCallNotifyEmail\": true,\n    \"emergencyCallNotifyEmailAddress\": \"dev@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"ipAddresses\": [\n        {\n            \"min\": \"2.0.0.4\",\n            \"max\": \"2.0.0.4\"\n        },\n        {\n            \"min\": \"20.0.0.4\",\n            \"max\": \"20.0.0.5\"\n        }\n    ]\n}"}],"_postman_id":"af9ecdc2-7855-409d-86d2-0525d06dbba6"},{"name":"Reseller Emergency Zones","id":"5cbf9aea-7d0e-4527-8cfd-b728d291f097","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/resellers/emergency-zones?resellerId=5rings.reseller","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers","emergency-zones"],"host":["{{url}}"],"query":[{"key":"resellerId","value":"5rings.reseller"}],"variable":[]}},"response":[{"id":"84ab1c17-d73f-4aab-b43d-680e33e70107","name":"Reseller Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/resellers/emergency-zones?resellerId=5rings.reseller","host":["{{url}}"],"path":["api","v2","resellers","emergency-zones"],"query":[{"key":"resellerId","value":"5rings.reseller"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Aug 2020 19:19:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"88"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"defaultFromAddress\": \"emergencyzone@systemprovider.com\",\n    \"resellerId\": \"5rings.reseller\"\n}"}],"_postman_id":"5cbf9aea-7d0e-4527-8cfd-b728d291f097"},{"name":"Reseller Emergency Zones","id":"0f07d178-dd81-4422-bae3-02738cf69d2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"resellerId\": \"5rings.reseller\",\n    \"defaultFromAddress\": \"emergencyzonereseller@systemprovider.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/resellers/emergency-zones","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers","emergency-zones"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"954e67f2-1d2a-4645-a262-80f6208b577e","name":"Reseller Emergency Zones","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"resellerId\": \"5rings.reseller\",\n    \"defaultFromAddress\": \"emergencyzone@systemprovider.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/resellers/emergency-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Aug 2020 19:17:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"88"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"defaultFromAddress\": \"emergencyzone@systemprovider.com\",\n    \"resellerId\": \"5rings.reseller\"\n}"}],"_postman_id":"0f07d178-dd81-4422-bae3-02738cf69d2c"},{"name":"System Emergency Zones","id":"2c8157d8-1983-48a4-b6ca-372fbab54050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/emergency-zones","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","emergency-zones"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f7115c1b-4577-4264-b85c-89db6825f20f","name":"System Emergency Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/emergency-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Aug 2020 19:20:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"57"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"defaultFromAddress\": \"emergencyzone@systemprovider.com\"\n}"}],"_postman_id":"2c8157d8-1983-48a4-b6ca-372fbab54050"},{"name":"System Emergency Zones","id":"10c42b10-31c6-4cc1-9c9c-288a340402c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"defaultFromAddress\": \"emergencyzonesystem@systemprovider.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/emergency-zones","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","emergency-zones"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ef32a1f9-ee5a-46bc-9cf6-dbc54a597199","name":"System Emergency Zones","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"defaultFromAddress\": \"emergencyzone@systemprovider.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/emergency-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Aug 2020 19:21:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"57"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"defaultFromAddress\": \"emergencyzone@systemprovider.com\"\n}"}],"_postman_id":"10c42b10-31c6-4cc1-9c9c-288a340402c9"}],"id":"b53867e9-221d-4155-87d4-3622e12bce4c","_postman_id":"b53867e9-221d-4155-87d4-3622e12bce4c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Enterprise Trunks","item":[{"name":"Enterprise Enterprise Trunks Available Trunk Groups","id":"ba1a1010-c129-41aa-aba7-d767dccd4827","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/enterprise-trunks/available-trunk-groups?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks","available-trunk-groups"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"2caa7b53-0d79-4239-8b83-fd6eab39b09e","name":"Enterprise Enterprise Trunks Available Trunk Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/enterprise-trunks/available-trunk-groups?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","enterprise-trunks","available-trunk-groups"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"115","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:21:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.ent1\",\"trunkGroups\":[{\"groupId\":\"odin.mock.grp1\",\"trunkGroupName\":\"Mock Trunk 1\"}]}"}],"_postman_id":"ba1a1010-c129-41aa-aba7-d767dccd4827"},{"name":"Enterprise Enterprise Trunks Available Users","id":"66c00d8d-49a8-4402-ad3e-b82f9c8f2087","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/enterprise-trunks/available-users?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks","available-users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"180d6663-0ce6-45d5-aed9-7fa79df96059","name":"Enterprise Enterprise Trunks Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/enterprise-trunks/available-users?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","enterprise-trunks","available-users"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"250","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:23:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.ent1\",\"users\":[{\"userId\":\"mock-pilot-1\",\"lastName\":\"pilot\",\"firstName\":\"pilot\",\"hiraganaLastName\":\"pilot\",\"hiraganaFirstName\":\"pilot\",\"phoneNumber\":9709580008,\"extension\":\"0008\",\"department\":null,\"emailAddress\":null}]}"}],"_postman_id":"66c00d8d-49a8-4402-ad3e-b82f9c8f2087"},{"name":"Enterprise Enterprise Trunks","id":"bb3c4a4c-507c-4af3-886b-acf07bd9c6aa","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM4ODQ4NjE1LCJuYnAiOjE1Mzg4NDg2MTUsImV4cCI6MTUzODg5MTgxNSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbEpGSzBaV1ZWQkxZelJtYmxOWlNHRndaa2RHV2tFOVBTSXNJblpoYkhWbElqb2lSRTVKYlVwemVFbHpVMlIwT0ZoeFZuRjBTMWs0ZVc5M04xcFdURzFqWlUxNVFua3hLM1phUzBreVFUMGlMQ0p0WVdNaU9pSmlOVGsyTUdNM01UWm1OV05pTXpRM01ETmtZbVJpWVRNelpHSmtPRE0wWXpobFlXTXlNR1poTURsaU5UQXhNRE16WmpJeFpUTXdOelU1WWpWa1pEWTNJbjA9IiwicCI6ImV5SnBkaUk2SWtOdVkzaGxSV3R6YkZwT1FVUkJaVVZEUm10SWNFRTlQU0lzSW5aaGJIVmxJam9pTUZoTFJtWnhSemgzUW10dlMxQnZWa3RFSzJodFJFWmpjV2xjTDB4Q1FXMUVRVFpRTTNOTVhDOVRSRUZ6TldaNE16QlJYQzl5WmpZMFRsb3JhakY1Um01MFQwWm9RV1ZyZFZSWFVIVkpNVEJ4VDJOVVUybDRPV2M5UFNJc0ltMWhZeUk2SWpaalpUZGpaVE5pTmpFMU4yVTVNbVUwTnpVNE4yWmxaakE1WldJek5UbGhZak5oTkRjNVlqSmlNbVEyTm1VNE4ySXhNekUwWlRKa05tRTVOelUxTXpBaWZRPT0iLCJlIjoiZXlKcGRpSTZJa2hETVZoSmRtbGFjbHBGVmtSNFZsd3ZUelUxYkVOM1BUMGlMQ0oyWVd4MVpTSTZJbFZFWkZscFlsQlNiRVpKYWtkTGFYVlBTM015VmtFOVBTSXNJbTFoWXlJNklqSm1Nall3WWpZNE5qSmtZVEl3WXpOa1pqaGtOelJsTUdOaU5USmpZamhqTUdWalpqa3paVGhtWkRNMU9XUmpOVEZqWm1NeU5XVmhabUZrTlRJek1tVWlmUT09In19.TaWO1snzq8macT-3X0Ma348bfWgpEWwS7NwOHFYz_cI"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/enterprise-trunks?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"0f9309de-9dfe-44c2-8ba1-6a894cc16779","name":"Enterprise Enterprise Trunks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/enterprise-trunks?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","enterprise-trunks"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"65","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:21:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"enterpriseTrunk\":\"Mock Ent Trunk 1\",\"routingType\":\"weighted\"}]"}],"_postman_id":"bb3c4a4c-507c-4af3-886b-acf07bd9c6aa"},{"name":"Enterprise Enterprise Trunk","id":"a6589404-6c4e-41d3-9532-58ff4f36bcc1","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"maximumRerouteAttempts\":3,\n\t\"routeExhaustionAction\":\"None\",\n\t\"priorityWeightedRouting\":{\n\t\t\"maximumRerouteAttemptsWithinPriority\":2\n\t}\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2206af1b-1a56-4a3b-b3af-445f6a7d71a9","name":"Enterprise Enterprise Trunk","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"maximumRerouteAttempts\":3,\n\t\"routeExhaustionAction\":\"None\",\n\t\"priorityWeightedRouting\":{\n\t\t\"maximumRerouteAttemptsWithinPriority\":2\n\t}\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:23:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a6589404-6c4e-41d3-9532-58ff4f36bcc1"},{"name":"Enterprise Enterprise Trunk","id":"f37a6447-920b-4c31-b277-120e46f64054","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/enterprise-trunks?enterpriseTrunkName=Mock+Ent+Trunk+1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks"],"host":["{{url}}"],"query":[{"key":"enterpriseTrunkName","value":"Mock+Ent+Trunk+1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"8e9fc95c-f0a9-4e91-ad15-3e6e31d12e37","name":"Enterprise Enterprise Trunk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/enterprise-trunks?enterpriseTrunkName=Mock+Ent+Trunk+1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","enterprise-trunks"],"query":[{"key":"enterpriseTrunkName","value":"Mock+Ent+Trunk+1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"315","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:28:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"maximumRerouteAttempts\":3,\"routeExhaustionAction\":\"None\",\"priorityWeightedRouting\":{\"maximumRerouteAttemptsWithinPriority\":\"2\"},\"serviceProviderId\":\"odin.mock.ent1\",\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\"trunkGroups\":[{\"priority\":\"10\",\"weight\":\"50\",\"groupId\":\"odin.mock.grp1\",\"trunkGroupName\":\"Mock Trunk 1\"}]}"}],"_postman_id":"f37a6447-920b-4c31-b277-120e46f64054"},{"name":"Enterprise Enterprise Trunk","id":"65659fe9-2b99-401d-80fa-d27bfbb2a8c6","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\"maximumRerouteAttempts\":3,\"routeExhaustionAction\":\"None\",\"priorityWeightedRouting\":{\"maximumRerouteAttemptsWithinPriority\":\"2\"},\"serviceProviderId\":\"odin.mock.ent1\",\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\"trunkGroups\":[{\"groupId\":\"odin.mock.grp1\",\"trunkGroupName\":\"Mock Trunk 1\",\"priority\":\"10\",\"weight\":\"50\"}]}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5e864031-ea1b-46e3-8db8-809132a2936b","name":"Enterprise Enterprise Trunk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\"maximumRerouteAttempts\":3,\"routeExhaustionAction\":\"None\",\"priorityWeightedRouting\":{\"maximumRerouteAttemptsWithinPriority\":\"2\"},\"serviceProviderId\":\"odin.mock.ent1\",\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\"trunkGroups\":[{\"groupId\":\"odin.mock.grp1\",\"trunkGroupName\":\"Mock Trunk 1\",\"priority\":\"10\",\"weight\":\"50\"}]}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:28:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"65659fe9-2b99-401d-80fa-d27bfbb2a8c6"},{"name":"Enterprise Enterprise Trunk Users","id":"03ff42d4-0897-4eb5-9507-421fe25ef4d5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/enterprise-trunks/users?enterpriseTrunkName=Mock+Ent+Trunk+1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks","users"],"host":["{{url}}"],"query":[{"key":"enterpriseTrunkName","value":"Mock+Ent+Trunk+1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"6fe8c59f-8d66-4b02-a5d7-e9c6de9ca40a","name":"Enterprise Enterprise Trunk Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/enterprise-trunks/users?enterpriseTrunkName=Mock+Ent+Trunk+1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","enterprise-trunks","users"],"query":[{"key":"enterpriseTrunkName","value":"Mock+Ent+Trunk+1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"348","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:27:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.ent1\",\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\"users\":[{\"groupId\":\"odin.mock.grp1\",\"userId\":\"mock-pilot-1\",\"lastName\":\"pilot\",\"firstName\":\"pilot\",\"phoneNumber\":9709580008,\"alternateTrunkIdentity\":null,\"hiraganaLastName\":\"pilot\",\"hiraganaFirstName\":\"pilot\",\"extension\":\"0008\",\"department\":null,\"emailAddress\":null}]}"}],"_postman_id":"03ff42d4-0897-4eb5-9507-421fe25ef4d5"},{"name":"Enterprise Enterprise Trunk Users","id":"9e735623-3191-4ff8-b6f5-878c7aee3d5e","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"users\":[\n\t\t{\"userId\":\"mock-pilot-1\"}\n\t]\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks/users","description":"<p>Add Users to the Trunk</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f6c15920-0efd-4420-b321-1e16eeb4224d","name":"Enterprise Enterprise Trunk Users","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"users\":[\n\t\t{\"userId\":\"mock-pilot-1\"}\n\t]\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:25:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9e735623-3191-4ff8-b6f5-878c7aee3d5e"},{"name":"Enterprise Enterprise Trunk Users","id":"69b17a70-6244-43e7-8aa5-bfe4e89b8042","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"users\":[\n\t\t{\"userId\":\"mock-pilot-1\"}\n\t]\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks/users","description":"<p>Replace the Trunk Users</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2849f3b7-5884-4442-8ad9-be6a15d90c98","name":"Enterprise Enterprise Trunk Users","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"users\":[\n\t\t{\"userId\":\"mock-pilot-1\"}\n\t]\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:26:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"69b17a70-6244-43e7-8aa5-bfe4e89b8042"},{"name":"Enterprise Enterprise Trunk Users","id":"019d1083-f9a8-4d06-92f7-1d28ad774e45","request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"users\":[\n\t\t{\"userId\":\"mock-pilot-1\"}\n\t]\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks/users","description":"<p>Remote Trunk Users</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c8b7bbe1-264f-436f-b24a-be2da7339f20","name":"Enterprise Enterprise Trunk Users","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"enterpriseTrunkName\":\"Mock Ent Trunk 1\",\n\t\"users\":[\n\t\t{\"userId\":\"mock-pilot-1\"}\n\t]\n}"},"url":"{{url}}/api/v2/service-providers/enterprise-trunks/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:26:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"019d1083-f9a8-4d06-92f7-1d28ad774e45"},{"name":"Enterprise Enterprise Trunk","id":"22a4a71c-3dcf-4211-996e-8fd362536ea6","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/enterprise-trunks?enterpriseTrunkName=Mock+Ent+Trunk+1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","enterprise-trunks"],"host":["{{url}}"],"query":[{"key":"enterpriseTrunkName","value":"Mock+Ent+Trunk+1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"1c5970bb-ac88-45fb-8d8d-d33d1a2eec61","name":"Enterprise Enterprise Trunk","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/enterprise-trunks?enterpriseTrunkName=Mock+Ent+Trunk+1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","enterprise-trunks"],"query":[{"key":"enterpriseTrunkName","value":"Mock+Ent+Trunk+1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 19:28:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"22a4a71c-3dcf-4211-996e-8fd362536ea6"},{"name":"Group Enterprise Trunks Available Users","id":"8bab61ff-6a97-4a54-877b-5300f9bafd2b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/enterprise-trunks/available-users?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks","available-users"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[{"id":"0d100c56-f670-495e-8228-c2ddc3aa8e8d","name":"Group Enterprise Trunks Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/enterprise-trunks/available-users?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","enterprise-trunks","available-users"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:16:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"596"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"groupId\": \"odin.mock.sp.grp1\",\n    \"users\": [\n        {\n            \"userId\": \"odin.mock.sp1.pilot1\",\n            \"lastName\": \"odin.mock.sp1.pilot1\",\n            \"firstName\": \"odin.mock.sp1.pilot1\",\n            \"hiraganaLastName\": \"odin.mock.sp1.pilot1\",\n            \"hiraganaFirstName\": \"odin.mock.sp1.pilot1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"odin.mock.sp1.user2\",\n            \"lastName\": \"odin.mock.sp1.user2\",\n            \"firstName\": \"odin.mock.sp1.user2\",\n            \"hiraganaLastName\": \"odin.mock.sp1.user2\",\n            \"hiraganaFirstName\": \"odin.mock.sp1.user2\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"8bab61ff-6a97-4a54-877b-5300f9bafd2b"},{"name":"Group Enterprise Trunks Available Trunk Groups","id":"653af071-1fa5-4b4d-adb3-227d7b1070c4","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/enterprise-trunks/available-trunk-groups?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks","available-trunk-groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[{"id":"1a90bed0-fc1d-4458-87d6-5bad8a1547c8","name":"Group Enterprise Trunks Available Trunk Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/enterprise-trunks/available-trunk-groups?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","enterprise-trunks","available-trunk-groups"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:16:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"121"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"groupId\": \"odin.mock.sp.grp1\",\n    \"trunkGroups\": [\n        {\n            \"trunkGroupName\": \"odin.mock.trunk1\"\n        }\n    ]\n}"}],"_postman_id":"653af071-1fa5-4b4d-adb3-227d7b1070c4"},{"name":"Group Enterprise Trunks","id":"24d1cc4b-229c-47c2-abeb-96404925076d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/enterprise-trunks?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[{"id":"0776226c-f2e9-4ba7-9b52-7f7346416ce2","name":"Group Enterprise Trunks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/enterprise-trunks?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","enterprise-trunks"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:36:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"136"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"routingType\": \"weighted\",\n        \"serviceProviderId\": \"odin.mock.sp1\",\n        \"groupId\": \"odin.mock.sp.grp1\",\n        \"enterpriseTrunkName\": \"odin.mock.sp1.et1\"\n    }\n]"}],"_postman_id":"24d1cc4b-229c-47c2-abeb-96404925076d"},{"name":"Group Enterprise Trunk","id":"eb98090a-503e-45d9-8930-fd427df9529a","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"maximumRerouteAttempts\":3,\n\t\"routeExhaustionAction\":\"None\",\n\t\"priorityWeightedRouting\":{\n\t\t\"maximumRerouteAttemptsWithinPriority\":3\n\t}\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2968a931-7bc5-40d1-aa8b-d71bd38e7444","name":"Group Enterprise Trunk","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"maximumRerouteAttempts\":3,\n\t\"routeExhaustionAction\":\"None\",\n\t\"priorityWeightedRouting\":{\n\t\t\"maximumRerouteAttemptsWithinPriority\":3\n\t}\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:29:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"eb98090a-503e-45d9-8930-fd427df9529a"},{"name":"Group Enterprise Trunk","id":"45ddff76-0ba3-4534-93ed-7dd0c72018cb","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/enterprise-trunks?enterpriseTrunkName=odin.mock.sp1.et1&groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks"],"host":["{{url}}"],"query":[{"key":"enterpriseTrunkName","value":"odin.mock.sp1.et1"},{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[{"id":"55511512-6abf-41fa-af29-e6b7de3a54a3","name":"Group Enterprise Trunk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/enterprise-trunks?enterpriseTrunkName=odin.mock.sp1.et1&groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","enterprise-trunks"],"query":[{"key":"enterpriseTrunkName","value":"odin.mock.sp1.et1"},{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:38:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"352"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"maximumRerouteAttempts\": 3,\n    \"routeExhaustionAction\": \"None\",\n    \"priorityWeightedRouting\": {\n        \"maximumRerouteAttemptsWithinPriority\": \"3\"\n    },\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"groupId\": \"odin.mock.sp.grp1\",\n    \"enterpriseTrunkName\": \"odin.mock.sp1.et1\",\n    \"trunkGroups\": [\n        {\n            \"priority\": \"10\",\n            \"weight\": \"50\",\n            \"trunkGroupName\": \"odin.mock.trunk1\",\n            \"groupId\": \"odin.mock.sp.grp1\"\n        }\n    ]\n}"}],"_postman_id":"45ddff76-0ba3-4534-93ed-7dd0c72018cb"},{"name":"Group Enterprise Trunk","id":"32559a63-19b9-4316-860a-2dd6a16305f6","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"maximumRerouteAttempts\":3,\n\t\"routeExhaustionAction\":\"None\",\n\t\"priorityWeightedRouting\":{\n\t\t\"maximumRerouteAttemptsWithinPriority\":\"3\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"trunkGroups\":[\n\t\t{\"trunkGroupName\":\"odin.mock.trunk1\",\"priority\":\"10\",\"weight\":\"50\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2ccc8fe4-14f5-445a-a9a4-68d8e158a93b","name":"Group Enterprise Trunk","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"maximumRerouteAttempts\":3,\n\t\"routeExhaustionAction\":\"None\",\n\t\"priorityWeightedRouting\":{\n\t\t\"maximumRerouteAttemptsWithinPriority\":\"3\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"trunkGroups\":[\n\t\t{\"trunkGroupName\":\"odin.mock.trunk1\",\"priority\":\"10\",\"weight\":\"50\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:37:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"32559a63-19b9-4316-860a-2dd6a16305f6"},{"name":"Group Enterprise Trunk","id":"dd24ef0a-ba9e-4a73-a93e-6cdc7d959f93","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/enterprise-trunks?enterpriseTrunkName=odin.mock.sp1.et1&groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks"],"host":["{{url}}"],"query":[{"key":"enterpriseTrunkName","value":"odin.mock.sp1.et1"},{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[{"id":"0464bb4e-8ba4-4ad4-83c8-3ad661b822ea","name":"Group Enterprise Trunk","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/enterprise-trunks?enterpriseTrunkName=odin.mock.sp1.et1&groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","enterprise-trunks"],"query":[{"key":"enterpriseTrunkName","value":"odin.mock.sp1.et1"},{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:38:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"dd24ef0a-ba9e-4a73-a93e-6cdc7d959f93"},{"name":"Group Enterprise Trunk Users","id":"b29217eb-8528-4513-9a24-6dd4f5e539ec","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/enterprise-trunks/users?enterpriseTrunkName=odin.mock.sp1.et1&groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks","users"],"host":["{{url}}"],"query":[{"key":"enterpriseTrunkName","value":"odin.mock.sp1.et1"},{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[{"id":"7c9f4f81-6b6b-4415-a7b0-0cf5b1cd809f","name":"Group Enterprise Trunk Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/enterprise-trunks/users?enterpriseTrunkName=odin.mock.sp1.et1&groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","enterprise-trunks","users"],"query":[{"key":"enterpriseTrunkName","value":"odin.mock.sp1.et1"},{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:48:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"437"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"groupId\": \"odin.mock.sp.grp1\",\n    \"enterpriseTrunkName\": \"odin.mock.sp1.et1\",\n    \"users\": [\n        {\n            \"userId\": \"odin.mock.sp1.pilot1\",\n            \"lastName\": \"odin.mock.sp1.pilot1\",\n            \"firstName\": \"odin.mock.sp1.pilot1\",\n            \"phoneNumber\": null,\n            \"alternateTrunkIdentity\": null,\n            \"hiraganaLastName\": \"odin.mock.sp1.pilot1\",\n            \"hiraganaFirstName\": \"odin.mock.sp1.pilot1\",\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"routeListAssigned\": false\n        }\n    ]\n}"}],"_postman_id":"b29217eb-8528-4513-9a24-6dd4f5e539ec"},{"name":"Group Enterprise Trunk Users","id":"b57ad582-9a32-45c5-aaf0-1bb6ede58858","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"users\":[\n\t\t{\"userId\":\"odin.mock.sp1.pilot1\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"428159db-d1ca-40e6-94b1-d5e448839562","name":"Group Enterprise Trunk Users","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"users\":[\n\t\t{\"userId\":\"odin.mock.sp1.pilot1\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:58:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b57ad582-9a32-45c5-aaf0-1bb6ede58858"},{"name":"Group Enterprise Trunk Users","id":"2a8b4124-099a-44fd-9118-7c691226347f","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"users\":[\n\t\t{\"userId\":\"odin.mock.sp1.pilot1\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2a9343d0-b5b4-4df2-8383-c98a5322a240","name":"Group Enterprise Trunk Users","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"users\":[\n\t\t{\"userId\":\"odin.mock.sp1.pilot1\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:49:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2a8b4124-099a-44fd-9118-7c691226347f"},{"name":"Group Enterprise Trunk Users","id":"63141f9d-bae1-4c72-a775-ea8511a9e2c8","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"users\":[\n\t\t{\"userId\":\"odin.mock.sp1.pilot1\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","enterprise-trunks","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"82324d49-140e-4551-9729-70795aa29f27","name":"Group Enterprise Trunk Users","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\"enterpriseTrunkName\":\"odin.mock.sp1.et1\",\n\t\"users\":[\n\t\t{\"userId\":\"odin.mock.sp1.pilot1\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/enterprise-trunks/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 20:58:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"63141f9d-bae1-4c72-a775-ea8511a9e2c8"}],"id":"620bb2e5-de5a-49ec-a9e8-f11c79a0d064","_postman_id":"620bb2e5-de5a-49ec-a9e8-f11c79a0d064","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Executive","item":[{"name":"User Executive Assistants","id":"f061bd37-718c-461f-a220-e08c03981492","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/executive/assistants?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","assistants"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"412e493e-9aed-461c-ae37-b20035d5d9a6","name":"User Executive Assistants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/executive/assistants?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","executive","assistants"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Jan 2021 23:18:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"483"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowOptInOut\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"users\": [\n        {\n            \"userId\": 5136569844,\n            \"lastName\": 3,\n            \"firstName\": \"user_\",\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": \"user_\",\n            \"phoneNumber\": \"+1-5136569844\",\n            \"extension\": 9844,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        }\n    ],\n    \"availableUsers\": [\n        {\n            \"userId\": \"User.Mar_Reverman\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"f061bd37-718c-461f-a220-e08c03981492"},{"name":"User Executive Assistants","id":"b18dc6ea-5193-4ffc-9555-46438875cc36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"allowOptInOut\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"users\": [\n        {\n            \"userId\": 5136569844,\n            \"lastName\": 3,\n            \"firstName\": \"user_\",\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": \"user_\",\n            \"phoneNumber\": \"+1-5136569844\",\n            \"extension\": 9844,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        },\n        {\n            \"userId\": \"User.Mar_Reverman\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/executive/assistants","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","assistants"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"55e277c1-6279-41df-a853-37d48991398e","name":"User Executive Assistants","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"allowOptInOut\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"users\": [\n        {\n            \"userId\": 5136569844,\n            \"lastName\": 3,\n            \"firstName\": \"user_\",\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": \"user_\",\n            \"phoneNumber\": \"+1-5136569844\",\n            \"extension\": 9844,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        },\n        {\n            \"userId\": \"User.Mar_Reverman\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/executive/assistants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowOptInOut\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"users\": [\n        {\n            \"userId\": 5136569844,\n            \"lastName\": 3,\n            \"firstName\": \"user_\",\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": \"user_\",\n            \"phoneNumber\": \"+1-5136569844\",\n            \"extension\": 9844,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        },\n        {\n            \"userId\": \"User.Mar_Reverman\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        }\n    ]\n}"}],"_postman_id":"b18dc6ea-5193-4ffc-9555-46438875cc36"},{"name":"User Executive Filtering","id":"0dd9851c-57e0-4fff-909b-5f9f305ae0bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/executive/filtering?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","filtering"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"ef4ddf2e-fbfb-4b51-adf4-07d2c12f058e","name":"User Executive Filtering","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/executive/filtering?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","executive","filtering"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowOptInOut\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"users\": [\n        {\n            \"userId\": 5136569844,\n            \"lastName\": 3,\n            \"firstName\": \"user_\",\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": \"user_\",\n            \"phoneNumber\": \"+1-5136569844\",\n            \"extension\": 9844,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        },\n        {\n            \"userId\": \"User.Mar_Reverman\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        }\n    ]\n}"}],"_postman_id":"0dd9851c-57e0-4fff-909b-5f9f305ae0bf"},{"name":"User Executive Filtering","id":"7eb59a29-156e-454c-a705-438357fc975b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableFiltering\": false,\n    \"filteringMode\": \"Advanced\",\n    \"simpleFilterType\": \"All External Calls\",\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"filter\",\n            \"timeSchedule\": \"EntSched(Enterprise)\",\n            \"callsFrom\": \"123123,1231231,123123\",\n            \"filter\": true,\n            \"holidaySchedule\": \"Test123(Enterprise)\",\n            \"callsToType\": \"Primary\",\n            \"callsToNumber\": 9871515000,\n            \"callsToExtension\": 5000\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/executive/filtering","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","filtering"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f73f9b66-47df-4e53-8758-e3257fee7072","name":"User Executive Assistants","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"allowOptInOut\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"users\": [\n        {\n            \"userId\": 5136569844,\n            \"lastName\": 3,\n            \"firstName\": \"user_\",\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": \"user_\",\n            \"phoneNumber\": \"+1-5136569844\",\n            \"extension\": 9844,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        },\n        {\n            \"userId\": \"User.Mar_Reverman\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/executive/assistants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowOptInOut\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"users\": [\n        {\n            \"userId\": 5136569844,\n            \"lastName\": 3,\n            \"firstName\": \"user_\",\n            \"hiraganaLastName\": 3,\n            \"hiraganaFirstName\": \"user_\",\n            \"phoneNumber\": \"+1-5136569844\",\n            \"extension\": 9844,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        },\n        {\n            \"userId\": \"User.Mar_Reverman\",\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"opt-in\": true\n        }\n    ]\n}"}],"_postman_id":"7eb59a29-156e-454c-a705-438357fc975b"},{"name":"User Executive Filtering Criteria","id":"6598d40c-b171-4992-b3e5-66263962809d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/executive/filtering/criteria?userId=9871515000@odinapi.net&criteriaName=filter","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","filtering","criteria"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"},{"key":"criteriaName","value":"filter"}],"variable":[]}},"response":[{"id":"461f933e-8057-40d4-9c70-d1d6a2f19793","name":"User Executive Filtering Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/executive/filtering/criteria?userId=9871515000@odinapi.net&criteriaName=filter","host":["{{url}}"],"path":["api","v2","users","executive","filtering","criteria"],"query":[{"key":"userId","value":"9871515000@odinapi.net"},{"key":"criteriaName","value":"filter"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Jan 2021 22:14:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"485"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"timeSchedule\": {\n        \"name\": \"EntSched\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test123\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"filter\": true,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"123123\",\n            \"1231231\",\n            \"123123\"\n        ]\n    },\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteriaName\": \"filter\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871515000\",\n            \"extension\": \"5000\"\n        }\n    ]\n}"}],"_postman_id":"6598d40c-b171-4992-b3e5-66263962809d"},{"name":"User Executive Filtering Criteria","id":"6491cbd0-e450-4c7d-ad2c-67608b2a6405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteriaName\": \"filter2\",\n    \"timeSchedule\": {\n        \"name\": \"EntSched\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test123\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"filter\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"123123\",\n            \"1231231\",\n            \"123123\",\n            \"99999\"\n        ]\n    },\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871515000\",\n            \"extension\": \"5000\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/executive/filtering/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","filtering","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f925af02-ba60-4cf0-ac52-b9f1fedd5f59","name":"User Executive Filtering Criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteriaName\": \"filter2\",\n    \"timeSchedule\": {\n        \"name\": \"EntSched\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test123\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"filter\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"123123\",\n            \"1231231\",\n            \"123123\",\n            \"99999\"\n        ]\n    },\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871515000\",\n            \"extension\": \"5000\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/executive/filtering/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"timeSchedule\": {\n        \"name\": \"EntSched\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test123\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"filter\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"123123\",\n            \"1231231\",\n            \"123123\",\n            \"99999\"\n        ]\n    },\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteriaName\": \"filter2\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871515000\",\n            \"extension\": \"5000\"\n        }\n    ]\n}"}],"_postman_id":"6491cbd0-e450-4c7d-ad2c-67608b2a6405"},{"name":"User Executive Filtering Criteria","id":"03360934-a8c3-4430-aedb-2d02d73cd6d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteriaName\": \"filter\",\n    \"timeSchedule\": {\n        \"name\": \"EntSched\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test123\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"filter\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"123123\",\n            \"1231231\",\n            \"123123\",\n            \"99999\"\n        ]\n    },\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871515000\",\n            \"extension\": \"5000\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/executive/filtering/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","filtering","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9c4ec147-a7eb-4b48-9dc7-d88ce5297ee8","name":"User Executive Filtering Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"timeSchedule\": {\n\t\t\"name\": \"testt\",\n\t\t\"level\": \"Service Provider\",\n\t\t\"type\": \"Time\"\n\t},\n\t\"holidaySchedule\": {\n\t\t\"name\": \"test121222\",\n\t\t\"level\": \"Service Provider\",\n\t\t\"type\": \"Holiday\"\n\t},\n\t\"filter\": true,\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": \"true\",\n\t\t\"includeUnavailableCallers\": \"true\",\n\t\t\"phoneNumbers\": [\n\t\t\t\"8285985629\"\n\t\t],\n\t\t\"isActive\": false\n\t},\n\t\"userId\": \"UserMusicOnHold@odinapi.net\",\n\t\"criteriaName\": \"Test AA Data\",\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"text\": \"Primary \"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"2345600008\",\n\t\t\t\"text\": \"BroadWorks Mobility (2345600008)\"\n\t\t}\n\t],\n\t\"oldCriteriaName\": \"Test AA Data\",\n\t\"isActive\": false,\n\t\"newCriteriaName\": \"Test AA Data\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/executive/filtering/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"timeSchedule\": {\n        \"name\": \"EntSched\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test123\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"filter\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"123123\",\n            \"1231231\",\n            \"123123\",\n            \"99999\"\n        ]\n    },\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteriaName\": \"filter\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871515000\",\n            \"extension\": \"5000\"\n        }\n    ]\n}"}],"_postman_id":"03360934-a8c3-4430-aedb-2d02d73cd6d2"},{"name":"User Executive Filtering Criteria","id":"5f556cbe-ab6f-4956-9c81-583bb2b19c5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/executive/filtering/criteria?userId=9871515000@odinapi.net&criteriaName=filter2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","filtering","criteria"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"},{"key":"criteriaName","value":"filter2"}],"variable":[]}},"response":[{"id":"d84a7bf0-ce12-4e1a-8daa-f8e0f0b5a5dd","name":"User Executive Filtering Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/executive/filtering/criteria?userId=9871515000@odinapi.net&criteriaName=filter2","host":["{{url}}"],"path":["api","v2","users","executive","filtering","criteria"],"query":[{"key":"userId","value":"9871515000@odinapi.net"},{"key":"criteriaName","value":"filter2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"timeSchedule\": {\n        \"name\": \"EntSched\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test123\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"filter\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"123123\",\n            \"1231231\",\n            \"123123\",\n            \"99999\"\n        ]\n    },\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteriaName\": \"filter2\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871515000\",\n            \"extension\": \"5000\"\n        }\n    ]\n}"}],"_postman_id":"5f556cbe-ab6f-4956-9c81-583bb2b19c5b"},{"name":"User Executive Screening Alerting","id":"541a180f-b79e-49b8-aaf2-a2cc47c75105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/executive/screening-alerting?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","screening-alerting"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"1b73c778-746d-4060-a776-e1f321bf5e00","name":"User Executive Screening Alerting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/executive/screening-alerting?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","executive","screening-alerting"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableScreening\": true,\n    \"screeningAlertType\": \"Silent\",\n    \"alertBroadWorksMobilityLocation\": true,\n    \"alertBroadWorksAnywhereLocations\": true,\n    \"alertSharedCallAppearanceLocations\": true,\n    \"alertingMode\": \"Simultaneous\",\n    \"alertingCallingLineIdNameMode\": \"Originator\",\n    \"alertingCustomCallingLineIdName\": \"mark reverman\",\n    \"unicodeAlertingCustomCallingLineIdName\": \"mark reverman\",\n    \"alertingCallingLineIdPhoneNumberMode\": \"Executive\",\n    \"alertingCustomCallingLineIdPhoneNumber\": 4131002001,\n    \"callPushRecallNumberOfRings\": 5,\n    \"nextAssistantNumberOfRings\": 5,\n    \"enableRollover\": true,\n    \"rolloverWaitTimeSeconds\": 30,\n    \"rolloverAction\": \"Forward\",\n    \"rolloverForwardToPhoneNumber\": 5131002001,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteria\": []\n}"}],"_postman_id":"541a180f-b79e-49b8-aaf2-a2cc47c75105"},{"name":"User Executive Screening Alerting","id":"c2e01e4d-51c4-406f-92eb-0f584390c0ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableScreening\": true,\n    \"screeningAlertType\": \"Silent\",\n    \"alertBroadWorksMobilityLocation\": true,\n    \"alertBroadWorksAnywhereLocations\": true,\n    \"alertSharedCallAppearanceLocations\": true,\n    \"alertingMode\": \"Simultaneous\",\n    \"alertingCallingLineIdNameMode\": \"Originator\",\n    \"alertingCustomCallingLineIdName\": \"mark reverman\",\n    \"unicodeAlertingCustomCallingLineIdName\": \"mark reverman\",\n    \"alertingCallingLineIdPhoneNumberMode\": \"Executive\",\n    \"alertingCustomCallingLineIdPhoneNumber\": 4131002001,\n    \"callPushRecallNumberOfRings\": 5,\n    \"nextAssistantNumberOfRings\": 5,\n    \"enableRollover\": true,\n    \"rolloverWaitTimeSeconds\": 30,\n    \"rolloverAction\": \"Forward\",\n    \"rolloverForwardToPhoneNumber\": 5131002001,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteria\": []\n}"},"url":"{{url}}/api/v2/users/executive/screening-alerting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive","screening-alerting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"14e4ffdd-19e1-4b31-9c9f-dc5657f027c1","name":"User Executive Screening Alerting","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableScreening\": true,\n    \"screeningAlertType\": \"Silent\",\n    \"alertBroadWorksMobilityLocation\": true,\n    \"alertBroadWorksAnywhereLocations\": true,\n    \"alertSharedCallAppearanceLocations\": true,\n    \"alertingMode\": \"Simultaneous\",\n    \"alertingCallingLineIdNameMode\": \"Originator\",\n    \"alertingCustomCallingLineIdName\": \"mark reverman\",\n    \"unicodeAlertingCustomCallingLineIdName\": \"mark reverman\",\n    \"alertingCallingLineIdPhoneNumberMode\": \"Executive\",\n    \"alertingCustomCallingLineIdPhoneNumber\": 4131002001,\n    \"callPushRecallNumberOfRings\": 5,\n    \"nextAssistantNumberOfRings\": 5,\n    \"enableRollover\": true,\n    \"rolloverWaitTimeSeconds\": 30,\n    \"rolloverAction\": \"Forward\",\n    \"rolloverForwardToPhoneNumber\": 5131002001,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteria\": []\n}"},"url":"{{url}}/api/v2/users/executive/screening-alerting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableScreening\": true,\n    \"screeningAlertType\": \"Silent\",\n    \"alertBroadWorksMobilityLocation\": true,\n    \"alertBroadWorksAnywhereLocations\": true,\n    \"alertSharedCallAppearanceLocations\": true,\n    \"alertingMode\": \"Simultaneous\",\n    \"alertingCallingLineIdNameMode\": \"Originator\",\n    \"alertingCustomCallingLineIdName\": \"mark reverman\",\n    \"unicodeAlertingCustomCallingLineIdName\": \"mark reverman\",\n    \"alertingCallingLineIdPhoneNumberMode\": \"Executive\",\n    \"alertingCustomCallingLineIdPhoneNumber\": 4131002001,\n    \"callPushRecallNumberOfRings\": 5,\n    \"nextAssistantNumberOfRings\": 5,\n    \"enableRollover\": true,\n    \"rolloverWaitTimeSeconds\": 30,\n    \"rolloverAction\": \"Forward\",\n    \"rolloverForwardToPhoneNumber\": 5131002001,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"criteria\": []\n}"}],"_postman_id":"c2e01e4d-51c4-406f-92eb-0f584390c0ff"}],"id":"466abb93-28b6-445f-8535-2a9fb5d15632","_postman_id":"466abb93-28b6-445f-8535-2a9fb5d15632","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Executive Assistant","item":[{"name":"User Executive Assistant","id":"98ffad91-6980-4bb6-9f1e-4a96504c5b73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/executive-assistant?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive-assistant"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"ec55a349-8405-418b-b120-5e6bed055687","name":"User Executive Assistant","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/executive-assistant?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","executive-assistant"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableDivert\": false,\n    \"divertToPhoneNumber\": 5131002001,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"executives\": []\n}"}],"_postman_id":"98ffad91-6980-4bb6-9f1e-4a96504c5b73"},{"name":"User Executive Assistant","id":"dc5b9edf-9a85-48e1-ac9d-b582551bbc16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableDivert\": false,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"divertToPhoneNumber\": 5131002001,\n    \"executives\": []\n}"},"url":"{{url}}/api/v2/users/executive-assistant","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","executive-assistant"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"01bdfba4-14e9-4bd7-a968-a88f7b7e86d0","name":"User Executive Assistant","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableDivert\": false,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"divertToPhoneNumber\": 5131002001,\n    \"executives\": []\n}"},"url":"{{url}}/api/v2/users/executive-assistant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableDivert\": false,\n    \"divertToPhoneNumber\": 5131002001,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"executives\": []\n}"}],"_postman_id":"dc5b9edf-9a85-48e1-ac9d-b582551bbc16"}],"id":"246654ae-e1cc-43c2-9fd6-87bba05ab2c7","_postman_id":"246654ae-e1cc-43c2-9fd6-87bba05ab2c7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Extensions","item":[{"name":"Group Extensions","id":"51295006-fd4c-4c2f-9d8d-a3230efe9cfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/extensions?serviceProviderId=ent.voipxp&groupId=QAGroupHT","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","extensions"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.voipxp"},{"key":"groupId","value":"QAGroupHT"}],"variable":[]}},"response":[{"id":"bdad4f0b-a056-449f-ba62-bd35e82805d3","name":"Group Extensions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/extensions?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","extensions"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"minExtensionLength\": 3,\n    \"maxExtensionLength\": 5,\n    \"defaultExtensionLength\": 4,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"51295006-fd4c-4c2f-9d8d-a3230efe9cfa"},{"name":"Group Extensions","id":"e9d718be-a29f-4043-96bc-d746abfe133a","request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"minExtensionLength\": 3,\n    \"maxExtensionLength\": 5,\n    \"defaultExtensionLength\": 4,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/extensions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","extensions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0f2fad8a-36f8-4319-ac6d-b974cc897354","name":"Group Extensions","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"minExtensionLength\": 3,\n    \"maxExtensionLength\": 5,\n    \"defaultExtensionLength\": 4,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/extensions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"minExtensionLength\": 3,\n    \"maxExtensionLength\": 5,\n    \"defaultExtensionLength\": 4,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"e9d718be-a29f-4043-96bc-d746abfe133a"}],"id":"3cd26638-953c-4355-84ca-691b7434979e","_postman_id":"3cd26638-953c-4355-84ca-691b7434979e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"External Calling Line ID Delivery","item":[{"name":"User External Calling Line ID Delivery","id":"bd39d05e-8ef7-4b7f-ad4d-37aa0280ea99","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/external-calling-line-id-delivery?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","external-calling-line-id-delivery"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"72a2fa38-ab5b-489c-9454-fbcafb7937f1","name":"User External Calling Line ID Delivery","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/external-calling-line-id-delivery?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","external-calling-line-id-delivery"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"56","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 18:50:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"bd39d05e-8ef7-4b7f-ad4d-37aa0280ea99"},{"name":"User External Calling Line ID Delivery","id":"1e2b600c-9756-4755-a719-e796c2e624b6","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/external-calling-line-id-delivery","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","external-calling-line-id-delivery"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"63640f99-bdbd-4533-b549-cd9892f3febe","name":"User External Calling Line ID Delivery","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/external-calling-line-id-delivery"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6733\n}"}],"_postman_id":"1e2b600c-9756-4755-a719-e796c2e624b6"}],"id":"1a12c68b-3290-4168-ac46-8065f1b8fb79","_postman_id":"1a12c68b-3290-4168-ac46-8065f1b8fb79","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"External Custom Ringback","item":[{"name":"User External Custom Ringback","id":"31d72694-ccd3-49b3-b2a0-26c7dbfd05f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/external-custom-ringback?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","external-custom-ringback"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"204bae1d-85ba-453c-bda9-8b05dea4b93c","name":"User In Call Service Activation Copy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/external-custom-ringback?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","external-custom-ringback"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"useSettingLevel\": \"User\",\n    \"sipRequestURI\": \"2.98.144.177\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"31d72694-ccd3-49b3-b2a0-26c7dbfd05f3"},{"name":"User External Custom Ringback","id":"146d7af8-f706-4c92-acb5-069236236c73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"useSettingLevel\": \"User\",\n    \"sipRequestURI\": \"2.98.144.177\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/external-custom-ringback","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","external-custom-ringback"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bf389df2-8001-4213-8b31-1be9eff4f6c8","name":"User External Custom Ringback","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": false,\n    \"useSettingLevel\": \"User\",\n    \"sipRequestURI\": \"2.98.144.177\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/external-custom-ringback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"useSettingLevel\": \"User\",\n    \"sipRequestURI\": \"2.98.144.177\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6765\n}"}],"_postman_id":"146d7af8-f706-4c92-acb5-069236236c73"}],"id":"52c58bde-972e-49d8-8443-cf6da417229b","_postman_id":"52c58bde-972e-49d8-8443-cf6da417229b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Fax Messaging","item":[{"name":"User Fax Messaging","id":"66992d08-0ff6-4825-87e7-069a2ac868fa","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"phoneNumber\": \"8135551005\",\n    \"extension\": \"1005\"\n}"},"url":"{{url}}/api/v2/users/fax-messaging","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","fax-messaging"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9e1df6c5-c677-4cec-bafa-315705e534ee","name":"User Fax Messaging","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"phoneNumber\": \"8135551005\",\n    \"extension\": \"1005\"\n}"},"url":"{{url}}/api/v2/users/fax-messaging"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"phoneNumber\": 8135551005,\n    \"extension\": 1005,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6796\n}"}],"_postman_id":"66992d08-0ff6-4825-87e7-069a2ac868fa"}],"id":"c0794fdb-d5e3-47e0-996b-9e211f5e8e89","_postman_id":"c0794fdb-d5e3-47e0-996b-9e211f5e8e89","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Feature Access Codes","item":[{"name":"System Feature Access Codes","id":"d7fa201f-f7c0-4287-a036-91c4053ff402","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/feature-access-codes","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Get group FAC code level and the list of feature access codes for a group. \nReturned Feature Access Codes may be group specific, or Service Provider Feature Access Codes, depending on Feature Access Code level.\nIn release 20 the \"Call Recording\" FAC name is changed to \"Call Recording - Start\".\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","feature-access-codes"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"a7b5a59c-9e6d-4de0-920e-94c8534142b2","name":"System Feature Access Codes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/system/feature-access-codes","host":["{{url}}"],"path":["api","v2","system","feature-access-codes"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","description":"key can be serviceProviderId or enterpriseId","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording\",\n            \"mainCode\": \"*44\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Cancellation\",\n            \"mainCode\": \"#96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Invocation\",\n            \"mainCode\": \"*96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"*86\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"*62\"\n        }\n    ]\n}"}],"_postman_id":"d7fa201f-f7c0-4287-a036-91c4053ff402"},{"name":"System Feature Access Codes","id":"2573c28e-fc59-4fbe-af7e-142daf883770","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording\",\n            \"mainCode\": \"*44\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Cancellation\",\n            \"mainCode\": \"#96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Invocation\",\n            \"mainCode\": \"*96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"*86\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"*62\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/system/feature-access-codes","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>update group FAC code level and the list of feature access codes for a group. \nReturned Feature Access Codes may be group specific, or Service Provider Feature Access Codes, depending on Feature Access Code level.\nIn release 20 the \"Call Recording\" FAC name is changed to \"Call Recording - Start\".\n</code></pre><h6 id=\"attribute-key-values\">attribute key: values</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\nuseFeatureAccessCodeLevel: ['Service Provider','Group']\n}\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","feature-access-codes"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"94d7e182-7eb5-4082-a59e-163c5dd3d97d","name":"System Feature Access Codes","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording\",\n            \"mainCode\": \"*44\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Cancellation\",\n            \"mainCode\": \"#96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Invocation\",\n            \"mainCode\": \"*96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"*86\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"*62\"\n        }\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/system/feature-access-codes","host":["{{url}}"],"path":["api","v2","system","feature-access-codes"],"query":[{"description":"key can be serviceProviderId or enterpriseId","key":"serviceProviderId","value":"odin.mock.ent1","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording\",\n            \"mainCode\": \"*44\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Cancellation\",\n            \"mainCode\": \"#96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Legacy Automatic Callback Invocation\",\n            \"mainCode\": \"*96\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"*86\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"*62\"\n        }\n    ]\n}"}],"_postman_id":"2573c28e-fc59-4fbe-af7e-142daf883770"},{"name":"Service Provider Feature Access Codes","id":"5c97b782-7d26-42c0-8f38-acde894aced7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/service-providers/feature-access-codes?serviceProviderId=ent.template","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Get group FAC code level and the list of feature access codes for a group. \nReturned Feature Access Codes may be group specific, or Service Provider Feature Access Codes, depending on Feature Access Code level.\nIn release 20 the \"Call Recording\" FAC name is changed to \"Call Recording - Start\".\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","feature-access-codes"],"host":["{{url}}"],"query":[{"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.template"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"3847f727-fd12-4248-85b5-9e48296a0e5d","name":"Service Provider Feature Access Codes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/service-providers/feature-access-codes?serviceProviderId=ent.template","host":["{{url}}"],"path":["api","v2","service-providers","feature-access-codes"],"query":[{"key":"serviceProviderId","value":"ent.template","description":"key can be serviceProviderId or enterpriseId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Oct 2021 14:50:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"*62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Start\",\n            \"mainCode\": \"*44\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"1571\",\n            \"alternateCode\": \"*86\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"}],"_postman_id":"5c97b782-7d26-42c0-8f38-acde894aced7"},{"name":"Service Provider Feature Access Codes","id":"a14bd676-6210-4429-862d-f10ff424ca2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"1572\",\n            \"alternateCode\": \"*62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Start\",\n            \"mainCode\": \"*44\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"1571\",\n            \"alternateCode\": \"*86\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/feature-access-codes?serviceProviderId=ent.template","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>update group FAC code level and the list of feature access codes for a group. \nReturned Feature Access Codes may be group specific, or Service Provider Feature Access Codes, depending on Feature Access Code level.\nIn release 20 the \"Call Recording\" FAC name is changed to \"Call Recording - Start\".\n</code></pre><h6 id=\"attribute-key-values\">attribute key: values</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\nuseFeatureAccessCodeLevel: ['Service Provider','Group']\n}\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","feature-access-codes"],"host":["{{url}}"],"query":[{"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.template"}],"variable":[]}},"response":[{"id":"ec93533b-1bb1-4066-9cd8-50e0fab0fe7c","name":"Service Provider Feature Access Codes","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"1572\",\n            \"alternateCode\": \"*62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Start\",\n            \"mainCode\": \"*44\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"1571\",\n            \"alternateCode\": \"*86\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/feature-access-codes?serviceProviderId=ent.template","host":["{{url}}"],"path":["api","v2","service-providers","feature-access-codes"],"query":[{"key":"serviceProviderId","value":"ent.template","description":"key can be serviceProviderId or enterpriseId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n            \"mainCode\": \"*61*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n            \"mainCode\": \"#70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n            \"mainCode\": \"*99\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n            \"mainCode\": \"*90\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n            \"mainCode\": \"#43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n            \"mainCode\": \"*21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n            \"mainCode\": \"*43\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Diversion Inhibitor\",\n            \"mainCode\": \"*80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n            \"mainCode\": \"#28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n            \"mainCode\": \"*28\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n            \"mainCode\": \"*53*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"No Answer Timer\",\n            \"mainCode\": \"*610\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n            \"mainCode\": \"*55\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n            \"mainCode\": \"*78\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Stop\",\n            \"mainCode\": \"*45\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n            \"mainCode\": \"*72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Monitoring Next Call\",\n            \"mainCode\": \"#84\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return\",\n            \"mainCode\": \"*69\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n            \"mainCode\": \"#64\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Agent Escalation\",\n            \"mainCode\": \"#83\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n            \"mainCode\": \"*31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Portal Access\",\n            \"mainCode\": \"1572\",\n            \"alternateCode\": \"*62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Retrieve\",\n            \"mainCode\": \"*11\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n            \"mainCode\": \"#24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Return Number Deletion\",\n            \"mainCode\": \"#92#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n            \"mainCode\": \"*21*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n            \"mainCode\": \"#63\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Customer Originated Trace\",\n            \"mainCode\": \"*57\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n            \"mainCode\": \"*85\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n            \"mainCode\": \"*94\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n            \"mainCode\": \"*33\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Deactivation\",\n            \"mainCode\": \"*13\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n            \"mainCode\": \"#40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n            \"mainCode\": \"*33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Flash Call Hold\",\n            \"mainCode\": \"*22\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Start\",\n            \"mainCode\": \"*44\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Last Number Redial\",\n            \"mainCode\": \"*66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n            \"mainCode\": \"*29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Silent Monitoring\",\n            \"mainCode\": \"#82\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n            \"mainCode\": \"#41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n            \"mainCode\": \"*23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Pause\",\n            \"mainCode\": \"*48\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n            \"mainCode\": \"#29\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n            \"mainCode\": \"*24\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n            \"mainCode\": \"*95\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n            \"mainCode\": \"#62\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n            \"mainCode\": \"#66\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n            \"mainCode\": \"#81\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n            \"mainCode\": \"*73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 8\",\n            \"mainCode\": \"*74\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n            \"mainCode\": \"#23\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n            \"mainCode\": \"*91\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n            \"mainCode\": \"*79\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Directed Call Pickup\",\n            \"mainCode\": \"*97\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n            \"mainCode\": \"*54*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n            \"mainCode\": \"*67*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n            \"mainCode\": \"#76\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n            \"mainCode\": \"#61\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Speed Dial 100\",\n            \"mainCode\": \"*75\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Location Control Activation\",\n            \"mainCode\": \"*12\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n            \"mainCode\": \"#33*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Recording - Resume\",\n            \"mainCode\": \"*49\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n            \"mainCode\": \"*40\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n            \"mainCode\": \"#65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n            \"mainCode\": \"*14\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n            \"mainCode\": \"#80\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n            \"mainCode\": \"#8\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n            \"mainCode\": \"*67\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push to Talk\",\n            \"mainCode\": \"*50\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n            \"mainCode\": \"*41\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n            \"mainCode\": \"#72\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n            \"mainCode\": \"#9\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n            \"mainCode\": \"#21\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n            \"mainCode\": \"*63*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n            \"mainCode\": \"*92\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n            \"mainCode\": \"#73\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n            \"mainCode\": \"*34\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Bridge\",\n            \"mainCode\": \"*15\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n            \"mainCode\": \"*#33#\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n            \"mainCode\": \"*56*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n            \"mainCode\": \"1571\",\n            \"alternateCode\": \"*86\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n            \"mainCode\": \"*65\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n            \"mainCode\": \"#31\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n            \"mainCode\": \"#77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n            \"mainCode\": \"*51*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n            \"mainCode\": \"#71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Cancel Call Waiting\",\n            \"mainCode\": \"*70\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n            \"mainCode\": \"*93\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n            \"mainCode\": \"*84\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"}],"_postman_id":"a14bd676-6210-4429-862d-f10ff424ca2c"},{"name":"Group Feature Access Codes","id":"91cb72cd-8c96-4f1d-b1c8-2665c6149188","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/feature-access-codes?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Get group FAC code level and the list of feature access codes for a group. \nReturned Feature Access Codes may be group specific, or Service Provider Feature Access Codes, depending on Feature Access Code level.\nIn release 20 the \"Call Recording\" FAC name is changed to \"Call Recording - Start\".\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","feature-access-codes"],"host":["{{url}}"],"query":[{"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"99a2495e-cccc-4f21-a24d-8209baa7b765","name":"Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/feature-access-codes?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","feature-access-codes"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""}],"cookie":[],"responseTime":null,"body":"{\"useFeatureAccessCodeLevel\":\"Service Provider\",\"featureAccessCodes\":[{\"featureAccessCodeName\":\"Call Forwarding Not Reachable Deactivation\",\"mainCode\":\"*95\"},{\"featureAccessCodeName\":\"Direct Voice Mail Transfer\",\"mainCode\":\"*55\"},{\"featureAccessCodeName\":\"Call Bridge\",\"mainCode\":\"*15\"},{\"featureAccessCodeName\":\"Call Park\",\"mainCode\":\"*68\"},{\"featureAccessCodeName\":\"Voice Mail Clear MWI\",\"mainCode\":\"*99\"},{\"featureAccessCodeName\":\"Night Service Deactivation Manual Override\",\"mainCode\":\"#71\"},{\"featureAccessCodeName\":\"Cancel Call Waiting\",\"mainCode\":\"*70\"},{\"featureAccessCodeName\":\"Call Forwarding No Answer To Voice Mail Deactivation\",\"mainCode\":\"#41\"},{\"featureAccessCodeName\":\"Call Return\",\"mainCode\":\"*69\"},{\"featureAccessCodeName\":\"Do Not Disturb Activation\",\"mainCode\":\"*78\"},{\"featureAccessCodeName\":\"Speed Dial 8\",\"mainCode\":\"*74\"},{\"featureAccessCodeName\":\"Calling Line ID Delivery Blocking Interrogation\",\"mainCode\":\"*54*\"},{\"featureAccessCodeName\":\"Location Control Deactivation\",\"mainCode\":\"*13\"},{\"featureAccessCodeName\":\"Communication Barring User-Control Activation\",\"mainCode\":\"*33*\"},{\"featureAccessCodeName\":\"Calling Line ID Delivery Blocking Persistent Activation\",\"mainCode\":\"*31\"},{\"featureAccessCodeName\":\"Calling Line ID Delivery Blocking Persistent Deactivation\",\"mainCode\":\"#31\"},{\"featureAccessCodeName\":\"Call Forwarding Always To Voice Mail Activation\",\"mainCode\":\"*21\"},{\"featureAccessCodeName\":\"Call Forwarding No Answer Interrogation\",\"mainCode\":\"*61*\"},{\"featureAccessCodeName\":\"Last Number Redial\",\"mainCode\":\"*66\"},{\"featureAccessCodeName\":\"Call Forwarding Busy Interrogation\",\"mainCode\":\"*67*\"},{\"featureAccessCodeName\":\"Forced Forwarding Activation\",\"mainCode\":\"#72\"},{\"featureAccessCodeName\":\"Per-Call Account Code\",\"mainCode\":\"*71\"},{\"featureAccessCodeName\":\"Call Forwarding No Answer Activation\",\"mainCode\":\"*92\"},{\"featureAccessCodeName\":\"Call Forwarding Busy To Voice Mail Activation\",\"mainCode\":\"*40\"},{\"featureAccessCodeName\":\"Forced Forwarding Deactivation\",\"mainCode\":\"#73\"},{\"featureAccessCodeName\":\"EOCP Sustained Authorization Code Unlock\",\"mainCode\":\"*47\"},{\"featureAccessCodeName\":\"Communication Barring User-Control Deactivation\",\"mainCode\":\"#33*\"},{\"featureAccessCodeName\":\"Call Return Number Deletion\",\"mainCode\":\"#92#\"},{\"featureAccessCodeName\":\"Customer Originated Trace\",\"mainCode\":\"*57\"},{\"featureAccessCodeName\":\"Agent Escalation\",\"mainCode\":\"#83\"},{\"featureAccessCodeName\":\"Selective Call Forwarding Activation\",\"mainCode\":\"#76\"},{\"featureAccessCodeName\":\"Selective Call Rejection Interrogation\",\"mainCode\":\"*51*\"},{\"featureAccessCodeName\":\"Make Personal Outgoing Call\",\"mainCode\":\"#81\"},{\"featureAccessCodeName\":\"Call Retrieve\",\"mainCode\":\"*11\"},{\"featureAccessCodeName\":\"EOCP Sustained Authorization Code Lock\",\"mainCode\":\"*37\"},{\"featureAccessCodeName\":\"Location Control Activation\",\"mainCode\":\"*12\"},{\"featureAccessCodeName\":\"Selective Call Forwarding Deactivation\",\"mainCode\":\"#77\"},{\"featureAccessCodeName\":\"Flash Call Hold\",\"mainCode\":\"*22\"},{\"featureAccessCodeName\":\"Call Park Retrieve\",\"mainCode\":\"*88\"},{\"featureAccessCodeName\":\"Automatic Callback Deactivation\",\"mainCode\":\"#8\"},{\"featureAccessCodeName\":\"Music On Hold Per-Call Deactivation\",\"mainCode\":\"*60\"},{\"featureAccessCodeName\":\"Call Forwarding Busy Deactivation\",\"mainCode\":\"*91\"},{\"featureAccessCodeName\":\"BroadWorks Anywhere E164 Dialing\",\"mainCode\":\"*14\"},{\"featureAccessCodeName\":\"Directed Call Pickup with Barge-in\",\"mainCode\":\"*33\"},{\"featureAccessCodeName\":\"Call Forwarding Not Reachable Activation\",\"mainCode\":\"*94\"},{\"featureAccessCodeName\":\"Night Service Activation Manual Override\",\"mainCode\":\"#70\"},{\"featureAccessCodeName\":\"Calling Line ID Delivery per Call\",\"mainCode\":\"*65\"},{\"featureAccessCodeName\":\"Connected Line Identification Restriction Interrogation\",\"mainCode\":\"*56*\"},{\"featureAccessCodeName\":\"Group Call Park\",\"mainCode\":\"#58\"},{\"featureAccessCodeName\":\"Silent Monitoring\",\"mainCode\":\"#82\"},{\"featureAccessCodeName\":\"Speed Dial 100\",\"mainCode\":\"*75\"},{\"featureAccessCodeName\":\"Monitoring Next Call\",\"mainCode\":\"#84\"},{\"featureAccessCodeName\":\"Call Forwarding Busy Activation\",\"mainCode\":\"*90\"},{\"featureAccessCodeName\":\"Call Recording\",\"mainCode\":\"*44\"},{\"featureAccessCodeName\":\"Anonymous Call Rejection Deactivation\",\"mainCode\":\"*87\"},{\"featureAccessCodeName\":\"Call Waiting Persistent Deactivation\",\"mainCode\":\"#43\"},{\"featureAccessCodeName\":\"No Answer Timer\",\"mainCode\":\"*610\"},{\"featureAccessCodeName\":\"Automatic Callback Menu Access\",\"mainCode\":\"#9\"},{\"featureAccessCodeName\":\"Anonymous Call Rejection Interrogation\",\"mainCode\":\"*52*\"},{\"featureAccessCodeName\":\"Calling Line ID Delivery Blocking per Call\",\"mainCode\":\"*67\"},{\"featureAccessCodeName\":\"Call Forwarding Not Reachable Interrogation\",\"mainCode\":\"*63*\"},{\"featureAccessCodeName\":\"Call Forwarding Always Activation\",\"mainCode\":\"*72\"},{\"featureAccessCodeName\":\"Voice Mail Retrieval\",\"mainCode\":\"*86\"},{\"featureAccessCodeName\":\"Call Forwarding Busy To Voice Mail Deactivation\",\"mainCode\":\"#40\"},{\"featureAccessCodeName\":\"Directed Call Pickup\",\"mainCode\":\"*97\"},{\"featureAccessCodeName\":\"Call Forwarding No Answer Deactivation\",\"mainCode\":\"*93\"},{\"featureAccessCodeName\":\"Anonymous Call Rejection Activation\",\"mainCode\":\"*77\"},{\"featureAccessCodeName\":\"Call Forwarding Always Interrogation\",\"mainCode\":\"*21*\"},{\"featureAccessCodeName\":\"Call Waiting Interrogation\",\"mainCode\":\"*53*\"},{\"featureAccessCodeName\":\"Call Forwarding Always To Voice Mail Deactivation\",\"mainCode\":\"#21\"},{\"featureAccessCodeName\":\"Diversion Inhibitor\",\"mainCode\":\"*80\"},{\"featureAccessCodeName\":\"Voice Portal Access\",\"mainCode\":\"*62\"},{\"featureAccessCodeName\":\"Call Waiting Persistent Activation\",\"mainCode\":\"*43\"},{\"featureAccessCodeName\":\"Do Not Disturb Deactivation\",\"mainCode\":\"*79\"},{\"featureAccessCodeName\":\"Push to Talk\",\"mainCode\":\"*50\"},{\"featureAccessCodeName\":\"Make Outgoing Call as Call Center\",\"mainCode\":\"#80\"},{\"featureAccessCodeName\":\"Call Pickup\",\"mainCode\":\"*98\"},{\"featureAccessCodeName\":\"Call Forwarding Always Deactivation\",\"mainCode\":\"*73\"},{\"featureAccessCodeName\":\"Communication Barring User-Control Query\",\"mainCode\":\"*#33#\"},{\"featureAccessCodeName\":\"Call Forwarding No Answer To Voice Mail Activation\",\"mainCode\":\"*41\"}]}"}],"_postman_id":"91cb72cd-8c96-4f1d-b1c8-2665c6149188"},{"name":"Group Feature Access Codes","id":"2ee8432c-083d-44d4-8528-6e213fc28600","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"useFeatureAccessCodeLevel\": \"Service Provider\",\n\t\"featureAccessCodes\": [{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n\t\t\t\"mainCode\": \"*96\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n\t\t\t\"mainCode\": \"*55\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Bridge\",\n\t\t\t\"mainCode\": \"*15\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Park\",\n\t\t\t\"mainCode\": \"*68\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n\t\t\t\"mainCode\": \"*99\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n\t\t\t\"mainCode\": \"#71\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Cancel Call Waiting\",\n\t\t\t\"mainCode\": \"*70\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n\t\t\t\"mainCode\": \"#41\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Return\",\n\t\t\t\"mainCode\": \"*69\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Do Not Disturb Activation\",\n\t\t\t\"mainCode\": \"*78\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Speed Dial 8\",\n\t\t\t\"mainCode\": \"*74\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n\t\t\t\"mainCode\": \"*54*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Location Control Deactivation\",\n\t\t\t\"mainCode\": \"*13\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n\t\t\t\"mainCode\": \"*33*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n\t\t\t\"mainCode\": \"*31\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n\t\t\t\"mainCode\": \"#31\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n\t\t\t\"mainCode\": \"*21\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n\t\t\t\"mainCode\": \"*61*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Last Number Redial\",\n\t\t\t\"mainCode\": \"*66\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n\t\t\t\"mainCode\": \"*67*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Forced Forwarding Activation\",\n\t\t\t\"mainCode\": \"#72\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Per-Call Account Code\",\n\t\t\t\"mainCode\": \"*71\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n\t\t\t\"mainCode\": \"*92\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n\t\t\t\"mainCode\": \"*40\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n\t\t\t\"mainCode\": \"#73\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n\t\t\t\"mainCode\": \"*47\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n\t\t\t\"mainCode\": \"#33*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Return Number Deletion\",\n\t\t\t\"mainCode\": \"#92#\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Customer Originated Trace\",\n\t\t\t\"mainCode\": \"*57\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Agent Escalation\",\n\t\t\t\"mainCode\": \"#83\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n\t\t\t\"mainCode\": \"#76\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n\t\t\t\"mainCode\": \"*51*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n\t\t\t\"mainCode\": \"#81\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Retrieve\",\n\t\t\t\"mainCode\": \"*11\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n\t\t\t\"mainCode\": \"*37\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Location Control Activation\",\n\t\t\t\"mainCode\": \"*12\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n\t\t\t\"mainCode\": \"#77\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Flash Call Hold\",\n\t\t\t\"mainCode\": \"*22\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Park Retrieve\",\n\t\t\t\"mainCode\": \"*88\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n\t\t\t\"mainCode\": \"#8\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n\t\t\t\"mainCode\": \"*60\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n\t\t\t\"mainCode\": \"*91\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n\t\t\t\"mainCode\": \"*14\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n\t\t\t\"mainCode\": \"*33\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n\t\t\t\"mainCode\": \"*94\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n\t\t\t\"mainCode\": \"#70\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n\t\t\t\"mainCode\": \"*65\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n\t\t\t\"mainCode\": \"*56*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Group Call Park\",\n\t\t\t\"mainCode\": \"#58\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Silent Monitoring\",\n\t\t\t\"mainCode\": \"#82\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Speed Dial 100\",\n\t\t\t\"mainCode\": \"*75\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Monitoring Next Call\",\n\t\t\t\"mainCode\": \"#84\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n\t\t\t\"mainCode\": \"*90\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Recording\",\n\t\t\t\"mainCode\": \"*44\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n\t\t\t\"mainCode\": \"*87\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n\t\t\t\"mainCode\": \"#43\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"No Answer Timer\",\n\t\t\t\"mainCode\": \"*610\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n\t\t\t\"mainCode\": \"#9\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n\t\t\t\"mainCode\": \"*52*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n\t\t\t\"mainCode\": \"*67\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n\t\t\t\"mainCode\": \"*63*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n\t\t\t\"mainCode\": \"*72\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Voice Mail Retrieval\",\n\t\t\t\"mainCode\": \"*86\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n\t\t\t\"mainCode\": \"#40\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Directed Call Pickup\",\n\t\t\t\"mainCode\": \"*97\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n\t\t\t\"mainCode\": \"*93\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n\t\t\t\"mainCode\": \"*77\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n\t\t\t\"mainCode\": \"*21*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Waiting Interrogation\",\n\t\t\t\"mainCode\": \"*53*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n\t\t\t\"mainCode\": \"#21\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Diversion Inhibitor\",\n\t\t\t\"mainCode\": \"*80\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Voice Portal Access\",\n\t\t\t\"mainCode\": \"*62\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n\t\t\t\"mainCode\": \"*43\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n\t\t\t\"mainCode\": \"*79\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Push to Talk\",\n\t\t\t\"mainCode\": \"*50\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n\t\t\t\"mainCode\": \"#80\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Pickup\",\n\t\t\t\"mainCode\": \"*98\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n\t\t\t\"mainCode\": \"*73\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n\t\t\t\"mainCode\": \"*#33#\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n\t\t\t\"mainCode\": \"*41\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/groups/feature-access-codes","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>update group FAC code level and the list of feature access codes for a group. \nReturned Feature Access Codes may be group specific, or Service Provider Feature Access Codes, depending on Feature Access Code level.\nIn release 20 the \"Call Recording\" FAC name is changed to \"Call Recording - Start\".\n</code></pre><h6 id=\"attribute-key-values\">attribute key: values</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\nuseFeatureAccessCodeLevel: ['Service Provider','Group']\n}\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","feature-access-codes"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"dd4d4a01-ccdf-484f-84dd-e69424184455","name":"Group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"useFeatureAccessCodeLevel\": \"Service Provider\",\n\t\"featureAccessCodes\": [{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n\t\t\t\"mainCode\": \"*96\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n\t\t\t\"mainCode\": \"*55\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Bridge\",\n\t\t\t\"mainCode\": \"*15\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Park\",\n\t\t\t\"mainCode\": \"*68\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n\t\t\t\"mainCode\": \"*99\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n\t\t\t\"mainCode\": \"#71\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Cancel Call Waiting\",\n\t\t\t\"mainCode\": \"*70\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n\t\t\t\"mainCode\": \"#41\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Return\",\n\t\t\t\"mainCode\": \"*69\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Do Not Disturb Activation\",\n\t\t\t\"mainCode\": \"*78\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Speed Dial 8\",\n\t\t\t\"mainCode\": \"*74\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n\t\t\t\"mainCode\": \"*54*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Location Control Deactivation\",\n\t\t\t\"mainCode\": \"*13\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n\t\t\t\"mainCode\": \"*33*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n\t\t\t\"mainCode\": \"*31\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n\t\t\t\"mainCode\": \"#31\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n\t\t\t\"mainCode\": \"*21\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n\t\t\t\"mainCode\": \"*61*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Last Number Redial\",\n\t\t\t\"mainCode\": \"*66\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n\t\t\t\"mainCode\": \"*67*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Forced Forwarding Activation\",\n\t\t\t\"mainCode\": \"#72\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Per-Call Account Code\",\n\t\t\t\"mainCode\": \"*71\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n\t\t\t\"mainCode\": \"*92\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n\t\t\t\"mainCode\": \"*40\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n\t\t\t\"mainCode\": \"#73\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n\t\t\t\"mainCode\": \"*47\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n\t\t\t\"mainCode\": \"#33*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Return Number Deletion\",\n\t\t\t\"mainCode\": \"#92#\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Customer Originated Trace\",\n\t\t\t\"mainCode\": \"*57\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Agent Escalation\",\n\t\t\t\"mainCode\": \"#83\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n\t\t\t\"mainCode\": \"#76\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n\t\t\t\"mainCode\": \"*51*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n\t\t\t\"mainCode\": \"#81\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Retrieve\",\n\t\t\t\"mainCode\": \"*11\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n\t\t\t\"mainCode\": \"*37\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Location Control Activation\",\n\t\t\t\"mainCode\": \"*12\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n\t\t\t\"mainCode\": \"#77\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Flash Call Hold\",\n\t\t\t\"mainCode\": \"*22\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Park Retrieve\",\n\t\t\t\"mainCode\": \"*88\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n\t\t\t\"mainCode\": \"#8\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n\t\t\t\"mainCode\": \"*60\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n\t\t\t\"mainCode\": \"*91\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n\t\t\t\"mainCode\": \"*14\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n\t\t\t\"mainCode\": \"*33\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n\t\t\t\"mainCode\": \"*94\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n\t\t\t\"mainCode\": \"#70\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n\t\t\t\"mainCode\": \"*65\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n\t\t\t\"mainCode\": \"*56*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Group Call Park\",\n\t\t\t\"mainCode\": \"#58\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Silent Monitoring\",\n\t\t\t\"mainCode\": \"#82\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Speed Dial 100\",\n\t\t\t\"mainCode\": \"*75\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Monitoring Next Call\",\n\t\t\t\"mainCode\": \"#84\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n\t\t\t\"mainCode\": \"*90\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Recording\",\n\t\t\t\"mainCode\": \"*44\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n\t\t\t\"mainCode\": \"*87\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n\t\t\t\"mainCode\": \"#43\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"No Answer Timer\",\n\t\t\t\"mainCode\": \"*610\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n\t\t\t\"mainCode\": \"#9\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n\t\t\t\"mainCode\": \"*52*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n\t\t\t\"mainCode\": \"*67\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n\t\t\t\"mainCode\": \"*63*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n\t\t\t\"mainCode\": \"*72\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Voice Mail Retrieval\",\n\t\t\t\"mainCode\": \"*86\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n\t\t\t\"mainCode\": \"#40\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Directed Call Pickup\",\n\t\t\t\"mainCode\": \"*97\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n\t\t\t\"mainCode\": \"*93\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n\t\t\t\"mainCode\": \"*77\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n\t\t\t\"mainCode\": \"*21*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Waiting Interrogation\",\n\t\t\t\"mainCode\": \"*53*\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n\t\t\t\"mainCode\": \"#21\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Diversion Inhibitor\",\n\t\t\t\"mainCode\": \"*80\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Voice Portal Access\",\n\t\t\t\"mainCode\": \"*62\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n\t\t\t\"mainCode\": \"*43\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n\t\t\t\"mainCode\": \"*79\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Push to Talk\",\n\t\t\t\"mainCode\": \"*50\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n\t\t\t\"mainCode\": \"#80\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Pickup\",\n\t\t\t\"mainCode\": \"*98\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n\t\t\t\"mainCode\": \"*73\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n\t\t\t\"mainCode\": \"*#33#\"\n\t\t},\n\t\t{\n\t\t\t\"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n\t\t\t\"mainCode\": \"*41\"\n\t\t}\n\t]\n}"},"url":{"raw":"{{url}}/api/v2/groups/feature-access-codes","host":["{{url}}"],"path":["api","v2","groups","feature-access-codes"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","description":"key can be serviceProviderId or enterpriseId","disabled":true},{"key":"groupId","value":"odin.mock.grp1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 29 Sep 2018 00:07:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2ee8432c-083d-44d4-8528-6e213fc28600"},{"name":"User Feature Access Codes","id":"dc80ed1d-2804-4218-a387-b3a5de573748","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/feature-access-codes?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","feature-access-codes"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"dcf06c54-5024-4400-80f3-6b801ff4be70","name":"User Feature Access Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/feature-access-codes?userId=mock.cc.1","host":["{{url}}"],"path":["api","v2","users","feature-access-codes"],"query":[{"key":"userId","value":"mock.cc.1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:06:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"912"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"featureAccessCodeName\": \"Call Park\",\n        \"mainCode\": \"*68\"\n    },\n    {\n        \"featureAccessCodeName\": \"Group Call Park\",\n        \"mainCode\": \"#58\"\n    },\n    {\n        \"featureAccessCodeName\": \"Per-Call Account Code\",\n        \"mainCode\": \"*71\"\n    },\n    {\n        \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n        \"mainCode\": \"*47\"\n    },\n    {\n        \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n        \"mainCode\": \"#53\"\n    },\n    {\n        \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n        \"mainCode\": \"#52\"\n    },\n    {\n        \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n        \"mainCode\": \"*37\"\n    },\n    {\n        \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n        \"mainCode\": \"#51\"\n    },\n    {\n        \"featureAccessCodeName\": \"Call Park Retrieve\",\n        \"mainCode\": \"*88\"\n    },\n    {\n        \"featureAccessCodeName\": \"Push Notification Retrieval\",\n        \"mainCode\": \"#0322\"\n    },\n    {\n        \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n        \"mainCode\": \"*60\"\n    },\n    {\n        \"featureAccessCodeName\": \"Call Pickup\",\n        \"mainCode\": \"*98\"\n    },\n    {\n        \"featureAccessCodeName\": \"FMFM Call Push\",\n        \"mainCode\": \"*26\"\n    }\n]"}],"_postman_id":"dc80ed1d-2804-4218-a387-b3a5de573748"},{"name":"User Feature Access Codes  Details","id":"9fb18ea4-0b5e-441b-9dbd-0548d801b124","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/feature-access-codes/details?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","feature-access-codes","details"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"07c65efd-c98a-4186-8258-c5d38c3ca0f3","name":"User Feature Access Codes  Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/feature-access-codes/details?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","feature-access-codes","details"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"}],"_postman_id":"9fb18ea4-0b5e-441b-9dbd-0548d801b124"},{"name":"User Feature Access Codes  Details","id":"985d6452-208a-4fa6-837c-8acd00a57b2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"false\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"false\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/feature-access-codes/details","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","feature-access-codes","details"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2d566091-4662-4ec7-ab84-8da239e13374","name":"User Feature Access Codes  Details","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"false\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"false\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/feature-access-codes/details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"featureAccessCodes\": [\n        {\n            \"featureAccessCodeName\": \"Call Park\",\n            \"mainCode\": \"*68\",\n            \"enableFAC\": \"false\"\n        },\n        {\n            \"featureAccessCodeName\": \"Group Call Park\",\n            \"mainCode\": \"#58\",\n            \"enableFAC\": \"false\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n            \"mainCode\": \"*87\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Per-Call Account Code\",\n            \"mainCode\": \"*71\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n            \"mainCode\": \"*52*\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n            \"mainCode\": \"*47\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n            \"mainCode\": \"#53\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n            \"mainCode\": \"*77\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n            \"mainCode\": \"#52\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n            \"mainCode\": \"*37\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n            \"mainCode\": \"#51\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Park Retrieve\",\n            \"mainCode\": \"*88\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Push Notification Retrieval\",\n            \"mainCode\": \"#0322\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n            \"mainCode\": \"*60\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"Call Pickup\",\n            \"mainCode\": \"*98\",\n            \"enableFAC\": \"true\"\n        },\n        {\n            \"featureAccessCodeName\": \"FMFM Call Push\",\n            \"mainCode\": \"*26\",\n            \"enableFAC\": \"true\"\n        }\n    ]\n}"}],"_postman_id":"985d6452-208a-4fa6-837c-8acd00a57b2c"}],"id":"cce4c0ae-6703-4d0a-bf12-bdd73bda13da","_postman_id":"cce4c0ae-6703-4d0a-bf12-bdd73bda13da","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Flexible Seating","item":[{"name":"Group Flexible Seating Access Devices","id":"448ee31f-c127-4986-a8db-418175a9e86c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/flexible-seating/access-devices?serviceProviderId=ent.odin&groupId=grp.odin","description":"<blockquote>\n<p>Requests the list of access devices available for assignment to a flexible seating host or guest. The list includes devices created at the system, service provider, and group levels that support device management.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","access-devices"],"host":["{{url}}"],"query":[{"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[],"_postman_id":"448ee31f-c127-4986-a8db-418175a9e86c"},{"name":"Group Flexible Seating Hosts","id":"75784d23-338d-4b68-8a39-1a738c2c0dc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/flexible-seating/host?serviceProviderId=ent.odin&groupId=grp.odin","description":"<blockquote>\n<p>Get a list of flexible seating host instances within a group.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"6675dfe2-846b-469e-b538-a977bb5177db","name":"Group Flexible Seating Hosts","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/groups/flexible-seating-host?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","flexible-seating-host"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"key can be serviceProviderId or enterpriseId"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"hosts\": [\n        {\n            \"serviceUserId\": \"flexible1@parkbenchsolutions.com\",\n            \"name\": \"flexible1\",\n            \"phoneNumber\": 8135551000,\n            \"extension\": 1000,\n            \"department\": null,\n            \"isActive\": true,\n            \"serviceInstanceProfile\": {\n                \"name\": \"flexible1\",\n                \"callingLineIdLastName\": \"flexible1\",\n                \"callingLineIdFirstName\": \"flexible1\",\n                \"hiraganaLastName\": \"flexible1\",\n                \"hiraganaFirstName\": \"Flexible Seating Guest\",\n                \"phoneNumber\": \"8135551000\",\n                \"extension\": \"1000\",\n                \"countryCode\": \"1\",\n                \"language\": \"English\",\n                \"timeZone\": \"America/New_York\",\n                \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                \"aliases\": []\n            },\n            \"defaultAlias\": \"flexible1@parkbenchsolutions.com\"\n        },\n        {\n            \"serviceUserId\": \"flexible2@parkbenchsolutions.com\",\n            \"name\": \"flexible2\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": \"engineering (grp.odin)\",\n            \"isActive\": true,\n            \"serviceInstanceProfile\": {\n                \"name\": \"flexible2\",\n                \"callingLineIdLastName\": \"flexible2\",\n                \"callingLineIdFirstName\": \"flexible2\",\n                \"hiraganaLastName\": \"flexible2\",\n                \"hiraganaFirstName\": \"Flexible Seating Guest\",\n                \"department\": {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin\",\n                    \"name\": \"engineering\"\n                },\n                \"language\": \"English\",\n                \"timeZone\": \"America/New_York\",\n                \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                \"aliases\": []\n            },\n            \"defaultAlias\": \"flexible2@parkbenchsolutions.com\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"75784d23-338d-4b68-8a39-1a738c2c0dc7"},{"name":"Group Flexible Seating Host","id":"82c503e1-6f57-4127-a6a7-9d800f270a83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/flexible-seating/host?serviceUserId=flexible01@voicecci.net","description":"<blockquote>\n<p>Request to get all the information of a flexible seating host instance.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"},{"key":"serviceUserId","value":"flexible01@voicecci.net"}],"variable":[]}},"response":[{"id":"ce4bef5b-ab33-4611-9f92-7a8ec74d0cdd","name":"Group Flexible Seating Host","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/groups/flexible-seating-host?serviceUserId=flexible1@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","groups","flexible-seating-host"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible1\",\n        \"callingLineIdLastName\": \"flexible1\",\n        \"callingLineIdFirstName\": \"flexible1\",\n        \"hiraganaLastName\": \"flexible1\",\n        \"hiraganaFirstName\": \"Flexible Seating Guest\",\n        \"phoneNumber\": \"8135551000\",\n        \"extension\": \"1000\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible1@parkbenchsolutions.com\",\n    \"serviceUserId\": \"flexible1@parkbenchsolutions.com\"\n}"}],"_postman_id":"82c503e1-6f57-4127-a6a7-9d800f270a83"},{"name":"Group Flexible Seating Host","id":"c028bd65-937a-4e4b-973a-4bb9c548d605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexibleXX\",\n        \"callingLineIdLastName\": \"flexibleXX\",\n        \"callingLineIdFirstName\": \"flexibleXX\",\n        \"hiraganaLastName\": \"flexibleXX\",\n        \"hiraganaFirstName\": \"flexibleXX Seating Guest\",\n        \"phoneNumber\": \"8595551024\",\n        \"extension\": \"1024\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexibleXX@parkbenchsolutions.com\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\"\n        },\n        \"linePort\": \"FlexibleHostXX@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"serviceUserId\": \"flexibleXX@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isActive\": true\n}"},"url":"{{url}}/api/v2/groups/flexible-seating/host","description":"<blockquote>\n<p>Add a flexible seating host instance to a group.  The domain is required in the serviceUserId.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"69d8060c-c191-44ab-b270-6ad9420f53c4","name":"Group Flexible Seating Host","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"serviceUserId\": \"flexible4@parkbenchsolutions.com\",\n    \"isActive\": true,\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible4\",\n        \"callingLineIdLastName\": \"flexible4\",\n        \"callingLineIdFirstName\": \"flexible3\",\n        \"hiraganaLastName\": \"flexible4\",\n        \"hiraganaFirstName\": \"flexible4 Seating Guest\",\n        \"phoneNumber\": \"8595551404\",\n        \"extension\": \"1404\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible3@parkbenchsolutions.com\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/flexible-seating/host","host":["{{url}}"],"path":["api","v2","groups","flexible-seating","host"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible4\",\n        \"callingLineIdLastName\": \"flexible3\",\n        \"callingLineIdFirstName\": \"flexible3\",\n        \"hiraganaLastName\": \"flexible4\",\n        \"hiraganaFirstName\": \"flexible4 Seating Guest\",\n        \"phoneNumber\": \"8595551404\",\n        \"extension\": \"1404\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible4@parkbenchsolutions.com\",\n    \"serviceUserId\": \"flexible4@parkbenchsolutions.com\",\n    \"isActive\": true\n}"},{"id":"a3a3717e-2fa4-49f8-8cde-73142d03faa2","name":"Group Flexible Seating Host","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"serviceUserId\": \"flexibleXX@parkbenchsolutions.com\",\n    \"isActive\": true,\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexibleXX\",\n        \"callingLineIdLastName\": \"flexibleXX\",\n        \"callingLineIdFirstName\": \"flexibleXX\",\n        \"hiraganaLastName\": \"flexibleXX\",\n        \"hiraganaFirstName\": \"flexibleXX Seating Guest\",\n        \"phoneNumber\": \"8595551024\",\n        \"extension\": \"1024\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\"\n        },\n        \"linePort\": \"FlexibleHostXX@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"defaultAlias\": \"flexibleXX@parkbenchsolutions.com\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/flexible-seating/host","host":["{{url}}"],"path":["api","v2","groups","flexible-seating","host"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexibleXX\",\n        \"callingLineIdLastName\": \"flexibleXX\",\n        \"callingLineIdFirstName\": \"flexibleXX\",\n        \"hiraganaLastName\": \"flexibleXX\",\n        \"hiraganaFirstName\": \"flexibleXX Seating Guest\",\n        \"phoneNumber\": \"8595551024\",\n        \"extension\": \"1024\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexibleXX@parkbenchsolutions.com\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\"\n        },\n        \"linePort\": \"FlexibleHostXX@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"serviceUserId\": \"flexibleXX@parkbenchsolutions.com\",\n    \"isActive\": true\n}"},{"id":"e78292f3-3299-4d60-919e-834a622aa437","name":"Group Flexible Seating Host","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"serviceUserId\": \"flexible01@voicecci.net\",\n    \"isActive\": true,\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible01\",\n        \"callingLineIdLastName\": \"flexible01\",\n        \"callingLineIdFirstName\": \"flexible01\",\n        \"hiraganaLastName\": \"flexible01\",\n        \"hiraganaFirstName\": \"flexible01 Seating HOST\",\n        \"phoneNumber\": \"5139228861\",\n        \"extension\": \"7001\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"SML Device\"\n        },\n        \"linePort\": \"test2323@voicecci.net\",\n        \"contact\": [\n            {\"sipContact\": \"flexible01SIP\",\n            \"pathHeader\": \"flexible01Header\"},\n            {\"sipContact\": \"flexible01SIP2\",\n            \"pathHeader\": \"flexible01Header2\"}\n        ],\n        \"lineNumber\": \"test2323@voicecci.net\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"networkClassOfService\": \"NCOS - Basic VoIP\",\n    \"defaultAlias\": \"flexible01@voicecci.net\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/flexible-seating/host","host":["{{url}}"],"path":["api","v2","groups","flexible-seating","host"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"756"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 23 Feb 2022 14:43:48 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible01\",\n        \"callingLineIdLastName\": \"flexible01\",\n        \"callingLineIdFirstName\": \"flexible01\",\n        \"hiraganaLastName\": \"flexible01\",\n        \"hiraganaFirstName\": \"flexible01 Seating HOST\",\n        \"phoneNumber\": \"5139228861\",\n        \"extension\": \"7001\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible01@voicecci.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"SML Device\"\n        },\n        \"linePort\": \"test2323@voicecci.net\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"networkClassOfService\": \"NCOS - Block International\",\n    \"serviceUserId\": \"flexible01@voicecci.net\",\n    \"isActive\": true\n}"}],"_postman_id":"c028bd65-937a-4e4b-973a-4bb9c548d605"},{"name":"Group Flexible Seating Host","id":"22dfdd34-763c-4319-848f-09172e98db88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible01\",\n        \"callingLineIdLastName\": \"flexible01\",\n        \"callingLineIdFirstName\": \"flexible01\",\n        \"hiraganaLastName\": \"flexible01\",\n        \"hiraganaFirstName\": \"flexible01 Seating HOST\",\n        \"phoneNumber\": \"5139228860\",\n        \"extension\": \"8860\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": [],\n        \"department\": null\n    },\n    \"defaultAlias\": \"flexible01@voicecci.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"SML Device\"\n        },\n        \"linePort\": \"test2323@voicecci.net\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"networkClassOfService\": \"NCOS - Block International\",\n    \"serviceUserId\": \"flexible01@voicecci.net\"\n}"},"url":"{{url}}/api/v2/groups/flexible-seating/host","description":"<blockquote>\n<p>Request to modify a flexible seating host instance</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"23b4e320-5ed6-46cf-9ea0-23c2f44cec2e","name":"Group Flexible Seating Host Access Device","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible4\",\n        \"callingLineIdLastName\": \"flexible4\",\n        \"callingLineIdFirstName\": \"flexible4\",\n        \"hiraganaLastName\": \"flexible4\",\n        \"hiraganaFirstName\": \"flexible4 Seating Guest\",\n        \"phoneNumber\": \"8595551404\",\n        \"extension\": \"1404\",\n        \"countryCode\": \"1\",\n        \"department\": {\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"name\": \"engineering\"\n        },\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible4@parkbenchsolutions.com\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-2\"\n        },\n        \"linePort\": \"FlexibleHost1@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"serviceUserId\": \"flexible4@parkbenchsolutions.com\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/flexible-seating/host","host":["{{url}}"],"path":["api","v2","groups","flexible-seating","host"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible4\",\n        \"callingLineIdLastName\": \"flexible4\",\n        \"callingLineIdFirstName\": \"flexible4\",\n        \"hiraganaLastName\": \"flexible4\",\n        \"hiraganaFirstName\": \"flexible4 Seating Guest\",\n        \"phoneNumber\": \"8595551404\",\n        \"extension\": \"1404\",\n        \"countryCode\": \"1\",\n        \"department\": {\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"name\": \"engineering\"\n        },\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible4@parkbenchsolutions.com\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-2\"\n        },\n        \"linePort\": \"FlexibleHost1@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"serviceUserId\": \"flexible4@parkbenchsolutions.com\"\n}"},{"id":"5906bbdc-1f57-45d2-8546-382fd4708e05","name":"Group Flexible Seating Host","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"flexible3@parkbenchsolutions.com\",\n\t\"isActive\": true,\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible3\",\n        \"callingLineIdLastName\": \"flexible3\",\n        \"callingLineIdFirstName\": \"flexible3\",\n        \"hiraganaLastName\": \"flexible3\",\n        \"hiraganaFirstName\": \"flexible3 Seating Guest\",\n        \"phoneNumber\": \"8595551403\",\n        \"extension\": \"1403\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\"\n    },\n    \"defaultAlias\": \"flexible3@parkbenchsolutions.com\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/flexible-seating/host","host":["{{url}}"],"path":["api","v2","groups","flexible-seating","host"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible3\",\n        \"callingLineIdLastName\": \"flexible3\",\n        \"callingLineIdFirstName\": \"flexible3\",\n        \"hiraganaLastName\": \"flexible3\",\n        \"hiraganaFirstName\": \"flexible3 Seating Guest\",\n        \"phoneNumber\": \"8595551403\",\n        \"extension\": \"1403\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible3@parkbenchsolutions.com\",\n    \"serviceUserId\": \"flexible3@parkbenchsolutions.com\",\n    \"isActive\": true\n}"},{"id":"873d24d8-5af5-45ce-a824-b3acdddcac76","name":"Group Flexible Seating Host","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"serviceUserId\": \"flexible01@voicecci.net\",\n    \"isActive\": true,\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible01\",\n        \"callingLineIdLastName\": \"flexible01\",\n        \"callingLineIdFirstName\": \"flexible01\",\n        \"hiraganaLastName\": \"flexible01\",\n        \"hiraganaFirstName\": \"flexible01 Seating HOST\",\n        \"phoneNumber\": \"5139228861\",\n        \"extension\": \"7001\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"SML Device\"\n        },\n        \"linePort\": \"test2323@voicecci.net\",\n        \"contact\": [\n            {\"sipContact\": \"flexible01SIP\",\n            \"pathHeader\": \"flexible01Header\"},\n            {\"sipContact\": \"flexible01SIP2\",\n            \"pathHeader\": \"flexible01Header2\"}\n        ],\n        \"lineNumber\": \"test2323@voicecci.net\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"networkClassOfService\": \"NCOS - Basic VoIP\",\n    \"defaultAlias\": \"flexible01@voicecci.net\"\n}"},"url":{"raw":"{{url}}/api/v2/groups/flexible-seating/host","host":["{{url}}"],"path":["api","v2","groups","flexible-seating","host"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"755"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Wed, 23 Feb 2022 14:52:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"flexible01\",\n        \"callingLineIdLastName\": \"flexible01\",\n        \"callingLineIdFirstName\": \"flexible01\",\n        \"hiraganaLastName\": \"flexible01\",\n        \"hiraganaFirstName\": \"Flexible Seating Guest\",\n        \"phoneNumber\": \"5139228861\",\n        \"extension\": \"7001\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"defaultAlias\": \"flexible01@voicecci.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"SML Device\"\n        },\n        \"linePort\": \"test2323@voicecci.net\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"networkClassOfService\": \"NCOS - Block International\",\n    \"serviceUserId\": \"flexible01@voicecci.net\",\n    \"isActive\": true\n}"}],"_postman_id":"22dfdd34-763c-4319-848f-09172e98db88"},{"name":"Group Flexible Seating Host","id":"73b0bb80-6ee7-4679-ac67-b9043eed098b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{url}}/api/v2/groups/flexible-seating/host?serviceUserId=flexible4@parkbenchsolutions.com","description":"<blockquote>\n<p>Delete a flexible seating host instance from a group. Host cannot be deleted when a guest is associated to a host.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"flexible4@parkbenchsolutions.com"}],"variable":[]}},"response":[],"_postman_id":"73b0bb80-6ee7-4679-ac67-b9043eed098b"},{"name":"Group Flexible Seating Host Status","id":"a7a7e06e-fe4b-446d-a756-f0af7d9ee82c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"flexible1@parkbenchsolutions.com\",\n            \"isActive\": true\n        },\n        {\n            \"serviceUserId\": \"flexible2@parkbenchsolutions.com\",\n            \"isActive\": false\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/flexible-seating/host/status","description":"<blockquote>\n<p>Request to set the active status of flexible seating host instances. Host cannot be disabled when a flexible seating guest is associated.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7398fab6-16e9-4df1-93b2-018055708745","name":"Group Flexible Seating Host Status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"flexible1@parkbenchsolutions.com\",\n            \"isActive\": true\n        },\n        {\n            \"serviceUserId\": \"flexible2@parkbenchsolutions.com\",\n            \"isActive\": false\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/groups/flexible-seating-host/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a7a7e06e-fe4b-446d-a756-f0af7d9ee82c"},{"name":"Group Flexible Seating Host Guest Association","id":"eb581478-8772-42d5-b000-d261ec65e1db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/flexible-seating/host/guest-association?serviceUserId=flexible1@parkbenchsolutions.com","description":"<blockquote>\n<p>Request the flexible seating host guest association details.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host","guest-association"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"2878f655-b3bf-4c3a-9354-2ad2de6219e7","name":"Group Flexible Seating Host Guest Association","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/groups/flexible-seating-host-guest-association?serviceUserId=flexible1@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","groups","flexible-seating-host-guest-association"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enforceAssociationLimit\": true,\n    \"associationLimitHours\": 24,\n    \"accessLevel\": \"Group\"\n}"}],"_postman_id":"eb581478-8772-42d5-b000-d261ec65e1db"},{"name":"Group Flexible Seating Host Guest Association","id":"6ffd08f4-b350-43ce-8d20-ab59ed9a6e33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\" : \"flexible1@parkbenchsolutions.com\",\n    \"enforceAssociationLimit\": true,\n    \"associationLimitHours\": 24,\n    \"accessLevel\": \"Enterprise\"\n}"},"url":"{{url}}/api/v2/groups/flexible-seating/host/guest-association","description":"<blockquote>\n<p>Modify the flexible seating host’s guest association attributes.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host","guest-association"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f83367e5-3cd4-4fbb-b56e-d8d52ac72e9d","name":"Group Flexible Seating Host Guest Association","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"flexible1@parkbenchsolutions.com\",\n    \"enforceAssociationLimit\": true,\n    \"associationLimitHours\": 24,\n    \"accessLevel\": \"Enterprise\"\n}"},"url":"{{url}}/api/v2/groups/flexible-seating-host-guest-association"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enforceAssociationLimit\": true,\n    \"associationLimitHours\": 24,\n    \"accessLevel\": \"Enterprise\"\n}"}],"_postman_id":"6ffd08f4-b350-43ce-8d20-ab59ed9a6e33"},{"name":"Group Flexible Seating Host Routing Policies","id":"f5ef34cb-59a0-4bf3-8564-2a70d195e299","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/groups/flexible-seating/host/routing-policies?serviceUserId=flexible1@parkbenchsolutions.com","description":"<blockquote>\n<p>All incoming calls to a Flexible Seating Host are blocked. However, for call originations from the host device, the two policies are defined.</p>\n</blockquote>\n<ul>\n<li><p>Emergency Calls policy : Controls whether the emergency calls from the host device are allowed. When this policy is enabled, the emergency calls from the host device are accepted, including those cases in which the Flexible Seating Host is provisioned but is inactive.</p>\n</li>\n<li><p>Voice Portal Calls policy: Controls whether the voice portal calls from the host device are allowed. When this policy is enabled, the guest user can create the Flexible Seating Host-Guest association by calling the voice portal from the host device.</p>\n</li>\n</ul>\n<blockquote>\n<p><strong><em>NOTE:</em></strong>  <strong><em>These two routing policies only apply to the calls originated from the host device.</em></strong></p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host","routing-policies"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"0f85a2d8-63ff-446a-9977-2e8e5d560e39","name":"Group Flexible Seating Host Routing Policies","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/groups/flexible-seating-host-routing-policies?serviceUserId=flexible1@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","groups","flexible-seating-host-routing-policies"],"query":[{"key":"serviceUserId","value":"flexible1@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowEmergencyCalls\": false,\n    \"allowCallsToVoicePortal\": true\n}"}],"_postman_id":"f5ef34cb-59a0-4bf3-8564-2a70d195e299"},{"name":"Group Flexible Seating Host Routing Policies","id":"60258bd8-725a-4304-a091-603db86e4603","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"flexible1@parkbenchsolutions.com\",\n    \"allowEmergencyCalls\": false,\n    \"allowCallsToVoicePortal\": true\n}"},"url":"{{url}}/api/v2/groups/flexible-seating/host/routing-policies","description":"<blockquote>\n<p>Modify a flexible seating host’s routing policies</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","flexible-seating","host","routing-policies"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a75d80c1-7eb7-4b65-b718-38bb6c956512","name":"Group Flexible Seating Host Routing Policies","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\" : \"flexible1@parkbenchsolutions.com\",\n    \"allowEmergencyCalls\": false,\n    \"allowCallsToVoicePortal\": true\n}"},"url":"{{url}}/api/v2/groups/flexible-seating-host-routing-policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowEmergencyCalls\": false,\n    \"allowCallsToVoicePortal\": true\n}"}],"_postman_id":"60258bd8-725a-4304-a091-603db86e4603"},{"name":"Users Flexible Seating Guest Bulk","id":"2894547f-d03c-4fb4-a431-d6e383273f1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/users/flexible-seating/bulk?serviceProviderId=ent.odin&groupId=grp.odin","description":"<blockquote>\n<p>Requests the list of access devices available for assignment to a flexible seating host or guest. The list includes devices created at the system, service provider, and group levels that support device management.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","flexible-seating","bulk"],"host":["{{url}}"],"query":[{"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[],"_postman_id":"2894547f-d03c-4fb4-a431-d6e383273f1f"},{"name":"User Flexible Seating Guest","id":"9d2d8322-3b5c-4a2c-a8bc-26ed24193547","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/flexible-seating/guest?userId=user-3@voicecci.net","description":"<blockquote>\n<p>Request the user level data associated with flexible seating guest.</p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>enableAssociationLimit</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","flexible-seating","guest"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-3@voicecci.net"}],"variable":[]}},"response":[{"id":"ccb26569-54af-45c6-bfa6-723feafe9724","name":"User Flexible Seating Guest","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/flexible-seating/guest?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","flexible-seating","guest"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"enableAssociationLimit\": true,\n    \"associationLimitHours\": 12,\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\"\n        },\n        \"linePort\": \"4001-1@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"hostUserId\": \"flexible2@parkbenchsolutions.com\",\n    \"hostLastName\": \"flexible2\",\n    \"hostFirstName\": \"Flexible Seating Guest\",\n    \"hostAssociationDateTime\": \"2019-03-27T14:53:50.788-04:00\",\n    \"hostEnforcesAssociationLimit\": true,\n    \"hostAssociationLimitHours\": 24,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"9d2d8322-3b5c-4a2c-a8bc-26ed24193547"},{"name":"User Flexible Seating Guest","id":"744d4ac9-2a9f-47aa-9c94-34112504460f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\n{\n    \"isActive\": true,\n    \"enableAssociationLimit\": true,\n    \"associationLimitHours\": 12,\n    \"unlockPhonePINCode\": 1233,\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"Test Profile 1\"\n        },\n        \"linePort\": \"123abc@voicecci.net\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"userId\": \"user-3@voicecci.net\",\n    \"domain\": \"voicecci.net\"\n}"},"url":"{{url}}/api/v2/users/flexible-seating/guest","description":"<ul>\n<li>accessDeviceEndpoint can only be configured by group or a higher level administrator.</li>\n<li>The request fails if isActive is set to false and the guest is associated to a host.</li>\n<li>The request fails when enableAssociationLimit, associationLimitHours, unlockPhonePINCode are changed when the guest is associated to a host.</li>\n<li>The request fails when accessDeviceEndpoint is set in the request when the guest is associated to a host.</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>enableAssociationLimit</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","flexible-seating","guest"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8cd433a1-f819-4ac8-a068-8d62a0d1e5c0","name":"User Flexible Seating Guest","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"enableAssociationLimit\": true,\n    \"associationLimitHours\": 12,\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\"\n        },\n        \"linePort\": \"4001-1@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"hostUserId\": \"flexible4@parkbenchsolutions.com\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/flexible-seating/guest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"enableAssociationLimit\": true,\n    \"associationLimitHours\": 12,\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"PolycommFlexibleSeatingVVX500-1\"\n        },\n        \"linePort\": \"4001-1@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"hostUserId\": \"flexible4@parkbenchsolutions.com\",\n    \"hostLastName\": \"flexible2\",\n    \"hostFirstName\": \"Flexible Seating Guest\",\n    \"hostAssociationDateTime\": \"2019-03-27T14:53:50.788-04:00\",\n    \"hostEnforcesAssociationLimit\": true,\n    \"hostAssociationLimitHours\": 24,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"744d4ac9-2a9f-47aa-9c94-34112504460f"},{"name":"User Flexible Seating Guest Hosts","id":"3a2b6cb5-e945-45cd-9fcf-32824e93c72f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/flexible-seating/guest/hosts?userId=user-3@voicecci.net","description":"<blockquote>\n<p>Get a list of hosts that can be assigned to flexible seating guests. The response will include active hosts based on the following criteria.</p>\n</blockquote>\n<ul>\n<li>host that has the equivalent device type as the guest, host already assigned to another guest and for a guest in a Service Provider host in the user’s group and for a user in an Enterprise a host within the user’s group and host in the user’s enterprise that has the accessLevel set to Enterprise.</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>enableAssociationLimit</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","flexible-seating","guest","hosts"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-3@voicecci.net"}],"variable":[]}},"response":[{"id":"573d8d80-75f5-4f28-875a-6d03471184f2","name":"User Flexible Seating Guest","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/flexible-seating-guest?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","flexible-seating-guest"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"enableAssociationLimit\": true,\n    \"associationLimitHours\": 12,\n    \"unlockPhonePINCode\": 123456,\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"4001-dev1-video\"\n        },\n        \"linePort\": \"1414@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"3a2b6cb5-e945-45cd-9fcf-32824e93c72f"}],"id":"85a962ed-b024-42f3-b348-fb4c948e2dec","description":"<blockquote>\n<p>When this service is authorized to a group, the administrator can provision a list of Flexible Seating Hosts. A Flexible Seating Host is a virtual subscriber provisioned with a phone device. A user with the Flexible Seating Guest service enabled can create an association with the host in the same group (or enterprise depending on the access level of the Flexible Seating Host). After the host-guest association is established, the host phone device is reconfigured with the guest user’s device settings and becomes the guest’s alternate device</p>\n</blockquote>\n<blockquote>\n<p>The Flexible Seating feature has similar functionality to the BroadWorks Hoteling feature. However, the Flexible Seating feature is different from the Hoteling feature in some ways. To help the reader’s understanding, this section briefly describes the main differences between the two features:</p>\n</blockquote>\n<ul>\n<li><p>Reconfiguring host’s phone with guest’s device files In the Hoteling feature, the Hoteling Host’s phone device is always configured with the host’s profile settings. When a Hoteling Guest uses the Hoteling Host’s phone device, the device settings, for example, line key settings, contact directory, and so on, are for the host, and not the guest.</p>\n</li>\n<li><p>In the new Flexible Seating feature, the Flexible Seating Host’s phonedevice downloads and is reconfigured with the Flexible Seating Guest’s device files when the guest is associated with the host. The device settings are for the guest, and not the host.</p>\n</li>\n<li><p>Alternate device In the Hoteling feature, when a Hoteling Guest is associated with a Hoteling Host, the host device is treated as a replacement of the guest’s primary device. The call originations from guest’s primary device are not allowed except for emergency calls. The guest’s primary device is not alerted on incoming calls to the guest. In the new Flexible Seating feature, when a Flexible Seating Guest is associated with a Flexible Seating Host, the host device is reconfigured with the guest’s device settings and is treated as an alternate device of the guest. The call originations from guest’s primary device are also allowed. The guest’s primary device is also alerted on incoming calls to the guest.</p>\n</li>\n<li><p>Licensing in the Hoteling feature, both the Hoteling Host and Hoteling Guest consume one\nBroadWorks user license. In the new Flexible Seating feature, the Flexible Seating Host is a virtual subscriber that does not consume a BroadWorks user license. The Flexible Seating Guest user license is the only license required for deploying the feature.</p>\n</li>\n</ul>\n<blockquote>\n<p>When the Flexible Seating Guest service is authorized to a group, the administrator is allowed to create any number of Flexible Seating Host instances. A Flexible Seating Host is a virtual subscriber that does not consume a BroadWorks user license. A Flexible Seating Host is provisioned with a host phone device for the guests to use.</p>\n</blockquote>\n<blockquote>\n<p>When the Flexible Seating Guest service is unauthorized, all the Flexible Seating Guest users are forcibly disassociated from their host.</p>\n</blockquote>\n<blockquote>\n<p>Similar to a regular BroadWorks user, a Flexible Seating Host virtual subscriber is provisioned with an identity/device profile, Public User Identity (PUI) in IMS mode or line/port in stand-alone mode, phone number and/or extension, user services, and so on. In addition, an administrator is allowed to provision the routing policies for call originations from a host device when a Flexible Seating Host is not associated with any guest.</p>\n</blockquote>\n<h2 id=\"flexible-seating-host-identitydevice-profile\">Flexible Seating Host Identity/Device Profile.</h2>\n<blockquote>\n<p>A Flexible Seating Host must have the identity/device profile provisioned before it becomes available for guests to associate. The core functionality of this feature is that the host device downloads the Flexible Seating Guest service’s device files and reconfigures it with the guest’s device settings. For this functionality to work, the identity/device profile type of Flexible Seating Host must support the following options:</p>\n</blockquote>\n<ul>\n<li><p>Device Management – The Device Configuration Options attribute must be set to “Device Management”.</p>\n</li>\n<li><p>Reset Event – The Reset Event attribute must be set to “checkSync” or “reSync”.</p>\n</li>\n<li><p>Registration Capable – The Registration Capable option must be enabled.</p>\n</li>\n</ul>\n<blockquote>\n<p><strong><em>NOTE:</em></strong>  <strong><em>A Flexible Seating Host cannot be a trunking user.</em></strong></p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"24b000fd-6765-4f00-916e-be414862b540","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"76259ae0-36d6-4781-aa3b-320151d5da61","type":"text/javascript","exec":[""]}}],"_postman_id":"85a962ed-b024-42f3-b348-fb4c948e2dec","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Group Paging","item":[{"name":"Group Paging Groups","id":"2cb9488f-9ee9-4a0c-b2dd-149398255fea","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"bd4a749d-bda2-4a25-b4f4-e266eb7067a2","name":"Group Paging Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/paging?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","paging"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:21:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"200"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceUserId\": \"odin.mock.paging1\",\n        \"name\": \"odin.mock.paging1\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"isActive\": true,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    }\n]"}],"_postman_id":"2cb9488f-9ee9-4a0c-b2dd-149398255fea"},{"name":"Group Paging Groups User","id":"c4f75a53-27c2-408c-be87-ac539757b848","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging/user?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","user"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[],"_postman_id":"c4f75a53-27c2-408c-be87-ac539757b848"},{"name":"Group Paging Groups Available Originators","id":"222e23cf-5455-42a1-b281-2d1abb340291","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging/originators/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","originators","available"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"165aab68-5522-4135-a736-cd4078dc45cc","name":"Group Paging Group Available Originators","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/paging/originators/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","paging","originators","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:27:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1440"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": 9709580001,\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"extension\": \"0001\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580002,\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"+1-9709580002\",\n        \"extension\": \"0002\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580003,\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"+1-9709580003\",\n        \"extension\": \"0003\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580004,\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"+1-9709580004\",\n        \"extension\": \"0004\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580005,\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"+1-9709580005\",\n        \"extension\": \"0005\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"mock-pilot-1\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"phoneNumber\": \"+1-9709580008\",\n        \"extension\": \"0008\",\n        \"department\": null,\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"222e23cf-5455-42a1-b281-2d1abb340291"},{"name":"Group Paging Groups Status","id":"384821d7-d319-4245-af66-e0f387ce0459","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"instances\":[\n\t\t{\"serviceUserId\":\"odin.mock.paging1\",\"isActive\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/paging/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8159320a-4dae-40d6-8b31-7f5542bcda29","name":"Group Paging Groups Status","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"instances\":[\n\t\t{\"serviceUserId\":\"odin.mock.paging1\",\"isActive\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/paging/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:31:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"384821d7-d319-4245-af66-e0f387ce0459"},{"name":"Group Paging Group","id":"0f5400a9-1734-4d93-b484-94e1badc0811","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserIdSuffix\":\"microv-works.com\",\n\t\"deliverOriginatorCLIDInstead\":false,\n\t\"confirmationToneTimeoutSeconds\":1,\n\t\"serviceInstanceProfile\":{\n\t\t\"aliases\":[],\n\t\t\"name\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.paging.2\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"serviceUserId\":\"odin.mock.paging.2@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/paging","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f0d8ea14-c53a-494a-a31e-d17702287088","name":"Group Paging Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserIdSuffix\":\"microv-works.com\",\n\t\"deliverOriginatorCLIDInstead\":false,\n\t\"confirmationToneTimeoutSeconds\":1,\n\t\"serviceInstanceProfile\":{\n\t\t\"aliases\":[],\n\t\t\"name\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.paging.2\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"serviceUserId\":\"odin.mock.paging.2@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/paging"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:22:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0f5400a9-1734-4d93-b484-94e1badc0811"},{"name":"Group Paging Group","id":"368b074c-3ae3-4e32-b68f-1fa64a588c3c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging?serviceUserId=odin.mock.paging.2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}],"variable":[]}},"response":[{"id":"c783ab08-e2f6-4ee5-94c0-b4aa5045d738","name":"Group Paging Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/paging?serviceUserId=odin.mock.paging.2","host":["{{url}}"],"path":["api","v2","groups","paging"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:31:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"449"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"odin.mock.paging.2\",\n        \"callingLineIdLastName\": \"odin.mock.paging.2\",\n        \"callingLineIdFirstName\": \"odin.mock.paging.2\",\n        \"hiraganaLastName\": \"odin.mock.paging.2\",\n        \"hiraganaFirstName\": \"Group Paging\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"aliases\": []\n    },\n    \"confirmationToneTimeoutSeconds\": 1,\n    \"deliverOriginatorCLIDInstead\": false,\n    \"serviceUserId\": \"odin.mock.paging.2\"\n}"}],"_postman_id":"368b074c-3ae3-4e32-b68f-1fa64a588c3c"},{"name":"Group Paging Group","id":"a3fe86de-8ab2-4121-b672-0d98abfae310","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.paging.2\",\n\t\t\"hiraganaLastName\":\"odin.mock.paging.2\",\n\t\t\"hiraganaFirstName\":\"Group Paging\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\",\n\t\t\"aliases\":[]\n\t},\n\t\"confirmationToneTimeoutSeconds\":1,\n\t\"deliverOriginatorCLIDInstead\":false,\n\t\"serviceUserId\":\"odin.mock.paging.2\"\n}"},"url":"{{url}}/api/v2/groups/paging","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a9b48f22-fe25-4b79-8cde-47df458af85b","name":"Group Paging Group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.paging.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.paging.2\",\n\t\t\"hiraganaLastName\":\"odin.mock.paging.2\",\n\t\t\"hiraganaFirstName\":\"Group Paging\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\",\n\t\t\"aliases\":[]\n\t},\n\t\"confirmationToneTimeoutSeconds\":1,\n\t\"deliverOriginatorCLIDInstead\":false,\n\t\"serviceUserId\":\"odin.mock.paging.2\"\n}"},"url":"{{url}}/api/v2/groups/paging"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:24:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a3fe86de-8ab2-4121-b672-0d98abfae310"},{"name":"Group Paging Group Originators","id":"3f69b265-dc64-4ef0-8392-81e6d2d7f55e","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"odin.mock.paging.2\",\n\t\"originators\":[\n\t\t{\"userId\":\"9709580001\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/paging/originators","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","originators"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f6c48f5b-e87e-4629-9b68-7e107f677952","name":"Group Paging Group Originators","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"odin.mock.paging.2\",\n\t\"originators\":[\n\t\t{\"userId\":\"9709580001\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/paging/originators"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:27:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3f69b265-dc64-4ef0-8392-81e6d2d7f55e"},{"name":"Group Paging Group Originators","id":"645baf32-0892-4526-94cd-36fe13a00be6","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging/originators?serviceUserId=odin.mock.paging.2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","originators"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}],"variable":[]}},"response":[{"id":"f586861e-41ba-4765-a502-987af626fd98","name":"Group Paging Group Originators","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/paging/originators?serviceUserId=odin.mock.paging.2","host":["{{url}}"],"path":["api","v2","groups","paging","originators"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:28:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": 9709580001,\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"extension\": \"0001\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"645baf32-0892-4526-94cd-36fe13a00be6"},{"name":"Group Paging Group Available Targets","id":"130628b1-08f6-4a4a-b0a6-22e111281aca","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging/targets/available?serviceUserId=odin.mock.paging.2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","targets","available"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}],"variable":[]}},"response":[{"id":"a3d6ec05-dec6-47b8-a8bf-1675797d2148","name":"Group Paging Group Available Targets","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/paging/targets/available?serviceUserId=odin.mock.paging.2","host":["{{url}}"],"path":["api","v2","groups","paging","targets","available"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:29:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1677"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": 9709580001,\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"extension\": \"0001\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580002,\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"+1-9709580002\",\n        \"extension\": \"0002\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580003,\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"+1-9709580003\",\n        \"extension\": \"0003\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580004,\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"+1-9709580004\",\n        \"extension\": \"0004\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580005,\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"+1-9709580005\",\n        \"extension\": \"0005\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"odin.mock.paging1\",\n        \"lastName\": \"odin.mock.paging1\",\n        \"firstName\": \"Group Paging\",\n        \"hiraganaLastName\": \"odin.mock.paging1\",\n        \"hiraganaFirstName\": \"Group Paging\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"mock-pilot-1\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"phoneNumber\": \"+1-9709580008\",\n        \"extension\": \"0008\",\n        \"department\": null,\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"130628b1-08f6-4a4a-b0a6-22e111281aca"},{"name":"Group Paging Group Targets","id":"14864c25-7a25-4141-9b63-35b5e9dae1fc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging/targets?serviceUserId=odin.mock.paging.2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","targets"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}],"variable":[]}},"response":[{"id":"76c49008-8c52-471e-a47c-a1bab6a3b258","name":"Group Paging Group Targets","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/paging/targets?serviceUserId=odin.mock.paging.2","host":["{{url}}"],"path":["api","v2","groups","paging","targets"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:30:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": 9709580001,\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"extension\": \"0001\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"14864c25-7a25-4141-9b63-35b5e9dae1fc"},{"name":"Group Paging Group Targets","id":"411e9145-a102-4ce1-be46-b616007bc53c","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"odin.mock.paging.2\",\n\t\"targets\":[\n\t\t{\"userId\":\"9709580001\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/paging/targets","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","targets"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d7883692-86a7-4c13-aa7d-1efba4a62234","name":"Group Paging Group Targets","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"odin.mock.paging.2\",\n\t\"targets\":[\n\t\t{\"userId\":\"9709580001\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/paging/targets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:30:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"411e9145-a102-4ce1-be46-b616007bc53c"},{"name":"Group Paging Group Targets Capacity","id":"1ee5a893-71ce-43c4-9b84-8b798dc6a579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/paging/targets-capacity?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","targets-capacity"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"2953e277-be1e-46b3-9d09-a6235c4eb459","name":"Group Paging Group Targets Capacity","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/paging/targets-capacity?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","paging","targets-capacity"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"maximumTargetUsersFromServiceProvider\": 100,\n    \"maximumTargetUsers\": 100,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"1ee5a893-71ce-43c4-9b84-8b798dc6a579"},{"name":"Group Paging Group Targets Capacity","id":"689a6915-f94f-43ce-8071-e3bc2db31ae0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"maximumTargetUsers\": 50,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/paging/targets-capacity","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging","targets-capacity"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"60b3ae77-8fd3-41b8-9884-aba7f5c459f7","name":"Group Paging Group Targets Capacity","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"maximumTargetUsers\": 50,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/paging/targets-capacity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"maximumTargetUsersFromServiceProvider\": 100,\n    \"maximumTargetUsers\": 50,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"689a6915-f94f-43ce-8071-e3bc2db31ae0"},{"name":"Group Paging Group","id":"c7325532-9dbc-4429-8d93-548065adea4b","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/paging?serviceUserId=odin.mock.paging.2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","paging"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}],"variable":[]}},"response":[{"id":"d6ebce3e-5f74-4e41-845b-f764a940db60","name":"Group Paging Group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/paging?serviceUserId=odin.mock.paging.2","host":["{{url}}"],"path":["api","v2","groups","paging"],"query":[{"key":"serviceUserId","value":"odin.mock.paging.2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:32:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c7325532-9dbc-4429-8d93-548065adea4b"}],"id":"5512624a-555d-4af3-9cd7-a85e5700edcc","_postman_id":"5512624a-555d-4af3-9cd7-a85e5700edcc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Groups","item":[{"name":"Groups","id":"62c4bc65-8182-426c-98df-da4a282fb8c9","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups?serviceProviderId=ent.odin","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: sets a ResponseSizeLimit attribute on the search</li>\n<li>serviceProviderId: restrict to serviceProviderId (Required for Service Provider Admin and Lower)</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>groupId: filter by groupId</li>\n<li>groupName: filter by groupName</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupName","value":"*group*"},{"disabled":true,"key":"limit","value":"2"}],"variable":[]}},"response":[{"id":"210be1de-79e9-4eba-bbb5-7740c9771ed5","name":"Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups?serviceProviderId=odin.mock.ent1&groupName=*group*&limit=2","host":["{{url}}"],"path":["api","v2","groups"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupName","value":"*group*"},{"key":"limit","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 18:56:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"217"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"groupId\": \"odin.mock.grp1\",\n        \"groupName\": \"Odin Mock Group 1\",\n        \"userLimit\": 25,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    },\n    {\n        \"groupId\": \"odin.mock.grp5\",\n        \"groupName\": \"Group 5\",\n        \"userLimit\": 25,\n        \"serviceProviderId\": \"odin.mock.ent1\"\n    }\n]"}],"_postman_id":"62c4bc65-8182-426c-98df-da4a282fb8c9"},{"name":"Group","id":"83d817c0-2fa7-4430-b860-95b374f831b9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"defaultDomain\": \"as3.xdp.broadsoft.com\",\n    \"userLimit\": 25,\n    \"groupId\": \"odin.mock.grp5\",\n    \"groupName\": \"Group 5\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"46beca86-98cd-41da-9b0a-9f3febe5d83c","name":"Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"defaultDomain\": \"as3.xdp.broadsoft.com\",\n    \"userLimit\": 25,\n    \"groupId\": \"odin.mock.grp5\",\n    \"groupName\": \"Group 5\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 18:55:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"229"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"defaultDomain\": \"as3.xdp.broadsoft.com\",\n    \"userLimit\": 25,\n    \"userCount\": 0,\n    \"groupName\": \"Group 5\",\n    \"timeZone\": \"US/Eastern\",\n    \"timeZoneDisplayName\": \"(GMT-04:00) US/Eastern\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp5\"\n}"}],"_postman_id":"83d817c0-2fa7-4430-b860-95b374f831b9"},{"name":"Group","id":"9951c081-01fd-48ee-aa9b-0cd10398c2c7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"33ec1419-a119-4853-9e2f-fbd64082ef6d","name":"Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"defaultDomain\": \"parkbenchsolutions.com\",\n    \"userLimit\": 25,\n    \"userCount\": 8,\n    \"groupName\": \"grp.odin\",\n    \"callingLineIdName\": \"parkbench solutions\",\n    \"callingLineIdPhoneNumber\": \"+12345678900\",\n    \"callingLineIdDisplayPhoneNumber\": 2345678900,\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"locationDialingCode\": 234,\n    \"contact\": {\n        \"contactName\": \"Mark Reverman 2\",\n        \"contactNumber\": \"513-123-1234\",\n        \"contactEmail\": \"mreverman@parkbenchsolutions.com\"\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"9951c081-01fd-48ee-aa9b-0cd10398c2c7"},{"name":"Group","id":"c05ec7b8-e117-4034-b02e-9aae3630c52b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"defaultDomain\": \"lab.tekvoice.net\",\n    \"userLimit\": 50,\n    \"userCount\": 13,\n    \"groupName\": \"grp.odin\",\n    \"callingLineIdName\": \"grp.odin\",\n    \"callingLineIdPhoneNumber\": \"+15132337655\",\n    \"callingLineIdDisplayPhoneNumber\": 5132337655,\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"locationDialingCode\": \"5131\",\n    \"contact\": {\n        \"contactName\": \"Mark Reverman\",\n        \"contactNumber\": \"100-454-4545\",\n        \"contactEmail\": \"zmayfield@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"4545 Main Street\",\n        \"addressLine2\": \"Bldg 2\",\n        \"city\": \"Cincinnati\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45212\",\n        \"country\": \"United States\"\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"882d967f-e894-4edb-9468-c01c90e58585","name":"Group","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"defaultDomain\": \"as3.xdp.broadsoft.com\",\n    \"userLimit\": 25,\n    \"userCount\": 0,\n    \"groupName\": \"Group Five\",\n    \"timeZone\": \"US/Eastern\",\n    \"timeZoneDisplayName\": \"(GMT-04:00) US/Eastern\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp5\"\n}"},"url":"{{url}}/api/v2/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 18:56:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c05ec7b8-e117-4034-b02e-9aae3630c52b"},{"name":"Group","id":"3bf45b87-02db-4ced-87f1-a11c4d799946","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups?groupId=odin.mock.grp5&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp5"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"1aa0bbcf-c05b-45e7-8fab-3879ec39f12c","name":"Group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups?groupId=odin.mock.grp5&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups"],"query":[{"key":"groupId","value":"odin.mock.grp5"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 18:56:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3bf45b87-02db-4ced-87f1-a11c4d799946"}],"id":"fdae4b29-02ba-4c70-9983-204c8e72c5d5","_postman_id":"fdae4b29-02ba-4c70-9983-204c8e72c5d5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Group Navigation","item":[{"name":"Service Link Display","id":"fc56fe46-3257-4809-88b2-6601c28f3b05","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/navigation?serviceProviderId=ent.odin&groupId=grp.odin","description":"<p>Get Group Navigation Service Links</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","navigation"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"ce67dea3-7b6a-402d-97d4-8ded980419cd","name":"Service Link Display","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/group/navigation?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","group","navigation"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Dec 2023 18:24:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"916"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"displayTrunkGroupLink\": true,\n    \"displayThirdPartyVMLink\": true,\n    \"displayVMGroupLink\": true,\n    \"displayBroadWorksAnywhereLink\": true,\n    \"displayPasscodeRulesLink\": true,\n    \"displayPreAlertingAnnouncementLink\": true,\n    \"displayPolycomPhoneServicesLink\": true,\n    \"displayCallRecordingPlatformLink\": true,\n    \"displayCallCenterLink\": true,\n    \"displayCallCenterScheduleReportLink\": true,\n    \"displaySessionAdmissionControlLink\": true,\n    \"displayVirtualOnNetEnterpriseExtensionsLink\": true,\n    \"displayRoutePointExternalSystemsLink\": true,\n    \"displayMeetMeConferencingLink\": true,\n    \"displayBroadWorksMobilityLink\": true,\n    \"displayGroupPagingTargetsCapacityLink\": true,\n    \"displayOfficeZoneLink\": true,\n    \"displayGroupNightForwardingLink\": true,\n    \"displayAutoAttendantLink\": true,\n    \"displayDeviceManagementEventQueuesLink\": true,\n    \"displayIMPLink\": true,\n    \"displayFlexibleSeatingLink\": true,\n    \"displayAdviceOfChargeLink\": true,\n    \"displayMWIDeliveryToMobileEndpointLink\": true,\n    \"displayCollaborateLink\": true\n}"}],"_postman_id":"fc56fe46-3257-4809-88b2-6601c28f3b05"}],"id":"ac44a907-ed3d-4d32-b633-86af8372b60a","_postman_id":"ac44a907-ed3d-4d32-b633-86af8372b60a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Hoteling Guest","item":[{"name":"User Hoteling Guest","id":"bc5815c5-5700-443a-b0f6-037354a6d4f1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/hoteling-guest?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-guest"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"1488b839-029e-4e79-82cf-d4a27e32f6ca","name":"User Hoteling Guest","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/hoteling-guest?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","hoteling-guest"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"316","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 19:57:51 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"enableAssociationLimit\":true,\"associationLimitHours\":3,\"hostUserId\":9709580002,\"hostLastName\":\"User2last\",\"hostFirstName\":\"User2first\",\"hostAssociationDateTime\":\"2018-10-03T15:58:25.029-04:00\",\"hostEnforcesAssociationLimit\":true,\"hostAssociationLimitHours\":4,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"bc5815c5-5700-443a-b0f6-037354a6d4f1"},{"name":"User Hoteling Guest","id":"cfc334cf-d95d-4d9e-af17-3690402e3418","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"enableAssociationLimit\":true,\n\t\"associationLimitHours\":3,\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"hostUserId\":\"9709580002\"\n}"},"url":"{{url}}/api/v2/users/hoteling-guest","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-guest"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"68b93d40-8b25-41f1-97d7-446dd0fdd959","name":"User Hoteling Guest","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"enableAssociationLimit\":true,\n\t\"associationLimitHours\":3,\n\t\"userId\":\"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/hoteling-guest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"enableAssociationLimit\": true,\n    \"associationLimitHours\": 3,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6904\n}"}],"_postman_id":"cfc334cf-d95d-4d9e-af17-3690402e3418"},{"name":"User Hoteling Guest Available Users","id":"7ab6c189-c705-476e-9aa7-4b623d95e3de","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"enableAssociationLimit\":true,\n\t\t\"associationLimitHours\":3\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/hoteling-guest/users?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-guest","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"0e079f06-599f-4a44-b658-378ada137f90","name":"User Hoteling Guest Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"enableAssociationLimit\":true,\n\t\t\"associationLimitHours\":3\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":{"raw":"{{url}}/api/v2/users/hoteling-guest/users?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","hoteling-guest","users"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"307","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 19:00:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":9709580002,\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"associationLimitHours\":4,\"enableAssociationLimit\":true,\"phoneNumber\":\"+1-9709580002\",\"extension\":\"0002\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null}]"}],"_postman_id":"7ab6c189-c705-476e-9aa7-4b623d95e3de"},{"name":"Bulk Hoteling Guest","id":"e2364949-5490-4bcc-91f6-49bbacf70c21","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"enableAssociationLimit\":true,\n\t\t\"associationLimitHours\":3\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/hoteling-guest/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-guest","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"0bf1c6e2-99f5-48d6-aebf-a3f35b3bfb4c","name":"Bulk Hoteling Guest","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"enableAssociationLimit\":true,\n\t\t\"associationLimitHours\":3\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":{"raw":"{{url}}/api/v2/users/hoteling-guest/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","hoteling-guest","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2326","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:58:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Hoteling Guest\"},\"user\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":true,\"enableAssociationLimit\":true,\"associationLimitHours\":3,\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Hoteling Guest\"},\"user\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":true,\"enableAssociationLimit\":true,\"associationLimitHours\":3,\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Hoteling Guest\"},\"user\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Hoteling Guest\"},\"user\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Hoteling Guest\"},\"user\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":{}}]"}],"_postman_id":"e2364949-5490-4bcc-91f6-49bbacf70c21"},{"name":"Bulk Hoteling Guest","id":"a4353a48-4858-4336-abc7-230320607900","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"enableAssociationLimit\":true,\n\t\t\"associationLimitHours\":2\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/hoteling-guest/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-guest","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9f50d07d-6fbf-4dde-9aa4-a67e5ca82606","name":"Bulk Hoteling Guest","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"enableAssociationLimit\":true,\n\t\t\"associationLimitHours\":2\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/hoteling-guest/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"174","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:59:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"isActive\":true,\"enableAssociationLimit\":true,\"associationLimitHours\":2},\"users\":[{\"userId\":\"9709580001@microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\"}]}"}],"_postman_id":"a4353a48-4858-4336-abc7-230320607900"}],"id":"f5f676ce-cd88-4534-87d1-ca4d9420cb5f","_postman_id":"f5f676ce-cd88-4534-87d1-ca4d9420cb5f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Hoteling Host","item":[{"name":"User Hoteling Host","id":"f1f04748-e1f5-4047-94ba-9e811e732a6f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/hoteling-host?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-host"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"4089b95e-467c-4640-b0bb-2a586e11a13d","name":"User Hoteling Host","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/hoteling-host?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","hoteling-host"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"136","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 19:05:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"enforceAssociationLimit\":true,\"associationLimitHours\":24,\"accessLevel\":\"Group\",\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"f1f04748-e1f5-4047-94ba-9e811e732a6f"},{"name":"User Hoteling Host","id":"0657d99c-d155-44fe-88d0-5d178879911b","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"enforceAssociationLimit\": true,\n    \"associationLimitHours\": 24,\n    \"accessLevel\": \"Group\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/hoteling-host","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-host"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ce8e298d-8894-46a5-897a-adec4dd2f77d","name":"User Hoteling Host","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"enforceAssociationLimit\": true,\n    \"associationLimitHours\": 24,\n    \"accessLevel\": \"Group\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/hoteling-host"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"enforceAssociationLimit\": true,\n    \"associationLimitHours\": 24,\n    \"accessLevel\": \"Group\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7060\n}"}],"_postman_id":"0657d99c-d155-44fe-88d0-5d178879911b"},{"name":"Bulk Hoteling Host","id":"01ba9927-7993-4899-914b-acf413f59da3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"removeGuestAssociation\":true,\n\t\t\"enforceAssociationLimit\":true,\n\t\t\"associationLimitHours\":4,\n\t\t\"accessLevel\":\"Group\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/hoteling-host/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-host","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"e416d69c-bfd1-45fe-9d03-e0e5708fae61","name":"Bulk Hoteling Host","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"removeGuestAssociation\":true,\n\t\t\"enforceAssociationLimit\":true,\n\t\t\"associationLimitHours\":4,\n\t\t\"accessLevel\":\"Group\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":{"raw":"{{url}}/api/v2/users/hoteling-host/bulk?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users","hoteling-host","bulk"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2367","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 18:52:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"service\":{\"assigned\":true,\"serviceName\":\"Hoteling Host\"},\"user\":{\"userId\":\"9709580001@microv-works.com\",\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580001\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"inTrunkGroup\":false,\"extension\":\"0001\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":true,\"enforceAssociationLimit\":true,\"associationLimitHours\":4,\"accessLevel\":\"Group\",\"userId\":\"9709580001@microv-works.com\"}},{\"service\":{\"assigned\":true,\"serviceName\":\"Hoteling Host\"},\"user\":{\"userId\":\"9709580002@microv-works.com\",\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580002\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"inTrunkGroup\":false,\"extension\":\"0002\",\"domain\":\"microv-works.com\"},\"data\":{\"isActive\":true,\"enforceAssociationLimit\":true,\"associationLimitHours\":4,\"accessLevel\":\"Group\",\"userId\":\"9709580002@microv-works.com\"}},{\"service\":{\"assigned\":false,\"serviceName\":\"Hoteling Host\"},\"user\":{\"userId\":\"9709580003@microv-works.com\",\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580003\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"inTrunkGroup\":false,\"extension\":\"0003\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Hoteling Host\"},\"user\":{\"userId\":\"9709580004@microv-works.com\",\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580004\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"inTrunkGroup\":false,\"extension\":\"0004\",\"domain\":\"microv-works.com\"},\"data\":{}},{\"service\":{\"assigned\":false,\"serviceName\":\"Hoteling Host\"},\"user\":{\"userId\":\"9709580005@microv-works.com\",\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"phoneNumber\":\"+1-9709580005\",\"phoneNumberActivated\":true,\"emailAddress\":null,\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"inTrunkGroup\":false,\"extension\":\"0005\",\"domain\":\"microv-works.com\"},\"data\":{}}]"}],"_postman_id":"01ba9927-7993-4899-914b-acf413f59da3"},{"name":"Bulk Hoteling Host","id":"5a4c68f4-dfa6-45f3-b89a-507df30a072d","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"removeGuestAssociation\":true,\n\t\t\"enforceAssociationLimit\":true,\n\t\t\"associationLimitHours\":4,\n\t\t\"accessLevel\":\"Group\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/hoteling-host/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","hoteling-host","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"486b8d11-56de-4392-ae4f-529bfd5cbcac","name":"User Hoteling Host Bulk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true,\n\t\t\"removeGuestAssociation\":true,\n\t\t\"enforceAssociationLimit\":true,\n\t\t\"associationLimitHours\":4,\n\t\t\"accessLevel\":\"Group\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/hoteling-host/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"227","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 19:08:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"isActive\":true,\"removeGuestAssociation\":true,\"enforceAssociationLimit\":true,\"associationLimitHours\":4,\"accessLevel\":\"Group\"},\"users\":[{\"userId\":\"9709580001@microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\"}]}"}],"_postman_id":"5a4c68f4-dfa6-45f3-b89a-507df30a072d"}],"id":"baa40a29-45c7-4ee6-9085-db81bdac9854","_postman_id":"baa40a29-45c7-4ee6-9085-db81bdac9854","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Hunt Groups","item":[{"name":"Group Hunt Groups","id":"aac7d1de-8eec-4fd6-887d-0ae9d34e81ea","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/hunt-groups?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"733728e8-2191-480f-80f5-7b453bb427c1","name":"Group Hunt Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/hunt-groups?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","hunt-groups"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:41:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"211"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceUserId\": \"odin.mock.hg1\",\n        \"name\": \"odin.mock.hg1\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"isActive\": true,\n        \"policy\": \"Regular\",\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    }\n]"}],"_postman_id":"aac7d1de-8eec-4fd6-887d-0ae9d34e81ea"},{"name":"Group Hunt Groups Available Users","id":"90ffa91c-2888-47df-9763-d06490544019","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/hunt-groups/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups","users"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"f111aac4-1e3d-4f9e-be23-39c04e2c449b","name":"Group Hunt Groups Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/hunt-groups/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","hunt-groups","users"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:42:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1450"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9709580001\",\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"extension\": \"0001\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"9709580002\",\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"+1-9709580002\",\n        \"extension\": \"0002\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"9709580003\",\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"+1-9709580003\",\n        \"extension\": \"0003\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"9709580004\",\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"+1-9709580004\",\n        \"extension\": \"0004\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"9709580005\",\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"+1-9709580005\",\n        \"extension\": \"0005\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"mock-pilot-1\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"phoneNumber\": \"+1-9709580008\",\n        \"extension\": \"0008\",\n        \"department\": null,\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"90ffa91c-2888-47df-9763-d06490544019"},{"name":"Group Hunt Groups User v6.3.2","id":"cdd5fc40-65e2-4841-82ef-4adf5c089ac3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/hunt-groups/user?serviceProviderId=ent.odin&groupId=grp.odin&userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups","user"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[],"_postman_id":"cdd5fc40-65e2-4841-82ef-4adf5c089ac3"},{"name":"Group Hunt Groups Remove User","id":"87bd5bdd-ebf1-441e-80b0-d5ef43d6fbef","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"user-1@voicecci.net\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/groups/hunt-groups/removeUser","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups","removeUser"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[],"_postman_id":"87bd5bdd-ebf1-441e-80b0-d5ef43d6fbef"},{"name":"Group Hunt Group","id":"b8e9fc00-f7c9-4588-a8c0-1f0002dbf131","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useSystemHuntGroupCLIDSetting\":true,\n\t\"includeHuntGroupNameInCLID\":true,\n\t\"allowCallWaitingForAgents\":true,\n\t\"huntAfterNoAnswer\":true,\n\t\"noAnswerNumberOfRings\":5,\n\t\"forwardAfterTimeout\":false,\n\t\"forwardTimeoutSeconds\":10,\n\t\"policy\":\"Regular\",\n\t\"agents\":[],\n\t\"serviceUserId\":\"odin.mock.hg.2@microv-works.com\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.hg.2\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/hunt-groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0db62a7e-19a2-4667-89dc-9d5fa0a6e118","name":"Group Hunt Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useSystemHuntGroupCLIDSetting\":true,\n\t\"includeHuntGroupNameInCLID\":true,\n\t\"allowCallWaitingForAgents\":true,\n\t\"huntAfterNoAnswer\":true,\n\t\"noAnswerNumberOfRings\":5,\n\t\"forwardAfterTimeout\":false,\n\t\"forwardTimeoutSeconds\":10,\n\t\"policy\":\"Regular\",\n\t\"agents\":[],\n\t\"serviceUserId\":\"odin.mock.hg.2@microv-works.com\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.hg.2\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/hunt-groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:43:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b8e9fc00-f7c9-4588-a8c0-1f0002dbf131"},{"name":"Group Hunt Group","id":"66778bfd-dbd7-4d88-9e60-9a7dcdfb96e9","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/hunt-groups?serviceUserId=odin.mock.hg.2@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.hg.2@microv-works.com"}],"variable":[]}},"response":[{"id":"5df3f834-f688-415b-8e03-7386d3d1c88f","name":"Group Hunt Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/hunt-groups?serviceUserId=odin.mock.hg.2@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","hunt-groups"],"query":[{"key":"serviceUserId","value":"odin.mock.hg.2@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:44:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"767"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"odin.mock.hg.2\",\n        \"callingLineIdLastName\": \"odin.mock.hg.2\",\n        \"callingLineIdFirstName\": \"odin.mock.hg.2\",\n        \"hiraganaLastName\": \"odin.mock.hg.2\",\n        \"hiraganaFirstName\": \"Hunt Group\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"aliases\": []\n    },\n    \"policy\": \"Regular\",\n    \"huntAfterNoAnswer\": true,\n    \"noAnswerNumberOfRings\": 5,\n    \"forwardAfterTimeout\": false,\n    \"forwardTimeoutSeconds\": 10,\n    \"allowCallWaitingForAgents\": true,\n    \"useSystemHuntGroupCLIDSetting\": true,\n    \"includeHuntGroupNameInCLID\": true,\n    \"enableNotReachableForwarding\": false,\n    \"makeBusyWhenNotReachable\": false,\n    \"serviceUserId\": \"odin.mock.hg.2@microv-works.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true,\n    \"agents\": []\n}"}],"_postman_id":"66778bfd-dbd7-4d88-9e60-9a7dcdfb96e9"},{"name":"Group Hunt Group","id":"d1d5381f-11f4-4db2-bd79-7bc2ce220b58","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.hg.2\",\n\t\t\"hiraganaLastName\":\"odin.mock.hg.2\",\n\t\t\"hiraganaFirstName\":\"Hunt Group\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\",\n\t\t\"aliases\":[]\n\t},\n\t\"policy\":\"Regular\",\n\t\"huntAfterNoAnswer\":true,\n\t\"noAnswerNumberOfRings\":5,\n\t\"forwardAfterTimeout\":false,\n\t\"forwardTimeoutSeconds\":10,\n\t\"allowCallWaitingForAgents\":true,\n\t\"useSystemHuntGroupCLIDSetting\":true,\n\t\"includeHuntGroupNameInCLID\":true,\n\t\"enableNotReachableForwarding\":false,\n\t\"makeBusyWhenNotReachable\":false,\n\t\"serviceUserId\":\"odin.mock.hg.2@microv-works.com\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"agents\":[\n\t\t{\"userId\":\"9709580001\"},\n\t\t{\"userId\":\"9709580002\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/hunt-groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"eadc285e-a716-499a-9ff3-3fe2361019bc","name":"Group Hunt Group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.hg.2\",\n\t\t\"hiraganaLastName\":\"odin.mock.hg.2\",\n\t\t\"hiraganaFirstName\":\"Hunt Group\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\",\n\t\t\"aliases\":[]\n\t},\n\t\"policy\":\"Regular\",\n\t\"huntAfterNoAnswer\":true,\n\t\"noAnswerNumberOfRings\":5,\n\t\"forwardAfterTimeout\":false,\n\t\"forwardTimeoutSeconds\":10,\n\t\"allowCallWaitingForAgents\":true,\n\t\"useSystemHuntGroupCLIDSetting\":true,\n\t\"includeHuntGroupNameInCLID\":true,\n\t\"enableNotReachableForwarding\":false,\n\t\"makeBusyWhenNotReachable\":false,\n\t\"serviceUserId\":\"odin.mock.hg.2@microv-works.com\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"agents\":[\n\t\t{\"userId\":\"9709580001\"},\n\t\t{\"userId\":\"9709580002\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/hunt-groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:47:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"d1d5381f-11f4-4db2-bd79-7bc2ce220b58"},{"name":"Group Hunt Groups Status","id":"3ef789bf-d971-4078-af1b-bc9284fdb77a","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"instances\":[\n\t\t{\"serviceUserId\":\"odin.mock.hg.2\",\"isActive\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/hunt-groups/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7ede6171-f0e8-4baf-8a5a-dff162218875","name":"Group Hunt Groups Status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"instances\":[\n\t\t{\"serviceUserId\":\"odin.mock.hg.2\",\"isActive\":true}\n\t]\n}"},"url":"{{url}}/api/v2/groups/hunt-groups/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:45:08 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3ef789bf-d971-4078-af1b-bc9284fdb77a"},{"name":"Group Hunt Group","id":"a7310f67-5983-416b-8f0b-9b6a82b60a87","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/hunt-groups?serviceUserId=odin.mock.hg.2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.hg.2"}],"variable":[]}},"response":[{"id":"24aa84cf-08fb-45d9-b5be-351d61f60883","name":"Group Hunt Group","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/hunt-groups?serviceUserId=odin.mock.hg.2","host":["{{url}}"],"path":["api","v2","groups","hunt-groups"],"query":[{"key":"serviceUserId","value":"odin.mock.hg.2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:48:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a7310f67-5983-416b-8f0b-9b6a82b60a87"},{"name":"Group Hunt Group Weighted Call Distribution","id":"2dfe0689-8879-4db1-ba24-a6d48ce1e703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"hg.group.odin@microv-works.com\",\n\t\"serviceProviderId\":\"end.odin\",\n\t\"groupId\":\"group.odin\",\n    \"agents\": [\n        {\n            \"userId\": \"5131110051\",\n            \"weight\": 20\n        },\n        {\n            \"userId\": \"5131111108\",\n            \"weight\": 20\n        },\n        {\n            \"userId\": \"5131111110\",\n            \"weight\": 20\n        },\n        {\n            \"userId\": \"5131111115\",\n            \"weight\": 40\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/hunt-groups/weighted-call-distribution","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","hunt-groups","weighted-call-distribution"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"96ca7562-b9d8-4d70-aa86-db2601e35eaf","name":"Group Hunt Group Weighted Call Distribution","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"hg.group.odin@microv-works.com\",\n\t\"serviceProviderId\":\"end.odin\",\n\t\"groupId\":\"group.odin\",\n    \"agents\": [\n        {\n            \"userId\": \"5131110051\",\n            \"weight\": 20\n        },\n        {\n            \"userId\": \"5131111108\",\n            \"weight\": 20\n        },\n        {\n            \"userId\": \"5131111110\",\n            \"weight\": 20\n        },\n        {\n            \"userId\": \"5131111115\",\n            \"weight\": 40\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/hunt-groups/weighted-call-distribution"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"HG1\",\n        \"callingLineIdLastName\": \"1\",\n        \"callingLineIdFirstName\": \"1\",\n        \"hiraganaLastName\": \"HG1\",\n        \"hiraganaFirstName\": \"Hunt Group\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"aliases\": []\n    },\n    \"policy\": \"Weighted\",\n    \"huntAfterNoAnswer\": true,\n    \"noAnswerNumberOfRings\": 5,\n    \"forwardAfterTimeout\": false,\n    \"forwardTimeoutSeconds\": 0,\n    \"forwardToPhoneNumber\": 4500,\n    \"allowCallWaitingForAgents\": false,\n    \"useSystemHuntGroupCLIDSetting\": true,\n    \"includeHuntGroupNameInCLID\": true,\n    \"enableNotReachableForwarding\": false,\n    \"makeBusyWhenNotReachable\": false,\n    \"serviceUserId\": \"hg.group.odin@microv-works.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"group.odin\",\n    \"isEnterprise\": true,\n    \"agents\": [\n        {\n            \"userId\": \"5131110051\",\n            \"lastName\": 4,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": 4,\n            \"hiraganaFirstName\": \"user\",\n            \"weight\": 20,\n            \"phoneNumber\": \"+1-5131110051\",\n            \"extension\": \"0051\",\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"5131111108\",\n            \"lastName\": \"ln-1\",\n            \"firstName\": \"fn-1\",\n            \"hiraganaLastName\": \"ln-1\",\n            \"hiraganaFirstName\": \"fn-1\",\n            \"weight\": 20,\n            \"phoneNumber\": \"+1-5131111108\",\n            \"extension\": 1108,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"5131111110\",\n            \"lastName\": \"ln-2\",\n            \"firstName\": \"fn-2\",\n            \"hiraganaLastName\": \"ln-2\",\n            \"hiraganaFirstName\": \"fn-2\",\n            \"weight\": 20,\n            \"phoneNumber\": \"+1-5131111110\",\n            \"extension\": 1110,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"5131111115\",\n            \"lastName\": 5,\n            \"firstName\": \"user\",\n            \"hiraganaLastName\": 5,\n            \"hiraganaFirstName\": \"user\",\n            \"weight\": 40,\n            \"phoneNumber\": \"+1-5131111115\",\n            \"extension\": 1115,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"},{"id":"ee940b35-a552-43bf-9958-16bfbd0f0104","name":"Group Hunt Group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.hg.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.hg.2\",\n\t\t\"hiraganaLastName\":\"odin.mock.hg.2\",\n\t\t\"hiraganaFirstName\":\"Hunt Group\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\",\n\t\t\"aliases\":[]\n\t},\n\t\"policy\":\"Regular\",\n\t\"huntAfterNoAnswer\":true,\n\t\"noAnswerNumberOfRings\":5,\n\t\"forwardAfterTimeout\":false,\n\t\"forwardTimeoutSeconds\":10,\n\t\"allowCallWaitingForAgents\":true,\n\t\"useSystemHuntGroupCLIDSetting\":true,\n\t\"includeHuntGroupNameInCLID\":true,\n\t\"enableNotReachableForwarding\":false,\n\t\"makeBusyWhenNotReachable\":false,\n\t\"serviceUserId\":\"odin.mock.hg.2@microv-works.com\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"agents\":[\n\t\t{\"userId\":\"9709580001\"},\n\t\t{\"userId\":\"9709580002\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/hunt-groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 17:47:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2dfe0689-8879-4db1-ba24-a6d48ce1e703"}],"id":"2c8998d4-92d5-4856-8493-116189bb6af5","_postman_id":"2c8998d4-92d5-4856-8493-116189bb6af5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"In Call Service Activation","item":[{"name":"User In Call Service Activation","id":"6fc8ae54-9eb0-4c71-ad68-afe1767abca3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/in-call-service-activation?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","in-call-service-activation"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"3b052d6f-3d3e-4092-a126-0424a39833da","name":"User In Call Service Activation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/in-call-service-activation?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","in-call-service-activation"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"6fc8ae54-9eb0-4c71-ad68-afe1767abca3"},{"name":"User In Call Service Activation","id":"05a67a4c-29bc-4395-a2c7-2ae591df9ba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/in-call-service-activation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","in-call-service-activation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"52c114d4-9652-4100-b655-c41833453e60","name":"User In Call Service Activation","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/in-call-service-activation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7093\n}"}],"_postman_id":"05a67a4c-29bc-4395-a2c7-2ae591df9ba2"}],"id":"1550e0b3-e86c-4b90-a1d6-635da99ea1ab","_postman_id":"1550e0b3-e86c-4b90-a1d6-635da99ea1ab","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Instant Group Call","item":[{"name":"Group Instant Group Calls","id":"599eedd9-a29b-428c-bd0d-492b3200d5b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/instant-group-calls?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-calls"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"f1540004-a692-46ff-8d27-b4af4bcc05f0","name":"Group Instant Group Calls","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/instant-group-calls?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","instant-group-calls"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"instant-group-1@example21.com\",\n            \"name\": \"instant-group-1\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"isActive\": false,\n            \"serviceInstanceProfile\": {\n                \"name\": \"instant-group-1\",\n                \"callingLineIdLastName\": \"instant-group-1\",\n                \"callingLineIdFirstName\": \"instant-group-1\",\n                \"hiraganaLastName\": \"instant-group-1\",\n                \"hiraganaFirstName\": \"Instant Group Call\",\n                \"language\": \"English\",\n                \"timeZone\": \"America/Denver\",\n                \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\"\n            },\n            \"isAnswerTimeoutEnabled\": false,\n            \"networkClassOfService\": \"testnco\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"599eedd9-a29b-428c-bd0d-492b3200d5b3"},{"name":"Group Instant Group Calls User","id":"924dd13a-471f-4575-8003-46804d9f8bf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/instant-group-calls?serviceUserId=instant-group-1@example21.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-calls"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"instant-group-1@example21.com"},{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"efe90a55-ba74-43d6-bd97-ca7690c72b81","name":"Group Instant Group Calls User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/instant-group-calls?serviceUserId=instant-group-1@example21.com","host":["{{url}}"],"path":["api","v2","groups","instant-group-calls"],"query":[{"key":"serviceUserId","value":"instant-group-1@example21.com"},{"key":"serviceProviderId","value":"odin.mock.ent1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"instant-group-1@example21.com\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-group-1\",\n        \"callingLineIdLastName\": \"instant-group-1\",\n        \"callingLineIdFirstName\": \"instant-group-1\",\n        \"hiraganaLastName\": \"instant-group-1\",\n        \"hiraganaFirstName\": \"Instant Group Call\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\"\n    },\n    \"isAnswerTimeoutEnabled\": false,\n    \"networkClassOfService\": \"testnco\"\n}"}],"_postman_id":"924dd13a-471f-4575-8003-46804d9f8bf9"},{"name":"Group Instant Group Call","id":"39fab9c3-0ce3-4c0e-9e23-692f62b1064b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/instant-group-call?serviceUserId=instant-group-1@example21.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-call"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"instant-group-1@example21.com"}],"variable":[]}},"response":[{"id":"ebcc8f40-d24c-4f27-88b2-d9c54e93962f","name":"Group Instant Group Call","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/instant-group-call?serviceUserId=instant-group-1@example21.com","host":["{{url}}"],"path":["api","v2","groups","instant-group-call"],"query":[{"key":"serviceUserId","value":"instant-group-1@example21.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"instant-group-1@example21.com\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-1-grp\",\n        \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-1-grp\",\n        \"hiraganaLastName\": \"instant-1-grp\",\n        \"hiraganaFirstName\": \"Instant Group Call\",\n        \"phoneNumber\": \"5123875553\",\n        \"extension\": \"5553\",\n        \"countryCode\": \"1\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\",\n        \"aliases\": [\n            \"mark.reverman@abccorp.com\",\n            \"mreverman@abccorp.com\",\n            \"mreverman2@abccorp.com\"\n        ]\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"testnco\"\n}"}],"_postman_id":"39fab9c3-0ce3-4c0e-9e23-692f62b1064b"},{"name":"Group Instant Group Call","id":"107212a6-72f5-4aad-a131-9351e95c4510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"instant-group-1@example21.com\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-1-grp\",\n        \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-1-grp\",\n        \"hiraganaLastName\": \"instant-1-grp\",\n        \"hiraganaFirstName\": \"Instant Group Call\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"testnco\"\n}"},"url":"{{url}}/api/v2/groups/instant-group-call","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-call"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0409aab4-b015-46ad-b398-5a2798ddbb94","name":"Group Instant Group Call","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceUserId\": \"instant-group-1@example21.com\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-1-grp\",\n        \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-1-grp\",\n        \"hiraganaLastName\": \"instant-1-grp\",\n        \"hiraganaFirstName\": \"Instant Group Call\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"testnco\"\n}"},"url":"{{url}}/api/v2/groups/instant-group-call"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"instant-group-1@example21.com\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-1-grp\",\n        \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-1-grp\",\n        \"hiraganaLastName\": \"instant-1-grp\",\n        \"hiraganaFirstName\": \"Instant Group Call\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"testnco\"\n}"}],"_postman_id":"107212a6-72f5-4aad-a131-9351e95c4510"},{"name":"Group Instant Group Call Status","id":"c48c3f83-4623-459a-8a4a-8c5cfde50e05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"instant-group-1@example21.com\",\n            \"isActive\": true\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/instant-group-call/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-call","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c48c3f83-4623-459a-8a4a-8c5cfde50e05"},{"name":"Group Instant Group Call","id":"5945fa65-e83e-4d78-be78-65632c6040ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.instant.grp.call\",\n    \"serviceUserId\": \"instant-1-grp@voicecci.net\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-1-grp\",\n        \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-1-grp\",\n        \"hiraganaLastName\": \"instant-1-grp\",\n        \"hiraganaFirstName\": \"Instant Group Call\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"NCOS - Block International\"\n}"},"url":"{{url}}/api/v2/groups/instant-group-call","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-call"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dfe034f0-346d-46b1-9e08-768f9db8496c","name":"Group Instant Group Call Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.instant.grp.call\",\n    \"serviceUserId\": \"instant-2-grp@voicecci.net\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-2-grp\",\n        \"callingLineIdLastName\": \"instant-2-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-2-grp\",\n        \"hiraganaLastName\": \"instant-2-grp\",\n        \"hiraganaFirstName\": \"instant-2-grp\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"NCOS - Block International\"\n}"},"url":"{{url}}/api/v2/groups/instant-group-call"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.instant.grp.call\",\n    \"serviceUserId\": \"instant-2-grp@voicecci.net\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-2-grp\",\n        \"callingLineIdLastName\": \"instant-2-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-2-grp\",\n        \"hiraganaLastName\": \"instant-2-grp\",\n        \"hiraganaFirstName\": \"instant-2-grp\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"NCOS - Block International\"\n}"}],"_postman_id":"5945fa65-e83e-4d78-be78-65632c6040ce"},{"name":"Group Instant Group Call","id":"322ae22a-0c75-4201-ac7d-59820df17d8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/instant-group-call?serviceUserId=instant-2-grp@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-call"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"instant-2-grp@voicecci.net"}],"variable":[]}},"response":[{"id":"c45a773e-a57b-409b-8dbb-2381042ed9d2","name":"Group Instant Group Call","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/instant-group-call?serviceUserId=instant-2-grp@voicecci.net","host":["{{url}}"],"path":["api","v2","groups","instant-group-call"],"query":[{"key":"serviceUserId","value":"instant-2-grp@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"instant-2-grp@voicecci.net\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"instant-2-grp\",\n        \"callingLineIdLastName\": \"instant-2-grp-lastname\",\n        \"callingLineIdFirstName\": \"instant-2-grp\",\n        \"hiraganaLastName\": \"instant-2-grp\",\n        \"hiraganaFirstName\": \"instant-2-grp\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Chicago\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    \"destinationPhoneNumber\": [\n        \"mreverman@parkbenchsolutios.com\",\n        \"slatsa@parkbenchsolutions.com\",\n        \"kburcham@parkbenchsolutions.com\"\n    ],\n    \"isAnswerTimeoutEnabled\": false,\n    \"answerTimeoutMinutes\": 4,\n    \"networkClassOfService\": \"NCOS - Block International\"\n}"}],"_postman_id":"322ae22a-0c75-4201-ac7d-59820df17d8b"},{"name":"Group Instant Group Calls Audit","id":"25f5b2a2-fb43-42c6-a868-d4a169956382","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/instant-group-calls/audit?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-calls","audit"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"44526f5f-54b5-4175-89e1-fcf2ed99ba56","name":"Group Instant Group Calls Audit","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/instant-group-calls/audit?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","instant-group-calls","audit"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"instant-group-1@example21.com\",\n            \"name\": \"instant-1-grp\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"isActive\": true,\n            \"serviceInstanceProfile\": {\n                \"name\": \"instant-1-grp\",\n                \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n                \"callingLineIdFirstName\": \"instant-1-grp\",\n                \"hiraganaLastName\": \"instant-1-grp\",\n                \"hiraganaFirstName\": \"Instant Group Call\",\n                \"language\": \"English\",\n                \"timeZone\": \"America/Chicago\",\n                \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n            },\n            \"destinationPhoneNumber\": [\n                \"mreverman@parkbenchsolutios.com\",\n                \"slatsa@parkbenchsolutions.com\",\n                \"kburcham@parkbenchsolutions.com\"\n            ],\n            \"isAnswerTimeoutEnabled\": false,\n            \"answerTimeoutMinutes\": 4,\n            \"networkClassOfService\": \"testnco\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"25f5b2a2-fb43-42c6-a868-d4a169956382"},{"name":"Group Instant Group Call Import","id":"3f39e24d-77d7-456f-b3e3-cf383cc8cc08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"instant-group-1@example21.com\",\n            \"name\": \"instant-1-grp\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"isActive\": true,\n            \"serviceInstanceProfile\": {\n                \"name\": \"instant-1-grp\",\n                \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n                \"callingLineIdFirstName\": \"instant-1-grp\",\n                \"hiraganaLastName\": \"instant-1-grp\",\n                \"hiraganaFirstName\": \"Instant Group Call\",\n                \"language\": \"English\",\n                \"timeZone\": \"America/Chicago\",\n                \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n            },\n            \"destinationPhoneNumber\": [\n                \"mreverman@parkbenchsolutios.com\",\n                \"slatsa@parkbenchsolutions.com\",\n                \"kburcham@parkbenchsolutions.com\"\n            ],\n            \"isAnswerTimeoutEnabled\": false,\n            \"answerTimeoutMinutes\": 4,\n            \"networkClassOfService\": \"testnco\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/instant-group-calls/import","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","instant-group-calls","import"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6b4429d2-bbe2-425c-8812-d16ccf332d9e","name":"Group Instant Group Call Import","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"instant-group-1@example21.com\",\n            \"name\": \"instant-1-grp\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"isActive\": true,\n            \"serviceInstanceProfile\": {\n                \"name\": \"instant-1-grp\",\n                \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n                \"callingLineIdFirstName\": \"instant-1-grp\",\n                \"hiraganaLastName\": \"instant-1-grp\",\n                \"hiraganaFirstName\": \"Instant Group Call\",\n                \"language\": \"English\",\n                \"timeZone\": \"America/Chicago\",\n                \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n            },\n            \"destinationPhoneNumber\": [\n                \"mreverman@parkbenchsolutios.com\",\n                \"slatsa@parkbenchsolutions.com\",\n                \"kburcham@parkbenchsolutions.com\"\n            ],\n            \"isAnswerTimeoutEnabled\": false,\n            \"answerTimeoutMinutes\": 4,\n            \"networkClassOfService\": \"testnco\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/instant-group-calls/import"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"instances\": [\n        {\n            \"serviceUserId\": \"instant-group-1@example21.com\",\n            \"name\": \"instant-1-grp\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"isActive\": true,\n            \"serviceInstanceProfile\": {\n                \"name\": \"instant-1-grp\",\n                \"callingLineIdLastName\": \"instant-1-grp-lastname\",\n                \"callingLineIdFirstName\": \"instant-1-grp\",\n                \"hiraganaLastName\": \"instant-1-grp\",\n                \"hiraganaFirstName\": \"Instant Group Call\",\n                \"language\": \"English\",\n                \"timeZone\": \"America/Chicago\",\n                \"timeZoneDisplayName\": \"(GMT-05:00) (US) Central Time\"\n            },\n            \"destinationPhoneNumber\": [\n                \"mreverman@parkbenchsolutios.com\",\n                \"slatsa@parkbenchsolutions.com\",\n                \"kburcham@parkbenchsolutions.com\"\n            ],\n            \"isAnswerTimeoutEnabled\": false,\n            \"answerTimeoutMinutes\": 4,\n            \"networkClassOfService\": \"testnco\"\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"3f39e24d-77d7-456f-b3e3-cf383cc8cc08"}],"id":"f26f4ceb-fd5b-4414-ac59-b9bc73fa0063","_postman_id":"f26f4ceb-fd5b-4414-ac59-b9bc73fa0063","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Integrated IMP","item":[{"name":"Service Provider Integrated IMP","id":"7d6bcabc-5ed5-47f0-899a-bf7ed286f1ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/integrated-imp?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","integrated-imp"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"d98e4218-7271-4546-8a7d-2c0e12f2507a","name":"Service Provider Integrated IMP","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/integrated-imp?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","integrated-imp"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useSystemServiceDomain\": true,\n    \"serviceDomain\": \"demo23.development.odinapi.net\",\n    \"servicePort\": 443,\n    \"useSystemMessagingServer\": true,\n    \"provisioningUrl\": \"https://demo23.development.odinapi.net\",\n    \"provisioningUserId\": \"mreverman\",\n    \"boshURL\": \"https://demo23.development.odinapi.net\",\n    \"defaultImpIdType\": \"Alternate\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"7d6bcabc-5ed5-47f0-899a-bf7ed286f1ec"},{"name":"Service Provider Integrated IMP","id":"91f262fd-f583-498e-b423-cf12604a44b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"useSystemServiceDomain\": false,\n    \"serviceDomain\": \"demo23.development.odinapi.net\",\n    \"servicePort\": 443,\n    \"useSystemMessagingServer\": false,\n    \"provisioningUrl\": \"https://demo23.development.odinapi.net\",\n    \"provisioningUserId\": \"mreverman\",\n    \"provisioningPassword\": \"P@ssw0rD\",\n    \"boshURL\": \"https://demo23.development.odinapi.net\",\n    \"defaultImpIdType\": \"Primary\",\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/integrated-imp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","integrated-imp"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>optional if not passed then required in json body</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"055ac088-93bf-451b-bdd5-aea05cd16cc0","name":"Service Provider Integrated IMP","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"useSystemServiceDomain\": false,\n    \"serviceDomain\": \"demo23.development.odinapi.net\",\n    \"servicePort\": 443,\n    \"useSystemMessagingServer\": false,\n    \"provisioningUrl\": \"https://demo23.development.odinapi.net\",\n    \"provisioningUserId\": \"mreverman\",\n    \"provisioningPassword\": \"P@ssw0rD\",\n    \"boshURL\": \"https://demo23.development.odinapi.net\",\n    \"defaultImpIdType\": \"Primary\",\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":{"raw":"{{url}}/api/v2/service-providers/integrated-imp","host":["{{url}}"],"path":["api","v2","service-providers","integrated-imp"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional if not passed then required in json body","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useSystemServiceDomain\": false,\n    \"serviceDomain\": \"demo23.development.odinapi.net\",\n    \"servicePort\": 443,\n    \"useSystemMessagingServer\": false,\n    \"provisioningUrl\": \"https://demo23.development.odinapi.net\",\n    \"provisioningUserId\": \"mreverman\",\n    \"boshURL\": \"https://demo23.development.odinapi.net\",\n    \"defaultImpIdType\": \"Primary\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"91f262fd-f583-498e-b423-cf12604a44b0"},{"name":"User Integrated IMP","id":"83c14eb7-ac0d-4de1-ab04-4e8d80d5de99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/integrated-imp?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","integrated-imp"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"98aea6e6-699d-4d12-9898-ac1aba2596eb","name":"User Integrated IMP","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/integrated-imp?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","integrated-imp"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}"}],"_postman_id":"83c14eb7-ac0d-4de1-ab04-4e8d80d5de99"},{"name":"User Integrated IMP","id":"b78e2259-fcf9-49d4-a6e5-34ac873f17a8","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/integrated-imp?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","integrated-imp"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"458a96e9-bb9d-4c8e-bd44-b3d1d1704d3d","name":"User Integrated IMP","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":{"raw":"{{url}}/api/v2/users/integrated-imp?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","integrated-imp"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7124\n}"}],"_postman_id":"b78e2259-fcf9-49d4-a6e5-34ac873f17a8"},{"name":"User Integrated IMP Password","id":"9540b2fd-79c4-43eb-91fb-6dbad8eb293c","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/users/integrated-imp/password?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","integrated-imp","password"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[],"_postman_id":"9540b2fd-79c4-43eb-91fb-6dbad8eb293c"}],"id":"cf3c2bf7-ff7b-433f-876b-3714db6df042","_postman_id":"cf3c2bf7-ff7b-433f-876b-3714db6df042","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Intercept","item":[{"name":"Intercept Group","id":"c9cbf32d-4c31-4e37-89b9-e967fc99e25a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/intercept?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","intercept"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"e4f3980f-3e3d-4346-8209-d26d9af4407d","name":"Intercept Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/intercept?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","intercept"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 16:34:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":false,\"announcementSelection\":\"Default\",\"playNewPhoneNumber\":false,\"transferOnZeroToPhoneNumber\":false,\"rerouteOutboundCalls\":false,\"allowOutboundLocalCalls\":false,\"inboundCallMode\":\"Intercept All\",\"alternateBlockingAnnouncement\":false,\"routeToVoiceMail\":false,\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\"}"}],"_postman_id":"c9cbf32d-4c31-4e37-89b9-e967fc99e25a"},{"name":"Intercept Group","id":"14a8a50f-d25a-4db9-b6a7-232b44c94a32","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":false,\n\t\"announcementSelection\":\"Default\",\n\t\"playNewPhoneNumber\":false,\n\t\"transferOnZeroToPhoneNumber\":false,\n\t\"rerouteOutboundCalls\":false,\n\t\"allowOutboundLocalCalls\":false,\n\t\"inboundCallMode\":\"Intercept All\",\n\t\"alternateBlockingAnnouncement\":false,\n\t\"routeToVoiceMail\":false,\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/intercept","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","intercept"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8820ff34-2994-47cd-9594-f3a39fca4bce","name":"Intercept Group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":false,\n\t\"announcementSelection\":\"Default\",\n\t\"playNewPhoneNumber\":false,\n\t\"transferOnZeroToPhoneNumber\":false,\n\t\"rerouteOutboundCalls\":false,\n\t\"allowOutboundLocalCalls\":false,\n\t\"inboundCallMode\":\"Intercept All\",\n\t\"alternateBlockingAnnouncement\":false,\n\t\"routeToVoiceMail\":false,\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/intercept"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 01 Oct 2018 16:35:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"14a8a50f-d25a-4db9-b6a7-232b44c94a32"},{"name":"Intercept User","id":"584b1645-776a-402f-86fd-f2894e68c92e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/intercept?userId=user-4@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","intercept"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-4@voicecci.net"}],"variable":[]}},"response":[{"id":"f738bcc7-98c2-4a69-89e5-da9af7fa4745","name":"Intercept User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/intercept?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","intercept"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"announcementSelection\": \"Default\",\n    \"inboundCallMode\": \"Intercept All\",\n    \"alternateBlockingAnnouncement\": false,\n    \"exemptInboundMobilityCalls\": false,\n    \"disableParallelRingingToNetworkLocations\": false,\n    \"routeToVoiceMail\": false,\n    \"playNewPhoneNumber\": false,\n    \"transferOnZeroToPhoneNumber\": false,\n    \"outboundCallMode\": \"Block All\",\n    \"exemptOutboundMobilityCalls\": false,\n    \"rerouteOutboundCalls\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"584b1645-776a-402f-86fd-f2894e68c92e"},{"name":"Intercept User","id":"08226235-5474-4bdc-8ca4-fb41dd5e9c46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"announcementSelection\": \"Default\",\n    \"inboundCallMode\": \"Intercept All\",\n    \"alternateBlockingAnnouncement\": false,\n    \"exemptInboundMobilityCalls\": false,\n    \"disableParallelRingingToNetworkLocations\": false,\n    \"routeToVoiceMail\": false,\n    \"playNewPhoneNumber\": false,\n    \"transferOnZeroToPhoneNumber\": false,\n    \"outboundCallMode\": \"Block All\",\n    \"exemptOutboundMobilityCalls\": false,\n    \"rerouteOutboundCalls\": false,\n    \"userId\": \"user-4@voicecci.net\"\n}"},"url":"{{url}}/api/v2/users/intercept","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","intercept"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"07ea9d38-6d7a-4bde-9f58-435c49996633","name":"Intercept User","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"announcementSelection\": \"Default\",\n    \"inboundCallMode\": \"Intercept All\",\n    \"alternateBlockingAnnouncement\": false,\n    \"exemptInboundMobilityCalls\": false,\n    \"disableParallelRingingToNetworkLocations\": false,\n    \"routeToVoiceMail\": false,\n    \"playNewPhoneNumber\": false,\n    \"transferOnZeroToPhoneNumber\": false,\n    \"outboundCallMode\": \"Block All\",\n    \"exemptOutboundMobilityCalls\": false,\n    \"rerouteOutboundCalls\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/intercept"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"announcementSelection\": \"Default\",\n    \"inboundCallMode\": \"Intercept All\",\n    \"alternateBlockingAnnouncement\": false,\n    \"exemptInboundMobilityCalls\": false,\n    \"disableParallelRingingToNetworkLocations\": false,\n    \"routeToVoiceMail\": false,\n    \"playNewPhoneNumber\": false,\n    \"transferOnZeroToPhoneNumber\": false,\n    \"outboundCallMode\": \"Block All\",\n    \"exemptOutboundMobilityCalls\": false,\n    \"rerouteOutboundCalls\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7157\n}"}],"_postman_id":"08226235-5474-4bdc-8ca4-fb41dd5e9c46"},{"name":"Intercept User with Audio File","id":"15293e48-4bde-475d-a911-73fa05ef5939","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"announcementSelection\": \"Personal\",\n    \"audioFileDescription\": \"letsgo2.wav\",\n    \"audioMediaType\": \"WAV\",\n    \"audioMediaContent\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\",\n    \"inboundCallMode\": \"Intercept All\",\n    \"alternateBlockingAnnouncement\": true,\n    \"exemptInboundMobilityCalls\": true,\n    \"disableParallelRingingToNetworkLocations\": true,\n    \"routeToVoiceMail\": true,\n    \"playNewPhoneNumber\": true,\n    \"newPhoneNumber\": 8005551234,\n    \"transferOnZeroToPhoneNumber\": true,\n    \"transferPhoneNumber\": 8005552345,\n    \"outboundCallMode\": \"Block All\",\n    \"exemptOutboundMobilityCalls\": true,\n    \"rerouteOutboundCalls\": true,\n    \"outboundReroutePhoneNumber\": 8005553456,\n    \"userId\": \"user-4@voicecci.net\"\n}"},"url":"{{url}}/api/v2/users/intercept","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","intercept"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9acf833f-ba4d-4741-b3c6-f1f3e1853773","name":"Intercept User","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"announcementSelection\": \"Default\",\n    \"inboundCallMode\": \"Intercept All\",\n    \"alternateBlockingAnnouncement\": false,\n    \"exemptInboundMobilityCalls\": false,\n    \"disableParallelRingingToNetworkLocations\": false,\n    \"routeToVoiceMail\": false,\n    \"playNewPhoneNumber\": false,\n    \"transferOnZeroToPhoneNumber\": false,\n    \"outboundCallMode\": \"Block All\",\n    \"exemptOutboundMobilityCalls\": false,\n    \"rerouteOutboundCalls\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/intercept"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"announcementSelection\": \"Default\",\n    \"inboundCallMode\": \"Intercept All\",\n    \"alternateBlockingAnnouncement\": false,\n    \"exemptInboundMobilityCalls\": false,\n    \"disableParallelRingingToNetworkLocations\": false,\n    \"routeToVoiceMail\": false,\n    \"playNewPhoneNumber\": false,\n    \"transferOnZeroToPhoneNumber\": false,\n    \"outboundCallMode\": \"Block All\",\n    \"exemptOutboundMobilityCalls\": false,\n    \"rerouteOutboundCalls\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7157\n}"}],"_postman_id":"15293e48-4bde-475d-a911-73fa05ef5939"}],"id":"c18b010c-b27a-46b8-b7cc-8107a74e79e9","_postman_id":"c18b010c-b27a-46b8-b7cc-8107a74e79e9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Internal Calling Line ID Delivery","item":[{"name":"User Internal Calling Line ID Delivery","id":"09ac735d-21f5-47c1-a832-a7ee0e0b7c8d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/internal-calling-line-id-delivery?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","internal-calling-line-id-delivery"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"848f8155-db6c-4ead-823f-33d6f2793585","name":"User Internal Calling Line ID Delivery","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/internal-calling-line-id-delivery?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","internal-calling-line-id-delivery"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"56","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 20:15:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"09ac735d-21f5-47c1-a832-a7ee0e0b7c8d"},{"name":"User Internal Calling Line ID Delivery","id":"db2099ca-af88-4cdc-95b7-f02d56315e96","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/internal-calling-line-id-delivery","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","internal-calling-line-id-delivery"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03c7d7a0-6960-4d0e-88d7-7769960148da","name":"User Internal Calling Line ID Delivery","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/internal-calling-line-id-delivery"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7187\n}"}],"_postman_id":"db2099ca-af88-4cdc-95b7-f02d56315e96"}],"id":"d3affea8-d89e-4f12-a4ec-f0c4456823a7","_postman_id":"d3affea8-d89e-4f12-a4ec-f0c4456823a7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Languages","item":[{"name":"System Languages","id":"74058c8d-e00c-4398-a46e-6aa8d84f4fa4","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/languages","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","languages"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b49f0965-df4c-45a2-9697-9cc7dee7ada8","name":"System Languages","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/languages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 19:23:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"99"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"default\": \"English\",\n    \"languages\": [\n        {\n            \"language\": \"English\",\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        }\n    ]\n}"}],"_postman_id":"74058c8d-e00c-4398-a46e-6aa8d84f4fa4"},{"name":"Service Provider Languages","id":"2b3bdb7e-74df-4acd-80a3-ef30b28aa824","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/service-providers/languages?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","languages"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"a43ee877-072b-45b8-a99a-fd275cb4d9f4","name":"Service Provider Languages","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v2/service-providers/languages?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","languages"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 19:39:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"68"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"default\": null,\n    \"languages\": []\n}"}],"_postman_id":"2b3bdb7e-74df-4acd-80a3-ef30b28aa824"}],"id":"a00fe9eb-9a40-424e-8328-6988aac50faf","_postman_id":"a00fe9eb-9a40-424e-8328-6988aac50faf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Legacy Automatic Callback","item":[{"name":"User Legacy Automatic Callback","id":"7ad17b47-8e11-4f17-b21a-3ea5a1e558cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/legacy-automatic-callback?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","legacy-automatic-callback"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[],"_postman_id":"7ad17b47-8e11-4f17-b21a-3ea5a1e558cc"},{"name":"User Legacy Automatic Callback","id":"f9f070a3-7273-4eba-be9e-7ec25ea4cab9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/legacy-automatic-callback","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","legacy-automatic-callback"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9f070a3-7273-4eba-be9e-7ec25ea4cab9"}],"id":"1350e04d-c120-44b9-b77a-fcb69b652dff","_postman_id":"1350e04d-c120-44b9-b77a-fcb69b652dff","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Malicious Call Trace","item":[{"name":"User Malicious Call Trace","id":"c0eaa291-3422-45f5-a288-d9e776f524d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/malicious-call-trace?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","malicious-call-trace"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"7b26d5d7-68e9-4939-9f46-5055fee43dac","name":"User Malicious Call Trace","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/malicious-call-trace?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","malicious-call-trace"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"traceTypeSelection\": \"Answered Incoming\",\n    \"traceForTimePeriod\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"c0eaa291-3422-45f5-a288-d9e776f524d8"},{"name":"User Malicious Call Trace","id":"499621ec-e156-4737-941d-3c3acff73690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"traceTypeSelection\": \"Answered Incoming\",\n    \"traceForTimePeriod\": true,\n    \"traceTimePeriod\": {\n    \t\"startDateTime\": \"2010-01-01T00:00:00\",\n    \t\"stopDateTime\": \"2020-01-01T00:00:00\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/malicious-call-trace","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","malicious-call-trace"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8e040be5-60cf-4c46-9b95-3833e06b6a3d","name":"User Malicious Call Trace","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"traceTypeSelection\": \"Answered Incoming\",\n    \"traceForTimePeriod\": true,\n    \"traceTimePeriod\": {\n    \t\"startDateTime\": \"2010-01-01T00:00:00\",\n    \t\"stopDateTime\": \"2020-01-01T00:00:00\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/malicious-call-trace"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"traceTypeSelection\": \"Answered Incoming\",\n    \"traceForTimePeriod\": true,\n    \"traceTimePeriod\": {\n        \"startDateTime\": \"2010-01-01T00:00:00.000-05:00\",\n        \"stopDateTime\": \"2020-01-01T00:00:00.000-05:00\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7243\n}"}],"_postman_id":"499621ec-e156-4737-941d-3c3acff73690"}],"id":"7f8265d8-324c-4668-adb4-83cf069d2295","_postman_id":"7f8265d8-324c-4668-adb4-83cf069d2295","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Media","item":[{"name":"System Media","id":"984213fb-9d04-4be4-916a-4130b43b1f87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/system/media","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4c626588-223d-43b4-827f-bef88e9c6b7f","name":"System Media","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/system/media"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"mediaName\": \"AMR-WB\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"AMR-WB\",\n            \"mediaBandwidth\": 23850\n        },\n        {\n            \"mediaName\": \"G711alaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMA\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G711ulaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMU\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G722\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G722\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G723-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G723A-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723A-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G726-16\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-16\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G726-24\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-24\",\n            \"mediaBandwidth\": 24000\n        },\n        {\n            \"mediaName\": \"G726-32\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-32\",\n            \"mediaBandwidth\": 32000\n        },\n        {\n            \"mediaName\": \"G726-40\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-40\",\n            \"mediaBandwidth\": 40000\n        },\n        {\n            \"mediaName\": \"G728\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G728\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G729-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"G729B-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729B-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"GSM\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSM\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMEFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMEFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H261\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H261\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-1998\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-1998\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-2000\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-2000\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H264\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H264\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"MSRP\",\n            \"mediaType\": \"message\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"MSRP\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"OPUS\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"OPUS\",\n            \"mediaBandwidth\": 48000\n        },\n        {\n            \"mediaName\": \"T38\",\n            \"mediaType\": \"image\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"T38\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent2\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": 8000\n        }\n    ]\n}"}],"_postman_id":"984213fb-9d04-4be4-916a-4130b43b1f87"},{"name":"System Media","id":"c9dc2894-2e2a-42e9-8181-0912f8f94f96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"mediaName\": \"TelephoneEvent3\",\n    \"mediaType\": \"audio\",\n    \"bandwidthEnforcementType\": \"Allow All\",\n    \"codecName\": \"Telephone-event\",\n    \"mediaBandwidth\": 8000\n}"},"url":"{{url}}/api/v2/system/media","description":"<p>test 2</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"373b303b-b155-490f-9d44-34d9e795a860","name":"System Media","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"mediaName\": \"TelephoneEvent3\",\n    \"mediaType\": \"audio\",\n    \"bandwidthEnforcementType\": \"Allow All\",\n    \"codecName\": \"Telephone-event\",\n    \"mediaBandwidth\": 8000\n}"},"url":"{{url}}/api/v2/system/media"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"mediaName\": \"AMR-WB\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"AMR-WB\",\n            \"mediaBandwidth\": 23850\n        },\n        {\n            \"mediaName\": \"G711alaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMA\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G711ulaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMU\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G722\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G722\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G723-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G723A-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723A-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G726-16\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-16\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G726-24\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-24\",\n            \"mediaBandwidth\": 24000\n        },\n        {\n            \"mediaName\": \"G726-32\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-32\",\n            \"mediaBandwidth\": 32000\n        },\n        {\n            \"mediaName\": \"G726-40\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-40\",\n            \"mediaBandwidth\": 40000\n        },\n        {\n            \"mediaName\": \"G728\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G728\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G729-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"G729B-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729B-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"GSM\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSM\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMEFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMEFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H261\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H261\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-1998\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-1998\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-2000\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-2000\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H264\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H264\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"MSRP\",\n            \"mediaType\": \"message\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"MSRP\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"OPUS\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"OPUS\",\n            \"mediaBandwidth\": 48000\n        },\n        {\n            \"mediaName\": \"T38\",\n            \"mediaType\": \"image\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"T38\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent2\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"TelephoneEvent3\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": 8000\n        }\n    ]\n}"}],"_postman_id":"c9dc2894-2e2a-42e9-8181-0912f8f94f96"},{"name":"System Media Copy","id":"9dc6dcb7-72b3-44df-a942-317f0b70f05d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"mediaName\": \"TelephoneEvent3\",\n    \"mediaType\": \"audio\",\n    \"bandwidthEnforcementType\": \"Allow All\",\n    \"codecName\": \"Telephone-event\",\n    \"mediaBandwidth\": 9000\n}"},"url":"{{url}}/api/v2/system/media","description":"<p>test 2</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"74d3debd-fa5e-4bcf-9dcd-b6c1f5ffcb77","name":"System Media","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"mediaName\": \"TelephoneEvent3\",\n    \"mediaType\": \"audio\",\n    \"bandwidthEnforcementType\": \"Allow All\",\n    \"codecName\": \"Telephone-event\",\n    \"mediaBandwidth\": 9000\n}"},"url":"{{url}}/api/v2/system/media"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"mediaName\": \"AMR-WB\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"AMR-WB\",\n            \"mediaBandwidth\": 23850\n        },\n        {\n            \"mediaName\": \"G711alaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMA\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G711ulaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMU\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G722\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G722\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G723-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G723A-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723A-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G726-16\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-16\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G726-24\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-24\",\n            \"mediaBandwidth\": 24000\n        },\n        {\n            \"mediaName\": \"G726-32\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-32\",\n            \"mediaBandwidth\": 32000\n        },\n        {\n            \"mediaName\": \"G726-40\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-40\",\n            \"mediaBandwidth\": 40000\n        },\n        {\n            \"mediaName\": \"G728\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G728\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G729-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"G729B-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729B-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"GSM\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSM\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMEFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMEFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H261\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H261\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-1998\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-1998\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-2000\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-2000\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H264\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H264\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"MSRP\",\n            \"mediaType\": \"message\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"MSRP\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"OPUS\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"OPUS\",\n            \"mediaBandwidth\": 48000\n        },\n        {\n            \"mediaName\": \"T38\",\n            \"mediaType\": \"image\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"T38\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent2\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"TelephoneEvent3\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": 9000\n        }\n    ]\n}"}],"_postman_id":"9dc6dcb7-72b3-44df-a942-317f0b70f05d"},{"name":"System Media","id":"77daefac-4d28-4422-8402-f4f39e3bcc13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"mediaName\": \"TelephoneEvent3\"\n}"},"url":"{{url}}/api/v2/system/media","description":"<p>test 2</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d4baa041-b855-475b-8087-4bf0517cbee3","name":"System Media","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"mediaName\": \"TelephoneEvent3\"\n}"},"url":"{{url}}/api/v2/system/media"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"mediaName\": \"AMR-WB\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"AMR-WB\",\n            \"mediaBandwidth\": 23850\n        },\n        {\n            \"mediaName\": \"G711alaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMA\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G711ulaw\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"PCMU\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G722\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G722\",\n            \"mediaBandwidth\": 64000\n        },\n        {\n            \"mediaName\": \"G723-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G723A-53\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-53\",\n            \"mediaBandwidth\": 5300\n        },\n        {\n            \"mediaName\": \"G723A-63\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G723A-63\",\n            \"mediaBandwidth\": 6300\n        },\n        {\n            \"mediaName\": \"G726-16\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-16\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G726-24\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-24\",\n            \"mediaBandwidth\": 24000\n        },\n        {\n            \"mediaName\": \"G726-32\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-32\",\n            \"mediaBandwidth\": 32000\n        },\n        {\n            \"mediaName\": \"G726-40\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G726-40\",\n            \"mediaBandwidth\": 40000\n        },\n        {\n            \"mediaName\": \"G728\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G728\",\n            \"mediaBandwidth\": 16000\n        },\n        {\n            \"mediaName\": \"G729-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"G729B-8\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"G729B-8\",\n            \"mediaBandwidth\": 8000\n        },\n        {\n            \"mediaName\": \"GSM\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSM\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMEFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMEFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"GSMFR\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"GSMFR\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H261\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H261\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-1998\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-1998\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H263-2000\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H263-2000\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"H264\",\n            \"mediaType\": \"video\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"H264\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"MSRP\",\n            \"mediaType\": \"message\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"MSRP\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"OPUS\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"OPUS\",\n            \"mediaBandwidth\": 48000\n        },\n        {\n            \"mediaName\": \"T38\",\n            \"mediaType\": \"image\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"T38\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": null\n        },\n        {\n            \"mediaName\": \"TelephoneEvent2\",\n            \"mediaType\": \"audio\",\n            \"bandwidthEnforcementType\": \"Allow All\",\n            \"codecName\": \"Telephone-event\",\n            \"mediaBandwidth\": 8000\n        }\n    ]\n}"}],"_postman_id":"77daefac-4d28-4422-8402-f4f39e3bcc13"},{"name":"System Media Sets","id":"b04f8b91-c148-432c-99e9-2dd343c356cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/media-set","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media-set"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e3fcde45-1f2c-4ae7-9a95-6434f25d8188","name":"System Media Set","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/media-set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Oct 2020 20:21:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"206"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"setName\": \"HDVoice\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice2\",\n            \"mediaNames\": [\n                \"G722\",\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice3\",\n            \"mediaNames\": [\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"OdinHDMedia\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"b04f8b91-c148-432c-99e9-2dd343c356cb"},{"name":"System Media Set","id":"6c44901c-e964-4220-a215-dac4bc39392e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"setName\": \"HDVoice\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/media-set","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media-set"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c3d23c8c-3fc6-4a78-957c-85741084e8b3","name":"System Media Set","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/media-set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Oct 2020 20:21:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"206"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"setName\": \"HDVoice\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice2\",\n            \"mediaNames\": [\n                \"G722\",\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice3\",\n            \"mediaNames\": [\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"OdinHDMedia\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"6c44901c-e964-4220-a215-dac4bc39392e"},{"name":"System Media Set","id":"69841b93-6cab-4bd9-8d32-395279178bf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"setName\": \"HDVoice3\",\n    \"mediaNames\": [\n        \"G722\",\n        \"G726-40\"\n    ]\n}"},"url":"{{url}}/api/v2/system/media-set","description":"<p>test 2</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media-set"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8d562402-b9ce-4c80-960f-8b05315d9a45","name":"System Media Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"setName\": \"HDVoice3\",\n    \"mediaNames\": [\n        \"G722\",\n        \"G726-40\"\n    ]\n}"},"url":"{{url}}/api/v2/system/media-set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"setName\": \"HDVoice\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice2\",\n            \"mediaNames\": [\n                \"G722\",\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice3\",\n            \"mediaNames\": [\n                \"G722\",\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"OdinHDMedia\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"69841b93-6cab-4bd9-8d32-395279178bf8"},{"name":"System Media Set","id":"bda99a59-e57f-4ce5-ae52-decc3e6e74e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"setName\": \"HDVoice3\",\n    \"mediaNames\": [\n        \"G726-40\"\n    ]\n}"},"url":"{{url}}/api/v2/system/media-set","description":"<p>test 2</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media-set"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"496d7a15-6fcd-4793-a9f8-f97b910d0d2a","name":"System Media Set","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"setName\": \"HDVoice3\",\n    \"mediaNames\": [\n        \"G726-40\"\n    ]\n}"},"url":"{{url}}/api/v2/system/media-set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"setName\": \"HDVoice\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice2\",\n            \"mediaNames\": [\n                \"G722\",\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice3\",\n            \"mediaNames\": [\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"OdinHDMedia\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"bda99a59-e57f-4ce5-ae52-decc3e6e74e8"},{"name":"System Media Set","id":"15d8637e-6a38-436d-8237-ca6a74edfa94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"setName\": \"HDVoice3\"\n}"},"url":"{{url}}/api/v2/system/media-set","description":"<p>test 2</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","media-set"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d745c868-8ca8-44f6-9d7d-212c26b6de70","name":"System Media Set","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n    \"setName\": \"HDVoice3\"\n}"},"url":"{{url}}/api/v2/system/media-set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"media\": [\n        {\n            \"setName\": \"HDVoice\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        },\n        {\n            \"setName\": \"HDVoice2\",\n            \"mediaNames\": [\n                \"G722\",\n                \"G726-40\"\n            ]\n        },\n        {\n            \"setName\": \"OdinHDMedia\",\n            \"mediaNames\": [\n                \"G722\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"15d8637e-6a38-436d-8237-ca6a74edfa94"}],"id":"9793df0c-1a42-4d5b-a1e4-16a497a9211e","_postman_id":"9793df0c-1a42-4d5b-a1e4-16a497a9211e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Meet-Me Conferencing","item":[{"name":"Service Providers Meet-Me Conferencing Ports","id":"24d4383a-24e4-4f34-856e-272670a43351","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/meet-me-conferencing/ports?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","meet-me-conferencing","ports"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"483bb6a2-b863-4bab-bbf8-049245b8e19d","name":"Service Providers Meet-Me Conferencing Ports","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/meet-me-conferencing/ports?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","meet-me-conferencing","ports"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"59","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 18:01:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"allocatedPorts\":305,\"serviceProviderId\":\"odin.mock.ent1\"}"}],"_postman_id":"24d4383a-24e4-4f34-856e-272670a43351"},{"name":"Service Providers Meet-Me Conferencing Ports","id":"e8650b30-0173-4e40-8629-29cfb1253cb1","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"allocatedPorts\": 300,\n\t\"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/meet-me-conferencing/ports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","meet-me-conferencing","ports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"04f3e16b-17c6-4970-bc92-caea0b8199f5","name":"Service Providers Meet-Me Conferencing Ports","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"allocatedPorts\": 300,\n\t\"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/meet-me-conferencing/ports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 18:03:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"e8650b30-0173-4e40-8629-29cfb1253cb1"},{"name":"Group Meet-Me Conferencing Ports","id":"40801a04-43af-405f-ae0b-673821c8a337","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/meet-me-conferencing/ports?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","ports"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"2e5d0aee-f92e-451d-8498-3112c2a89372","name":"Group MeetMe Conferencing Ports","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/meet-me-conferencing/ports?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","meet-me-conferencing","ports"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:51:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"106"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"allocatedPorts\": 10,\n    \"availablePorts\": 300\n}"}],"_postman_id":"40801a04-43af-405f-ae0b-673821c8a337"},{"name":"Group Meet-Me Conferencing Ports","id":"53371891-992b-4c42-b11e-f4ea1752ee68","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"allocatedPorts\":10\n}"},"url":"{{url}}/api/v2/groups/meet-me-conferencing/ports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","ports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ea51448-7d4a-4988-9a20-62e2f83299f3","name":"Group MeetMe Conferencing Ports","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"allocatedPorts\":10\n}"},"url":"{{url}}/api/v2/groups/meet-me-conferencing/ports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:51:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"53371891-992b-4c42-b11e-f4ea1752ee68"},{"name":"Group Meet-Me Conferencing Available Users","id":"23b468ac-0b2f-417a-baae-1bf0ac5a818b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/meet-me-conferencing/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","users"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"d18ac17f-29d3-47ae-8725-82fe2b20c4a7","name":"Group MeetMe Conferencing Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/meet-me-conferencing/users?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","meet-me-conferencing","users"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:52:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1440"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": 9709580001,\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"extension\": \"0001\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580002,\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"+1-9709580002\",\n        \"extension\": \"0002\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580003,\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"+1-9709580003\",\n        \"extension\": \"0003\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580004,\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"+1-9709580004\",\n        \"extension\": \"0004\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": 9709580005,\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"+1-9709580005\",\n        \"extension\": \"0005\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"mock-pilot-1\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"phoneNumber\": \"+1-9709580008\",\n        \"extension\": \"0008\",\n        \"department\": null,\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"23b468ac-0b2f-417a-baae-1bf0ac5a818b"},{"name":"Group Meet-Me Conferencing Bridges","id":"9502af52-8ace-4c79-aebf-abb13f8c20c3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/meet-me-conferencing/bridges?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","bridges"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"62cdfac6-4b1a-4644-a0c1-7507e47c9c6b","name":"Group MeetMe Conferencing Bridges","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/meet-me-conferencing/bridges?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","meet-me-conferencing","bridges"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:54:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"209"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceUserId\": \"mock-mm-bridge-1\",\n        \"name\": \"mock-mm-bridge-1\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"ports\": 10,\n        \"isActive\": true,\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    }\n]"}],"_postman_id":"9502af52-8ace-4c79-aebf-abb13f8c20c3"},{"name":"Group MeetMe Conferencing Bridge","id":"4138f54d-5e8b-4b85-8262-434967bb8e00","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserIdSuffix\":\"microv-works.com\",\n\t\"allocatedPorts\":10,\n\t\"allowIndividualOutDial\":true,\n\t\"securityPinLength\":6,\n\t\"conferenceEndWarningPromptMinutes\":10,\n\t\"maxConferenceDurationMinutes\":{\n\t\t\"hours\":3,\n\t\t\"minutes\":0\n\t},\n\t\"maxScheduledConferenceDurationMinutes\":{\n\t\t\"hours\":23,\n\t\t\"minutes\":45\n\t},\n\t\"serviceInstanceProfile\":{\n\t\t\"aliases\":[],\n\t\t\"name\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.meetme.2\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001\"}\n\t],\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"serviceUserId\":\"odin.mock.meetme.2@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/meet-me-conferencing/bridges","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","bridges"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a4a477a4-44b6-416d-8021-57e0799a13c0","name":"Group MeetMe Conferencing Bridge","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserIdSuffix\":\"microv-works.com\",\n\t\"allocatedPorts\":10,\n\t\"allowIndividualOutDial\":true,\n\t\"securityPinLength\":6,\n\t\"conferenceEndWarningPromptMinutes\":10,\n\t\"maxConferenceDurationMinutes\":{\n\t\t\"hours\":3,\n\t\t\"minutes\":0\n\t},\n\t\"maxScheduledConferenceDurationMinutes\":{\n\t\t\"hours\":23,\n\t\t\"minutes\":45\n\t},\n\t\"serviceInstanceProfile\":{\n\t\t\"aliases\":[],\n\t\t\"name\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.meetme.2\"\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001\"}\n\t],\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"serviceUserId\":\"odin.mock.meetme.2@microv-works.com\"\n}"},"url":"{{url}}/api/v2/groups/meet-me-conferencing/bridges"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:56:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"4138f54d-5e8b-4b85-8262-434967bb8e00"},{"name":"Group MeetMe Conferencing Bridge","id":"5823cc40-d5f5-412c-8233-4d84911e2eb1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/meet-me-conferencing/bridges?serviceUserId=odin.mock.meetme.2@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","bridges"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.meetme.2@microv-works.com"}],"variable":[]}},"response":[{"id":"7bb00ffc-9d10-4864-a26e-36620cb4cfc9","name":"Group MeetMe Conferencing Bridge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/meet-me-conferencing/bridges?serviceUserId=odin.mock.meetme.2@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","meet-me-conferencing","bridges"],"query":[{"key":"serviceUserId","value":"odin.mock.meetme.2@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:56:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1030"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceInstanceProfile\": {\n        \"name\": \"odin.mock.meetme.2\",\n        \"callingLineIdLastName\": \"odin.mock.meetme.2\",\n        \"callingLineIdFirstName\": \"odin.mock.meetme.2\",\n        \"hiraganaLastName\": \"odin.mock.meetme.2\",\n        \"hiraganaFirstName\": \"Meet-Me Conferencing\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"aliases\": []\n    },\n    \"allocatedPorts\": 10,\n    \"securityPinLength\": 6,\n    \"allowIndividualOutDial\": true,\n    \"playWarningPrompt\": false,\n    \"conferenceEndWarningPromptMinutes\": 10,\n    \"enableMaxConferenceDuration\": false,\n    \"maxConferenceDurationMinutes\": {\n        \"hours\": \"3\",\n        \"minutes\": \"0\"\n    },\n    \"maxScheduledConferenceDurationMinutes\": {\n        \"hours\": \"23\",\n        \"minutes\": \"45\"\n    },\n    \"serviceUserId\": \"odin.mock.meetme.2@microv-works.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"isEnterprise\": true,\n    \"users\": [\n        {\n            \"userId\": 9709580001,\n            \"lastName\": \"Mock1\",\n            \"firstName\": \"Mock1\",\n            \"hiraganaLastName\": \"Mock1\",\n            \"hiraganaFirstName\": \"Mock1\",\n            \"phoneNumber\": \"+1-9709580001\",\n            \"extension\": \"0001\",\n            \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"5823cc40-d5f5-412c-8233-4d84911e2eb1"},{"name":"Group MeetMe Conferencing Bridge","id":"8c61d118-6543-4a73-82ae-63e6a62bb0f0","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.meetme.2\",\n\t\t\"hiraganaLastName\":\"odin.mock.meetme.2\",\n\t\t\"hiraganaFirstName\":\"Meet-Me Conferencing\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\",\n\t\t\"aliases\":[]\n\t},\n\t\"allocatedPorts\":10,\n\t\"securityPinLength\":6,\n\t\"allowIndividualOutDial\":true,\n\t\"playWarningPrompt\":false,\n\t\"conferenceEndWarningPromptMinutes\":10,\n\t\"enableMaxConferenceDuration\":false,\n\t\"maxConferenceDurationMinutes\":{\n\t\t\"hours\":\"3\",\n\t\t\"minutes\":\"0\"\n\t},\n\t\"maxScheduledConferenceDurationMinutes\":{\n\t\t\"hours\":\"23\",\n\t\t\"minutes\":\"45\"\n\t},\n\t\"serviceUserId\":\"odin.mock.meetme.2@microv-works.com\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"users\":[\n\t\t{\"userId\":\"9709580001\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/meet-me-conferencing/bridges","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","bridges"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5a48374d-4113-4c69-9730-347c0c11f27a","name":"Group MeetMe Conferencing Bridge","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdLastName\":\"odin.mock.meetme.2\",\n\t\t\"callingLineIdFirstName\":\"odin.mock.meetme.2\",\n\t\t\"hiraganaLastName\":\"odin.mock.meetme.2\",\n\t\t\"hiraganaFirstName\":\"Meet-Me Conferencing\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\",\n\t\t\"aliases\":[]\n\t},\n\t\"allocatedPorts\":10,\n\t\"securityPinLength\":6,\n\t\"allowIndividualOutDial\":true,\n\t\"playWarningPrompt\":false,\n\t\"conferenceEndWarningPromptMinutes\":10,\n\t\"enableMaxConferenceDuration\":false,\n\t\"maxConferenceDurationMinutes\":{\n\t\t\"hours\":\"3\",\n\t\t\"minutes\":\"0\"\n\t},\n\t\"maxScheduledConferenceDurationMinutes\":{\n\t\t\"hours\":\"23\",\n\t\t\"minutes\":\"45\"\n\t},\n\t\"serviceUserId\":\"odin.mock.meetme.2@microv-works.com\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"users\":[\n\t\t{\"userId\":\"9709580001\"}\n\t]\n}"},"url":"{{url}}/api/v2/groups/meet-me-conferencing/bridges"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 22:59:08 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8c61d118-6543-4a73-82ae-63e6a62bb0f0"},{"name":"Group MeetMe Conferencing Bridge","id":"91e641d1-81a1-4089-ad30-5a9b8e6ce563","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/meet-me-conferencing/bridges?serviceUserId=odin.mock.meetme.2@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","meet-me-conferencing","bridges"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"odin.mock.meetme.2@microv-works.com"}],"variable":[]}},"response":[{"id":"992b1483-b92f-449a-9129-756539bd8f76","name":"Group MeetMe Conferencing Bridge","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/meet-me-conferencing/bridges?serviceUserId=odin.mock.meetme.2@microv-works.com","host":["{{url}}"],"path":["api","v2","groups","meet-me-conferencing","bridges"],"query":[{"key":"serviceUserId","value":"odin.mock.meetme.2@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 23:00:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"91e641d1-81a1-4089-ad30-5a9b8e6ce563"},{"name":"User Meet-Me Bridges","id":"405cfec6-2e5f-4167-8928-eb3192acbfb1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/meet-me-conferencing/bridges?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","bridges"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"ba9d3a49-ada3-416b-9bd7-6aa4aa49c7e5","name":"User Meet-Me Bridges","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/meet-me-conferencing/bridges?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","meet-me-conferencing","bridges"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:22:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"122"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"bridgeId\": \"mock-mm-bridge-1\",\n        \"isActive\": true,\n        \"name\": \"mock-mm-bridge-1\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"ports\": 10\n    }\n]"}],"_postman_id":"405cfec6-2e5f-4167-8928-eb3192acbfb1"},{"name":"User Meet-Me Conferences","id":"ad7306f2-5a1a-4dcc-ac60-de802e55a5f3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM4NzYzMjU3LCJuYnAiOjE1Mzg3NjMyNTcsImV4cCI6MTUzODgwNjQ1NywiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbmRCTVV4bmNuZGNMM1ZKVjJ0VVFXeFZOV2xjTDF3dmNVRTlQU0lzSW5aaGJIVmxJam9pZFd4Y0wzZFdUVVJEUW5aVVRsRlBTazlDTVdOQlVGRndSRGR3YkRrMVZ6RlpkakpYVVhSb2R6SjZObTg5SWl3aWJXRmpJam9pTnpnd1pEWmtPV1F6TVRrNFpqZ3hNV0ZrTnpVMlpXTTJNamt6TVRObU1URmtOakU1TnpFMFpEa3dObVV5TVdFME5EQTBPV016TURRME9XTXpNak00WlNKOSIsInAiOiJleUpwZGlJNklsQllWRlJzVDNZNWJrTnlNblZEVGt4eGFFcENhWGM5UFNJc0luWmhiSFZsSWpvaU16WkNaamcxUkc0d01WUkRZbko1VkV3d01VdFlSVGRpUlZkVWJWUnpNekpsV2xkM01YWkJVa1pyZWxocVVpczFiMjlQYldsUVIydzRORXM0VUROTGJ6Z3hOMFJIYlcxQ1prUjFhQ3RNY1hCTE4ycHhTR2M5UFNJc0ltMWhZeUk2SW1NNFkyRmpORGM0TWpSa01ETXpZVFEyTWpjd1ltTm1ZelkxT1dZM01HTmxZVFE0T0dZeVpUZG1PREV5TkdSbFlUQmlaVFV4WmpZeE1EVTVOR1JpWWpnaWZRPT0iLCJlIjoiZXlKcGRpSTZJbWh0UzJWMmFYSnZkazgwZEVWRVpsZHlXSGRHYldjOVBTSXNJblpoYkhWbElqb2lhMjlNZFRCaFRWSXhVM2hITkdWR05rRnBjRFF4VVQwOUlpd2liV0ZqSWpvaVpEZzNZV1ZrTTJOaE5qQm1PREV3WVRRME9HWTRaR05tT1Rrd05Ea3dabVF5TjJWbU1UY3pNalF4Tnpsak5qUXlaV0U1TnpBM056TXdabVl3WmpnMU1DSjkifX0.xYn5BHkFf_YPxBXupIde6nxc0XSA3gKPF66RSXQPDac"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences?userId=odin.lab.slatsa.user2@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"9709580001@microv-works.com"},{"disabled":true,"key":"te","value":"odin-bridge-1%40voicecci.net&name=749344&bridgeStatus=Active&bridgeName=comm-pilot-1.1&hostId=odin.lab.slatsa.user2%40voicecci.net"},{"key":"userId","value":"odin.lab.slatsa.user2@voicecci.net"}],"variable":[]}},"response":[{"id":"52405a25-63ae-45db-a02e-433d0131ba7f","name":"User Meet-Me Conferences","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM4NzYzMjU3LCJuYnAiOjE1Mzg3NjMyNTcsImV4cCI6MTUzODgwNjQ1NywiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbmRCTVV4bmNuZGNMM1ZKVjJ0VVFXeFZOV2xjTDF3dmNVRTlQU0lzSW5aaGJIVmxJam9pZFd4Y0wzZFdUVVJEUW5aVVRsRlBTazlDTVdOQlVGRndSRGR3YkRrMVZ6RlpkakpYVVhSb2R6SjZObTg5SWl3aWJXRmpJam9pTnpnd1pEWmtPV1F6TVRrNFpqZ3hNV0ZrTnpVMlpXTTJNamt6TVRObU1URmtOakU1TnpFMFpEa3dObVV5TVdFME5EQTBPV016TURRME9XTXpNak00WlNKOSIsInAiOiJleUpwZGlJNklsQllWRlJzVDNZNWJrTnlNblZEVGt4eGFFcENhWGM5UFNJc0luWmhiSFZsSWpvaU16WkNaamcxUkc0d01WUkRZbko1VkV3d01VdFlSVGRpUlZkVWJWUnpNekpsV2xkM01YWkJVa1pyZWxocVVpczFiMjlQYldsUVIydzRORXM0VUROTGJ6Z3hOMFJIYlcxQ1prUjFhQ3RNY1hCTE4ycHhTR2M5UFNJc0ltMWhZeUk2SW1NNFkyRmpORGM0TWpSa01ETXpZVFEyTWpjd1ltTm1ZelkxT1dZM01HTmxZVFE0T0dZeVpUZG1PREV5TkdSbFlUQmlaVFV4WmpZeE1EVTVOR1JpWWpnaWZRPT0iLCJlIjoiZXlKcGRpSTZJbWh0UzJWMmFYSnZkazgwZEVWRVpsZHlXSGRHYldjOVBTSXNJblpoYkhWbElqb2lhMjlNZFRCaFRWSXhVM2hITkdWR05rRnBjRFF4VVQwOUlpd2liV0ZqSWpvaVpEZzNZV1ZrTTJOaE5qQm1PREV3WVRRME9HWTRaR05tT1Rrd05Ea3dabVF5TjJWbU1UY3pNalF4Tnpsak5qUXlaV0U1TnpBM056TXdabVl3WmpnMU1DSjkifX0.xYn5BHkFf_YPxBXupIde6nxc0XSA3gKPF66RSXQPDac","disabled":false},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/meet-me-conferencing/conferences?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","meet-me-conferencing","conferences"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"256","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:57:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"bridgeId\":\"mock-mm-bridge-1\",\"conferenceId\":229269,\"title\":\"Test123\",\"bridgeName\":\"mock-mm-bridge-1\",\"status\":\"Active\",\"type\":\"Reservationless\",\"startTime\":\"2018-10-05T17:57:05:000-0600\",\"hostLastName\":\"Mock1\",\"hostFirstName\":\"Mock1\",\"host\":9709580001}]"}],"_postman_id":"ad7306f2-5a1a-4dcc-ac60-de802e55a5f3"},{"name":"User Recurring Meet-Me Conference","id":"20b34051-dc15-4f40-b16f-81a21803023c","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"z7-recurring-weekly-never-with-days\",\n    \"restrictParticipants\": false,\n    \"muteAllAttendeesOnEntry\": false,\n    \"endConferenceOnModeratorExit\": false,\n    \"moderatorRequired\": false,\n    \"requireSecurityPin\": false,\n    \"allowUniqueIdentifier\": false,\n    \"attendeeNotification\": \"Play Tone\",\n    \"moderatorPin\": \"063079\",\n    \"hostTimeZone\": \"America/Chicago\",\n    \"allowParticipantUnmuteInAutoLectureMode\": false,\n    \"userId\": \"user-2@voicecci.net\",\n    \"bridgeId\": \"odin-bridge-1@voicecci.net\",\n    \"conferenceId\": \"161062\",\n    \"maxParticipants\": 0,\n    \"scheduleType\": \"Recurring\",\n    \"startTime\": \"2022-05-17T15:45:00.000-05:00\",\n    \"duration\": {\n        \"hours\": 1,\n        \"minutes\": 0\n    },\n    \"endTime\": null,\n    \"noEndTime\": true,\n    \"rrule\": \"DTSTART:20220527T050000Z\\nRRULE:FREQ=WEEKLY;COUNT=4;INTERVAL=3;BYDAY=WE,FR\",\n    \"recurrence\": {\n        \"recurWeekly\": {\n            \"recurInterval\": 5,\n            \"sunday\": true,\n            \"monday\": false,\n            \"tuesday\": true,\n            \"wednesday\": false,\n            \"thursday\": false,\n            \"friday\": false,\n            \"saturday\": false\n        },\n        \"recurForEver\": true\n    }\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8cba3b8e-e2c3-451f-9d5b-cb250ff981d7","name":"User Meet-Me Conference","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"title\":\"Test123\",\n\t\"accountCode\":\"3\",\n\t\"estimatedParticipants\":\"2\",\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"muteAllAttendeesOnEntry\":true,\n\t\"endConferenceOnModeratorExit\":true,\n\t\"moderatorRequired\":true\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"45","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:57:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"conferenceId\":229269,\"moderatorPin\":521565}"}],"_postman_id":"20b34051-dc15-4f40-b16f-81a21803023c"},{"name":"User One Time Meet-Me Conference","id":"8496a1f4-c56e-4344-b5b4-1d39bc2995eb","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"One Time-1-22\",\n    \"maxParticipants\": 14,\n    \"muteAllAttendeesOnEntry\": true,\n    \"endConferenceOnModeratorExit\": true,\n    \"moderatorRequired\": true,\n    \"requireSecurityPin\": false,\n    \"allowUniqueIdentifier\": false,\n    \"attendeeNotification\": \"Play Tone\",\n    \"moderatorPin\": \"221850\",\n    \"hostTimeZone\": \"America/Chicago\",\n    \"allowParticipantUnmuteInAutoLectureMode\": false,\n    \"userId\": \"user-2@voicecci.net\",\n    \"bridgeId\": \"odinBridgeOneTime@voicecci.net\",\n    \"restrictParticipants\": false,\n    \"scheduleType\": \"One Time\",\n    \"startTime\": \"2022-05-29T09:59:00.000-05:00\",\n    \"duration\": {\n        \"hours\": 2,\n        \"minutes\": 15\n    }\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"867e7804-5da6-46d3-aef4-06ef93df1693","name":"User Meet-Me Conference","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"title\":\"Test123\",\n\t\"accountCode\":\"3\",\n\t\"estimatedParticipants\":\"2\",\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"muteAllAttendeesOnEntry\":true,\n\t\"endConferenceOnModeratorExit\":true,\n\t\"moderatorRequired\":true\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"45","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:57:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"conferenceId\":229269,\"moderatorPin\":521565}"}],"_postman_id":"8496a1f4-c56e-4344-b5b4-1d39bc2995eb"},{"name":"User Reservationless Meet-Me Conference","id":"8239c975-9636-4402-ac9c-f737353914d7","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Reservationless-1-and-a-half\",\n    \"maxParticipants\": 12,\n    \"muteAllAttendeesOnEntry\": false,\n    \"endConferenceOnModeratorExit\": false,\n    \"moderatorRequired\": false,\n    \"requireSecurityPin\": false,\n    \"allowUniqueIdentifier\": true,\n    \"attendeeNotification\": \"No Notification\",\n    \"moderatorPin\": \"098326\",\n    \"hostTimeZone\": \"America/Chicago\",\n    \"allowParticipantUnmuteInAutoLectureMode\": false,\n    \"userId\": \"user-2@voicecci.net\",\n    \"bridgeId\": \"odinBridgeReservationless@voicecci.net\",\n    \"restrictParticipants\": false,\n    \"scheduleType\": \"Reservationless\",\n    \"startTime\": \"2022-05-17T00:00:00.000-05:00\",\n    \"endTime\": \"2022-06-30T23:59:05.000-05:00\",\n    \"noEndTime\": false\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3fb9419a-e5e7-435c-b3a7-e0eba0ceceda","name":"User Meet-Me Conference","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"title\":\"Test123\",\n\t\"accountCode\":\"3\",\n\t\"estimatedParticipants\":\"2\",\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"muteAllAttendeesOnEntry\":true,\n\t\"endConferenceOnModeratorExit\":true,\n\t\"moderatorRequired\":true\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"45","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:57:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"conferenceId\":229269,\"moderatorPin\":521565}"}],"_postman_id":"8239c975-9636-4402-ac9c-f737353914d7"},{"name":"User Meet-Me Conference","id":"e3a6f535-99d8-4fe2-b52d-eccfa4f33155","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[{"disabled":true,"key":"scheduleReservationless1-Date","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"999818"},{"disabled":true,"key":"bridgeId","value":"odinBridgeReservationless@voicecci.net"},{"disabled":true,"key":"bridgeId","value":"mock-mm-bridge-1"},{"disabled":true,"key":"conferenceId","value":"229269"},{"disabled":true,"key":"userId","value":"9709580001@microv-works.com"},{"disabled":true,"key":"scheduleOneTime","value":""},{"disabled":true,"key":"conferenceId","value":"898588"},{"disabled":true,"key":"bridgeId","value":"odinBridgeOneTime@voicecci.net"},{"disabled":true,"key":"scott-4-one-time","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"266534"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"Recurring-1","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"935165"},{"disabled":true,"key":"bridgeId","value":"odinBridgeRecurring@voicecci.net"},{"disabled":true,"key":"scheduleReservationless2-Never","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"468965"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"scott-5-Never","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"992663"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"scott-6-Date","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"468965"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"scott-1 = recurring","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"971547"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-daily-after","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"517793"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-daily-after-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"715142"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-daily-never","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"873275"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-weekly-after","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"100186"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-weekly-data","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"229309"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-weekly-never","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"161062"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-monthly-after-1","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"486262"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-monthly-after-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"269711"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-monthly-date-1","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"404056"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-monthly-date-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"550590"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-monthly-date-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"225351"},{"disabled":true,"key":"bridgeId","value":"odinBridgeRecurring@voicecci.net"},{"disabled":true,"key":"recurring-monthly-none1","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"395554"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-monthly-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"615731"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-yearly-after-1","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"112101"},{"disabled":true,"key":"bridgeId","value":"odinBridgeRecurring@voicecci.net"},{"disabled":true,"key":"recurring-yearly-after-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"830466"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-yearly-data-1","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"951144"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-yearly-data-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"302176"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"recurring-yearly-none-1","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"321759"},{"disabled":true,"key":"bridgeId","value":"odinBridgeRecurring@voicecci.net"},{"disabled":true,"key":"recurring-yearly-none-21","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"070720"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"scott-2","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"860138"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"},{"disabled":true,"key":"scott-3","value":""},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"conferenceId","value":"322962"},{"disabled":true,"key":"bridgeId","value":"odin-bridge-1@voicecci.net"}],"variable":[]}},"response":[{"id":"1a4d2910-e10e-4631-945c-fac2ab60e367","name":"User Meet-Me Conference","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/meet-me-conferencing/conferences?bridgeId=mock-mm-bridge-1&conferenceId=229269&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","meet-me-conferencing","conferences"],"query":[{"key":"bridgeId","value":"mock-mm-bridge-1"},{"key":"conferenceId","value":"229269"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"497","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:57:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"title\":\"Test123\",\"estimatedParticipants\":2,\"restrictParticipants\":false,\"accountCode\":3,\"muteAllAttendeesOnEntry\":true,\"endConferenceOnModeratorExit\":true,\"moderatorRequired\":true,\"requireSecurityPin\":false,\"allowUniqueIdentifier\":false,\"attendeeNotification\":\"Play Tone\",\"conferenceSchedule\":{\"scheduleReservationless\":{\"startTime\":\"2018-10-05T17:57:05.000-06:00\",\"endTime\":{}}},\"moderatorPin\":521565,\"userId\":\"9709580001@microv-works.com\",\"bridgeId\":\"mock-mm-bridge-1\",\"conferenceId\":\"229269\"}"}],"_postman_id":"e3a6f535-99d8-4fe2-b52d-eccfa4f33155"},{"name":"User Recurring Meet-Me Conference","id":"5ed3d423-76cc-4b97-83fc-18c5bff4aac8","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"recurring-weekly-never\",\n    \"restrictParticipants\": false,\n    \"muteAllAttendeesOnEntry\": false,\n    \"endConferenceOnModeratorExit\": false,\n    \"moderatorRequired\": false,\n    \"requireSecurityPin\": false,\n    \"allowUniqueIdentifier\": false,\n    \"attendeeNotification\": \"Play Tone\",\n    \"moderatorPin\": 553849,\n    \"hostTimeZone\": \"America/Chicago\",\n    \"allowParticipantUnmuteInAutoLectureMode\": false,\n    \"userId\": \"user-2@voicecci.net\",\n    \"bridgeId\": \"odin-bridge-1@voicecci.net\",\n    \"conferenceId\": 948938,\n    \"maxParticipants\": 0,\n    \"scheduleType\": \"Recurring\",\n    \"startTime\": \"2022-05-17T15:45:00.000-05:00\",\n    \"duration\": {\n        \"hours\": 1,\n        \"minutes\": 0\n    },\n    \"endTime\": null,\n    \"noEndTime\": true,\n    \"rrule\": \"DTSTART:20220517T204500Z\\nRRULE:FREQ=WEEKLY;INTERVAL=5;BYDAY=\",\n    \"recurrence\": {\n        \"recurWeekly\": {\n            \"recurInterval\": 5,\n            \"sunday\": true,\n            \"monday\": false,\n            \"tuesday\": true,\n            \"wednesday\": true,\n            \"thursday\": false,\n            \"friday\": true,\n            \"saturday\": true\n        },\n        \"recurForEver\": true\n    }\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bd5dfb93-2256-4a2a-a6f6-eb299d0d42d6","name":"User Meet-Me Conference","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"title\":\"Test123\",\n\t\"estimatedParticipants\":2,\n\t\"restrictParticipants\":false,\n\t\"accountCode\":3,\n\t\"muteAllAttendeesOnEntry\":true,\n\t\"endConferenceOnModeratorExit\":true,\n\t\"moderatorRequired\":true,\n\t\"requireSecurityPin\":false,\n\t\"allowUniqueIdentifier\":false,\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"conferenceSchedule\":{\n\t\t\"scheduleReservationless\":{\n\t\t\t\"startTime\":\"2018-10-05T17:32:37.000-06:00\",\n\t\t\t\"endTime\":null\n\t\t}\n\t},\n\t\"moderatorPin\":\"047378\",\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"conferenceId\":229269,\n\t\"bridgeName\":\"mock-mm-bridge-1\"\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:58:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5ed3d423-76cc-4b97-83fc-18c5bff4aac8"},{"name":"User One Time Meet-Me Conference","id":"db83bb65-6f62-45d0-ae4e-bf5a2927a139","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"One Time-1-22\",\n    \"restrictParticipants\": false,\n    \"muteAllAttendeesOnEntry\": true,\n    \"endConferenceOnModeratorExit\": true,\n    \"moderatorRequired\": true,\n    \"requireSecurityPin\": false,\n    \"allowUniqueIdentifier\": false,\n    \"attendeeNotification\": \"Play Tone\",\n    \"moderatorPin\": 587884,\n    \"hostTimeZone\": \"America/Chicago\",\n    \"allowParticipantUnmuteInAutoLectureMode\": false,\n    \"userId\": \"user-2@voicecci.net\",\n    \"bridgeId\": \"odinBridgeOneTime@voicecci.net\",\n    \"conferenceId\": 980759,\n    \"maxParticipants\": 0,\n    \"scheduleType\": \"One Time\",\n    \"startTime\": \"2022-05-29T09:59:00.000-05:00\",\n    \"duration\": {\n        \"hours\": 2,\n        \"minutes\": 0\n    },\n    \"endTime\": null,\n    \"noEndTime\": true,\n    \"rrule\": null,\n    \"recurrence\": null\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2139493c-ca97-4e87-b6eb-9b286b1d3c33","name":"User Meet-Me Conference","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"title\":\"Test123\",\n\t\"estimatedParticipants\":2,\n\t\"restrictParticipants\":false,\n\t\"accountCode\":3,\n\t\"muteAllAttendeesOnEntry\":true,\n\t\"endConferenceOnModeratorExit\":true,\n\t\"moderatorRequired\":true,\n\t\"requireSecurityPin\":false,\n\t\"allowUniqueIdentifier\":false,\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"conferenceSchedule\":{\n\t\t\"scheduleReservationless\":{\n\t\t\t\"startTime\":\"2018-10-05T17:32:37.000-06:00\",\n\t\t\t\"endTime\":null\n\t\t}\n\t},\n\t\"moderatorPin\":\"047378\",\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"conferenceId\":229269,\n\t\"bridgeName\":\"mock-mm-bridge-1\"\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:58:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"db83bb65-6f62-45d0-ae4e-bf5a2927a139"},{"name":"User Reservationless Meet-Me Conference","id":"66313166-880c-486f-b506-83d528191482","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Reservationless-1-and-a-half\",\n    \"restrictParticipants\": false,\n    \"muteAllAttendeesOnEntry\": false,\n    \"endConferenceOnModeratorExit\": false,\n    \"moderatorRequired\": false,\n    \"requireSecurityPin\": false,\n    \"allowUniqueIdentifier\": true,\n    \"attendeeNotification\": \"No Notification\",\n    \"moderatorPin\": 152992,\n    \"hostTimeZone\": \"America/Chicago\",\n    \"allowParticipantUnmuteInAutoLectureMode\": false,\n    \"userId\": \"user-2@voicecci.net\",\n    \"bridgeId\": \"odinBridgeReservationless@voicecci.net\",\n    \"conferenceId\": 999818,\n    \"maxParticipants\": 0,\n    \"scheduleType\": \"Reservationless\",\n    \"startTime\": \"2022-05-17T00:00:00.000-05:00\",\n    \"duration\": {\n        \"hours\": null,\n        \"minutes\": null\n    },\n    \"endTime\": \"2022-06-30T23:59:07.000-05:00\",\n    \"noEndTime\": false,\n    \"rrule\": null,\n    \"recurrence\": null\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6b80f611-970d-4c19-a8b5-a3632b466a3b","name":"User Meet-Me Conference","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"title\":\"Test123\",\n\t\"estimatedParticipants\":2,\n\t\"restrictParticipants\":false,\n\t\"accountCode\":3,\n\t\"muteAllAttendeesOnEntry\":true,\n\t\"endConferenceOnModeratorExit\":true,\n\t\"moderatorRequired\":true,\n\t\"requireSecurityPin\":false,\n\t\"allowUniqueIdentifier\":false,\n\t\"attendeeNotification\":\"Play Tone\",\n\t\"conferenceSchedule\":{\n\t\t\"scheduleReservationless\":{\n\t\t\t\"startTime\":\"2018-10-05T17:32:37.000-06:00\",\n\t\t\t\"endTime\":null\n\t\t}\n\t},\n\t\"moderatorPin\":\"047378\",\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"conferenceId\":229269,\n\t\"bridgeName\":\"mock-mm-bridge-1\"\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 19:58:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"66313166-880c-486f-b506-83d528191482"},{"name":"User Meet-Me Conference","id":"5085c333-05be-4f7e-81ee-c283429f2d4d","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/meet-me-conferencing/conferences?bridgeId=mock-mm-bridge-1&conferenceId=716191&userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","conferences"],"host":["{{url}}"],"query":[{"key":"bridgeId","value":"mock-mm-bridge-1"},{"key":"conferenceId","value":"716191"},{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[],"_postman_id":"5085c333-05be-4f7e-81ee-c283429f2d4d"},{"name":"User Meet-Me Delegates","id":"6739d716-6cd6-45f0-800f-b582a20fd7d5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/meet-me-conferencing/delegates?bridgeId=mock-mm-bridge-1&conferenceId=229269&userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","delegates"],"host":["{{url}}"],"query":[{"key":"bridgeId","value":"mock-mm-bridge-1"},{"key":"conferenceId","value":"229269"},{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"a81d52e0-5280-44d6-9ebd-4186491d9335","name":"User Meet-Me Delegates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/meet-me-conferencing/delegates?bridgeId=mock-mm-bridge-1&conferenceId=229269&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","meet-me-conferencing","delegates"],"query":[{"key":"bridgeId","value":"mock-mm-bridge-1"},{"key":"conferenceId","value":"229269"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"250","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 20:08:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":9709580002,\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"phoneNumber\":\"+19709580002\",\"extension\":\"0002\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null}]"}],"_postman_id":"6739d716-6cd6-45f0-800f-b582a20fd7d5"},{"name":"User Meet-Me Delegates Available Users","id":"ae11999e-b9e8-494d-9de1-0ef3c2d4bc7c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/meet-me-conferencing/delegates/users?bridgeId=mock-mm-bridge-1&conferenceId=229269&userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","delegates","users"],"host":["{{url}}"],"query":[{"key":"bridgeId","value":"mock-mm-bridge-1"},{"key":"conferenceId","value":"229269"},{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"38a8f6e9-2e85-4bb6-b910-20011da00ae3","name":"User Meet-Me Delegates Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/meet-me-conferencing/delegates/users?bridgeId=mock-mm-bridge-1&conferenceId=229269&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","meet-me-conferencing","delegates","users"],"query":[{"key":"bridgeId","value":"mock-mm-bridge-1"},{"key":"conferenceId","value":"229269"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"481","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 20:06:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":9709580001,\"lastName\":\"Mock1\",\"firstName\":\"Mock1\",\"hiraganaLastName\":\"Mock1\",\"hiraganaFirstName\":\"Mock1\",\"phoneNumber\":\"+19709580001\",\"extension\":\"0001\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null},{\"userId\":9709580002,\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"phoneNumber\":\"+19709580002\",\"extension\":\"0002\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null}]"}],"_postman_id":"ae11999e-b9e8-494d-9de1-0ef3c2d4bc7c"},{"name":"User Meet-Me Delegates","id":"49c2acde-89b2-4441-ba90-37582a1e5dd9","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"conferenceId\":229269,\n\t\"users\":[\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/delegates","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","meet-me-conferencing","delegates"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2efd9911-63b3-4930-8efc-9a37ed146341","name":"User Meet-Me Delegates","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"bridgeId\":\"mock-mm-bridge-1\",\n\t\"conferenceId\":229269,\n\t\"users\":[\n\t\t{\"userId\":9709580002}\n\t]\n}"},"url":"{{url}}/api/v2/users/meet-me-conferencing/delegates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 20:08:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"49c2acde-89b2-4441-ba90-37582a1e5dd9"}],"id":"7d17294c-03d7-4bec-85b3-5a1642960791","_postman_id":"7d17294c-03d7-4bec-85b3-5a1642960791","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Music On Hold","item":[{"name":"User Music On Hold","id":"8b09c802-400f-4c1d-88f5-472d15fd138c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/music-on-hold?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","music-on-hold"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"76d34cef-dfe3-494d-97fc-e11716552b20","name":"User Music On Hold","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/music-on-hold?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","music-on-hold"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"enableVideo\": true,\n    \"source\": {\n        \"messageSourceSelection\": \"Custom\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    },\n    \"useAlternateSourceForInternalCalls\": false,\n    \"internalSource\": {\n        \"messageSourceSelection\": \"Group\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    }\n}"}],"_postman_id":"8b09c802-400f-4c1d-88f5-472d15fd138c"},{"name":"User Music On Hold","id":"e28cff56-03f7-41c1-9d0f-c208290570a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"enableVideo\": true,\n    \"source\": {\n        \"messageSourceSelection\": \"Custom\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    },\n    \"useAlternateSourceForInternalCalls\": false,\n    \"internalSource\": {\n        \"messageSourceSelection\": \"Custom\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    }\n}"},"url":"{{url}}/api/v2/users/music-on-hold","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","music-on-hold"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d50b9c28-4c4d-4664-b6b5-5efbf9c4ee44","name":"User Music On Hold","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableVideo\": true,\n    \"source\": {\n        \"messageSourceSelection\": \"Custom\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    },\n    \"useAlternateSourceForInternalCalls\": false,\n    \"internalSource\": {\n        \"messageSourceSelection\": \"Group\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    },\n    \"isActive\": true,\n    \"userId\": \"9871515000@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/music-on-hold"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"9871515000@odinapi.net\",\n    \"enableVideo\": true,\n    \"source\": {\n        \"messageSourceSelection\": \"Custom\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    },\n    \"useAlternateSourceForInternalCalls\": false,\n    \"internalSource\": {\n        \"messageSourceSelection\": \"Group\",\n        \"customSource\": {\n            \"audioFile\": {\n                \"name\": \"music\",\n                \"mediaFileType\": \"WAV\"\n            }\n        }\n    }\n}"}],"_postman_id":"e28cff56-03f7-41c1-9d0f-c208290570a1"},{"name":"Group Music On Hold Departments","id":"e6b4a0b5-649a-4dbd-93bb-bc7a8b44a8a7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/music-on-hold/departments?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","music-on-hold","departments"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"ae29e35a-41b8-4c70-bcf0-eaf7145ec70d","name":"Group Music On Hold Departments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/music-on-hold/departments?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","music-on-hold","departments"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 19:06:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"334"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"hasDepartment\": true,\n    \"departments\": [\n        {\n            \"departmentId\": \"odin.mock.ent1+odin.mock.grp1+Odin Mock Dept\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\",\n            \"fullPathName\": \"Odin Mock Dept (odin.mock.grp1)\",\n            \"isEnterpriseDepartment\": false\n        }\n    ]\n}"}],"_postman_id":"e6b4a0b5-649a-4dbd-93bb-bc7a8b44a8a7"},{"name":"Group Music On Hold Department","id":"339517c1-1831-47e5-b8b5-b605acac8958","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"isActiveDuringCallHold\":true,\n\t\"isActiveDuringCallPark\":true,\n\t\"isActiveDuringBusyCampOn\":true,\n\t\"useAlternateSourceForInternalCalls\":false,\n\t\"source\":{\n\t\t\"audioFilePreferredCodec\":\"None\",\n\t\t\"messageSourceSelection\":\"System\"\n\t},\n\t\"department\":{\n\t\t\"name\":\"Odin Mock Dept\",\n\t\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\t\"groupId\":\"odin.mock.grp1\"\n\t}\n}"},"url":"{{url}}/api/v2/groups/music-on-hold","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","music-on-hold"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"df19e780-30f9-44a4-b983-2653922a85a6","name":"Group Music On Hold Department","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"isActiveDuringCallHold\":true,\n\t\"isActiveDuringCallPark\":true,\n\t\"isActiveDuringBusyCampOn\":true,\n\t\"useAlternateSourceForInternalCalls\":false,\n\t\"source\":{\n\t\t\"audioFilePreferredCodec\":\"None\",\n\t\t\"messageSourceSelection\":\"System\"\n\t},\n\t\"department\":{\n\t\t\"name\":\"Odin Mock Dept\",\n\t\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\t\"groupId\":\"odin.mock.grp1\"\n\t}\n}"},"url":"{{url}}/api/v2/groups/music-on-hold"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 19:24:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"339517c1-1831-47e5-b8b5-b605acac8958"},{"name":"Group Music On Hold Instance","id":"0a161e39-6a3c-4463-bec5-84c6f4ae1714","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/music-on-hold?departmentName=Odin+Mock+Dept&groupId=odin.mock.grp1&isEnterpriseDepartment=false&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","music-on-hold"],"host":["{{url}}"],"query":[{"key":"departmentName","value":"Odin+Mock+Dept"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"isEnterpriseDepartment","value":"false"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"bb663989-6f3d-4994-a87d-36e77924ef9b","name":"Group Music On Hold Instance","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/music-on-hold?departmentName=Odin+Mock+Dept&groupId=odin.mock.grp1&isEnterpriseDepartment=false&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","music-on-hold"],"query":[{"key":"departmentName","value":"Odin+Mock+Dept"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"isEnterpriseDepartment","value":"false"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 19:24:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"514"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"224374430_261921865_278189130_MOH\",\n    \"isActiveDuringCallHold\": true,\n    \"isActiveDuringCallPark\": true,\n    \"isActiveDuringBusyCampOn\": true,\n    \"enableVideo\": true,\n    \"source\": {\n        \"audioFilePreferredCodec\": \"None\",\n        \"messageSourceSelection\": \"System\"\n    },\n    \"useAlternateSourceForInternalCalls\": false,\n    \"department\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"name\": \"Odin Mock Dept\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"departmentId\": \"odin.mock.ent1+odin.mock.grp1+Odin Mock Dept\"\n    },\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"0a161e39-6a3c-4463-bec5-84c6f4ae1714"},{"name":"Group Music On Hold Instance","id":"ea57e4ac-9b2d-45ab-b90f-e4310c25f7d9","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"224374430_261921865_278189130_MOH\",\n\t\"isActiveDuringCallHold\":true,\n\t\"isActiveDuringCallPark\":true,\n\t\"isActiveDuringBusyCampOn\":true,\n\t\"enableVideo\":true,\n\t\"source\":{\n\t\t\"audioFilePreferredCodec\":\"None\",\n\t\t\"messageSourceSelection\":\"System\"\n\t},\n\t\"useAlternateSourceForInternalCalls\":false,\n\t\"department\":{\n\t\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\t\"name\":\"Odin Mock Dept\",\n\t\t\"groupId\":\"odin.mock.grp1\"\n\t},\n\t\"internalSource\":{\n\t\t\"audioFilePreferredCodec\":\"None\",\n\t\t\"messageSourceSelection\":\"System\"\n\t},\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/music-on-hold","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","music-on-hold"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"52b5d10d-49b8-416a-8ce9-9c0f6887ceb3","name":"Group Music On Hold Instance","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"224374430_261921865_278189130_MOH\",\n\t\"isActiveDuringCallHold\":true,\n\t\"isActiveDuringCallPark\":true,\n\t\"isActiveDuringBusyCampOn\":true,\n\t\"enableVideo\":true,\n\t\"source\":{\n\t\t\"audioFilePreferredCodec\":\"None\",\n\t\t\"messageSourceSelection\":\"System\"\n\t},\n\t\"useAlternateSourceForInternalCalls\":false,\n\t\"department\":{\n\t\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\t\"name\":\"Odin Mock Dept\",\n\t\t\"groupId\":\"odin.mock.grp1\"\n\t},\n\t\"internalSource\":{\n\t\t\"audioFilePreferredCodec\":\"None\",\n\t\t\"messageSourceSelection\":\"System\"\n\t},\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/music-on-hold"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 19:26:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"ea57e4ac-9b2d-45ab-b90f-e4310c25f7d9"},{"name":"Group Music On Hold Department","id":"555cb22b-8414-4d03-b237-e6054b1eb9ab","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/music-on-hold?departmentName=Odin+Mock+Dept&groupId=odin.mock.grp1&isEnterpriseDepartment=false&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","music-on-hold"],"host":["{{url}}"],"query":[{"key":"departmentName","value":"Odin+Mock+Dept"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"isEnterpriseDepartment","value":"false"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"87d57c4e-4e76-4967-a1e4-90aa9ec02b06","name":"Group Music On Hold Department","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/music-on-hold?departmentName=Odin+Mock+Dept&groupId=odin.mock.grp1&isEnterpriseDepartment=false&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","music-on-hold"],"query":[{"key":"departmentName","value":"Odin+Mock+Dept"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"isEnterpriseDepartment","value":"false"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Oct 2018 19:26:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"555cb22b-8414-4d03-b237-e6054b1eb9ab"}],"id":"a14e0f78-4762-4ade-b750-4b97610499d2","_postman_id":"a14e0f78-4762-4ade-b750-4b97610499d2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"MWI Delivery To Mobile Endpoint","item":[{"name":"User MWI Delivery To Mobile Endpoint","id":"4571f257-b5fe-456e-8405-e18e24e799d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/mwi-delivery-to-mobile-endpoint?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","mwi-delivery-to-mobile-endpoint"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"2c8b119d-bd32-4ca0-969e-dea5bb349a72","name":"User MWI Delivery To Mobile Endpoint","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/mwi-delivery-to-mobile-endpoint?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","mwi-delivery-to-mobile-endpoint"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"mobilePhoneNumber\": 4144004001,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"4571f257-b5fe-456e-8405-e18e24e799d3"},{"name":"User MWI Delivery To Mobile Endpoint","id":"1597292e-12a5-4a32-bc8e-9ce1ec55a29e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"mobilePhoneNumber\": \"4144004001\"\n}"},"url":"{{url}}/api/v2/users/mwi-delivery-to-mobile-endpoint","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","mwi-delivery-to-mobile-endpoint"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ec2cc0b0-c65e-47fd-bab8-52d18d3ec73b","name":"User MWI Delivery To Mobile Endpoint","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"mobilePhoneNumber\": \"4144004001\"\n}"},"url":"{{url}}/api/v2/users/mwi-delivery-to-mobile-endpoint"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"mobilePhoneNumber\": 4144004001,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7323\n}"}],"_postman_id":"1597292e-12a5-4a32-bc8e-9ce1ec55a29e"}],"id":"41fe4386-58e1-43d6-9605-cde27664de52","_postman_id":"41fe4386-58e1-43d6-9605-cde27664de52","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Network Class of Service","item":[{"name":"Service Provider Network Class of Services","id":"d394d13b-2cee-4dd4-920b-28e3d2c0bee8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/network-class-of-services?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","network-class-of-services"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"c729b13c-694f-4d89-9ddb-8d528c91cfee","name":"Service Provider Network Class of Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/network-class-of-services?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","network-class-of-services"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"317","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 29 Sep 2018 00:08:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.ent1\",\"services\":[{\"name\":\"NetworkClassOfService1\",\"description\":\"NetworkClassOfService1\",\"default\":true},{\"name\":\"NetworkClassOfService2\",\"description\":\"NetworkClassOfService2\",\"default\":false},{\"name\":\"NetworkClassOfService3\",\"description\":\"NetworkClassOfService3\",\"default\":false}]}"}],"_postman_id":"d394d13b-2cee-4dd4-920b-28e3d2c0bee8"},{"name":"Service Provider Network Class of Service Select","id":"31bc6988-b962-4a06-9dff-7c1ebd1126e1","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"name\": \"NetworkClassOfService1\"\n}"},"url":"{{url}}/api/v2/service-providers/network-class-of-services","description":"<p>Set the Default Network Class of Service</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","network-class-of-services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6f603909-e858-4c12-8f91-31fa9e4c60e1","name":"Service Provider Network Class of Services Select","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"name\": \"NetworkClassOfService1\"\n}"},"url":"{{url}}/api/v2/service-providers/network-class-of-services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 30 Aug 2018 20:24:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"31bc6988-b962-4a06-9dff-7c1ebd1126e1"},{"name":"Service Provider Network Class of Service","id":"1bc9327c-4680-42cb-810f-0c999ade4bb5","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"services\": [{\n\t\t\"name\": \"NetworkClassOfService2\",\n\t\t\"description\": \"NetworkClassOfService2\",\n\t\t\"default\": false\n\t}, {\n\t\t\"name\": \"NetworkClassOfService3\",\n\t\t\"description\": \"NetworkClassOfService3\",\n\t\t\"default\": true\n\t}]\n}"},"url":"{{url}}/api/v2/service-providers/network-class-of-services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","network-class-of-services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e06ab782-349d-4238-9065-56607f7b2135","name":"Network Class of Service Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n\t\"services\": [{\n\t\t\"name\": \"NetworkClassOfService2\",\n\t\t\"description\": \"NetworkClassOfService2\",\n\t\t\"default\": false\n\t}, {\n\t\t\"name\": \"NetworkClassOfService3\",\n\t\t\"description\": \"NetworkClassOfService3\",\n\t\t\"default\": true\n\t}]\n}"},"url":"{{url}}/api/v2/service-providers/network-class-of-services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"222","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 29 Aug 2018 22:06:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"services\": [\n        {\n            \"name\": \"NetworkClassOfService2\",\n            \"description\": \"NetworkClassOfService2\",\n            \"default\": false\n        },\n        {\n            \"name\": \"NetworkClassOfService3\",\n            \"description\": \"NetworkClassOfService3\",\n            \"default\": true\n        }\n    ]\n}"}],"_postman_id":"1bc9327c-4680-42cb-810f-0c999ade4bb5"},{"name":"Group Network Class of Services","id":"73ad7987-a9e6-406a-81e0-70a701d8acba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/network-class-of-services?serviceProviderId=grp.odin&groupId=grp.ent","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","network-class-of-services"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"grp.odin"},{"key":"groupId","value":"grp.ent"}],"variable":[]}},"response":[{"id":"4276b265-fc34-43c7-8cae-8eb1b4c21be6","name":"Group Network Class of Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/network-class-of-services?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","network-class-of-services"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"166","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 30 Aug 2018 20:25:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"services\":[{\"name\":\"NetworkClassOfService1\",\"description\":\"NetworkClassOfService1\",\"default\":true}]}"}],"_postman_id":"73ad7987-a9e6-406a-81e0-70a701d8acba"},{"name":"Group Network Class of Service Select","id":"a485280a-da07-4e71-9c17-d7af99a98c87","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"name\": \"NetworkClassOfService1\"\n}"},"url":"{{url}}/api/v2/groups/network-class-of-services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","network-class-of-services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a67a3eb8-9ab0-4fb6-a99e-d6502a4c92af","name":"Network Class of Services Select","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"name\": \"NetworkClassOfService1\"\n}"},"url":"{{url}}/api/v2/groups/network-class-of-services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 29 Aug 2018 22:22:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a485280a-da07-4e71-9c17-d7af99a98c87"},{"name":"Group Network Class of Service","id":"bc6c9253-1984-41a7-b0ef-fc7c70efdbb0","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"services\": [{\n\t\t\"name\": \"NetworkClassOfService2\"\n\t}, {\n\t\t\"name\": \"NetworkClassOfService3\"\n\t}, {\n\t\t\"name\": \"NetworkClassOfService1\"\n\t}]\n}"},"url":"{{url}}/api/v2/groups/network-class-of-services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","network-class-of-services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4bfa2686-731b-4403-8b15-9bdbfa8f6b96","name":"Group Network Class of Services Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"services\": [{\n\t\t\"name\": \"NetworkClassOfService2\"\n\t}, {\n\t\t\"name\": \"NetworkClassOfService3\"\n\t}, {\n\t\t\"name\": \"NetworkClassOfService1\"\n\t}]\n}"},"url":"{{url}}/api/v2/groups/network-class-of-services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"344","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 30 Aug 2018 20:25:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.ent1\",\"groupId\":\"odin.mock.grp1\",\"services\":[{\"name\":\"NetworkClassOfService1\",\"description\":\"NetworkClassOfService1\",\"default\":true},{\"name\":\"NetworkClassOfService2\",\"description\":\"NetworkClassOfService2\",\"default\":false},{\"name\":\"NetworkClassOfService3\",\"description\":\"NetworkClassOfService3\",\"default\":false}]}"}],"_postman_id":"bc6c9253-1984-41a7-b0ef-fc7c70efdbb0"},{"name":"System Network Class of Services","id":"5b2147bd-db7b-4705-b52b-94c319f27fbb","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/network-class-of-services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","network-class-of-services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b4b37892-ae37-49ee-9b57-aa4925dad6a2","name":"System Network Class of Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/network-class-of-services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 20:00:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"services\": [\n        {\n            \"name\": \"NetworkClassOfService1\",\n            \"description\": \"NetworkClassOfService1\"\n        },\n        {\n            \"name\": \"NetworkClassOfService2\",\n            \"description\": \"NetworkClassOfService2\"\n        },\n        {\n            \"name\": \"NetworkClassOfService3\",\n            \"description\": \"NetworkClassOfService3\"\n        }\n    ]\n}"}],"_postman_id":"5b2147bd-db7b-4705-b52b-94c319f27fbb"},{"name":"System Network Class of Service","id":"f81cb11a-3318-422c-88db-f3c57c141407","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"NetworkClassOfService4\",\n\t\"description\":\"NetworkClassOfService4\",\n\t\"networkTranslationIndex\":\"4\",\n\t\"communicationBarringProfile0\":{\n\t\t\"name\":\"system.profile1\",\n\t\t\"isPrimary\":true\n\t},\n\t\"communicationBarringProfile1\":{\"isPrimary\":false},\n\t\"communicationBarringProfile2\":{\"isPrimary\":false},\n\t\"communicationBarringProfile3\":{\"isPrimary\":false},\n\t\"communicationBarringProfile4\":{\"isPrimary\":false},\n\t\"communicationBarringProfile5\":{\"isPrimary\":false},\n\t\"communicationBarringProfile6\":{\"isPrimary\":false},\n\t\"communicationBarringProfile7\":{\"isPrimary\":false},\n\t\"communicationBarringProfile8\":{\"isPrimary\":false},\n\t\"communicationBarringProfile9\":{\"isPrimary\":false}\n}"},"url":"{{url}}/api/v2/system/network-class-of-services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","network-class-of-services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8989c38c-8597-4fd1-a794-7749d1e34a55","name":"System Network Class of Service","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"NetworkClassOfService4\",\n\t\"description\":\"NetworkClassOfService4\",\n\t\"networkTranslationIndex\":\"4\",\n\t\"communicationBarringProfile0\":{\n\t\t\"name\":\"system.profile1\",\n\t\t\"isPrimary\":true\n\t},\n\t\"communicationBarringProfile1\":{\"isPrimary\":false},\n\t\"communicationBarringProfile2\":{\"isPrimary\":false},\n\t\"communicationBarringProfile3\":{\"isPrimary\":false},\n\t\"communicationBarringProfile4\":{\"isPrimary\":false},\n\t\"communicationBarringProfile5\":{\"isPrimary\":false},\n\t\"communicationBarringProfile6\":{\"isPrimary\":false},\n\t\"communicationBarringProfile7\":{\"isPrimary\":false},\n\t\"communicationBarringProfile8\":{\"isPrimary\":false},\n\t\"communicationBarringProfile9\":{\"isPrimary\":false}\n}"},"url":"{{url}}/api/v2/system/network-class-of-services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 20:01:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"f81cb11a-3318-422c-88db-f3c57c141407"},{"name":"System Network Class of Service","id":"4923ca1d-29d8-431d-97e4-83a61b7f71a0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/network-class-of-services?name=NetworkClassOfService4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","network-class-of-services"],"host":["{{url}}"],"query":[{"key":"name","value":"NetworkClassOfService4"}],"variable":[]}},"response":[{"id":"12193bb8-2ae0-43ed-856f-0eed94d2a7a5","name":"System Network Class of Service","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/system/network-class-of-services?name=NetworkClassOfService4","host":["{{url}}"],"path":["api","v2","system","network-class-of-services"],"query":[{"key":"name","value":"NetworkClassOfService4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 20:01:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"175"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"description\": \"NetworkClassOfService4\",\n    \"communicationBarringProfile0\": {\n        \"name\": \"system.profile1\",\n        \"isPrimary\": true\n    },\n    \"networkTranslationIndex\": 4,\n    \"name\": \"NetworkClassOfService4\"\n}"}],"_postman_id":"4923ca1d-29d8-431d-97e4-83a61b7f71a0"},{"name":"System Network Class of Service","id":"f32f5ba5-47e7-4b7b-b6ba-4c39f339128b","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"description\":\"NetworkClassOfService4\",\n\t\"communicationBarringProfile0\":{\n\t\t\"name\":\"system.profile1\",\"isPrimary\":true\n\t},\n\t\"networkTranslationIndex\":4,\n\t\"name\":\"NetworkClassOfService4\",\n\t\"newName\":\"NetworkClassOfService4\"\n}"},"url":"{{url}}/api/v2/system/network-class-of-services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","network-class-of-services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"88a8bdca-6e9d-48c7-9ea3-0a41156f9396","name":"System Network Class of Service","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"description\":\"NetworkClassOfService4\",\n\t\"communicationBarringProfile0\":{\n\t\t\"name\":\"system.profile1\",\"isPrimary\":true\n\t},\n\t\"networkTranslationIndex\":4,\n\t\"name\":\"NetworkClassOfService4\",\n\t\"newName\":\"NetworkClassOfService4\"\n}"},"url":"{{url}}/api/v2/system/network-class-of-services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 20:02:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"f32f5ba5-47e7-4b7b-b6ba-4c39f339128b"},{"name":"System Network Class of Service","id":"b1a21836-d859-4d8c-ba7e-239da3a6d185","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/network-class-of-services?name=NetworkClassOfService4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","network-class-of-services"],"host":["{{url}}"],"query":[{"key":"name","value":"NetworkClassOfService4"}],"variable":[]}},"response":[{"id":"8389100a-a252-417d-bfb5-27b0aac943e1","name":"System Network Class of Service","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/system/network-class-of-services?name=NetworkClassOfService4","host":["{{url}}"],"path":["api","v2","system","network-class-of-services"],"query":[{"key":"name","value":"NetworkClassOfService4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 20:02:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b1a21836-d859-4d8c-ba7e-239da3a6d185"},{"name":"System Network Class of Service Usage","id":"23bc43c6-546f-441b-a34f-797d4bd20eb1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/network-class-of-services/usage?name=NetworkClassOfService1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","network-class-of-services","usage"],"host":["{{url}}"],"query":[{"key":"name","value":"NetworkClassOfService1"}],"variable":[]}},"response":[{"id":"6883852b-9498-4802-ab43-8ae31d4e4422","name":"System Network Class of Service Usage","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/system/network-class-of-services/usage?name=NetworkClassOfService1","host":["{{url}}"],"path":["api","v2","system","network-class-of-services","usage"],"query":[{"key":"name","value":"NetworkClassOfService1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 20:02:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"611"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.template\",\n        \"serviceProviderName\": \"Enterprise Clone Template\",\n        \"isEnterprise\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"serviceProviderName\": \"Odin\",\n        \"isEnterprise\": true\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.clone.ent1\",\n        \"serviceProviderName\": \"odin.mock.clone.ent1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"serviceProviderName\": \"Odin Mock Enterprise 1 Name\",\n        \"isEnterprise\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.clone.test.1\",\n        \"serviceProviderName\": \"Odin Clone\",\n        \"isEnterprise\": true\n    },\n    {\n        \"serviceProviderId\": \"ent.template.test\",\n        \"serviceProviderName\": \"ent.template.test\",\n        \"isEnterprise\": true\n    }\n]"}],"_postman_id":"23bc43c6-546f-441b-a34f-797d4bd20eb1"}],"id":"6c4a1709-dd43-4c69-9001-cbbd7daf5de7","_postman_id":"6c4a1709-dd43-4c69-9001-cbbd7daf5de7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Night Forwarding","item":[{"name":"Group Night Forwarding","id":"5242484a-6a07-4aff-8627-6a255dbc7fab","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/night-forwarding?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","night-forwarding"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"74d4e2a7-612c-4afa-8e10-7300374db42c","name":"Group Night Forwarding","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/night-forwarding?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","night-forwarding"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:30:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"194"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"nightForwarding\": \"On\",\n    \"businessHours\": {\n        \"name\": \"Test123\",\n        \"level\": \"Group\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test1234\",\n        \"level\": \"Group\",\n        \"type\": \"Holiday\"\n    },\n    \"forwardToPhoneNumber\": 5133334444\n}"}],"_postman_id":"5242484a-6a07-4aff-8627-6a255dbc7fab"},{"name":"Group Night Forwarding","id":"5560eabe-5289-4e1b-84dc-09fb5c913d1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin.testxp\",\n\t\"groupId\":\"MayurGroup\",\n    \"nightForwarding\": \"On\",\n    \"businessHours\": {\n        \"name\": \"mayurSchedule\",\n        \"level\": \"Group\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"MayurHolidaytt\",\n        \"level\": \"Group\",\n        \"type\": \"Holiday\"\n    },\n    \"forwardToPhoneNumber\": 5133334444\n}"},"url":"{{url}}/api/v2/groups/night-forwarding","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","night-forwarding"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"01359b57-9ffe-41ee-838c-29e47993140e","name":"Group Night Forwarding","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n    \"nightForwarding\": \"On\",\n    \"businessHours\": {\n        \"name\": \"Test123\",\n        \"level\": \"Group\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Test1234\",\n        \"level\": \"Group\",\n        \"type\": \"Holiday\"\n    },\n    \"forwardToPhoneNumber\": 5133334444\n}"},"url":"{{url}}/api/v2/groups/night-forwarding"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:31:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5560eabe-5289-4e1b-84dc-09fb5c913d1e"},{"name":"User Night Forwarding","id":"40591ceb-1bd4-4ac5-9bd3-9df6e83b57be","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/night-forwarding?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","night-forwarding"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"cce3b30d-3861-44d7-9abb-2075acd31ae4","name":"User Night Forwarding","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/night-forwarding?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","night-forwarding"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"92","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 21:47:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"nightForwarding\":\"On\",\"groupNightForwarding\":\"Off\",\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"40591ceb-1bd4-4ac5-9bd3-9df6e83b57be"},{"name":"User Night Forwarding","id":"74e1bd9e-43a7-4314-9cef-cf5076f32afd","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"nightForwarding\": \"On\",\n    \"groupNightForwarding\": \"Off\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/night-forwarding","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","night-forwarding"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ecc97bfc-4c04-415e-806b-82b51baba979","name":"User Night Forwarding","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"nightForwarding\": \"On\",\n    \"groupNightForwarding\": \"Off\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/night-forwarding"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"nightForwarding\": \"On\",\n    \"groupNightForwarding\": \"Off\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 6873\n}"}],"_postman_id":"74e1bd9e-43a7-4314-9cef-cf5076f32afd"}],"id":"4f849e97-21a4-4ae1-984c-7eb58d2fac6b","_postman_id":"4f849e97-21a4-4ae1-984c-7eb58d2fac6b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Number Portability Announcement","item":[{"name":"User Number Portability Announcement","id":"749f7770-1044-4cf3-ae02-18480c5adbe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/number-portability-announcement?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","number-portability-announcement"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"b7613382-e2f2-4b2e-9588-f73403d190b2","name":"User Number Portability Announcement","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/number-portability-announcement?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","number-portability-announcement"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enable\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"749f7770-1044-4cf3-ae02-18480c5adbe9"},{"name":"User Number Portability Announcement","id":"3878eb7b-e3be-41ce-acaa-dd8c2e6c47ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"enable\": true\n}"},"url":"{{url}}/api/v2/users/number-portability-announcement","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","number-portability-announcement"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7867aad9-f311-4c2b-9179-3ad6b9cc709b","name":"User Number Portability Announcement","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"enable\": true\n}"},"url":"{{url}}/api/v2/users/number-portability-announcement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enable\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7418\n}"}],"_postman_id":"3878eb7b-e3be-41ce-acaa-dd8c2e6c47ca"}],"id":"77cedd97-57cc-4551-99fc-f262bd28c83c","_postman_id":"77cedd97-57cc-4551-99fc-f262bd28c83c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Number Portability Query","item":[{"name":"Service Provider Number Portability Query","id":"03c1f26f-6f72-4acd-b29e-53c39c6f608e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/number-portability-query?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","number-portability-query"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"2d876b2c-c80b-4e0e-802c-2e62660cf817","name":"Service Provider Number Portability Query","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/number-portability-query?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","number-portability-query"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"1234\",\n        \"4321\",\n        \"1111\",\n        \"2222\",\n        \"3333\",\n        \"4444\"\n    ]\n}"}],"_postman_id":"03c1f26f-6f72-4acd-b29e-53c39c6f608e"},{"name":"Service Provider Number Portability Query","id":"689dc871-ef9a-4e6f-b3a6-dcd06437b061","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"1234\",\n        \"4321\",\n        \"1111\",\n        \"3333\",\n        \"4444\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/number-portability-query","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","number-portability-query"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6abd558d-b429-4d1a-881b-3206060f518d","name":"Service Provider Number Portability Query","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"1234\",\n        \"4321\",\n        \"1111\",\n        \"3333\",\n        \"4444\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/number-portability-query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"1234\",\n        \"4321\",\n        \"1111\",\n        \"3333\",\n        \"4444\"\n    ]\n}"}],"_postman_id":"689dc871-ef9a-4e6f-b3a6-dcd06437b061"},{"name":"Service Provider Number Portability Query","id":"1f565f30-a67a-4300-9c3e-73af53f6c3b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": true,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"7777\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/number-portability-query","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","number-portability-query"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a553a880-a69d-45a2-b02d-6cf3ca37730f","name":"Service Provider Number Portability Query","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"5555\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/number-portability-query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"1234\",\n        \"4321\",\n        \"1111\",\n        \"2222\",\n        \"3333\",\n        \"4444\",\n        \"5555\"\n    ]\n}"}],"_postman_id":"1f565f30-a67a-4300-9c3e-73af53f6c3b7"},{"name":"Service Provider Number Portability Query","id":"94a84bdb-735f-4c54-be67-73c9498d9143","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"4444\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/number-portability-query","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","number-portability-query"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b3e4ebff-b805-4268-8b1d-35808835d174","name":"Service Provider Number Portability Query Copy","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"4444\"\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/number-portability-query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"enableNumberPortabilityQueryForOutgoingCalls\": true,\n    \"enableNumberPortabilityQueryForIncomingCalls\": false,\n    \"enableNumberPortabilityQueryForNetworkCallsOnly\": false,\n    \"digitPatterns\": [\n        \"1234\",\n        \"4321\",\n        \"1111\",\n        \"2222\",\n        \"3333\"\n    ]\n}"}],"_postman_id":"94a84bdb-735f-4c54-be67-73c9498d9143"}],"id":"cf846dbc-e146-40b0-8014-21c02e711359","_postman_id":"cf846dbc-e146-40b0-8014-21c02e711359","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Numbers","item":[{"name":"System Number Activation","id":"360b6d6e-5200-47cd-b35d-c233e76bd5a4","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/numbers/activation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","numbers","activation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9bae370b-44b9-46cd-a87f-36c12fe1175d","name":"System Number Activation","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/numbers/activation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 18:59:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"30"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"numberActivationMode\": \"Off\"\n}"}],"_postman_id":"360b6d6e-5200-47cd-b35d-c233e76bd5a4"}],"id":"2cf0f261-045d-4ddf-847f-1fc711b02461","_postman_id":"2cf0f261-045d-4ddf-847f-1fc711b02461","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Outlook Integration","item":[{"name":"User Outlook Integration","id":"b8e4b8a1-1bfe-4da8-bcbb-10344e5556d5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/outlook-integration?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","outlook-integration"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"15b39742-9fb4-47e1-a4f1-96a0c5508618","name":"User Outlook Integration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/outlook-integration?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","outlook-integration"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"108","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 18:21:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"contactRetrievalSelection\":\"Retrieve All Contacts\",\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"b8e4b8a1-1bfe-4da8-bcbb-10344e5556d5"},{"name":"User Outlook Integration","id":"52cb376d-d467-45ad-a024-8fc004b7b4b1","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"contactRetrievalSelection\": \"Retrieve All Contacts\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/outlook-integration","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","outlook-integration"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7176b5be-ac70-4d3a-9b33-5e9ec72d2b8c","name":"User Outlook Integration","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"contactRetrievalSelection\": \"Retrieve All Contacts\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/outlook-integration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"contactRetrievalSelection\": \"Retrieve All Contacts\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7355\n}"}],"_postman_id":"52cb376d-d467-45ad-a024-8fc004b7b4b1"}],"id":"f4864f61-8968-4ce3-9bd7-63446d50111a","_postman_id":"f4864f61-8968-4ce3-9bd7-63446d50111a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Passcode Rules","item":[{"name":"System Passcode Rules","id":"81859fda-8d9c-4cf3-b818-e1c7883f8ef8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/passcode-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","passcode-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"01cad76e-b0b3-4294-a6d2-8ffe4125132f","name":"System Passcode Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/passcode-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Oct 2018 23:42:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"623"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"disallowRepeatedDigits\": true,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": true,\n    \"disallowReversedUserNumber\": true,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": true,\n    \"minCodeLength\": 6,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": true,\n    \"loginDisabledNotifyEmailAddress\": \"webportallockout@microv-works.com\",\n    \"defaultPassword\": 5764\n}"}],"_postman_id":"81859fda-8d9c-4cf3-b818-e1c7883f8ef8"},{"name":"System Passcode Rules","id":"06750e1b-5d83-476d-9e9a-35512676d49d","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"disallowRepeatedDigits\": true,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": true,\n    \"disallowReversedUserNumber\": true,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": true,\n    \"minCodeLength\": 6,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": true,\n    \"loginDisabledNotifyEmailAddress\": \"webportallockout@microv-works.com\",\n    \"defaultPassword\": 5764\n}"},"url":"{{url}}/api/v2/system/passcode-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","passcode-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"06750e1b-5d83-476d-9e9a-35512676d49d"},{"name":"Service Provider Passcode Rules","id":"5c04a47a-a929-479d-bdf9-fb3b9670502f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/passcode-rules?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","passcode-rules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"bf8106b0-703a-4043-b8b1-0845a175a375","name":"Service Provider Passcode Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/passcode-rules?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","passcode-rules"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 22:04:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"637"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"disallowRepeatedDigits\": true,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": true,\n    \"disallowReversedUserNumber\": true,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": true,\n    \"minCodeLength\": 6,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": true,\n    \"loginDisabledNotifyEmailAddress\": \"webportallockout@microv-works.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"}],"_postman_id":"5c04a47a-a929-479d-bdf9-fb3b9670502f"},{"name":"Service Provider Passcode Rules","id":"2851bc5f-6327-42f9-9de0-bb9859a207b4","request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"disallowRepeatedDigits\": true,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": true,\n    \"disallowReversedUserNumber\": true,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": true,\n    \"minCodeLength\": 6,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": true,\n    \"loginDisabledNotifyEmailAddress\": \"webportallockout@microv-works.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/passcode-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","passcode-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6b5dfb5e-50c4-4fcb-921b-49ff4aa4ced0","name":"Service Provider Passcode Rules","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"disallowRepeatedDigits\": true,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": true,\n    \"disallowReversedUserNumber\": true,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": true,\n    \"minCodeLength\": 6,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": true,\n    \"loginDisabledNotifyEmailAddress\": \"webportallockout@microv-works.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/passcode-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 22:14:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"2851bc5f-6327-42f9-9de0-bb9859a207b4"},{"name":"Group Passcode Rules","id":"4834a8f1-9404-4185-b97a-1ee0f596f2dc","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/passcode-rules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","passcode-rules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"fcb6388e-540f-46f7-8e88-71bbf6e631ce","name":"Group Passcode Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/passcode-rules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","passcode-rules"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 19:13:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"623"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useRuleLevel\": \"System\",\n    \"disallowRepeatedDigits\": false,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": false,\n    \"disallowReversedUserNumber\": false,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": false,\n    \"minCodeLength\": 4,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"4834a8f1-9404-4185-b97a-1ee0f596f2dc"},{"name":"Group Passcode Rules","id":"98593614-30b3-413c-927a-19b6fb6ca37a","request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useRuleLevel\": \"System\",\n    \"disallowRepeatedDigits\": false,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": false,\n    \"disallowReversedUserNumber\": false,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": false,\n    \"minCodeLength\": 4,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/passcode-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","passcode-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ace2f45d-7b59-4c96-97c0-a04a38385b18","name":"Group Passcode Rules","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"useRuleLevel\": \"System\",\n    \"disallowRepeatedDigits\": false,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": false,\n    \"disallowReversedUserNumber\": false,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": false,\n    \"minCodeLength\": 4,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/passcode-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 19:15:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"98593614-30b3-413c-927a-19b6fb6ca37a"}],"id":"0b0dd2c2-df8a-483b-9157-7e919fbdeda6","_postman_id":"0b0dd2c2-df8a-483b-9157-7e919fbdeda6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Password Generate","item":[{"name":"Password Generate","id":"acca1d8d-17f3-41c1-b48c-2ea793574676","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/password/generate?serviceProviderId=ent.voipxp&groupId=pankajGrp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","password","generate"],"host":["{{url}}"],"query":[{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.voipxp"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"groupId","value":"pankajGrp"}],"variable":[]}},"response":[{"id":"e97b21e9-4d0e-4f25-a56d-3fe99add6b26","name":"Password Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/password/generate?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","password","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional"},{"key":"groupId","value":"grp.odin","description":"optional","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"password\": \"?+^8RZ40MeC3+:i.BQ\"\n}"}],"_postman_id":"acca1d8d-17f3-41c1-b48c-2ea793574676"},{"name":"Passwords Generate","id":"fa7c21a6-f7d3-47ca-96f1-ee6a29346b77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/passwords/generate?serviceProviderId=ent.odin&groupId=grp.odin&limit=5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","passwords","generate"],"host":["{{url}}"],"query":[{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"groupId","value":"grp.odin"},{"key":"limit","value":"5"}],"variable":[]}},"response":[{"id":"de10b337-be4c-4e4f-ab3d-9ae5e6090eb4","name":"Passwords Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/passwords/generate?serviceProviderId=ent.odin&groupId=grp.odin&limit=60","host":["{{url}}"],"path":["api","v2","passwords","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional"},{"key":"groupId","value":"grp.odin","description":"optional"},{"key":"limit","value":"60"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"passwords\": [\n        \".:2hnk:VYW80G[!5@-\",\n        \"?f-O6Ui$8*Nd3L[?2-\",\n        \"5wGV8M[@I%1OE4-(3.\",\n        \"I3%^O_8kC!9rSUG}4l\",\n        \"27@{P4[leD9A_xWNY^\",\n        \"4{)Y2Y.LM9G5c?7G}n\",\n        \"$38VZF[kP%#691U^1_\",\n        \"22T64[P-WE3_43gbe^\",\n        \"7@*5cnG(S1I6XApW[O\",\n        \"Pe9V4%@$3sb:R}5w}F\",\n        \"n:3a97%W]8Y4$TQKO*\",\n        \"V8]*YCJ#8^3gKr09sK\",\n        \"gW^5[97fJ0)p@(1TZX\",\n        \"X3M5z-?1_n:%OWR2I1\",\n        \"9vNMTZV6e7?WW5#_n-\",\n        \"AQ*8#$:baP7WIZ^*02\",\n        \"w781U?%F]u226-WDcH\",\n        \"ojK_XE%7#g^9J3E*4T\",\n        \"73Va(51^Gh.A0R0U2_\",\n        \"vXWBO4f)(82pR7?^Zy\",\n        \"14Z4o7_Rl5}!6_-[HD\",\n        \"fPy$2:*jJ[D59H7@2Q\",\n        \"Z_OBT7Hn315rE_}7r+\",\n        \"^W%1NDKq_8PX#^9Ra6\",\n        \"P:.R[361M(0}GdDA6s\",\n        \"WX3B?S_@5Cj?(20}^E\",\n        \"Ryhp97CC}1$Q)EN6@Y\",\n        \"3X+(B*Y]G_h%25%9LV\",\n        \"4[22k#_PV8(AFFX_9u\",\n        \"27]VHWWRB}1nfT*-4c\",\n        \"(eR30NJ50*WL:8m^D+\",\n        \"N.8(C7U9NvD$61^6:I\",\n        \"53S0sE71_6B_H!?(BO\",\n        \"YP6VM$*5!4j3}Oxy%9\",\n        \"Po^683[I+75_*ZwK$H\",\n        \":51[Im6}6PfV#4[Z(N\",\n        \"Up12k#:Gr{3}ED9_cQ\",\n        \"8*UjFD^6.HH4v?d9w*\",\n        \"%W5+584MkQ1$3cJ_lK\",\n        \"9G5-348[RTj.!w0)oP\",\n        \"p7}Y5--30]Z@Pt!DHf\",\n        \"_pY8o]#TMD5IH-4a{1\",\n        \"]!e5MW8J{w7:.VIp3@\",\n        \"{)D003(-37V.8lZh{S\",\n        \"0(CD$:.Yt50S8-PS27\",\n        \"u+{U4xS8)^0LWH7S[X\",\n        \":[d!s_+3@R60BNIl9^\",\n        \"#LA@m2[5.O@TkXP+68\",\n        \"3dy5{b7}$Ak_0$ZJW^\",\n        \"W?^3BN51M!uFIu{_9r\",\n        \"g5UYF5_k9V30NX+(?2\",\n        \"D7L{_!++1N}PuJ^46T\",\n        \"*#DD:6K.L2q0S:YO_1\",\n        \"XQ0@+7_G4P+6w3}WFL\",\n        \"70$FWLl1r{QZ*O:4)3\",\n        \"J1y3*q$UYN4T{o2p8@\",\n        \"w@uBv!HP*5924N:TZ%\",\n        \"n$6Qe_9+^X83aGWN_E\",\n        \"m2_?3Q1!@y69E}*LgG\",\n        \"5G2#T-YV.Cu!g84M2D\"\n    ]\n}"}],"_postman_id":"fa7c21a6-f7d3-47ca-96f1-ee6a29346b77"},{"name":"Passcode Generate","id":"107689cb-a058-4435-8b1d-d04544dc793f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/passcode/generate?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","passcode","generate"],"host":["{{url}}"],"query":[{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"aa53b8bd-ae95-4a51-a309-6125a66f9824","name":"Passcode Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/passcode/generate","host":["{{url}}"],"path":["api","v2","passcode","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional","disabled":true},{"key":"groupId","value":"grp.odin","description":"optional","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"passcode\": \"68204751\"\n}"}],"_postman_id":"107689cb-a058-4435-8b1d-d04544dc793f"},{"name":"Passcodes Generate","id":"86529d24-eb5b-4645-a0ac-6f7283b8e7f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/passcodes/generate?serviceProviderId=ent.odin&groupId=grp.odin&limit=45","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","passcodes","generate"],"host":["{{url}}"],"query":[{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"groupId","value":"grp.odin"},{"key":"limit","value":"45"}],"variable":[]}},"response":[{"id":"f89ce833-28cd-4350-91d4-8b768f707904","name":"Passcodes Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/passcodes/generate?serviceProviderId=ent.odin&groupId=grp.odin&limit=60","host":["{{url}}"],"path":["api","v2","passcodes","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional"},{"key":"groupId","value":"grp.odin","description":"optional"},{"key":"limit","value":"60"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"passcodes\": [\n        \"52184637\",\n        \"73586940\",\n        \"27648093\",\n        \"14608397\",\n        \"35810742\",\n        \"64907832\",\n        \"47692380\",\n        \"69307485\",\n        \"95013267\",\n        \"78210935\",\n        \"37019682\",\n        \"59023814\",\n        \"87390165\",\n        \"26357198\",\n        \"41067598\",\n        \"14709863\",\n        \"74251938\",\n        \"09782653\",\n        \"81034579\",\n        \"67531892\",\n        \"96258734\",\n        \"42795683\",\n        \"43980256\",\n        \"38247065\",\n        \"91485062\",\n        \"67085129\",\n        \"13805247\",\n        \"28715349\",\n        \"52689073\",\n        \"65130827\",\n        \"82704531\",\n        \"89741235\",\n        \"04583769\",\n        \"62780945\",\n        \"17564923\",\n        \"06143982\",\n        \"92076584\",\n        \"26978310\",\n        \"63810957\",\n        \"57946081\",\n        \"29570341\",\n        \"07639142\",\n        \"15826730\",\n        \"96321478\",\n        \"80453169\",\n        \"57892631\",\n        \"90247385\",\n        \"89713524\",\n        \"80154739\",\n        \"78563094\",\n        \"78149326\",\n        \"03125647\",\n        \"38241570\",\n        \"27438519\",\n        \"17235608\",\n        \"36849572\",\n        \"79418365\",\n        \"90148237\",\n        \"54172086\",\n        \"27498503\"\n    ]\n}"}],"_postman_id":"86529d24-eb5b-4645-a0ac-6f7283b8e7f5"},{"name":"Sip Password Generate","id":"4ee234b4-65b6-4b5b-b17a-628c792c0aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/sip-password/generate","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","sip-password","generate"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"683ef8bd-80a0-4a16-8dd5-ab75d08795c7","name":"Sip Password Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/sip-password/generate?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","sip-password","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"password\": \"8!01T_8Hk{R6\"\n}"},{"id":"8bc2d08d-dc65-4c5f-951f-fc0d5925bed6","name":"Sip Password Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/sip-password/generate","host":["{{url}}"],"path":["api","v2","sip-password","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"password\": \"87?ya*2QjH\"\n}"}],"_postman_id":"4ee234b4-65b6-4b5b-b17a-628c792c0aa9"},{"name":"Sip Passwords Generate","id":"3849258f-bd30-4f34-945d-7397fae46d38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/password/generate?limit=45","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","password","generate"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"key":"limit","value":"45"}],"variable":[]}},"response":[{"id":"253d5e95-9969-469e-8115-d95903cab63a","name":"Sip Passwords Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/password/generate?serviceProviderId=ent.odin&limit=45","host":["{{url}}"],"path":["api","v2","password","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional"},{"key":"limit","value":"45"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"passwords\": [\n        \"A9y2Rk[L:E2+94JW{6\",\n        \"#OZmK3-HI7s9).N4WJ\",\n        \"*_Z#6@J2cUBf3?-7W0\",\n        \"X{_z%O+06LXJVC7K19\",\n        \"!*DFJ1O(^B3041#:Zb\",\n        \"7#*6+)Q*A3:L6$e1UT\",\n        \"!w_PI-H691N7w+qBO^\",\n        \"@j4r2R[{HB2^pO7IL9\",\n        \"fT3{_!2n8NJN19:fF}\",\n        \"41nQT{Az6j2#%uE8!F\",\n        \"8T_9R%14?W5r1^8aA[\",\n        \"2R!lK3]K2:6n^DJbO1\",\n        \"_O]C26c{4Pg7A$*X.N\",\n        \"*Ilr1E0We_:G$qN59@\",\n        \"#%9cH$0B3QH0qJaZ{4\",\n        \".V$F2?(U_Lx6%Y_83R\",\n        \"q:85a4^xTZ0*C_HE!c\",\n        \"Zc-C+6]4N)5I0$eFC7\",\n        \"S9[87y$RZ3jU8C?A0_\",\n        \"SpYM([1yT2%5N2F0M*\",\n        \"_4W_8x?Q:6EH3(D9Ow\",\n        \"?Z$HqF2tZ6__S7+9z?\",\n        \"3]]5wP)M$^OD8#1DK?\",\n        \"?gPK16q7B7o@#.:0uQ\",\n        \"8%yFK*N{I5QUi^7$I9\",\n        \"S_X^810L)n@z3_Ia.e\",\n        \"WR*6h_{bA2*{HC4O(1\",\n        \"?@0%AWS13mOE_%bY-5\",\n        \"2ZN^*:M@89Sq+T1xD_\",\n        \":89]WM@5SqJ.B@s}h4\",\n        \"F%s2_68TKGH269^?DE\",\n        \"8GR+{d5_-t6a7AlNJY\",\n        \"-Lij5}8$KV2+IAd46X\",\n        \"7?orTIST(53*X21RA%\",\n        \"Y1![Pp0:_U4Bo_ZlI2\",\n        \"4oK.[2*Rt$NB8PH1VQ\",\n        \"19MDr}%03R*}U.A(7J\",\n        \"NJI[L.]o5341P82If(\",\n        \"FL49D^__5V?d:6{pI7\",\n        \"ZB28wCp-*P?lS!19D0\",\n        \"SC!XOI%u]97GO?I5$2\",\n        \"_UYPC4^Sc}3.Z86X+F\",\n        \"9diO_?QD7v166s.Y3!\",\n        \"KA4]r8$Y.#5:J9Nzwj\",\n        \"D0r.Q4K2x%G[8w_XP)\"\n    ]\n}"},{"id":"9a313130-a2bd-4530-b5d8-37688061979d","name":"Sip Passwords Generate","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/password/generate?limit=45","host":["{{url}}"],"path":["api","v2","password","generate"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"optional","disabled":true},{"key":"limit","value":"45"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"passwords\": [\n        \"!eW#N3HZ8K\",\n        \"{4#M7quUCp\",\n        \"BfV0E[:x^2\",\n        \"U%6{OgHGt_\",\n        \"VFxZ*pkq?0\",\n        \"05)AtXny2R\",\n        \"${r6I+NrHQ\",\n        \"I**cEW4XDw\",\n        \"B0VV:5ZR6h\",\n        \")(hX#f6*CV\",\n        \"Xt-Y2Yp8ut\",\n        \"f2$Ur]FE4H\",\n        \"U:ptPSCTQ3\",\n        \"G1U}poH_O.\",\n        \"Lmvf.51{tH\",\n        \"}FYCO8i!6v\",\n        \")GVxZL7}Cx\",\n        \"kq{65eEU6(\",\n        \"(Rcbf0qZBV\",\n        \"EMeFb+7vND\",\n        \"Db8%{9eO^q\",\n        \"X#4YQk7tj1\",\n        \")1s}i[WTMW\",\n        \"V49MKdA.FC\",\n        \"A-J0W]9?sG\",\n        \"F9GemfSh)5\",\n        \"N*(yE56j]T\",\n        \"#CzI.[Aj8t\",\n        \"W7WtyHs_{R\",\n        \"d5^U+n-Ny2\",\n        \"M]URk2uZ%-\",\n        \"59Nh@MD#qs\",\n        \"O^QIRFp9:Y\",\n        \"JiU9a*bM?P\",\n        \"x]OJ6KG0_Z\",\n        \"xE6EDti.U7\",\n        \"u-0xL3jbXk\",\n        \"Y-2NjAnVeM\",\n        \":[8b*OR80R\",\n        \"?D64T(FOdx\",\n        \"!{_5@a_uJX\",\n        \"8yZr[bba?J\",\n        \"i3V]V8T-xG\",\n        \"}IW0?s:fyD\",\n        \"_4Mq5jp{IL\"\n    ]\n}"}],"_postman_id":"3849258f-bd30-4f34-945d-7397fae46d38"}],"id":"8be39006-1e28-4133-9560-470a47e1212f","_postman_id":"8be39006-1e28-4133-9560-470a47e1212f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Password Rules","item":[{"name":"System Password Rules","id":"6d516513-23fa-4f82-a78b-39d610bda548","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/password-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","password-rules"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"odin.mock.ent1"},{"disabled":true,"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"1c10aa94-c881-4ba2-845f-efb108f261a8","name":"Group Password Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/password-rules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","password-rules"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 19:22:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"591"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"6d516513-23fa-4f82-a78b-39d610bda548"},{"name":"System Password Rules","id":"ded51c27-2718-4949-8739-c358288cef7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"rulesApplyTo\": \"System, Provisioning, Service Provider Administrator\",\n    \"allowWebAddExternalAuthenticationUsers\": false,\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": true,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": true,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": true,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": true,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 0,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1\n}"},"url":"{{url}}/api/v2/system/password-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","password-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c4ab6662-f1ba-452e-8bdd-e67425c9a8a0","name":"System Password Rules","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"rulesApplyTo\": \"System, Provisioning, Service Provider Administrator\",\n    \"allowWebAddExternalAuthenticationUsers\": false,\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": true,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": true,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": true,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": true,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 0,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1\n}"},"url":"{{url}}/api/v2/system/password-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 18 Aug 2020 14:27:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"639"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"rulesApplyTo\": \"System, Provisioning, Service Provider Administrator\",\n    \"allowWebAddExternalAuthenticationUsers\": false,\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": true,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": true,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": true,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": true,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 0,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1\n}"}],"_postman_id":"ded51c27-2718-4949-8739-c358288cef7b"},{"name":"Service Provider Password Rules","id":"d358b79c-795d-41ac-8ab3-c8338edd1220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/password-rules?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","password-rules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"87e96019-3c54-4f18-bc44-cee51e5a40d4","name":"Service Provider Password Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/password-rules?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","password-rules"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"rulesApplyTo\": \"Administrator\",\n    \"allowWebAddExternalAuthenticationUsers\": false,\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"d358b79c-795d-41ac-8ab3-c8338edd1220"},{"name":"Service Provider Password Rules","id":"2c07e446-6c43-450d-93b4-b9769959e2b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"rulesApplyTo\": \"Group Administrator and User External Authentication\",\n    \"allowWebAddExternalAuthenticationUsers\": false,\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/password-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","password-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fa34c094-f2aa-40f4-9e01-0f2f76a90f4d","name":"Service Provider Password Rules","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"rulesApplyTo\": \"Group Administrator and User External Authentication\",\n    \"allowWebAddExternalAuthenticationUsers\": false,\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/password-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 18 Aug 2020 14:27:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"675"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"rulesApplyTo\": \"Group Administrator and User External Authentication\",\n    \"allowWebAddExternalAuthenticationUsers\": false,\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"2c07e446-6c43-450d-93b4-b9769959e2b7"},{"name":"Group Password Rules","id":"7e0a2704-f2f6-4189-96b4-e45eb1bfb333","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/password-rules?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","password-rules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"2a70d4cc-9133-481c-a8a2-05b47d842a78","name":"Group Password Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/password-rules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","password-rules"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 19:22:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"591"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"7e0a2704-f2f6-4189-96b4-e45eb1bfb333"},{"name":"Group Password Rules","id":"f8b0f7f4-69a4-4b1e-b307-cbc915884abd","request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/password-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","password-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1ab7396b-af00-4a63-b640-941e1d4250b5","name":"Group Password Rules","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"},"url":"{{url}}/api/v2/groups/password-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 18 Aug 2020 14:22:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"579"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"disallowUserId\": false,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": false,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": false,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": false,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 6,\n    \"maxFailedLoginAttempts\": 5,\n    \"passwordExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": false,\n    \"disallowRulesModification\": false,\n    \"disallowPreviousPasswords\": false,\n    \"numberOfPreviousPasswords\": 1,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\"\n}"}],"_postman_id":"f8b0f7f4-69a4-4b1e-b307-cbc915884abd"}],"id":"6b6aa11f-2da3-451e-8a42-5fbedb31bb1a","_postman_id":"6b6aa11f-2da3-451e-8a42-5fbedb31bb1a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Personal Phone List","item":[{"name":"User Personal Phone Entries","id":"9f6edda3-9005-493b-bcfe-3f5ca091c8a1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/personal-phone-list?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","personal-phone-list"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"390a6020-27de-42a4-87ef-3a3d4ba53f0f","name":"User Personal Phone Entries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/personal-phone-list?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","personal-phone-list"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 23:19:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"105"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"entries\": [\n        {\n            \"name\": \"My Friend\",\n            \"phoneNumber\": \"5133334444\"\n        }\n    ]\n}"}],"_postman_id":"9f6edda3-9005-493b-bcfe-3f5ca091c8a1"},{"name":"User Personal Phone Entries","id":"fdf1b8d9-412e-460d-bf0f-674d4596ea76","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"entries\": [\n        {\n            \"name\": \"My Friend\",\n            \"phoneNumber\": \"5133334444\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/personal-phone-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","personal-phone-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e502bf86-c620-4a9e-b284-b8afa9d2d501","name":"User Personal Phone Entries","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"entries\": [\n        {\n            \"name\": \"My Friend\",\n            \"phoneNumber\": \"5133334444\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/personal-phone-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 23:20:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"fdf1b8d9-412e-460d-bf0f-674d4596ea76"},{"name":"User Personal Phone Entry","id":"90cc9049-1df1-44da-852f-c49d6042de2d","request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"name\": \"My Friend\",\n    \"newName\": \"My New Friend\",\n    \"phoneNumber\": \"5133334444\"\n}"},"url":"{{url}}/api/v2/users/personal-phone-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","personal-phone-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"49f04329-1f13-4284-a766-3e2f9565886b","name":"User Personal Phone Entry","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"name\": \"My Friend\",\n    \"newName\": \"My New Friend\",\n    \"phoneNumber\": \"5133334444\"\n}"},"url":"{{url}}/api/v2/users/personal-phone-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 23:22:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"90cc9049-1df1-44da-852f-c49d6042de2d"},{"name":"User Personal Phone Entries","id":"b96f5e2a-a513-4a24-a12f-cf07865e5a1c","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"entries\": [\n        { \"name\": \"My New Friend\" }\n    ]\n}"},"url":"{{url}}/api/v2/users/personal-phone-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","personal-phone-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"152b3508-6b09-4b1e-aa4a-bd8d2fb56a2d","name":"User Personal Phone Entries","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"entries\": [\n        { \"name\": \"My New Friend\" }\n    ]\n}"},"url":"{{url}}/api/v2/users/personal-phone-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 23:22:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b96f5e2a-a513-4a24-a12f-cf07865e5a1c"}],"id":"f455520c-4576-4241-a679-589e3c4d4a6a","_postman_id":"f455520c-4576-4241-a679-589e3c4d4a6a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Phone Directory","item":[{"name":"Enterprise Phone Directory","id":"2f410b57-ffb1-4b7a-bad8-232b587a2dfe","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/enterprises/phone-directory?serviceProviderId=odin.mock.ent1","description":"<p>Results contain the phone directory for an enterprise.  The directory includes all users in the enterprise and all entries in the enterprise common phone list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","enterprises","phone-directory"],"host":["{{url}}"],"query":[{"description":{"content":"<p>(service provider id)</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"56d64dea-49b3-45db-9938-d6b1758f33b5","name":"Enterprise Phone Directory","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/enterprises/phone-directory?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","enterprises","phone-directory"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","description":"(service provider id)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"mock.cc.1 (Call Center)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock.cc.1 (Call Center)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock.cc.1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Call Center\",\n        \"lastName\": \"mock.cc.1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"Mock AA1 (Auto Attendant)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"Mock AA1 (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"test-mock/aa1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"Mock AA1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"mock-aa-2 (Auto Attendant)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-aa-2 (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-aa-2\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"mock-aa-2\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"mock-aa-test-1 (Auto Attendant)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-aa-test-1 (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-aa-test-1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"mock-aa-test-1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"mock-mm-bridge-1 (Meet-Me Conferencing)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-mm-bridge-1 (Meet-Me Conferencing)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-mm-bridge-1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Meet-Me Conferencing\",\n        \"lastName\": \"mock-mm-bridge-1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"odin.mock.hg1 (Hunt Group)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"odin.mock.hg1 (Hunt Group)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"odin.mock.hg1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Hunt Group\",\n        \"lastName\": \"odin.mock.hg1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"odin.mock.paging1 (Group Paging)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"odin.mock.paging1 (Group Paging)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"odin.mock.paging1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Group Paging\",\n        \"lastName\": \"odin.mock.paging1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"pilot,pilot\",\n        \"number\": 9709580008,\n        \"extension\": \"0008\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"pilot,pilot\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-pilot-1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"pilot\",\n        \"lastName\": \"pilot\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"templateAA (Auto Attendant)\",\n        \"number\": 9709580006,\n        \"extension\": \"0006\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"templateAA (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"templateAA\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"templateAA\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/New_York\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User2last,User2first\",\n        \"number\": 9709580002,\n        \"extension\": \"0002\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User2last,User2first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580002,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User2first\",\n        \"lastName\": \"User2last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User3last,User3first\",\n        \"number\": 9709580003,\n        \"extension\": \"0003\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User3last,User3first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580003,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User3first\",\n        \"lastName\": \"User3last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User4last,User4first\",\n        \"number\": 9709580004,\n        \"extension\": \"0004\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User4last,User4first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580004,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User4first\",\n        \"lastName\": \"User4last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User5last,User5first\",\n        \"number\": 9709580005,\n        \"extension\": \"0005\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User5last,User5first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580005,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User5first\",\n        \"lastName\": \"User5last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"Voice Portal (Voice Portal)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"Voice Portal (Voice Portal)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"224374430_261921865_VMR\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Voice Messaging Group\",\n        \"lastName\": \"Voice Portal\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    }\n]"}],"_postman_id":"2f410b57-ffb1-4b7a-bad8-232b587a2dfe"},{"name":"Service Provider Phone Directory","id":"cfb55068-098b-4444-970d-c59b77388271","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/service-providers/phone-directory?serviceProviderId=odin.mock.ent1","description":"<p>Results contain the phone directory for an enterprise.  The directory includes all users in the enterprise and all entries in the enterprise common phone list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","phone-directory"],"host":["{{url}}"],"query":[{"description":{"content":"<p>(service provider id)</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"f760815f-fc4a-4178-a83b-af292598e82e","name":"Service Provider Phone Directory","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/phone-directory?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","phone-directory"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","description":"(service provider id)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"mock.cc.1 (Call Center)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock.cc.1 (Call Center)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock.cc.1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Call Center\",\n        \"lastName\": \"mock.cc.1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"Mock AA1 (Auto Attendant)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"Mock AA1 (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"test-mock/aa1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"Mock AA1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"mock-aa-2 (Auto Attendant)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-aa-2 (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-aa-2\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"mock-aa-2\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"mock-aa-test-1 (Auto Attendant)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-aa-test-1 (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-aa-test-1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"mock-aa-test-1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"mock-mm-bridge-1 (Meet-Me Conferencing)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-mm-bridge-1 (Meet-Me Conferencing)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-mm-bridge-1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Meet-Me Conferencing\",\n        \"lastName\": \"mock-mm-bridge-1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"odin.mock.hg1 (Hunt Group)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"odin.mock.hg1 (Hunt Group)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"odin.mock.hg1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Hunt Group\",\n        \"lastName\": \"odin.mock.hg1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"odin.mock.paging1 (Group Paging)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"odin.mock.paging1 (Group Paging)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"odin.mock.paging1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Group Paging\",\n        \"lastName\": \"odin.mock.paging1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"pilot,pilot\",\n        \"number\": 9709580008,\n        \"extension\": \"0008\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"pilot,pilot\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock-pilot-1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"pilot\",\n        \"lastName\": \"pilot\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"templateAA (Auto Attendant)\",\n        \"number\": 9709580006,\n        \"extension\": \"0006\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"templateAA (Auto Attendant)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"templateAA\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Auto Attendant\",\n        \"lastName\": \"templateAA\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/New_York\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User2last,User2first\",\n        \"number\": 9709580002,\n        \"extension\": \"0002\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User2last,User2first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580002,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User2first\",\n        \"lastName\": \"User2last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User3last,User3first\",\n        \"number\": 9709580003,\n        \"extension\": \"0003\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User3last,User3first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580003,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User3first\",\n        \"lastName\": \"User3last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User4last,User4first\",\n        \"number\": 9709580004,\n        \"extension\": \"0004\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User4last,User4first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580004,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User4first\",\n        \"lastName\": \"User4last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"User5last,User5first\",\n        \"number\": 9709580005,\n        \"extension\": \"0005\",\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"hiraganaName\": \"User5last,User5first\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9709580005,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"User5first\",\n        \"lastName\": \"User5last\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Edmonton\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": \"Arizona\",\n        \"zip\": null,\n        \"country\": null\n    },\n    {\n        \"name\": \"Voice Portal (Voice Portal)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"Voice Portal (Voice Portal)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"224374430_261921865_VMR\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Voice Messaging Group\",\n        \"lastName\": \"Voice Portal\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"America/Denver\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null\n    }\n]"}],"_postman_id":"cfb55068-098b-4444-970d-c59b77388271"},{"name":"Group Phone Directory","id":"3cb00482-cb62-41d8-b7b7-eae4d0658605","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/phone-directory?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","phone-directory"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"3d20b319-491c-4d96-b03a-3aba7f63aa2f","name":"Group Phone Directory","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/phone-directory?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","phone-directory"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 19:38:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"4071"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"mock.cc.1 (Call Center)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock.cc.1 (Call Center)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"mock.cc.1\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Call Center\",\n        \"lastName\": \"mock.cc.1\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": \"Call Center - Premium\"\n    },\n    {\n        \"name\": \"mock-2000,mock-2000\",\n        \"number\": 9589582000,\n        \"extension\": 2000,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-2000,mock-2000\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9589582000,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"mock-2000\",\n        \"lastName\": \"mock-2000\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock-2001,mock-2001\",\n        \"number\": 9589582001,\n        \"extension\": 2001,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-2001,mock-2001\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9589582001,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"mock-2001\",\n        \"lastName\": \"mock-2001\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock-2002,mock-2002\",\n        \"number\": 9589582002,\n        \"extension\": 2002,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-2002,mock-2002\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9589582002,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"mock-2002\",\n        \"lastName\": \"mock-2002\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock-2003,mock-2003\",\n        \"number\": 9589582003,\n        \"extension\": 2003,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-2003,mock-2003\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9589582003,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"mock-2003\",\n        \"lastName\": \"mock-2003\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock-2004,mock-2004\",\n        \"number\": 9589582004,\n        \"extension\": 2004,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"mock-2004,mock-2004\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": 9589582004,\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"mock-2004\",\n        \"lastName\": \"mock-2004\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"odin.mock.grp1-Default (Collaborate - Audio)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"odin.mock.grp1-Default (Collaborate - Audio)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"odin.mock.ent1-odin.mock.grp1-Default\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Collaborate - Audio\",\n        \"lastName\": \"odin.mock.grp1-Default\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": \"Collaborate - Sharing\"\n    },\n    {\n        \"name\": \"Voice Portal (Voice Portal)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"hiraganaName\": \"Voice Portal (Voice Portal)\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"yahooId\": null,\n        \"userId\": \"156902679_128205304_VMR\",\n        \"iMPId\": null,\n        \"isVirtualOn-NetUser\": false,\n        \"firstName\": \"Voice Messaging Group\",\n        \"lastName\": \"Voice Portal\",\n        \"pager\": null,\n        \"title\": null,\n        \"timeZone\": \"US/Eastern\",\n        \"location\": null,\n        \"addressLine1\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"serviceName\": \"Voice Messaging Group\"\n    }\n]"}],"_postman_id":"3cb00482-cb62-41d8-b7b7-eae4d0658605"},{"name":"User Phone Directory","id":"e504e4fb-8625-4555-ab10-f9293c572ef8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/phone-directory?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","phone-directory"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"fb41e5a9-504f-44a3-bbbe-b2fe781fa396","name":"User Phone Directory","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/phone-directory?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","phone-directory"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 23:25:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2354"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"mock-2004,mock-2004\",\n        \"number\": 9589582004,\n        \"extension\": 2004,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"mock-2004\",\n        \"lastName\": \"mock-2004\",\n        \"userId\": 9589582004,\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock-2001,mock-2001\",\n        \"number\": 9589582001,\n        \"extension\": 2001,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"mock-2001\",\n        \"lastName\": \"mock-2001\",\n        \"userId\": 9589582001,\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock-2000,mock-2000\",\n        \"number\": 9589582000,\n        \"extension\": 2000,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"mock-2000\",\n        \"lastName\": \"mock-2000\",\n        \"userId\": 9589582000,\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock.cc.1 (Call Center)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"Call Center\",\n        \"lastName\": \"mock.cc.1\",\n        \"userId\": \"mock.cc.1\",\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": \"Call Center - Premium\"\n    },\n    {\n        \"name\": \"odin.mock.grp1-Default (Collaborate - Audio)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"Collaborate - Audio\",\n        \"lastName\": \"odin.mock.grp1-Default\",\n        \"userId\": \"odin.mock.ent1-odin.mock.grp1-Default\",\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": \"Collaborate - Sharing\"\n    },\n    {\n        \"name\": \"mock-2002,mock-2002\",\n        \"number\": 9589582002,\n        \"extension\": 2002,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"mock-2002\",\n        \"lastName\": \"mock-2002\",\n        \"userId\": 9589582002,\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"mock-2003,mock-2003\",\n        \"number\": 9589582003,\n        \"extension\": 2003,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"mock-2003\",\n        \"lastName\": \"mock-2003\",\n        \"userId\": 9589582003,\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": null\n    },\n    {\n        \"name\": \"Voice Portal (Voice Portal)\",\n        \"number\": null,\n        \"extension\": null,\n        \"mobile\": null,\n        \"emailAddress\": null,\n        \"department\": null,\n        \"firstName\": \"Voice Messaging Group\",\n        \"lastName\": \"Voice Portal\",\n        \"userId\": \"156902679_128205304_VMR\",\n        \"title\": null,\n        \"iMPId\": null,\n        \"myRoomRoomId\": null,\n        \"myRoomBridgeId\": null,\n        \"serviceName\": \"Voice Messaging Group\"\n    }\n]"}],"_postman_id":"e504e4fb-8625-4555-ab10-f9293c572ef8"}],"id":"ab79c5c5-faaf-4e04-b1a9-a3fee70176fb","_postman_id":"ab79c5c5-faaf-4e04-b1a9-a3fee70176fb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Physical Location","item":[{"name":"User Physical Location","id":"93abeb2c-0fd5-4e84-8dca-e269dccccd2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/physical-location?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","physical-location"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"cb7d99df-2203-44e5-b519-5fb74d804354","name":"User Physical Location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/physical-location?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","physical-location"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},{"id":"d4635b55-1138-41a7-8645-4424d51499ae","name":"User Preferred Carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/preferred-carrier?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","preferred-carrier"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"intraLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"interLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"internationalCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"93abeb2c-0fd5-4e84-8dca-e269dccccd2a"},{"name":"User Physical Location","id":"fca03a23-7b25-48de-926c-da6646fe4184","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"isActive\": true\n}"},"url":"{{url}}/api/v2/users/physical-location","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","physical-location"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a23e9277-5c97-4efb-8be4-29c20ac0cae5","name":"User Physical Location","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"isActive\": true\n}"},"url":"{{url}}/api/v2/users/physical-location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7529\n}"}],"_postman_id":"fca03a23-7b25-48de-926c-da6646fe4184"}],"id":"fd26a221-405d-46db-8f03-d5923afd76ee","_postman_id":"fd26a221-405d-46db-8f03-d5923afd76ee","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Polycom Phone Services","item":[{"name":"User Polycom Phone Services","id":"a9668c67-5a0f-41c7-ba9c-e220a9df5c7e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/users/polycom-phone-services?userId=2174592082@voicecci.net&deviceLevel=Group&deviceName=ZZZ19000110-01_2082_Yeal","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","polycom-phone-services"],"host":["{{url}}"],"query":[{"key":"userId","value":"2174592082@voicecci.net"},{"key":"deviceLevel","value":"Group"},{"key":"deviceName","value":"ZZZ19000110-01_2082_Yeal"}],"variable":[]}},"response":[],"_postman_id":"a9668c67-5a0f-41c7-ba9c-e220a9df5c7e"},{"name":"User Polycom Phone Services","id":"7ec2b085-2bb8-4704-b54e-750ad3f81513","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9709580001@microv-works.com\",\n    \"deviceName\": \"9709580001-dev1\",\n    \"deviceLevel\": \"Group\",\n    \"integratePhoneDirectoryWithBroadWorks\": true,\n    \"includeUserPersonalPhoneListInDirectory\": true,\n    \"includeGroupCustomContactDirectoryInDirectory\": true,\n    \"groupCustomContactDirectory\": \"tester\"\n}"},"url":"{{url}}/api/v2/users/polycom-phone-services?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","polycom-phone-services"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[],"_postman_id":"7ec2b085-2bb8-4704-b54e-750ad3f81513"}],"id":"7172c873-413e-4856-8029-d0b64c428384","_postman_id":"7172c873-413e-4856-8029-d0b64c428384","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Pre Alerting","item":[{"name":"User Pre Alerting","id":"23567c67-6243-4598-bb06-e8ed002b58a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/pre-alerting?userId=19871514002@odinapi.net","description":"<h3 id=\"get-user-pre-alert-announcement---details-with-criteria\">Get User Pre Alert Announcement - Details with Criteria</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks User Id </code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false</code></td>\n</tr>\n<tr>\n<td><code>audioSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Default or File or URL</code></td>\n</tr>\n<tr>\n<td><code>audioFile</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>file object or url string</code></td>\n</tr>\n<tr>\n<td><code>file</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>Media file object</code><br /><code>Contains name, mediaFileType, and level attributes</code><br />(required for File selection)</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Name of audio file</code><br />(required for file object)</td>\n</tr>\n<tr>\n<td><code>mediaFileType</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The media type of media data.</code><br />(required for file object)<br />-  WMA - Windows Media Audio file<br />-  WAV - A WAV file<br />- 3GP - A 3GP file<br />- MOV - A MOV file using a H.263 or H.264 codec.</td>\n</tr>\n<tr>\n<td><code>level</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The type of Announcement, the possible values are \"Group\" for a group level announcement or \"User\" for a user level announcement.</code><br />(required for file object)<br />-  Group<br />-  User</td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Media url string</code><br />(required for URL selection)</td>\n</tr>\n<tr>\n<td><code>videoSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Default or File or URL</code></td>\n</tr>\n<tr>\n<td><code>videoFile</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>file object or url string</code></td>\n</tr>\n<tr>\n<td><code>file</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>Media file object</code><br /><code>Contains name, mediaFileType, and level attributes</code><br />(required for File selection)</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Name of video file</code><br />(required for file object)</td>\n</tr>\n<tr>\n<td><code>mediaFileType</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The media type of media data.</code><br />(required for file object)<br />-  WMA - Windows Media Audio file<br />-  WAV - A WAV file<br />- 3GP - A 3GP file<br />- MOV - A MOV file using a H.263 or H.264 codec.</td>\n</tr>\n<tr>\n<td><code>level</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The type of Announcement, the possible values are \"Group\" for a group level announcement or \"User\" for a user level announcement.</code><br />(required for file object)<br />-  Group<br />-  User</td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Media url string</code><br />(required for URL selection)</td>\n</tr>\n<tr>\n<td><code>criteria</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>It's an array of objects </code><br /><code>Can be an empty array</code><br /><code>Each criteria object will have the following attributes</code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>criteriaName</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Name of the criteria </code></td>\n</tr>\n<tr>\n<td><code>timeSchedule</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Every Day All Day</code><br />- Based on Schedules save in BW</td>\n</tr>\n<tr>\n<td><code>blacklisted</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>holidaySchedule</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>None</code><br />- Based on Holiday Schedules save in BW</td>\n</tr>\n<tr>\n<td><code>fromDnCriteria</code></td>\n<td><code>object</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>includeAnonymousCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>includeUnavailableCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>phoneNumbers</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Empty or array of phone numbers </code></td>\n</tr>\n<tr>\n<td><code>callsFrom</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Array of call from attributes</code><br /><code>Array can be empty </code><br /><code>Values can include</code><br />- Any private number<br />- Any unavailable number<br />- phone number</td>\n</tr>\n<tr>\n<td><code>callsToNumber</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Array of call to Numbers Objects</code><br /><code>Array can be empty </code></td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Calls to number type: Values</code><br />- Primary<br />-  Alternate# (from 1 to 17)<br />-  BroadWorks Mobility</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Phone number</code><br /><strong>Not required</strong> <code>for Primary type (above)</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Phone extension</code></td>\n</tr>\n<tr>\n<td><code>callToType</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Comma Separated list of callsToNumber-&gt;type</code></td>\n</tr>\n<tr>\n<td><code>callToNumber</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Comma Separated list of callsToNumber-&gt;number</code></td>\n</tr>\n<tr>\n<td><code>callToExtension</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Comma Separated list of callsToNumber-&gt;extension</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","pre-alerting"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"ab9d5c4a-b9e4-4ab2-9493-c5e63875039a","name":"User Pre Alerting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/pre-alerting?userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","pre-alerting"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 18:53:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1307"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"audioSelection\": \"Default\",\n    \"videoSelection\": \"Default\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"pre-alert-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514002\"\n                ]\n            },\n            \"callsFrom\": [\n                \"All calls\"\n            ],\n            \"callToNumber\": \"9871514012,9871514002\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \"4012,4002\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871514012\",\n                    \"extension\": \"4012\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"9871514002\",\n                    \"extension\": \"4002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"pre-alert-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514002\"\n                ]\n            },\n            \"callsFrom\": [\n                \"All calls\"\n            ],\n            \"callToNumber\": \"9871514002,9871514012,3213214002\",\n            \"callToType\": \"Primary,Alternate1,BroadWorks Mobility\",\n            \"callToExtension\": \"4002,4012,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"9871514002\",\n                    \"extension\": \"4002\"\n                },\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871514012\",\n                    \"extension\": \"4012\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\",\n                    \"extension\": \"\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"23567c67-6243-4598-bb06-e8ed002b58a9"},{"name":"User Pre Alerting","id":"c48d1c6c-da39-4153-9ff7-e8185d770dfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"isActive\": false,\n\t\"audioSelection\": \"URL\",\n\t\"audioFile\": {\n\t\t\"file\": {\n\t\t\t\"name\": \"aa1.wav\",\n\t\t\t\"mediaFileType\": \"WAV\",\n\t\t\t\"level\": \"User\"\n\t\t},\n\t\t\"url\": \"http://google.com/voice/12121212\"\n\t},\n\t\"videoSelection\": \"Default\",\n\t\"criteriaActivation\": [\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-1\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-2\",\n\t\t\t\"isActive\": true\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting","description":"<h3 id=\"modify-the-users-pre-alerting-service-setting\">Modify the user's pre-alerting service setting.</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks User Id </code></td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>audioSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Default or File or URL</code></td>\n</tr>\n<tr>\n<td><code>audioFile</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>file object or url string</code></td>\n</tr>\n<tr>\n<td><code>file</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>Media file object</code><br /><code>Contains name, mediaFileType, and level attributes</code><br />(required for File selection)</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Name of audio file</code><br />(required for file object)</td>\n</tr>\n<tr>\n<td><code>mediaFileType</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The media type of media data.</code><br />(required for file object)<br />-  WMA - Windows Media Audio file<br />-  WAV - A WAV file<br />- 3GP - A 3GP file<br />- MOV - A MOV file using a H.263 or H.264 codec.</td>\n</tr>\n<tr>\n<td><code>level</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The type of Announcement, the possible values are \"Group\" for a group level announcement or \"User\" for a user level announcement.</code><br />(required for file object)<br />-  Group<br />-  User</td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Media url string</code><br />(required for URL selection)</td>\n</tr>\n<tr>\n<td><code>videoSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Default or File or URL</code></td>\n</tr>\n<tr>\n<td><code>videoFile</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>file object or url string</code></td>\n</tr>\n<tr>\n<td><code>file</code></td>\n<td><code>object</code></td>\n<td><code>optional</code></td>\n<td><code>Media file object</code><br /><code>Contains name, mediaFileType, and level attributes</code><br />(required for File selection)</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Name of video file</code><br />(required for file object)</td>\n</tr>\n<tr>\n<td><code>mediaFileType</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The media type of media data.</code><br />(required for file object)<br />-  WMA - Windows Media Audio file<br />-  WAV - A WAV file<br />- 3GP - A 3GP file<br />- MOV - A MOV file using a H.263 or H.264 codec.</td>\n</tr>\n<tr>\n<td><code>level</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>The type of Announcement, the possible values are \"Group\" for a group level announcement or \"User\" for a user level announcement.</code><br />(required for file object)<br />-  Group<br />-  User</td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Media url string</code><br />(required for URL selection)</td>\n</tr>\n<tr>\n<td><code>criteria</code></td>\n<td><code>array</code></td>\n<td><code>optional</code></td>\n<td><code>It's an array of objects </code><br /><code>Can be an empty array</code><br /><code>Each criteria object will have the following attributes</code></td>\n</tr>\n<tr>\n<td><code>criteriaName</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Name of the criteria </code><br />(required for setting criteria active or inactive)</td>\n</tr>\n<tr>\n<td><code>isActive</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code><br />(required for setting criteria active or inactive)</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>See Response for GET User Pre Alert /users/pre-alerting\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","pre-alerting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b47d4191-7d36-43fe-b473-3756bd6a85b5","name":"User Pre Alerting","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"4002@parkbenchsolutions.com\",\n\t\"isActive\": false,\n\t\"audioSelection\": \"File\",\n\t\"audioFile\": {\n\t\t\"file\": {\n\t\t\t\"name\": \"aa1.wav\",\n\t\t\t\"mediaFileType\": \"WAV\",\n\t\t\t\"level\": \"User\"\n\t\t},\n\t\t\"url\": \"http://google.com\"\n\t},\n\t\"videoSelection\": \"Default\",\n\t\"criteriaActivation\": [\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-4\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alerting-1\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-2\",\n\t\t\t\"isActive\": false\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Jul 2020 17:33:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2242"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"audioSelection\": \"File\",\n    \"videoSelection\": \"Default\",\n    \"audioFile\": {\n        \"file\": {\n            \"name\": \"aa1.wav\",\n            \"mediaFileType\": \"WAV\",\n            \"level\": \"User\"\n        },\n        \"url\": \"http://google.com\"\n    },\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"pre-alert-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514002\",\n                    \"5133334444\",\n                    \"5133335555\"\n                ]\n            },\n            \"callsFrom\": [\n                \"Any private number\",\n                \"Any unavailable number\",\n                \"19871514001...\"\n            ],\n            \"callToNumber\": \"5135564002,5134004002,4141114002\",\n            \"callToType\": \"Alternate1,Primary,BroadWorks Mobility\",\n            \"callToExtension\": \",40020,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5135564002\",\n                    \"extension\": \"\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"5134004002\",\n                    \"extension\": \"40020\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"4141114002\",\n                    \"extension\": \"\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"pre-alert-4\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514002\",\n                    \"5133334444\",\n                    \"5133337777\",\n                    \"5133335555\"\n                ]\n            },\n            \"callsFrom\": [\n                \"Any private number\",\n                \"Any unavailable number\",\n                \"19871514001...\"\n            ],\n            \"callToNumber\": \"5135564002,5134004002,4141114002\",\n            \"callToType\": \"Alternate1,Primary,BroadWorks Mobility\",\n            \"callToExtension\": \",40020,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5135564002\",\n                    \"extension\": \"\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"5134004002\",\n                    \"extension\": \"40020\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"4141114002\",\n                    \"extension\": \"\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"pre-alerting-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514004\"\n                ]\n            },\n            \"callsFrom\": [\n                \"All calls\"\n            ],\n            \"callToNumber\": \"5135564002,5134004002\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \",40020\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5135564002\",\n                    \"extension\": \"\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"5134004002\",\n                    \"extension\": \"40020\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"c48d1c6c-da39-4153-9ff7-e8185d770dfb"},{"name":"User Pre Alerting Criteria","id":"3a678276-22c2-41c3-879e-c0a87976322d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/pre-alerting/criteria?userId=19871514002@odinapi.net&criteriaName=pre-alert-1","description":"<h3 id=\"get-user-pre-alert-announcement-for-one-criteria\">Get User Pre Alert Announcement for one Criteria</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks User Id </code></td>\n</tr>\n<tr>\n<td><code>criteriaName</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Name of criteria </code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>blacklisted</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteria</code></td>\n<td><code>object</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>includeAnonymousCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>includeUnavailableCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>phoneNumbers</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Empty or array of phone numbers </code></td>\n</tr>\n<tr>\n<td><code>userId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks User Id </code></td>\n</tr>\n<tr>\n<td><code>criteriaName</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Name of the criteria </code></td>\n</tr>\n<tr>\n<td><code>callsToNumber</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Array of call to Numbers Objects</code><br /><code>Array can be empty </code></td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Calls to number type: Values</code><br />- Primary<br />-  Alternate# (from 1 to 17)<br />-  BroadWorks Mobility</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Phone number</code><br /><strong>Not required</strong> <code>for Primary type (above)</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Phone extension</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","pre-alerting","criteria"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"},{"key":"criteriaName","value":"pre-alert-1"}],"variable":[]}},"response":[{"id":"5cd03e89-4db8-429d-b0c4-7f524491ecbd","name":"User Pre Alerting Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/pre-alerting/criteria?userId=19871514002@odinapi.net&criteriaName=pre-alert-1","host":["{{url}}"],"path":["api","v2","users","pre-alerting","criteria"],"query":[{"key":"userId","value":"19871514002@odinapi.net"},{"key":"criteriaName","value":"pre-alert-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 18:56:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"390"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": true,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"19871514001\",\n            \"19871514002\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"pre-alert-1\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        }\n    ]\n}"}],"_postman_id":"3a678276-22c2-41c3-879e-c0a87976322d"},{"name":"User Pre Alerting Criteria","id":"ee81cb1a-5344-41e7-8a36-57a559a96a8c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"blacklisted\": true,\n\t\"criteriaName\": \"pre-alert-1\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Any\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": false,\n\t\t\"phoneNumbers\": [\n\t\t\t\"19871514001\",\n\t\t\t\"19871514002\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"9871514002\",\n\t\t\t\"extension\": \"4002\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"9871514012\",\n\t\t\t\"extension\": \"4012\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"3213214002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting/criteria","description":"<h3 id=\"add-a-criteria-to-the-users-pre-alerting-service\">Add a criteria to the user's pre-alerting service.</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks User Id </code></td>\n</tr>\n<tr>\n<td><code>blacklisted</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>criteriaName</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Name of criteria </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteria</code></td>\n<td><code>object</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>includeAnonymousCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>includeUnavailableCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>phoneNumbers</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Empty or array of phone numbers </code></td>\n</tr>\n<tr>\n<td><code>callsToNumber</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Array of call to Numbers Objects</code><br /><code>Array can be empty </code></td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Calls to number type: Values</code><br />- Primary<br />-  Alternate# (from 1 to 17)<br />-  BroadWorks Mobility</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Phone number</code><br /><strong>Not required</strong> <code>for Primary type (above)</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Phone extension</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>See Response for GET User Pre Alert Criteria /users/pre-alerting/criteria\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","pre-alerting","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7e5e86aa-2936-4aa4-a9ce-327159bcc377","name":"User Pre Alerting Criteria","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":true},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"blacklisted\": true,\n\t\"criteriaName\": \"pre-alert-1\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Any\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": false,\n\t\t\"phoneNumbers\": [\n\t\t\t\"19871514001\",\n\t\t\t\"19871514002\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        },\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 18:53:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"443"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": true,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"19871514001\",\n            \"19871514002\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"pre-alert-2\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        },\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"}],"_postman_id":"ee81cb1a-5344-41e7-8a36-57a559a96a8c"},{"name":"User Pre Alerting Criteria","id":"c0bb7247-d54e-4c17-849f-9624c66124fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"blacklisted\": true,\n\t\"criteriaName\": \"pre-alert-2\",\n\t\"newCriteriaName\": \"pre-alert-3\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"19871514001\",\n\t\t\t\"19871514002\",\n\t\t\t\"5133334444\",\n\t\t\t\"5133337777\",\n\t\t\t\"5133335555\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"5135564002\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"5134004002\",\n\t\t\t\"extension\": \"40020\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"3213214002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting/criteria","description":"<h3 id=\"modify-a-criteria-for-the-users-pre-alerting-service\">Modify a criteria for the user's pre-alerting service.</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks User Id </code></td>\n</tr>\n<tr>\n<td><code>blacklisted</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>criteriaName</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Name of old criteria </code></td>\n</tr>\n<tr>\n<td><code>newCriteriaName</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Name of new criteria </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteria</code></td>\n<td><code>object</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>includeAnonymousCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>includeUnavailableCallers</code></td>\n<td><code>boolean</code></td>\n<td><code>required</code></td>\n<td><code>true or false </code></td>\n</tr>\n<tr>\n<td><code>fromDnCriteriaSelection</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Any or Specifice Only </code></td>\n</tr>\n<tr>\n<td><code>phoneNumbers</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Empty or array of phone numbers </code></td>\n</tr>\n<tr>\n<td><code>callsToNumber</code></td>\n<td><code>array</code></td>\n<td><code>required</code></td>\n<td><code>Array of call to Numbers Objects</code><br /><code>Array can be empty </code></td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Calls to number type: Values</code><br />- Primary<br />-  Alternate# (from 1 to 17)<br />-  BroadWorks Mobility</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Phone number</code><br /><strong>Not required</strong> <code>for Primary type (above)</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>string</code></td>\n<td><code>optional</code></td>\n<td><code>Phone extension</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>See Response for GET User Pre Alert Criteria /users/pre-alerting/criteria\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","pre-alerting","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03e602b9-63e2-448d-b620-cff0645cd320","name":"User Pre Alerting Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"blacklisted\": true,\n\t\"criteriaName\": \"pre-alert-2\",\n\t\"newCriteriaName\": \"pre-alert-3\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"19871514001\",\n\t\t\t\"19871514002\",\n\t\t\t\"5133334444\",\n\t\t\t\"5133337777\",\n\t\t\t\"5133335555\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"5135564002\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"5134004002\",\n\t\t\t\"extension\": \"40020\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"3213214002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 19:05:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"492"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": true,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"19871514001\",\n            \"19871514002\",\n            \"5133334444\",\n            \"5133337777\",\n            \"5133335555\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"pre-alert-3\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"}],"_postman_id":"c0bb7247-d54e-4c17-849f-9624c66124fc"},{"name":"User Pre Alerting Criteria","id":"c32af8b6-6dc5-4065-a57d-227c5d0eeb37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"pre-alert-3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/pre-alerting/criteria","description":"<h3 id=\"delete-a-criteria-from-the-users-pre-alerting-service\">Delete a criteria from the user's pre-alerting service.</h3>\n<h4 id=\"request\">Request:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userId</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>BroadWorks User Id </code></td>\n</tr>\n<tr>\n<td><code>criteriaName</code></td>\n<td><code>string</code></td>\n<td><code>required</code></td>\n<td><code>Name of old criteria </code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>See Response for GET User Pre Alert Criteria /users/pre-alerting/criteria - This is the criteria that was just deleted.\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","pre-alerting","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4b652f3d-60c6-4539-b475-2d1e9a4ad338","name":"User Pre Alerting Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"pre-alert-3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/pre-alerting/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 19:06:33 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"492"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": true,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"19871514001\",\n            \"19871514002\",\n            \"5133334444\",\n            \"5133337777\",\n            \"5133335555\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"pre-alert-3\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"}],"_postman_id":"c32af8b6-6dc5-4065-a57d-227c5d0eeb37"},{"name":"User Pre Alerting -test","id":"c39c62d0-97bf-4200-b36d-d69cdb81ae83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514011@odinapi.net\",\n\t\"isActive\": false,\n\t\"audioSelection\": \"URL\",\n\t\"audioFile\": {\n\t\t\"file\": {\n\t\t\t\"name\": \"aa1.wav\",\n\t\t\t\"mediaFileType\": \"WAV\",\n\t\t\t\"level\": \"User\"\n\t\t},\n\t\t\"url\": \"http://google.com/voice/12121212\"\n\t},\n\t\"videoSelection\": \"Default\",\n\t\"criteriaActivation\": [\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-1\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-2\",\n\t\t\t\"isActive\": true\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","pre-alerting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a746707d-3a5b-4788-92db-ceb3d01df118","name":"User Pre Alerting","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"4002@parkbenchsolutions.com\",\n\t\"isActive\": false,\n\t\"audioSelection\": \"File\",\n\t\"audioFile\": {\n\t\t\"file\": {\n\t\t\t\"name\": \"aa1.wav\",\n\t\t\t\"mediaFileType\": \"WAV\",\n\t\t\t\"level\": \"User\"\n\t\t},\n\t\t\"url\": \"http://google.com\"\n\t},\n\t\"videoSelection\": \"Default\",\n\t\"criteriaActivation\": [\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-4\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alerting-1\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"pre-alert-2\",\n\t\t\t\"isActive\": false\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/pre-alerting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Jul 2020 17:33:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2242"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"audioSelection\": \"File\",\n    \"videoSelection\": \"Default\",\n    \"audioFile\": {\n        \"file\": {\n            \"name\": \"aa1.wav\",\n            \"mediaFileType\": \"WAV\",\n            \"level\": \"User\"\n        },\n        \"url\": \"http://google.com\"\n    },\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"pre-alert-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514002\",\n                    \"5133334444\",\n                    \"5133335555\"\n                ]\n            },\n            \"callsFrom\": [\n                \"Any private number\",\n                \"Any unavailable number\",\n                \"19871514001...\"\n            ],\n            \"callToNumber\": \"5135564002,5134004002,4141114002\",\n            \"callToType\": \"Alternate1,Primary,BroadWorks Mobility\",\n            \"callToExtension\": \",40020,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5135564002\",\n                    \"extension\": \"\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"5134004002\",\n                    \"extension\": \"40020\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"4141114002\",\n                    \"extension\": \"\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"pre-alert-4\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514002\",\n                    \"5133334444\",\n                    \"5133337777\",\n                    \"5133335555\"\n                ]\n            },\n            \"callsFrom\": [\n                \"Any private number\",\n                \"Any unavailable number\",\n                \"19871514001...\"\n            ],\n            \"callToNumber\": \"5135564002,5134004002,4141114002\",\n            \"callToType\": \"Alternate1,Primary,BroadWorks Mobility\",\n            \"callToExtension\": \",40020,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5135564002\",\n                    \"extension\": \"\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"5134004002\",\n                    \"extension\": \"40020\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"4141114002\",\n                    \"extension\": \"\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"pre-alerting-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"19871514001\",\n                    \"19871514004\"\n                ]\n            },\n            \"callsFrom\": [\n                \"All calls\"\n            ],\n            \"callToNumber\": \"5135564002,5134004002\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \",40020\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5135564002\",\n                    \"extension\": \"\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"5134004002\",\n                    \"extension\": \"40020\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"c39c62d0-97bf-4200-b36d-d69cdb81ae83"}],"id":"a3d524ec-b8ce-4fa9-a007-5d0642d8f01d","_postman_id":"a3d524ec-b8ce-4fa9-a007-5d0642d8f01d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"PreferredCarrier","item":[{"name":"User Preferred Carrier","id":"613dca43-c2c7-4aac-b7f4-47e8a0a8cf8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/preferred-carrier?userId=6testingnumber@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","preferred-carrier"],"host":["{{url}}"],"query":[{"key":"userId","value":"6testingnumber@odinapi.net"}],"variable":[]}},"response":[{"id":"7a7501ff-174e-44f4-a25b-98bdfe013c33","name":"User Preferred Carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/preferred-carrier?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","preferred-carrier"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"intraLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"interLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"internationalCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"613dca43-c2c7-4aac-b7f4-47e8a0a8cf8b"},{"name":"User Preferred Carrier","id":"4740708f-bf16-4855-9199-782765f4ff32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"intraLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"true\"\n    },\n    \"interLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"internationalCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"userId\": \"6testingnumber@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/preferred-carrier","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","preferred-carrier"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"eff2a054-e20e-4400-a303-21067d190340","name":"User Preferred Carrier","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"intraLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"true\"\n    },\n    \"interLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"internationalCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"userId\": \"6testingnumber@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/preferred-carrier"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 May 2023 14:34:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"210"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"intraLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"true\"\n    },\n    \"interLataCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"internationalCarrier\": {\n        \"useGroupPreferredCarrier\": \"false\"\n    },\n    \"userId\": \"6testingnumber@odinapi.net\"\n}"}],"_postman_id":"4740708f-bf16-4855-9199-782765f4ff32"},{"name":"Group Preferred Carrier","id":"69ebc831-a419-4038-9962-1d44f37eac41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/preferred-carrier?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","preferred-carrier"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"4a070cdd-8802-437c-94ce-53477c5c9043","name":"Group Preferred Carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/preferred-carrier?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","preferred-carrier"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 May 2023 14:28:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"253"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"intraLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"false\"\n    },\n    \"interLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"true\"\n    },\n    \"internationalCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"true\"\n    }\n}"}],"_postman_id":"69ebc831-a419-4038-9962-1d44f37eac41"},{"name":"Group Preferred Carrier","id":"f8829705-2d92-4f6e-bca0-191c65f4f935","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"intraLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": true,\n        \"carrier\": \"ATT_0288\"\n    },\n    \"interLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": false,\n        \"carrier\": \"CCI_CA_ILEC_0111\"\n    },\n    \"internationalCarrier\": {\n        \"useServiceProviderPreferredCarrier\": true,\n        \"carrier\": \"CCI_CA_ILEC_5782\"\n    }\n}"},"url":"{{url}}/api/v2/groups/preferred-carrier","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","preferred-carrier"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5d451e2c-de3f-4c73-bcc2-2d2613ff7bd5","name":"Group Preferred Carrier","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"intraLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"true\",\n        \"carrier\": \"AT&T Corp\"\n    },\n    \"interLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"false\",\n        \"carrier\": \"AT&T Corp\"\n    },\n    \"internationalCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"true\",\n        \"carrier\": \"AT&T Corp 2\"\n    }\n}"},"url":"{{url}}/api/v2/groups/preferred-carrier"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 May 2023 14:50:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"321"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"intraLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"true\",\n        \"carrier\": \"AT&T Corp\"\n    },\n    \"interLataCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"false\",\n        \"carrier\": \"AT&T Corp\"\n    },\n    \"internationalCarrier\": {\n        \"useServiceProviderPreferredCarrier\": \"true\",\n        \"carrier\": \"AT&T Corp 2\"\n    }\n}"}],"_postman_id":"f8829705-2d92-4f6e-bca0-191c65f4f935"},{"name":"Service Provider Preferred Carrier","id":"62cf31fe-7674-4bb9-bfc4-b1bff8ec7aec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/preferred-carrier?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","preferred-carrier"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"serviceProviderId","value":"Z-Russell-NNE-Test"},{"disabled":true,"key":"serviceProviderId","value":"NNE10000086"},{"disabled":true,"key":"countryCode","value":"1"}],"variable":[]}},"response":[{"id":"94a77bde-4cdc-4c71-ad03-781148cca1e9","name":"Service Provider Preferred Carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/preferred-carrier?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","preferred-carrier"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 May 2023 15:19:03 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"177"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"intraLataCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"interLataCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"internationalCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"62cf31fe-7674-4bb9-bfc4-b1bff8ec7aec"},{"name":"Service Provider Preferred Carriers","id":"495ca33e-c5d9-4958-b609-21ae504faf25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/preferred-carriers?serviceProviderId=NNE10000086","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","preferred-carriers"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"key":"serviceProviderId","value":"NNE10000086"}],"variable":[]}},"response":[{"id":"81d75f02-ac04-46b3-ac0e-9b6bc8667f92","name":"Service Provider Preferred Carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/preferred-carrier?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","preferred-carrier"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 May 2023 15:19:03 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"177"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"intraLataCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"interLataCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"internationalCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"495ca33e-c5d9-4958-b609-21ae504faf25"},{"name":"Service Provider Preferred Carrier Details","id":"3dc45ed5-2725-4ce9-b46e-0e8d83f76e72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/preferred-carrier/details?serviceProviderId=NNE10000086","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","preferred-carrier","details"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"serviceProviderId","value":"Z-Russell-NNE-Test"},{"key":"serviceProviderId","value":"NNE10000086"}],"variable":[]}},"response":[{"id":"ce6045ee-c936-4af1-8f64-9274eb41e8f2","name":"Service Provider Preferred Carrier","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/preferred-carrier?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","preferred-carrier"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 May 2023 15:19:03 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"177"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"intraLataCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"interLataCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"internationalCarrier\": [\n        \"AT&T Corp\",\n        \"AT&T Corp 2\"\n    ],\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"3dc45ed5-2725-4ce9-b46e-0e8d83f76e72"},{"name":"Service Provider Preferred Carrier","id":"b25af695-3586-4720-a7cf-5b1cf939cb70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"countryCode\": \"1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/service-providers/preferred-carrier","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","preferred-carrier"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b25af695-3586-4720-a7cf-5b1cf939cb70"},{"name":"System Preferred Carriers","id":"50d90b67-28ce-4206-8ea7-ff25a0034725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/preferred-carriers?serviceProviderId=NNE10000086","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","preferred-carriers"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"key":"serviceProviderId","value":"NNE10000086"}],"variable":[]}},"response":[{"id":"7b1b76a0-b3f4-4da1-b738-20c60aa7c6bd","name":"System Preferred Carriers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/preferred-carriers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 00:22:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"416"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"intraLataCarrier\": [\n        \"ATT_0288\",\n        \"CCI_CA_ILEC_0111\",\n        \"CCI_CA_ILEC_5782\",\n        \"CCI_CA_KS_MO_CLEC_6946\",\n        \"CCI_IL_0354\",\n        \"CCI_TX_0561\",\n        \"CCI_TX_5678\"\n    ],\n    \"interLataCarrier\": [\n        \"ATT_0288\",\n        \"CCI_CA_ILEC_0111\",\n        \"CCI_CA_ILEC_5782\",\n        \"CCI_CA_KS_MO_CLEC_6946\",\n        \"CCI_IL_0354\",\n        \"CCI_TX_0561\",\n        \"CCI_TX_5678\"\n    ],\n    \"internationalCarrier\": [\n        \"ATT_0288\",\n        \"CCI_CA_ILEC_0111\",\n        \"CCI_CA_ILEC_5782\",\n        \"CCI_CA_KS_MO_CLEC_6946\",\n        \"CCI_IL_0354\",\n        \"CCI_TX_0561\",\n        \"CCI_TX_5678\"\n    ]\n}"}],"_postman_id":"50d90b67-28ce-4206-8ea7-ff25a0034725"}],"id":"7ba069aa-65ec-4188-8bc4-2a950b36a1a9","_postman_id":"7ba069aa-65ec-4188-8bc4-2a950b36a1a9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Prepaid","item":[{"name":"User Prepaid","id":"14104b6e-13ac-42e1-b506-a16e1b7cd7a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/prepaid?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","prepaid"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"a8a8dd71-6977-4350-847a-effab222ebf9","name":"User Prepaid","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/prepaid?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","prepaid"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"14104b6e-13ac-42e1-b506-a16e1b7cd7a9"},{"name":"User Prepaid","id":"ef83e9a1-5988-4790-b51d-370c549ff225","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/prepaid","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","prepaid"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b8b6be0c-5290-4c46-9834-d0d9d02ff740","name":"User Prepaid","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/prepaid"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7603\n}"}],"_postman_id":"ef83e9a1-5988-4790-b51d-370c549ff225"}],"id":"3961ddc0-64d6-4b0f-b719-87e6a8eeeb2b","_postman_id":"3961ddc0-64d6-4b0f-b719-87e6a8eeeb2b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Primary Endpoint Advanced Setting","item":[{"name":"User Primary Endpoint Advanced Setting","id":"5564a13e-0534-4d96-908b-de76b39c72f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/primary-endpoint-advanced-setting?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","primary-endpoint-advanced-setting"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"3f5d7ce8-5d65-4b42-87e7-b3c2aff98112","name":"User Primary Endpoint Advanced Setting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/primary-endpoint-advanced-setting?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","primary-endpoint-advanced-setting"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowOrigination\": true,\n    \"allowTermination\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"5564a13e-0534-4d96-908b-de76b39c72f7"},{"name":"User Primary Endpoint Advanced Setting","id":"5febff30-7e1a-488f-a88b-abd8bc35f87f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"allowOrigination\": true,\n    \"allowTermination\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/primary-endpoint-advanced-setting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","primary-endpoint-advanced-setting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6068b223-9b84-4f16-91c0-0c915ed299cb","name":"User Primary Endpoint Advanced Setting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"allowOrigination\": true,\n    \"allowTermination\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/primary-endpoint-advanced-setting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowOrigination\": true,\n    \"allowTermination\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"5febff30-7e1a-488f-a88b-abd8bc35f87f"}],"id":"4918e820-9161-42f6-908d-1ce862f85b7a","description":"<p>Allows you to enable/disable call originations and/or terminations to/from the user primary endpoint.</p>\n","_postman_id":"4918e820-9161-42f6-908d-1ce862f85b7a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Priority Alert","item":[{"name":"User Priority Alerts with Details","id":"879e3e9a-d149-48db-a63d-8fdb20b556f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/priority-alert/details?userId=19871514011@odinapi.net","description":"<p><code>GET all User Priority Alerts for a user with Details</code></p>\n<p><code>Note: 'isActive' field at root level is to communicate that at least one is active or not</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert","details"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514011@odinapi.net"}],"variable":[]}},"response":[{"id":"9edb98af-24cf-4356-87fb-83f9fc0d0748","name":"User Priority Alerts with Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/priority-alert/details?userId=19871514011@odinapi.net","host":["{{url}}"],"path":["api","v2","users","priority-alert","details"],"query":[{"key":"userId","value":"19871514011@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 20:55:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2323"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-4\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-3\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-5\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-7\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-8\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"879e3e9a-d149-48db-a63d-8fdb20b556f2"},{"name":"User Priority Alerts","id":"8cca4a8d-6059-4d01-8b8c-c2ad333f8ae1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/priority-alert?userId=19871514011@odinapi.net","description":"<p><code>GET all User Priority Alerts for a user</code></p>\n<p><code>Note: 'isActive' field at root level is to communicate that at least one is active or not</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514011@odinapi.net"}],"variable":[]}},"response":[{"id":"e34c7932-ae87-4514-be2d-5e0890f90a30","name":"User Priority Alerts","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/priority-alert?userId=19871514011@odinapi.net","host":["{{url}}"],"path":["api","v2","users","priority-alert"],"query":[{"key":"userId","value":"19871514011@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 20:56:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2323"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-4\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-3\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-5\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-7\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-8\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"8cca4a8d-6059-4d01-8b8c-c2ad333f8ae1"},{"name":"User Priority Alert - Activate","id":"90411591-e890-4e98-a849-70cc37844cc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514011@odinapi.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"isActive\": false,\n\t\t\t\"criteriaName\": \"priority-alert-1\"\n\t\t},\n\t\t{\n\t\t\t\"isActive\": false,\n\t\t\t\"criteriaName\": \"priority-alert-2\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/priority-alert","description":"<p><code>Modify a one to many User Priority Alerts active state for a user</code></p>\n<p><code>Note: 'isActive' field at root level is to communicate that at least one is active or not</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"757f4216-743d-4455-9d86-b4581111f5d9","name":"User Priority Alert - Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514011@odinapi.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"isActive\": false,\n\t\t\t\"criteriaName\": \"priority-alert-1\"\n\t\t},\n\t\t{\n\t\t\t\"isActive\": false,\n\t\t\t\"criteriaName\": \"priority-alert-2\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/priority-alert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 21:02:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3477"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"false\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"5133335555\"\n                ]\n            }\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-4\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"5133335557\"\n                ]\n            }\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133335555\",\n                    \"5133335559\",\n                    \"5133335557\"\n                ]\n            }\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-3\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133335555\",\n                    \"5133335557\"\n                ]\n            }\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-5\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"false\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": []\n            }\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-7\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"false\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": []\n            }\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-8\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133335555\",\n                    \"5133335559\",\n                    \"5133335557\"\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"90411591-e890-4e98-a849-70cc37844cc0"},{"name":"User Priority Alert Criterias","id":"3c1f0e04-c288-4123-9a0a-f408eb3f6657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/priority-alert/criteria?userId=19871514011@odinapi.net","description":"<p><code>GET all User Priority Alerts for a user</code></p>\n<p><code>Note: 'isActive' field at root level is to communicate that at least one is active or not</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert","criteria"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514011@odinapi.net"}],"variable":[]}},"response":[{"id":"98cd871f-591e-4251-9e92-9b50d520cd2a","name":"User Priority Alert Criterias","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/priority-alert/criteria?userId=19871514011@odinapi.net","host":["{{url}}"],"path":["api","v2","users","priority-alert","criteria"],"query":[{"key":"userId","value":"19871514011@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 21:04:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2992"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"false\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"5133335555\"\n                ]\n            }\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-4\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": true,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": [\n                    \"5133335557\"\n                ]\n            }\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133335555\",\n                    \"5133335559\",\n                    \"5133335557\"\n                ]\n            }\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-3\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133335555\",\n                    \"5133335557\"\n                ]\n            }\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"priority-alert-5\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"false\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": []\n            }\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"priority-alert-7\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All External Calls\"\n            ],\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871515009\",\n                    \"extension\": \"1234\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"9871515010\",\n                    \"extension\": \"5678\"\n                },\n                {\n                    \"type\": \"Primary\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any External\",\n                \"includeAnonymousCallers\": \"false\",\n                \"includeUnavailableCallers\": \"false\",\n                \"phoneNumbers\": []\n            }\n        }\n    ]\n}"}],"_postman_id":"3c1f0e04-c288-4123-9a0a-f408eb3f6657"},{"name":"User Priority Alert Criteria","id":"dccecb3e-3db6-4f38-a72b-247ba21961d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/priority-alert/criteria?userId=19871514011@odinapi.net&criteriaName=priority-alert-6","description":"<p><code>GET a single User Priority Alert for a user</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert","criteria"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514011@odinapi.net"},{"key":"criteriaName","value":"priority-alert-6"}],"variable":[]}},"response":[{"id":"624ef0fe-f7c3-4a7c-9c36-b81fe7d94259","name":"User Priority Alert Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/priority-alert/criteria?userId=19871514011@odinapi.net&criteriaName=priority-alert-6","host":["{{url}}"],"path":["api","v2","users","priority-alert","criteria"],"query":[{"key":"userId","value":"19871514011@odinapi.net"},{"key":"criteriaName","value":"priority-alert-6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 21:06:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"519"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteriaName\": \"priority-alert-6\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"blacklisted\": false,\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ],\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335559\",\n            \"5133335557\"\n        ]\n    }\n}"}],"_postman_id":"dccecb3e-3db6-4f38-a72b-247ba21961d3"},{"name":"User Priority Alert Criteria","id":"20ebe908-1eef-4011-bee1-d872b5d4beea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335559\",\n            \"5133335557\"\n        ]\n    },\n    \"isActive\": true,\n    \"blacklisted\": false,\n    \"criteriaName\": \"priority-alert-8\",\n    \"newCriteriaName\": \"priority-alert-6\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/priority-alert/criteria","description":"<p><code>Modify a specific User Priority Alert for a user</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ccd55e6d-4907-409d-a474-8b3d18facb36","name":"User Priority Alert Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335559\",\n            \"5133335557\"\n        ]\n    },\n    \"isActive\": true,\n    \"blacklisted\": false,\n    \"criteriaName\": \"priority-alert-8\",\n    \"newCriteriaName\": \"priority-alert-6\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/priority-alert/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 21:05:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"519"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteriaName\": \"priority-alert-6\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"blacklisted\": false,\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ],\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335559\",\n            \"5133335557\"\n        ]\n    }\n}"}],"_postman_id":"20ebe908-1eef-4011-bee1-d872b5d4beea"},{"name":"User Priority Alert Criteria","id":"94461c45-9536-49cd-9afa-76c702b1bc27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335556\",\n            \"5133335557\"\n        ]\n    },\n    \"isActive\": true,\n    \"criteriaName\": \"priority-alert-8\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"Alternate2\",\n            \"number\": \"9871515010\",\n            \"extension\": \"5678\"\n        },\n        {\n            \"type\": \"Primary\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/priority-alert/criteria","description":"<p><code>Add a User Priority Alert to a user</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"461a674e-fe71-4fee-ac1a-920cec2b849b","name":"User Priority Alert Criteria","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335556\",\n            \"5133335557\"\n        ]\n    },\n    \"isActive\": true,\n    \"criteriaName\": \"priority-alert-8\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"Alternate2\",\n            \"number\": \"9871515010\",\n            \"extension\": \"5678\"\n        },\n        {\n            \"type\": \"Primary\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/priority-alert/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 21:05:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"603"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteriaName\": \"priority-alert-8\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"blacklisted\": false,\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"Alternate2\",\n            \"number\": \"9871515010\",\n            \"extension\": \"5678\"\n        },\n        {\n            \"type\": \"Primary\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ],\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335556\",\n            \"5133335557\"\n        ]\n    }\n}"}],"_postman_id":"94461c45-9536-49cd-9afa-76c702b1bc27"},{"name":"User Priority Alert Criteria","id":"f8000c8e-0353-441d-8fd1-ecdf681bfd82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"criteriaName\": \"priority-alert-8\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/priority-alert/criteria","description":"<p><code>Delete a User Priority Alert for a user</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","priority-alert","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ae5bc1dd-2e65-46d4-92ca-5dcc25692888","name":"User Priority Alert Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"criteriaName\": \"priority-alert-8\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/priority-alert/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 21:05:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"603"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514011@odinapi.net\",\n    \"isActive\": true,\n    \"criteriaName\": \"priority-alert-8\",\n    \"timeSchedule\": \"Every Day All Day\",\n    \"blacklisted\": false,\n    \"holidaySchedule\": \"None\",\n    \"callsFrom\": [\n        \"All External Calls\"\n    ],\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871515009\",\n            \"extension\": \"1234\"\n        },\n        {\n            \"type\": \"Alternate2\",\n            \"number\": \"9871515010\",\n            \"extension\": \"5678\"\n        },\n        {\n            \"type\": \"Primary\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ],\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any External\",\n        \"includeAnonymousCallers\": \"false\",\n        \"includeUnavailableCallers\": \"false\",\n        \"phoneNumbers\": [\n            \"5133335555\",\n            \"5133335556\",\n            \"5133335557\"\n        ]\n    }\n}"}],"_postman_id":"f8000c8e-0353-441d-8fd1-ecdf681bfd82"}],"id":"c0f161e4-17b6-4454-9c74-0ea4c2c2b2ee","_postman_id":"c0f161e4-17b6-4454-9c74-0ea4c2c2b2ee","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Privacy","item":[{"name":"User Privacy Available Monitors","id":"10a3f70f-aa52-4ae0-91f7-9e4d7129e487","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/users/privacy/monitors?userId=9709580001","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","privacy","monitors"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001"}],"variable":[]}},"response":[{"id":"2e1ba681-b6a0-46b3-9138-6500d935add1","name":"User Privacy Available Monitors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/users/privacy/monitors?userId=9709580001","host":["{{url}}"],"path":["api","v2","users","privacy","monitors"],"query":[{"key":"userId","value":"9709580001"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1053","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Sep 2018 19:40:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=98","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\"userId\":9709580002,\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"phoneNumber\":\"+1-9709580002\",\"extension\":\"0002\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null},{\"userId\":9709580003,\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"phoneNumber\":\"+1-9709580003\",\"extension\":\"0003\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null},{\"userId\":9709580004,\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"phoneNumber\":\"+1-9709580004\",\"extension\":\"0004\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null},{\"userId\":9709580005,\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"phoneNumber\":\"+1-9709580005\",\"extension\":\"0005\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null}]"}],"_postman_id":"10a3f70f-aa52-4ae0-91f7-9e4d7129e487"},{"name":"User Privacy","id":"0aaea7a1-454a-46f6-8edf-462a11bba016","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/privacy/?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","privacy",""],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"3ce65e67-3f8e-47eb-b9e7-4b549d2d7b58","name":"User Privacy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/privacy/?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","privacy",""],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"enablePhoneStatusPrivacy\": true,\n    \"permittedMonitors\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"0aaea7a1-454a-46f6-8edf-462a11bba016"},{"name":"User Privacy V1","id":"bccf8be5-a94e-48dd-932a-c830670407a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/privacy/?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","privacy",""],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[],"_postman_id":"bccf8be5-a94e-48dd-932a-c830670407a3"},{"name":"User Privacy","id":"15765ce9-bd9d-4563-afc0-92d6d9515868","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"enablePhoneStatusPrivacy\": true,\n    \"permittedMonitors\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/privacy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","privacy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c5384a3c-48cd-4938-9a7f-e1847c4213d3","name":"User Privacy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"enablePhoneStatusPrivacy\": true,\n    \"permittedMonitors\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/privacy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"enablePhoneStatusPrivacy\": true,\n    \"permittedMonitors\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7974\n}"}],"_postman_id":"15765ce9-bd9d-4563-afc0-92d6d9515868"},{"name":"Group Service Instance Privacy","id":"b939208c-5aec-4680-9e96-8c7741249d66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/privacy?serviceUserId=call-center-1-test-1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","privacy"],"host":["{{url}}"],"query":[{"key":"serviceUserId","value":"call-center-1-test-1"}],"variable":[]}},"response":[{"id":"ae9624bb-a60e-4856-93db-daa8e7515916","name":"Group Service Instance Privacy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/privacy?serviceUserId=call-center-1-test-1","host":["{{url}}"],"path":["api","v2","groups","privacy"],"query":[{"key":"serviceUserId","value":"call-center-1-test-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"serviceUserId\": \"call-center-1-test-1\"\n}"}],"_postman_id":"b939208c-5aec-4680-9e96-8c7741249d66"},{"name":"Group Service Instance Privacy","id":"7626a1b5-0f5e-4924-8293-d668d6384d30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"enableDirectoryPrivacy\": false,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"serviceUserId\": \"call-center-1-test-1\"\n}"},"url":"{{url}}/api/v2/groups/privacy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","privacy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b2ec4687-936a-4ab9-ae5e-fd4215dd86fb","name":"Group Service Instance Privacy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"enableDirectoryPrivacy\": false,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"serviceUserId\": \"call-center-1-test-1\"\n}"},"url":"{{url}}/api/v2/groups/privacy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableDirectoryPrivacy\": false,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"serviceUserId\": \"call-center-1-test-1\"\n}"}],"_postman_id":"7626a1b5-0f5e-4924-8293-d668d6384d30"},{"name":"User Privacy Copy","id":"5646333a-584c-491c-9128-8791343cd9a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"enablePhoneStatusPrivacy\": true,\n    \"permittedMonitors\": [],\n    \"userId\": \"4003@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/privacy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","privacy"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d399559c-7ffc-4cea-a22c-b152c1af4f75","name":"User Privacy","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"enablePhoneStatusPrivacy\": true,\n    \"permittedMonitors\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/privacy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableDirectoryPrivacy\": true,\n    \"enableAutoAttendantExtensionDialingPrivacy\": true,\n    \"enableAutoAttendantNameDialingPrivacy\": true,\n    \"enablePhoneStatusPrivacy\": true,\n    \"permittedMonitors\": [\n        {\n            \"userId\": \"8135551004@parkbenchsolutions.com\",\n            \"lastName\": 5,\n            \"firstName\": 5,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551004\",\n            \"extension\": 1004,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551006@parkbenchsolutions.com\",\n            \"lastName\": 7,\n            \"firstName\": 7,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551006\",\n            \"extension\": 1006,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551008@parkbenchsolutions.com\",\n            \"lastName\": 9,\n            \"firstName\": 9,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551008\",\n            \"extension\": 1008,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551007@parkbenchsolutions.com\",\n            \"lastName\": 8,\n            \"firstName\": 8,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551007\",\n            \"extension\": 1007,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7974\n}"}],"_postman_id":"5646333a-584c-491c-9128-8791343cd9a8"}],"id":"830f889c-52c6-4d96-9d6f-8a4d250104d1","_postman_id":"830f889c-52c6-4d96-9d6f-8a4d250104d1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Push Registration","item":[{"name":"User Push Registration","id":"4438617f-cb70-4430-a441-bd37988c9854","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/push-notification-registration/?userId=4003-4003@lab.tekvoice.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","push-notification-registration",""],"host":["{{url}}"],"query":[{"key":"userId","value":"4003-4003@lab.tekvoice.net"}],"variable":[]}},"response":[],"_postman_id":"4438617f-cb70-4430-a441-bd37988c9854"},{"name":"Bulk User Push Registration","id":"b56b4425-d0c2-4622-8aed-f083af475d74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/push-notification-registration/bulk?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","push-notification-registration","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"3398664d-fdb1-40e7-ba47-71b182ad610a","name":"Bulk User Push Registration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/push-notification-registration/bulk?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","users","push-notification-registration","bulk"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"users\": [\n        {\n            \"profile\": {\n                \"userId\": \"4002@parkbenchsolutions.com\",\n                \"lastName\": 4002,\n                \"firstName\": 4002,\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4002,\n                \"hiraganaFirstName\": 4002,\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"4002@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"5135564000@parkbenchsolutions.com\",\n                \"lastName\": \"Demo user\",\n                \"firstName\": \"Marc\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5135564000\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"Demo user\",\n                \"hiraganaFirstName\": \"Marc\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"64000\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"5135564000@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"6106424235X4020@parkbenchsolutions.com\",\n                \"lastName\": 4003,\n                \"firstName\": 4003,\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004003\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"04003\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"6106424235X4020@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"user4@parkbenchsolutions.com\",\n                \"lastName\": \"Sonkar\",\n                \"firstName\": \"Animesh\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"Sonkar\",\n                \"hiraganaFirstName\": \"Animesh\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"user4@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"sandesh@parkbenchsolutions.com\",\n                \"lastName\": \"dixit\",\n                \"firstName\": \"sandesh\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"dixit\",\n                \"hiraganaFirstName\": \"sandesh\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"sandesh@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"odin-device-test-1@parkbenchsolutions.com\",\n                \"lastName\": \"odin-device-test-1\",\n                \"firstName\": \"odin-device-test-1\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"odin-device-test-1\",\n                \"hiraganaFirstName\": \"odin-device-test-1\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"odin-device-test-1@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"lastName\": 4001,\n                \"firstName\": 4001,\n                \"department\": null,\n                \"phoneNumber\": \"+1-8595551401\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                \"hiraganaLastName\": 4001,\n                \"hiraganaFirstName\": 4001,\n                \"inTrunkGroup\": false,\n                \"extension\": \"51401\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"4001@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"ddoris@parkbenchsolutions.com\",\n                \"lastName\": \"doris\",\n                \"firstName\": \"dusty\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"doris\",\n                \"hiraganaFirstName\": \"dusty\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"ddoris@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"1.grp.odin@parkbenchsolutions.com\",\n                \"lastName\": \"1.grp.odin\",\n                \"firstName\": \"1.grp.odin\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"1.grp.odin\",\n                \"hiraganaFirstName\": \"1.grp.odin\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"1.grp.odin@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"2.grp.odin@parkbenchsolutions.com\",\n                \"lastName\": \"2.grp.odin\",\n                \"firstName\": \"2.grp.odin\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"2.grp.odin\",\n                \"hiraganaFirstName\": \"2.grp.odin\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"2.grp.odin@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin4000@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin4000\",\n                \"firstName\": \"grp.odin4000\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin4000\",\n                \"hiraganaFirstName\": \"grp.odin4000\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"04000\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"grp.odin4000@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin4001@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin4001\",\n                \"firstName\": \"grp.odin4001\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin4001\",\n                \"hiraganaFirstName\": \"grp.odin4001\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"04001\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"grp.odin4001@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin6001@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin6001\",\n                \"firstName\": \"grp.odin6001\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin6001\",\n                \"hiraganaFirstName\": \"grp.odin6001\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"06001\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"grp.odin6001@parkbenchsolutions.com\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin6002@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin6002\",\n                \"firstName\": \"grp.odin6002\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin6002\",\n                \"hiraganaFirstName\": \"grp.odin6002\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"06002\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"grp.odin6002@parkbenchsolutions.com\"\n            }\n        }\n    ]\n}"}],"_postman_id":"b56b4425-d0c2-4622-8aed-f083af475d74"}],"id":"d062a11c-78ba-4a02-8af5-698e3920bac2","_postman_id":"d062a11c-78ba-4a02-8af5-698e3920bac2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Push To Talk","item":[{"name":"User Push To Talk","id":"7ca0884e-0f01-42d3-abc7-6cb03710512f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/push-to-talk?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","push-to-talk"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"f3262662-bcbf-486b-a646-49e058d864a9","name":"User Push To Talk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/push-to-talk?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","push-to-talk"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowAutoAnswer\": true,\n    \"outgoingConnectionSelection\": \"Two Way\",\n    \"accessListSelection\": \"Allow Calls From Selected Users\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ]\n}"}],"_postman_id":"7ca0884e-0f01-42d3-abc7-6cb03710512f"},{"name":"User Push To Talk","id":"908ff219-9d86-4c96-8114-5439b9d0e331","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"allowAutoAnswer\": true,\n    \"outgoingConnectionSelection\": \"Two Way\",\n    \"accessListSelection\": \"Allow Calls From Selected Users\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/push-to-talk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","push-to-talk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7144a56f-c174-47fc-ab66-b27ffd30a996","name":"User Push To Talk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"allowAutoAnswer\": true,\n    \"outgoingConnectionSelection\": \"Two Way\",\n    \"accessListSelection\": \"Allow Calls From Selected Users\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/push-to-talk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"allowAutoAnswer\": true,\n    \"outgoingConnectionSelection\": \"Two Way\",\n    \"accessListSelection\": \"Allow Calls From Selected Users\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"users\": [\n        {\n            \"userId\": \"8135551003@parkbenchsolutions.com\",\n            \"lastName\": 4,\n            \"firstName\": 4,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551003\",\n            \"extension\": 1003,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"8135551002@parkbenchsolutions.com\",\n            \"lastName\": 3,\n            \"firstName\": 3,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": \"+1-8135551002\",\n            \"extension\": 1002,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null,\n            \"iMPId\": null\n        },\n        {\n            \"userId\": \"4001-copy@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": null,\n            \"extension\": 1414,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"iMPId\": null\n        }\n    ],\n    \"_eventId\": 8832\n}"}],"_postman_id":"908ff219-9d86-4c96-8114-5439b9d0e331"},{"name":"User Push To Talk Available Users","id":"fcad2d6d-236b-494d-8573-5d1676203be0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"http://localhost:8080/api/v2/users/push-to-talk/users?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","users","push-to-talk","users"],"host":["localhost"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"fa08a9d8-1ece-4d1d-b850-6917f3a33b4f","name":"User Push To Talk Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"http://localhost:8080/api/v2/users/push-to-talk/users?userId=9709580001@microv-works.com","protocol":"http","host":["localhost"],"port":"8080","path":["api","v2","users","push-to-talk","users"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"connection","value":"Keep-Alive","name":"connection","description":"Options that are desired for the connection"},{"key":"content-length","value":"1102","name":"content-length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"content-type","value":"application/json","name":"content-type","description":"The mime type of this content"},{"key":"date","value":"Wed, 03 Oct 2018 18:13:07 GMT","name":"date","description":"The date and time that the message was sent"},{"key":"keep-alive","value":"timeout=5, max=100","name":"keep-alive","description":"Custom header"},{"key":"server","value":"Apache","name":"server","description":"A name for the server"},{"key":"vary","value":"Authorization","name":"vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"via","value":"1.1 dbook.local","name":"via","description":"Informs the client of proxies through which the response was sent."},{"key":"x-powered-by","value":"PHP/7.2.10","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"userId\":\"9709580001@microv-works.com\",\"users\":[{\"userId\":9709580002,\"lastName\":\"User2last\",\"firstName\":\"User2first\",\"hiraganaLastName\":\"User2last\",\"hiraganaFirstName\":\"User2first\",\"phoneNumber\":\"+1-9709580002\",\"extension\":\"0002\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null},{\"userId\":9709580003,\"lastName\":\"User3last\",\"firstName\":\"User3first\",\"hiraganaLastName\":\"User3last\",\"hiraganaFirstName\":\"User3first\",\"phoneNumber\":\"+1-9709580003\",\"extension\":\"0003\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null},{\"userId\":9709580004,\"lastName\":\"User4last\",\"firstName\":\"User4first\",\"hiraganaLastName\":\"User4last\",\"hiraganaFirstName\":\"User4first\",\"phoneNumber\":\"+1-9709580004\",\"extension\":\"0004\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null},{\"userId\":9709580005,\"lastName\":\"User5last\",\"firstName\":\"User5first\",\"hiraganaLastName\":\"User5last\",\"hiraganaFirstName\":\"User5first\",\"phoneNumber\":\"+1-9709580005\",\"extension\":\"0005\",\"department\":\"Odin Mock Dept (odin.mock.grp1)\",\"emailAddress\":null,\"iMPId\":null}]}"}],"_postman_id":"fcad2d6d-236b-494d-8573-5d1676203be0"}],"id":"50194cc2-e0ee-4c2f-be95-b9d70de217c5","_postman_id":"50194cc2-e0ee-4c2f-be95-b9d70de217c5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Registration","item":[{"name":"User Registration","id":"c9ccbb80-58f8-4743-831b-2f531f1bc5cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/registration/?userId=test.user1@alliedtelecom.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","registration",""],"host":["{{url}}"],"query":[{"key":"userId","value":"test.user1@alliedtelecom.net"}],"variable":[]}},"response":[{"id":"6d225b8d-72ab-449b-94da-eaff7bce6f14","name":"User Registration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/registration/?userId=test.user1@alliedtelecom.net","host":["{{url}}"],"path":["api","v2","users","registration",""],"query":[{"key":"userId","value":"test.user1@alliedtelecom.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"registrations\": [\n        {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"ECG_0004f2accaf7\",\n            \"order\": 1,\n            \"uRI\": \"sip:2026951172@10.2.2.45:5060;transport=udp;jtr=22-1808\",\n            \"expiration\": \"Thu May 23 08:33:00 EDT 2019\",\n            \"line/Port\": \"2026951172@alliedtelecom.net\",\n            \"endpointType\": \"Primary\",\n            \"publicNetAddress\": null,\n            \"publicPort\": null,\n            \"privateNetAddress\": null,\n            \"privatePort\": null,\n            \"userAgent\": \"Polycom/5.4.1.14510 PolycomVVX-VVX_500-UA/5.4.1.14510\",\n            \"lockoutStarted\": null,\n            \"lockoutExpires\": null,\n            \"lockoutCount\": 0,\n            \"accessInfo\": null\n        }\n    ],\n    \"userId\": \"test.user1@alliedtelecom.net\"\n}"}],"_postman_id":"c9ccbb80-58f8-4743-831b-2f531f1bc5cf"},{"name":"Bulk User Registration","id":"beafd0f3-2cd7-4d8e-a7f7-322874fa9503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/registration/bulk?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","registration","bulk"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"LabEnterprise"},{"disabled":true,"key":"groupId","value":"regression.test"},{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"2449bb3e-ca2f-49a9-a1b4-9afad6175d8a","name":"Bulk User Registration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/registration/bulk?serviceProviderId=LabEnterprise&groupId=regression.test","host":["{{url}}"],"path":["api","v2","users","registration","bulk"],"query":[{"key":"serviceProviderId","value":"LabEnterprise"},{"key":"groupId","value":"regression.test"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"LabEnterprise\",\n    \"groupId\": \"regression.test\",\n    \"users\": [\n        {\n            \"profile\": {\n                \"userId\": \"test.user1@alliedtelecom.net\",\n                \"lastName\": \"User 1\",\n                \"firstName\": \"Test\",\n                \"department\": \"Bandwidth.com (regression.test)\",\n                \"phoneNumber\": \"+1-2026951172\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"User 1\",\n                \"hiraganaFirstName\": \"Test\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"2639\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [\n                    {\n                        \"deviceLevel\": \"Group\",\n                        \"deviceName\": \"ECG_0004f2accaf7\",\n                        \"order\": 1,\n                        \"uRI\": \"sip:2026951172@10.2.2.45:5060;transport=udp;jtr=22-1808\",\n                        \"expiration\": \"Thu May 23 08:33:00 EDT 2019\",\n                        \"line/Port\": \"2026951172@alliedtelecom.net\",\n                        \"endpointType\": \"Primary\",\n                        \"publicNetAddress\": null,\n                        \"publicPort\": null,\n                        \"privateNetAddress\": null,\n                        \"privatePort\": null,\n                        \"userAgent\": \"Polycom/5.4.1.14510 PolycomVVX-VVX_500-UA/5.4.1.14510\",\n                        \"lockoutStarted\": null,\n                        \"lockoutExpires\": null,\n                        \"lockoutCount\": 0,\n                        \"accessInfo\": null\n                    }\n                ],\n                \"userId\": \"test.user1@alliedtelecom.net\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"test.user3@alliedtelecom.net\",\n                \"lastName\": \"User 3\",\n                \"firstName\": \"Test\",\n                \"department\": \"Level3 (regression.test)\",\n                \"phoneNumber\": \"+1-3092650759\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"User 3\",\n                \"hiraganaFirstName\": \"Test\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"2437\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [\n                    {\n                        \"deviceLevel\": \"Group\",\n                        \"deviceName\": \"ECG-0004F289F5AC\",\n                        \"order\": 1,\n                        \"uRI\": \"sip:2022662437@10.2.2.45:5060;transport=udp;jtr=57-2417\",\n                        \"expiration\": \"Thu May 23 08:34:03 EDT 2019\",\n                        \"line/Port\": \"2022662437@alliedtelecom.net\",\n                        \"endpointType\": \"Primary\",\n                        \"publicNetAddress\": null,\n                        \"publicPort\": null,\n                        \"privateNetAddress\": null,\n                        \"privatePort\": null,\n                        \"userAgent\": \"PolycomVVX-VVX_310-UA/5.6.2.1593\",\n                        \"lockoutStarted\": null,\n                        \"lockoutExpires\": null,\n                        \"lockoutCount\": 0,\n                        \"accessInfo\": null\n                    }\n                ],\n                \"userId\": \"test.user3@alliedtelecom.net\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"gs.test@alliedtelecom.net\",\n                \"lastName\": \"Test\",\n                \"firstName\": \"GS\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"Test\",\n                \"hiraganaFirstName\": \"GS\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"2456\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"gs.test@alliedtelecom.net\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"test.user2@alliedtelecom.net\",\n                \"lastName\": \"User 2\",\n                \"firstName\": \"Test\",\n                \"department\": \"Telnyx (regression.test)\",\n                \"phoneNumber\": \"+1-2023478048\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"User 2\",\n                \"hiraganaFirstName\": \"Test\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"6866\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [\n                    {\n                        \"deviceLevel\": \"Group\",\n                        \"deviceName\": \"ECG-0004f283b2f5\",\n                        \"order\": 1,\n                        \"uRI\": \"sip:2023478048@10.2.2.45:5060;transport=udp;jtr=6-147\",\n                        \"expiration\": \"Thu May 23 08:30:12 EDT 2019\",\n                        \"line/Port\": \"2023478048@alliedtelecom.net\",\n                        \"endpointType\": \"Primary\",\n                        \"publicNetAddress\": null,\n                        \"publicPort\": null,\n                        \"privateNetAddress\": null,\n                        \"privatePort\": null,\n                        \"userAgent\": \"Polycom/5.4.1.14510 PolycomVVX-VVX_500-UA/5.4.1.14510\",\n                        \"lockoutStarted\": null,\n                        \"lockoutExpires\": null,\n                        \"lockoutCount\": 0,\n                        \"accessInfo\": null\n                    }\n                ],\n                \"userId\": \"test.user2@alliedtelecom.net\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"This.Is.A.Test.User@alliedtelecom.net\",\n                \"lastName\": \"User\",\n                \"firstName\": \"PB.Test\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"User\",\n                \"hiraganaFirstName\": \"PB.Test\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"This.Is.A.Test.User@alliedtelecom.net\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"Another.Test.User.From.XSP@alliedtelecom.net\",\n                \"lastName\": \"XSP.Test\",\n                \"firstName\": \"PB.User.XSP\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"XSP.Test\",\n                \"hiraganaFirstName\": \"PB.User.XSP\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"Another.Test.User.From.XSP@alliedtelecom.net\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"CLi.Test.User@alliedtelecom.net\",\n                \"lastName\": \"CLi.Test.User\",\n                \"firstName\": \"CLi.Test.User\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"CLi.Test.User\",\n                \"hiraganaFirstName\": \"CLi.Test.User\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"CLi.Test.User@alliedtelecom.net\"\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"kallani@alliedtelecom.net\",\n                \"lastName\": \"Allani\",\n                \"firstName\": \"Karim\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-2025551234\",\n                \"phoneNumberActivated\": false,\n                \"emailAddress\": \"kallani@alliedtelecom.net\",\n                \"hiraganaLastName\": \"Allani\",\n                \"hiraganaFirstName\": \"Karim\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"234\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"alliedtelecom.net\"\n            },\n            \"data\": {\n                \"registrations\": [],\n                \"userId\": \"kallani@alliedtelecom.net\"\n            }\n        }\n    ]\n}"}],"_postman_id":"beafd0f3-2cd7-4d8e-a7f7-322874fa9503"}],"id":"95762d23-a0c7-4a67-8169-49ae1b1001d8","_postman_id":"95762d23-a0c7-4a67-8169-49ae1b1001d8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Remote Office","item":[{"name":"User Remote Office","id":"683ca994-576a-4314-9934-c38510ed56ef","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/remote-office?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","remote-office"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"30b6be62-5d52-4cc6-a4b5-0c165dc5f258","name":"User Remote Office","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/remote-office?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","remote-office"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"93","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 18:26:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"remoteOfficePhoneNumber\":5133334444,\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"683ca994-576a-4314-9934-c38510ed56ef"},{"name":"User Remote Office","id":"97357b3b-05d0-40a8-ac0e-f4518f8b9250","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"remoteOfficePhoneNumber\": \"5133334444\"\n}"},"url":"{{url}}/api/v2/users/remote-office","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","remote-office"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"192d0604-95ef-4a6d-90b7-2d9ee58d5920","name":"User Remote Office","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"remoteOfficePhoneNumber\": \"5133334444\"\n}"},"url":"{{url}}/api/v2/users/remote-office"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"remoteOfficePhoneNumber\": 5133334444,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7744\n}"}],"_postman_id":"97357b3b-05d0-40a8-ac0e-f4518f8b9250"}],"id":"eacd5baa-8c37-42bf-b8fd-8caaa255b964","_postman_id":"eacd5baa-8c37-42bf-b8fd-8caaa255b964","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Reports","item":[{"name":"Service Provider Users Report","id":"b349acca-3325-444f-90fd-5634548d2cf4","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/reports/users?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","reports","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"cc72a74a-b474-4502-8bed-010075842d93","name":"Service Provider Users Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/reports/users?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","reports","users"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 23:40:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"callingLineIdLastName\": \"User1last\",\n        \"callingLineIdFirstName\": \"User1first\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"9709580001\",\n        \"extension\": \"0001\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580001@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580001-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580001-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"title\": \"Test123\",\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580001@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Sequential Ring\"\n        ],\n        \"servicePacks\": [\n            \"Basic\"\n        ]\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"callingLineIdLastName\": \"User2last\",\n        \"callingLineIdFirstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"9709580002\",\n        \"extension\": \"0002\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580002@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580002-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580002-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580002@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Sequential Ring\"\n        ],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"callingLineIdLastName\": \"User3last\",\n        \"callingLineIdFirstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"9709580003\",\n        \"extension\": \"0003\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580003@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580003-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580003-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580003@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"callingLineIdLastName\": \"User4last\",\n        \"callingLineIdFirstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"9709580004\",\n        \"extension\": \"0004\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580004@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580004-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580004-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580004@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"callingLineIdLastName\": \"User5last\",\n        \"callingLineIdFirstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"9709580005\",\n        \"extension\": \"0005\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580005@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580005-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580005-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580005@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"callingLineIdLastName\": \"pilot\",\n        \"callingLineIdFirstName\": \"pilot\",\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"phoneNumber\": \"9709580008\",\n        \"extension\": \"0008\",\n        \"callingLineIdPhoneNumber\": \"9709580008\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"defaultAlias\": \"mock-pilot-1@microv-works.com\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"Mock Trunk 1\",\n                \"linePort\": \"mock-pilot-1@microv-works.com\",\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"true\",\n                \"contacts\": []\n            }\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService2\",\n        \"userId\": \"mock-pilot-1@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": true,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    }\n]"}],"_postman_id":"b349acca-3325-444f-90fd-5634548d2cf4"},{"name":"Service Provider User Department Report","id":"0f6ad264-f88b-41a8-916b-5e766b397c02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/reports/group-department?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","reports","group-department"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"4f6776e8-d87a-41e5-a845-9f68801cdd9d","name":"Service Provider Users Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/reports/users?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","reports","users"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 23:40:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"callingLineIdLastName\": \"User1last\",\n        \"callingLineIdFirstName\": \"User1first\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"9709580001\",\n        \"extension\": \"0001\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580001@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580001-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580001-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"title\": \"Test123\",\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580001@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Sequential Ring\"\n        ],\n        \"servicePacks\": [\n            \"Basic\"\n        ]\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"callingLineIdLastName\": \"User2last\",\n        \"callingLineIdFirstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"9709580002\",\n        \"extension\": \"0002\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580002@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580002-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580002-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580002@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Sequential Ring\"\n        ],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"callingLineIdLastName\": \"User3last\",\n        \"callingLineIdFirstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"9709580003\",\n        \"extension\": \"0003\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580003@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580003-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580003-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580003@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"callingLineIdLastName\": \"User4last\",\n        \"callingLineIdFirstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"9709580004\",\n        \"extension\": \"0004\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580004@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580004-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580004-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580004@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"callingLineIdLastName\": \"User5last\",\n        \"callingLineIdFirstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"9709580005\",\n        \"extension\": \"0005\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580005@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580005-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580005-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580005@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"callingLineIdLastName\": \"pilot\",\n        \"callingLineIdFirstName\": \"pilot\",\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"phoneNumber\": \"9709580008\",\n        \"extension\": \"0008\",\n        \"callingLineIdPhoneNumber\": \"9709580008\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"defaultAlias\": \"mock-pilot-1@microv-works.com\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"Mock Trunk 1\",\n                \"linePort\": \"mock-pilot-1@microv-works.com\",\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"true\",\n                \"contacts\": []\n            }\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService2\",\n        \"userId\": \"mock-pilot-1@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": true,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    }\n]"}],"_postman_id":"0f6ad264-f88b-41a8-916b-5e766b397c02"},{"name":"Service Providers Report","id":"b9550a81-2a37-4315-a6e8-1dddc62d47d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/service-providers/reports/users?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","reports","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"6d15253a-8967-4d34-b849-4426641885de","name":"Service Provider Users Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/reports/users?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","reports","users"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 23:40:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"callingLineIdLastName\": \"User1last\",\n        \"callingLineIdFirstName\": \"User1first\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"9709580001\",\n        \"extension\": \"0001\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580001@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580001-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580001-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"title\": \"Test123\",\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580001@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Sequential Ring\"\n        ],\n        \"servicePacks\": [\n            \"Basic\"\n        ]\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"callingLineIdLastName\": \"User2last\",\n        \"callingLineIdFirstName\": \"User2first\",\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"phoneNumber\": \"9709580002\",\n        \"extension\": \"0002\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580002@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580002-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580002-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580002@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Sequential Ring\"\n        ],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"callingLineIdLastName\": \"User3last\",\n        \"callingLineIdFirstName\": \"User3first\",\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"phoneNumber\": \"9709580003\",\n        \"extension\": \"0003\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580003@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580003-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580003-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580003@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"callingLineIdLastName\": \"User4last\",\n        \"callingLineIdFirstName\": \"User4first\",\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"phoneNumber\": \"9709580004\",\n        \"extension\": \"0004\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580004@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580004-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580004-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580004@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"callingLineIdLastName\": \"User5last\",\n        \"callingLineIdFirstName\": \"User5first\",\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"phoneNumber\": \"9709580005\",\n        \"extension\": \"0005\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580005@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580005-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580005-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580005@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"callingLineIdLastName\": \"pilot\",\n        \"callingLineIdFirstName\": \"pilot\",\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"phoneNumber\": \"9709580008\",\n        \"extension\": \"0008\",\n        \"callingLineIdPhoneNumber\": \"9709580008\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n        \"defaultAlias\": \"mock-pilot-1@microv-works.com\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"Mock Trunk 1\",\n                \"linePort\": \"mock-pilot-1@microv-works.com\",\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"true\",\n                \"contacts\": []\n            }\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService2\",\n        \"userId\": \"mock-pilot-1@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": true,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": []\n    }\n]"}],"_postman_id":"b9550a81-2a37-4315-a6e8-1dddc62d47d5"},{"name":"Group Users Report","id":"2a8e6476-2515-4eb5-a41b-ac93001ccc05","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/reports/users?serviceProviderId=LabEnterprise&groupId=regression.test","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","reports","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"LabEnterprise"},{"key":"groupId","value":"regression.test"}],"variable":[]}},"response":[{"id":"396952a9-d4d9-4157-bce8-5fb915cb7800","name":"Group Users Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/reports/users?serviceProviderId=LabEnterprise&groupId=regression.test","host":["{{url}}"],"path":["api","v2","service-providers","reports","users"],"query":[{"key":"serviceProviderId","value":"LabEnterprise"},{"key":"groupId","value":"regression.test"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 May 2019 13:06:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.1.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"User 1\",\n        \"firstName\": \"Test\",\n        \"callingLineIdLastName\": \"User 1\",\n        \"callingLineIdFirstName\": \"Test\",\n        \"hiraganaLastName\": \"User 1\",\n        \"hiraganaFirstName\": \"Test\",\n        \"phoneNumber\": \"2026951172\",\n        \"extension\": \"2639\",\n        \"department\": {\n            \"serviceProviderId\": \"LabEnterprise\",\n            \"groupId\": \"regression.test\",\n            \"name\": \"Bandwidth.com\"\n        },\n        \"departmentFullPath\": \"Bandwidth.com (regression.test)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"test.user1@alliedtelecom.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX600-S\",\n                \"protocol\": \"SIP 2.0\",\n                \"macAddress\": \"0004F2ACCAF7\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"32\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"Unspecified\",\n                \"useCustomUserNamePassword\": false,\n                \"version\": \"Polycom/5.4.1.14510 PolycomVVX-VVX_500-UA/5.4.1.14510\",\n                \"deviceName\": \"ECG_0004f2accaf7\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"LabEnterprise\",\n                \"groupId\": \"regression.test\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"2026951172@alliedtelecom.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"userId\": \"test.user1@alliedtelecom.net\",\n        \"callingLineIdPhoneNumber\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -101,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": [\n            \"Collaborate Pack 3.0\",\n            \"Contact Center Agent Pack 3.0\"\n        ],\n        \"userLinePorts\": []\n    },\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"User 3\",\n        \"firstName\": \"Test\",\n        \"callingLineIdLastName\": \"User 3\",\n        \"callingLineIdFirstName\": \"Test\",\n        \"hiraganaLastName\": \"User 3\",\n        \"hiraganaFirstName\": \"Test\",\n        \"phoneNumber\": \"3092650759\",\n        \"extension\": \"2437\",\n        \"department\": {\n            \"serviceProviderId\": \"LabEnterprise\",\n            \"groupId\": \"regression.test\",\n            \"name\": \"Level3\"\n        },\n        \"departmentFullPath\": \"Level3 (regression.test)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"test.user3@alliedtelecom.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX300-S\",\n                \"protocol\": \"SIP 2.0\",\n                \"macAddress\": \"0004F289F5AC\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"32\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"Unspecified\",\n                \"useCustomUserNamePassword\": false,\n                \"version\": \"PolycomVVX-VVX_310-UA/5.6.2.1593\",\n                \"deviceName\": \"ECG-0004F289F5AC\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"LabEnterprise\",\n                \"groupId\": \"regression.test\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"2022662437@alliedtelecom.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"impId\": \"test.user3.LabEnterprise@lab.alliedtelecom.net\",\n        \"userId\": \"test.user3@alliedtelecom.net\",\n        \"callingLineIdPhoneNumber\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -101,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Enhanced Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Advice Of Charge\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Office Communicator Tab\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"BroadWorks Connector for Lotus Sametime\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Executive\",\n            \"Executive-Assistant\",\n            \"Client License 3\",\n            \"Client License 15\",\n            \"Client License 16\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Security Classification\",\n            \"Flexible Seating Guest\",\n            \"Personal Assistant\",\n            \"Collaborate - Audio\",\n            \"Collaborate - Video\",\n            \"Collaborate - Sharing\",\n            \"Call Forwarding Always Secondary\",\n            \"Silent Alerting\",\n            \"Conference Room\",\n            \"Sequential Ring\",\n            \"Number Portability Announcement\",\n            \"Terminating Alternate Trunk Identity\"\n        ],\n        \"servicePacks\": [\n            \"Contact Center Supervisor Pack 3.0\",\n            \"Collaborate Pack 3.0\",\n            \"Call Forwarding (Mobility)\",\n            \"Go Integrator DB\",\n            \"Contact Center Agent Pack 3.0\"\n        ],\n        \"userLinePorts\": [\n            \"2022662437@alliedtelecom.net\"\n        ]\n    },\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"Test\",\n        \"firstName\": \"GS\",\n        \"callingLineIdLastName\": \"Test\",\n        \"callingLineIdFirstName\": \"GS\",\n        \"hiraganaLastName\": \"Test\",\n        \"hiraganaFirstName\": \"GS\",\n        \"extension\": \"2456\",\n        \"callingLineIdPhoneNumber\": \"+12022126866\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"gs.test@alliedtelecom.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"macAddress\": \"0004F280B782\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"32\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"Unspecified\",\n                \"useCustomUserNamePassword\": false,\n                \"version\": \"Polycom/5.4.1.14510 PolycomVVX-VVX_400-UA/5.4.1.14510\",\n                \"deviceName\": \"test.user4\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"LabEnterprise\",\n                \"groupId\": \"regression.test\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"test.user4@alliedtelecom.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"userId\": \"gs.test@alliedtelecom.net\",\n        \"phoneNumber\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": null,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Selective Call Acceptance\",\n            \"Client License 15\",\n            \"Client License 16\",\n            \"Security Classification\",\n            \"Personal Assistant\",\n            \"Route List\",\n            \"Collaborate - Sharing\",\n            \"Call Forwarding Always Secondary\",\n            \"Silent Alerting\",\n            \"Conference Room\",\n            \"Direct Route\"\n        ],\n        \"servicePacks\": [\n            \"Collaborate Pack 3.0\"\n        ],\n        \"userLinePorts\": []\n    },\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"User 2\",\n        \"firstName\": \"Test\",\n        \"callingLineIdLastName\": \"User 2\",\n        \"callingLineIdFirstName\": \"Test\",\n        \"hiraganaLastName\": \"User 2\",\n        \"hiraganaFirstName\": \"Test\",\n        \"phoneNumber\": \"2023478048\",\n        \"extension\": \"6866\",\n        \"department\": {\n            \"serviceProviderId\": \"LabEnterprise\",\n            \"groupId\": \"regression.test\",\n            \"name\": \"Telnyx\"\n        },\n        \"departmentFullPath\": \"Telnyx (regression.test)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"test.user2@alliedtelecom.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX600-S\",\n                \"protocol\": \"SIP 2.0\",\n                \"macAddress\": \"64167F031513\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"32\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"Unspecified\",\n                \"useCustomUserNamePassword\": false,\n                \"version\": \"PolycomVVX-VVX_601-UA/5.6.0.17325\",\n                \"deviceName\": \"ECG-0004f283b2f5\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"LabEnterprise\",\n                \"groupId\": \"regression.test\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"2023478048@alliedtelecom.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"impId\": \"test.user2.LabEnterprise@lab.alliedtelecom.net\",\n        \"userId\": \"test.user2@alliedtelecom.net\",\n        \"callingLineIdPhoneNumber\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 30,\n        \"phoneNumberActivated\": true,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": [\n            \"Contact Center Supervisor Pack 3.0\",\n            \"Collaborate Pack 3.0\",\n            \"UC One for PC Add-on 3.0\",\n            \"Contact Center Agent Pack 3.0\",\n            \"Contact Center Agent Console Add-on 3.0\"\n        ],\n        \"userLinePorts\": [\n            \"2023478048_2@alliedtelecom.net\"\n        ]\n    },\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"User\",\n        \"firstName\": \"PB.Test\",\n        \"callingLineIdLastName\": \"User\",\n        \"callingLineIdFirstName\": \"PB.Test\",\n        \"hiraganaLastName\": \"User\",\n        \"hiraganaFirstName\": \"PB.Test\",\n        \"callingLineIdPhoneNumber\": \"+12022126866\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"This.Is.A.Test.User@alliedtelecom.net\",\n        \"countryCode\": \"1\",\n        \"userId\": \"This.Is.A.Test.User@alliedtelecom.net\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": null,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Enhanced Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Advice Of Charge\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Office Communicator Tab\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"BroadWorks Connector for Lotus Sametime\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Executive\",\n            \"Executive-Assistant\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 15\",\n            \"Client License 16\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Security Classification\",\n            \"Flexible Seating Guest\",\n            \"Personal Assistant\",\n            \"Route List\",\n            \"Collaborate - Audio\",\n            \"Collaborate - Video\",\n            \"Collaborate - Sharing\",\n            \"Call Forwarding Always Secondary\",\n            \"Silent Alerting\",\n            \"Conference Room\",\n            \"Sequential Ring\",\n            \"Number Portability Announcement\",\n            \"Direct Route\",\n            \"Terminating Alternate Trunk Identity\"\n        ],\n        \"servicePacks\": [\n            \"AllCloud Performance\",\n            \"Mobility with UC One Pack 3.0\",\n            \"Group Door Buzzer Pack 3.0\",\n            \"Mobility with MobileLink Pack 3.0\",\n            \"Collaborate Pack 3.0\",\n            \"UC One for PC Add-on 3.0\",\n            \"Hosted Premium\",\n            \"UC One for S4B Add-on 3.0 (PC-Only)\",\n            \"Call Forwarding (Mobility)\",\n            \"UC One for Tablet Add-on 3.0\",\n            \"Premium\",\n            \"Door Buzzer Pack 3.0\",\n            \"Receptionist Console Add-On 3.0\",\n            \"Go Integrator DB\",\n            \"Line Pack 3.0\",\n            \"Voicemail Only Pack 3.0\",\n            \"Contact Center Agent Pack 3.0\",\n            \"Remote Call Forward\",\n            \"Performance Pack 3.0\",\n            \"Voice Messaging (Line)\",\n            \"Call Recording Add-on 3.0\",\n            \"UC One for Mobile Add-on 3.0\",\n            \"Contact Center Agent Console Add-on 3.0\"\n        ],\n        \"userLinePorts\": []\n    },\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"XSP.Test\",\n        \"firstName\": \"PB.User.XSP\",\n        \"callingLineIdLastName\": \"XSP.Test\",\n        \"callingLineIdFirstName\": \"PB.User.XSP\",\n        \"hiraganaLastName\": \"XSP.Test\",\n        \"hiraganaFirstName\": \"PB.User.XSP\",\n        \"callingLineIdPhoneNumber\": \"+12022126866\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"Another.Test.User.From.XSP@alliedtelecom.net\",\n        \"countryCode\": \"1\",\n        \"userId\": \"Another.Test.User.From.XSP@alliedtelecom.net\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": null,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [\n            \"Anonymous Call Rejection\",\n            \"Authentication\",\n            \"Call Forwarding Always\",\n            \"Call Forwarding Busy\",\n            \"Call Forwarding No Answer\",\n            \"Call Notify\",\n            \"Calling Line ID Delivery Blocking\",\n            \"CommPilot Express\",\n            \"CommPilot Call Manager\",\n            \"Do Not Disturb\",\n            \"Intercept User\",\n            \"Last Number Redial\",\n            \"Outlook Integration\",\n            \"Priority Alert\",\n            \"Call Return\",\n            \"Remote Office\",\n            \"Selective Call Acceptance\",\n            \"Call Forwarding Selective\",\n            \"Selective Call Rejection\",\n            \"Service Scripts User\",\n            \"Simultaneous Ring Personal\",\n            \"Voice Messaging User\",\n            \"Alternate Numbers\",\n            \"Shared Call Appearance\",\n            \"Speed Dial 8\",\n            \"Customer Originated Trace\",\n            \"Attendant Console\",\n            \"Third-Party MWI Control\",\n            \"Client Call Control\",\n            \"Shared Call Appearance 5\",\n            \"Shared Call Appearance 10\",\n            \"Shared Call Appearance 15\",\n            \"Shared Call Appearance 20\",\n            \"Shared Call Appearance 25\",\n            \"Shared Call Appearance 30\",\n            \"Shared Call Appearance 35\",\n            \"Calling Name Retrieval\",\n            \"Flash Call Hold\",\n            \"Speed Dial 100\",\n            \"Directed Call Pickup\",\n            \"Third-Party Voice Mail Support\",\n            \"Directed Call Pickup with Barge-in\",\n            \"Voice Portal Calling\",\n            \"External Calling Line ID Delivery\",\n            \"Internal Calling Line ID Delivery\",\n            \"Automatic Callback\",\n            \"Call Waiting\",\n            \"Calling Line ID Blocking Override\",\n            \"Calling Party Category\",\n            \"Barge-in Exempt\",\n            \"Video Add-On\",\n            \"Malicious Call Trace\",\n            \"Preferred Carrier User\",\n            \"Push to Talk\",\n            \"Basic Call Logs\",\n            \"Enhanced Call Logs\",\n            \"Hoteling Host\",\n            \"Hoteling Guest\",\n            \"Voice Messaging User - Video\",\n            \"Diversion Inhibitor\",\n            \"Multiple Call Arrangement\",\n            \"Custom Ringback User\",\n            \"Custom Ringback User - Video\",\n            \"Automatic Hold/Retrieve\",\n            \"Busy Lamp Field\",\n            \"Three-Way Call\",\n            \"Call Transfer\",\n            \"Privacy\",\n            \"Fax Messaging\",\n            \"Physical Location\",\n            \"Charge Number\",\n            \"BroadWorks Agent\",\n            \"N-Way Call\",\n            \"Two-Stage Dialing\",\n            \"Call Forwarding Not Reachable\",\n            \"MWI Delivery to Mobile Endpoint\",\n            \"BroadWorks Receptionist - Small Business\",\n            \"BroadWorks Receptionist - Office\",\n            \"External Custom Ringback\",\n            \"In-Call Service Activation\",\n            \"Connected Line Identification Presentation\",\n            \"Connected Line Identification Restriction\",\n            \"BroadWorks Anywhere\",\n            \"Zone Calling Restrictions\",\n            \"Polycom Phone Services\",\n            \"Custom Ringback User - Call Waiting\",\n            \"Music On Hold User\",\n            \"Video On Hold User\",\n            \"Advice Of Charge\",\n            \"Prepaid\",\n            \"Call Center - Basic\",\n            \"Call Center - Standard\",\n            \"Call Center - Premium\",\n            \"Communication Barring User-Control\",\n            \"Classmark\",\n            \"Calling Name Delivery\",\n            \"Calling Number Delivery\",\n            \"Virtual On-Net Enterprise Extensions\",\n            \"Office Communicator Tab\",\n            \"Pre-alerting Announcement\",\n            \"Call Center Monitoring\",\n            \"Location-Based Calling Restrictions\",\n            \"BroadWorks Mobility\",\n            \"Call Me Now\",\n            \"Call Recording\",\n            \"BroadWorks Connector for Lotus Sametime\",\n            \"Integrated IMP\",\n            \"Group Night Forwarding\",\n            \"BroadTouch Business Communicator Desktop\",\n            \"BroadTouch Business Communicator Desktop - Audio\",\n            \"BroadTouch Business Communicator Mobile\",\n            \"BroadTouch Business Communicator Mobile - Audio\",\n            \"BroadTouch Business Communicator Tablet\",\n            \"BroadTouch Business Communicator Tablet - Audio\",\n            \"BroadTouch Business Communicator Tablet - Video\",\n            \"Executive\",\n            \"Executive-Assistant\",\n            \"Client License 3\",\n            \"Client License 4\",\n            \"Client License 15\",\n            \"Client License 16\",\n            \"Client License 17\",\n            \"Client License 18\",\n            \"Client License 19\",\n            \"Security Classification\",\n            \"Flexible Seating Guest\",\n            \"Personal Assistant\",\n            \"Route List\",\n            \"Collaborate - Audio\",\n            \"Collaborate - Video\",\n            \"Collaborate - Sharing\",\n            \"Call Forwarding Always Secondary\",\n            \"Silent Alerting\",\n            \"Conference Room\",\n            \"Sequential Ring\",\n            \"Number Portability Announcement\",\n            \"Direct Route\",\n            \"Terminating Alternate Trunk Identity\"\n        ],\n        \"servicePacks\": [\n            \"AllCloud Performance\",\n            \"Mobility with UC One Pack 3.0\",\n            \"Group Door Buzzer Pack 3.0\",\n            \"Mobility with MobileLink Pack 3.0\",\n            \"Collaborate Pack 3.0\",\n            \"UC One for PC Add-on 3.0\",\n            \"Hosted Premium\",\n            \"UC One for S4B Add-on 3.0 (PC-Only)\",\n            \"Call Forwarding (Mobility)\",\n            \"UC One for Tablet Add-on 3.0\",\n            \"Premium\",\n            \"Door Buzzer Pack 3.0\",\n            \"Receptionist Console Add-On 3.0\",\n            \"Go Integrator DB\",\n            \"Line Pack 3.0\",\n            \"Voicemail Only Pack 3.0\",\n            \"Contact Center Agent Pack 3.0\",\n            \"Remote Call Forward\",\n            \"Performance Pack 3.0\",\n            \"Voice Messaging (Line)\",\n            \"Call Recording Add-on 3.0\",\n            \"UC One for Mobile Add-on 3.0\",\n            \"Contact Center Agent Console Add-on 3.0\"\n        ],\n        \"userLinePorts\": []\n    },\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"CLi.Test.User\",\n        \"firstName\": \"CLi.Test.User\",\n        \"callingLineIdLastName\": \"CLi.Test.User\",\n        \"callingLineIdFirstName\": \"CLi.Test.User\",\n        \"hiraganaLastName\": \"CLi.Test.User\",\n        \"hiraganaFirstName\": \"CLi.Test.User\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"CLi.Test.User@alliedtelecom.net\",\n        \"countryCode\": \"1\",\n        \"userId\": \"CLi.Test.User@alliedtelecom.net\",\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": null,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": [\n            \"Line Pack 3.0\"\n        ],\n        \"userLinePorts\": []\n    },\n    {\n        \"serviceProviderId\": \"LabEnterprise\",\n        \"groupId\": \"regression.test\",\n        \"lastName\": \"Allani\",\n        \"firstName\": \"Karim\",\n        \"callingLineIdLastName\": \"Allani\",\n        \"callingLineIdFirstName\": \"Karim\",\n        \"hiraganaLastName\": \"Allani\",\n        \"hiraganaFirstName\": \"Karim\",\n        \"phoneNumber\": \"2025551234\",\n        \"extension\": \"234\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n        \"defaultAlias\": \"kallani@alliedtelecom.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX101-S\",\n                \"protocol\": \"SIP 2.0\",\n                \"macAddress\": \"0004F2987456\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"2\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"Unspecified\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"0004f2987456\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"LabEnterprise\",\n                \"groupId\": \"regression.test\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"2025551234@alliedtelecom.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"mobilePhoneNumber\": 2023725988,\n        \"emailAddress\": \"kallani@alliedtelecom.net\",\n        \"countryCode\": \"1\",\n        \"userId\": \"kallani@alliedtelecom.net\",\n        \"callingLineIdPhoneNumber\": \"\",\n        \"domain\": \"alliedtelecom.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": -2147483648,\n        \"phoneNumberActivated\": false,\n        \"inTrunkGroup\": false,\n        \"premiumServices\": [],\n        \"userServices\": [],\n        \"servicePacks\": [],\n        \"userLinePorts\": []\n    }\n]"}],"_postman_id":"2a8e6476-2515-4eb5-a41b-ac93001ccc05"},{"name":"User Report","id":"349bfebd-c809-467c-b88b-d337b735105f","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/reports/users?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","reports","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"05462ba8-ee43-4aa6-85aa-79daaba7a8db","name":"User Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/reports/users?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","reports","users"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 23:46:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"4631"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"lastName\": \"Mock1\",\n    \"firstName\": \"Mock1\",\n    \"callingLineIdLastName\": \"User1last\",\n    \"callingLineIdFirstName\": \"User1first\",\n    \"hiraganaLastName\": \"Mock1\",\n    \"hiraganaFirstName\": \"Mock1\",\n    \"phoneNumber\": \"9709580001\",\n    \"extension\": \"0001\",\n    \"callingLineIdPhoneNumber\": \"9709580001\",\n    \"department\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"name\": \"Odin Mock Dept\"\n    },\n    \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Edmonton\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n    \"defaultAlias\": \"9709580001@microv-works.com\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Polycom_VVX400\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"quantity\": \"12\"\n            },\n            \"numberOfAssignedPorts\": 2,\n            \"status\": \"Online\",\n            \"configurationMode\": \"Default\",\n            \"transportProtocol\": \"TCP\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"9709580001-dev1\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"9709580001-dev1@microv-works.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"contacts\": []\n    },\n    \"title\": \"Test123\",\n    \"address\": {\n        \"stateOrProvince\": \"Arizona\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"NetworkClassOfService1\",\n    \"userId\": \"9709580001@microv-works.com\",\n    \"domain\": \"microv-works.com\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647,\n    \"phoneNumberActivated\": null,\n    \"inTrunkGroup\": null,\n    \"premiumServices\": [],\n    \"userServices\": [\n        \"Anonymous Call Rejection\",\n        \"Authentication\",\n        \"Call Forwarding Always\",\n        \"Call Forwarding Busy\",\n        \"Call Forwarding No Answer\",\n        \"Call Notify\",\n        \"Calling Line ID Delivery Blocking\",\n        \"CommPilot Express\",\n        \"CommPilot Call Manager\",\n        \"Do Not Disturb\",\n        \"Intercept User\",\n        \"Last Number Redial\",\n        \"Outlook Integration\",\n        \"Priority Alert\",\n        \"Call Return\",\n        \"Remote Office\",\n        \"Selective Call Acceptance\",\n        \"Call Forwarding Selective\",\n        \"Selective Call Rejection\",\n        \"Service Scripts User\",\n        \"Simultaneous Ring Personal\",\n        \"Voice Messaging User\",\n        \"Alternate Numbers\",\n        \"Shared Call Appearance\",\n        \"Speed Dial 8\",\n        \"Customer Originated Trace\",\n        \"Attendant Console\",\n        \"Third-Party MWI Control\",\n        \"Client Call Control\",\n        \"Shared Call Appearance 5\",\n        \"Shared Call Appearance 10\",\n        \"Shared Call Appearance 15\",\n        \"Shared Call Appearance 20\",\n        \"Shared Call Appearance 25\",\n        \"Shared Call Appearance 30\",\n        \"Shared Call Appearance 35\",\n        \"Calling Name Retrieval\",\n        \"Flash Call Hold\",\n        \"Speed Dial 100\",\n        \"Directed Call Pickup\",\n        \"Third-Party Voice Mail Support\",\n        \"Directed Call Pickup with Barge-in\",\n        \"Voice Portal Calling\",\n        \"External Calling Line ID Delivery\",\n        \"Internal Calling Line ID Delivery\",\n        \"Automatic Callback\",\n        \"Call Waiting\",\n        \"Calling Line ID Blocking Override\",\n        \"Calling Party Category\",\n        \"Barge-in Exempt\",\n        \"Video Add-On\",\n        \"Malicious Call Trace\",\n        \"Preferred Carrier User\",\n        \"Push to Talk\",\n        \"Basic Call Logs\",\n        \"Hoteling Host\",\n        \"Hoteling Guest\",\n        \"Voice Messaging User - Video\",\n        \"Diversion Inhibitor\",\n        \"Multiple Call Arrangement\",\n        \"Custom Ringback User\",\n        \"Custom Ringback User - Video\",\n        \"Automatic Hold/Retrieve\",\n        \"Busy Lamp Field\",\n        \"Three-Way Call\",\n        \"Call Transfer\",\n        \"Privacy\",\n        \"Fax Messaging\",\n        \"Physical Location\",\n        \"Charge Number\",\n        \"BroadWorks Agent\",\n        \"N-Way Call\",\n        \"Two-Stage Dialing\",\n        \"Call Forwarding Not Reachable\",\n        \"MWI Delivery to Mobile Endpoint\",\n        \"BroadWorks Receptionist - Small Business\",\n        \"BroadWorks Receptionist - Office\",\n        \"External Custom Ringback\",\n        \"In-Call Service Activation\",\n        \"Connected Line Identification Presentation\",\n        \"Connected Line Identification Restriction\",\n        \"BroadWorks Anywhere\",\n        \"Zone Calling Restrictions\",\n        \"Polycom Phone Services\",\n        \"Custom Ringback User - Call Waiting\",\n        \"Music On Hold User\",\n        \"Video On Hold User\",\n        \"Prepaid\",\n        \"Call Center - Basic\",\n        \"Call Center - Standard\",\n        \"Call Center - Premium\",\n        \"Communication Barring User-Control\",\n        \"Classmark\",\n        \"Calling Name Delivery\",\n        \"Calling Number Delivery\",\n        \"Virtual On-Net Enterprise Extensions\",\n        \"Pre-alerting Announcement\",\n        \"Call Center Monitoring\",\n        \"Location-Based Calling Restrictions\",\n        \"BroadWorks Mobility\",\n        \"Call Me Now\",\n        \"Call Recording\",\n        \"Integrated IMP\",\n        \"Group Night Forwarding\",\n        \"BroadTouch Business Communicator Desktop\",\n        \"BroadTouch Business Communicator Desktop - Audio\",\n        \"BroadTouch Business Communicator Mobile\",\n        \"BroadTouch Business Communicator Mobile - Audio\",\n        \"BroadTouch Business Communicator Tablet\",\n        \"BroadTouch Business Communicator Tablet - Audio\",\n        \"BroadTouch Business Communicator Tablet - Video\",\n        \"Client License 3\",\n        \"Client License 4\",\n        \"Client License 17\",\n        \"Client License 18\",\n        \"Client License 19\",\n        \"Sequential Ring\"\n    ],\n    \"servicePacks\": [\n        \"Basic\"\n    ]\n}"}],"_postman_id":"349bfebd-c809-467c-b88b-d337b735105f"}],"id":"f2975160-b02e-4ed3-9883-df33f3ecd0b5","_postman_id":"f2975160-b02e-4ed3-9883-df33f3ecd0b5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Resellers","item":[{"name":"Resellers","event":[{"listen":"test","script":{"id":"74ca0afd-2a2c-412d-a549-4d541ff37253","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"b14c78cd-aaf3-4299-8985-ba2f8ae6c6da","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/resellers","description":"<p>List all Service Providers</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b14c78cd-aaf3-4299-8985-ba2f8ae6c6da"},{"name":"Reseller","event":[{"listen":"test","script":{"id":"74ca0afd-2a2c-412d-a549-4d541ff37253","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"f235e7ee-6b54-43c0-b933-9ce592794c93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/reseller?resellerId=phonism","description":"<p>List all Service Providers</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reseller"],"host":["{{url}}"],"query":[{"key":"resellerId","value":"phonism"}],"variable":[]}},"response":[],"_postman_id":"f235e7ee-6b54-43c0-b933-9ce592794c93"},{"name":"Reseller","event":[{"listen":"test","script":{"id":"33bc0ea3-ef91-4384-bd33-b090f2f12190","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"42ea6e4b-3bc8-4c61-b078-16e333caab50","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"resellerId\": \"odin.mock.reseller1.id\",\n    \"resellerName\": \"odin mock reseller1 name\"\n}"},"url":"{{url}}/api/v2/resellers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1f2792ac-18f3-4eed-b911-68984070bab6","name":"Reseller","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"resellerId\": \"odin.mock.reseller1.id\",\n    \"resellerName\": \"odin mock reseller1 name\"\n}"},"url":"{{url}}/api/v2/resellers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"resellerName\": \"odin mock reseller1 name\",\n    \"resellerId\": \"odin.mock.reseller1.id\"\n}"}],"_postman_id":"42ea6e4b-3bc8-4c61-b078-16e333caab50"},{"name":"Reseller","event":[{"listen":"test","script":{"id":"dc55f3b4-0c40-4da2-9978-5dde18ebc5b3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"a812ff59-3cec-4171-8ec6-44ac8bfe4022","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"resellerId\": \"odin.mock.reseller1.id\",\n    \"resellerName\": \"odin mock reseller1 name\"\n}"},"url":"{{url}}/api/v2/resellers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a812ff59-3cec-4171-8ec6-44ac8bfe4022"},{"name":"Reseller","event":[{"listen":"test","script":{"id":"dc55f3b4-0c40-4da2-9978-5dde18ebc5b3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"cab1b2be-a3e6-44dc-93b6-b69233188571","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/resellers?resellerId=odin.mock.reseller1.id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","resellers"],"host":["{{url}}"],"query":[{"key":"resellerId","value":"odin.mock.reseller1.id"}],"variable":[]}},"response":[{"id":"454675e6-7876-456e-9d1a-9dede2c1662a","name":"Reseller","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/resellers?resellerId=odin.mock.reseller1.id","host":["{{url}}"],"path":["api","v2","resellers"],"query":[{"key":"resellerId","value":"odin.mock.reseller1.id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"resellerId\": \"reseller.odin\",\n        \"resellerName\": \"reseller.odin\"\n    },\n    {\n        \"resellerId\": \"reseller.odin.2\",\n        \"resellerName\": \"reseller.odin.2\"\n    }\n]"}],"_postman_id":"cab1b2be-a3e6-44dc-93b6-b69233188571"}],"id":"d23a3919-7138-4ae8-b939-1798d7ab20b3","_postman_id":"d23a3919-7138-4ae8-b939-1798d7ab20b3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Route List","item":[{"name":"User Route List","id":"73bfaf43-016a-4291-acd5-050baba6b812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/route-list?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","route-list"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"39cf8a86-797a-4609-b6ab-67b52970c4b6","name":"User Route List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/route-list?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","route-list"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n    \"useRouteListIdentityForNonEmergencyCalls\": true,\n    \"useRouteListIdentityForEmergencyCalls\": true,\n    \"dns\": [\n        {\n            \"min\": \"+1-2123134000\",\n            \"max\": \"+1-2123134000\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123134002\",\n            \"max\": \"+1-2123134999\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123135000\",\n            \"max\": \"+1-2123135999\",\n            \"isActive\": true\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"73bfaf43-016a-4291-acd5-050baba6b812"},{"name":"User Route List","id":"b246f35d-0173-490a-822b-f49b8af85cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n    \"useRouteListIdentityForNonEmergencyCalls\": true,\n    \"useRouteListIdentityForEmergencyCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"dns\": [\n        {\n            \"min\": \"+1-2123134000\",\n            \"max\": \"+1-2123134000\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123134002\",\n            \"max\": \"+1-2123134999\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123135000\",\n            \"max\": \"+1-2123135999\",\n            \"isActive\": true\n        }        \n    ]\n}"},"url":"{{url}}/api/v2/users/route-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","route-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5bd8ce44-f03e-464c-8091-b0ba356b8099","name":"User Route List","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n    \"useRouteListIdentityForNonEmergencyCalls\": true,\n    \"useRouteListIdentityForEmergencyCalls\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"dns\": [\n        {\n            \"min\": \"+1-2123134000\",\n            \"max\": \"+1-2123134000\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123134002\",\n            \"max\": \"+1-2123134999\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123135000\",\n            \"max\": \"+1-2123135999\",\n            \"isActive\": true\n        }        \n    ]\n}"},"url":"{{url}}/api/v2/users/route-list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n    \"useRouteListIdentityForNonEmergencyCalls\": true,\n    \"useRouteListIdentityForEmergencyCalls\": true,\n    \"dns\": [\n        {\n            \"min\": \"+1-2123134000\",\n            \"max\": \"+1-2123134000\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123134002\",\n            \"max\": \"+1-2123134999\",\n            \"isActive\": true\n        },\n        {\n            \"min\": \"+1-2123135000\",\n            \"max\": \"+1-2123135999\",\n            \"isActive\": true\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 8416\n}"}],"_postman_id":"b246f35d-0173-490a-822b-f49b8af85cde"}],"id":"37cea91e-3e35-48cd-8b2a-e5bfe30d2a6a","description":"<p>Route list can't be cloned from user to user because the dns are unique to each user and can't be shared.</p>\n","event":[{"listen":"prerequest","script":{"id":"56a33f7c-2977-4dfc-997f-934327ae1617","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7c5dfad6-5bb9-4174-a8d7-0c6c3fdcb8f3","type":"text/javascript","exec":[""]}}],"_postman_id":"37cea91e-3e35-48cd-8b2a-e5bfe30d2a6a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Routing Profile","item":[{"name":"System Routing Profile","id":"f92adbcb-c51e-4828-8e7e-ac182bdeed9e","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/routing-profile","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","routing-profile"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"988cd4d2-33a0-41f3-960b-fb35cd87f993","name":"System Routing Profile","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/routing-profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 00:15:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"32"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    \"hosting\",\n    \"routing\",\n    \"redirect\"\n]"}],"_postman_id":"f92adbcb-c51e-4828-8e7e-ac182bdeed9e"},{"name":"Service Provider Routing Profile","id":"26a9fd05-dca2-4425-a316-1f105ac599e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/routing-profile?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","routing-profile"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"8a7f0ba6-f6ff-435a-888f-13da223be87e","name":"Group Routing Profile","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/routing-profile?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","routing-profile"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:37:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"92"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"routingProfile\": \"hosting\"\n}"}],"_postman_id":"26a9fd05-dca2-4425-a316-1f105ac599e5"},{"name":"Service Provider Routing Profile","id":"0495511e-d99f-4494-b2f6-961e97112cfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"routingProfile\": \"hosting\"\n}"},"url":"{{url}}/api/v2/service-providers/routing-profile","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","routing-profile"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1ac4c8df-9885-48e8-b16c-890cae75138e","name":"Group Routing Profile","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"routingProfile\": \"hosting\"\n}"},"url":"{{url}}/api/v2/groups/routing-profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:38:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"0495511e-d99f-4494-b2f6-961e97112cfa"},{"name":"Group Routing Profile","id":"934d5cce-2e92-4bcb-b929-d5b408d81e57","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/routing-profile?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","routing-profile"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"4a54d8aa-6209-47df-a3ba-07f2132d3509","name":"Group Routing Profile","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/routing-profile?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","routing-profile"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:37:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"92"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"routingProfile\": \"hosting\"\n}"}],"_postman_id":"934d5cce-2e92-4bcb-b929-d5b408d81e57"},{"name":"Group Routing Profile","id":"453b1f15-0807-4162-bcbe-9450497bf32a","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"routingProfile\": \"hosting\"\n}"},"url":"{{url}}/api/v2/groups/routing-profile","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","routing-profile"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7da67c32-4098-4268-9b03-d1fe3c6284ee","name":"Group Routing Profile","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"routingProfile\": \"hosting\"\n}"},"url":"{{url}}/api/v2/groups/routing-profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:38:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"453b1f15-0807-4162-bcbe-9450497bf32a"}],"id":"1f9ffb3d-c732-44eb-9900-520c06972a57","_postman_id":"1f9ffb3d-c732-44eb-9900-520c06972a57","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Schedules","item":[{"name":"Service Provider Schedules","id":"55536c4f-0743-4674-9f69-a8fb58b07a31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/schedules?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","schedules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"92096419-cac6-4370-a1ee-771792a33cda","name":"Service Provider Schedules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/schedules?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","schedules"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"EntSched\",\n        \"type\": \"Time\",\n        \"serviceProviderId\": \"ent.odin\"\n    }\n]"}],"_postman_id":"55536c4f-0743-4674-9f69-a8fb58b07a31"},{"name":"Service Provider Schedule","id":"9f568562-3d00-4150-bc07-a80872c5f7a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"Holiday 1\",\n\t\"type\":\"Holiday\"\n}"},"url":"{{url}}/api/v2/service-providers/schedules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","schedules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f39cc853-2542-4237-9d31-bc628bb0e748","name":"Service Provider Schedule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"Holiday 1\",\n\t\"type\":\"Holiday\"\n}"},"url":"{{url}}/api/v2/service-providers/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"EntSched\",\n        \"type\": \"Time\",\n        \"serviceProviderId\": \"ent.odin\"\n    },\n    {\n        \"name\": \"Test123\",\n        \"type\": \"Holiday\",\n        \"serviceProviderId\": \"ent.odin\"\n    },\n    {\n        \"name\": \"Holiday 1\",\n        \"type\": \"Holiday\",\n        \"serviceProviderId\": \"ent.odin\"\n    }\n]"}],"_postman_id":"9f568562-3d00-4150-bc07-a80872c5f7a5"},{"name":"Service Provider Schedule","id":"96915b18-a8ce-4956-8d7b-860570acebb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/schedules?serviceProviderId=ent.odin&name=Test123&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","schedules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[{"id":"b2a629c5-46b1-4da9-9f68-1898d7c6df6e","name":"Service Provider Schedule","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/schedules?serviceProviderId=ent.odin&name=Test123&type=Holiday","host":["{{url}}"],"path":["api","v2","service-providers","schedules"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"96915b18-a8ce-4956-8d7b-860570acebb7"},{"name":"Service Provider Schedule","id":"ef1180ed-f0ec-4d90-927d-4fc895727ea7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\",\n\t\"newName\":\"Test123\"\n}"},"url":"{{url}}/api/v2/service-providers/schedules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","schedules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d4c06250-4e17-4940-a3de-ce6e9fa09a19","name":"Service Provider Schedule","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\",\n\t\"newName\":\"Test123\"\n}"},"url":"{{url}}/api/v2/service-providers/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"serviceProviderId\": \"ent.odin\"\n}"}],"_postman_id":"ef1180ed-f0ec-4d90-927d-4fc895727ea7"},{"name":"Service Provider Schedule","id":"53041770-d1dd-4026-bfe6-66afea33c52a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/schedules?serviceProviderId=ent.odin&name=Test123&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","schedules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[{"id":"0ece9fec-b97c-4528-bdbe-00f08fa6ad2f","name":"Service Provider Schedule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/schedules?serviceProviderId=ent.odin&name=Test123&type=Holiday","host":["{{url}}"],"path":["api","v2","service-providers","schedules"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"EntSched\",\n        \"type\": \"Time\",\n        \"serviceProviderId\": \"ent.odin\"\n    },\n    {\n        \"name\": \"Holiday 1\",\n        \"type\": \"Holiday\",\n        \"serviceProviderId\": \"ent.odin\"\n    }\n]"}],"_postman_id":"53041770-d1dd-4026-bfe6-66afea33c52a"},{"name":"Service Provider Events","id":"458f4f44-35a9-4b67-b6a5-ba98800c7c02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/events?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test1234&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","events"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[],"_postman_id":"458f4f44-35a9-4b67-b6a5-ba98800c7c02"},{"name":"Service Provider Event","id":"049a9fe7-d508-4396-9251-80d6c67cd820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"eventName\":\"Test / Event\",\n\t\"allDayEvent\":true,\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"rrule\":\"FREQ=DAILY;INTERVAL=1\"\n}"},"url":"{{url}}/api/v2/service-providers/events","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b32dc6f8-daf0-483c-a49d-3b16d68f3449","name":"Service Provider Event","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"eventName\":\"Test / Event\",\n\t\"allDayEvent\":true,\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"rrule\":\"FREQ=DAILY;INTERVAL=1\"\n}"},"url":"{{url}}/api/v2/service-providers/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"eventName\": \"Test / Event\",\n    \"startTime\": \"2018-09-15T00:00:00\",\n    \"endTime\": \"2018-09-15T23:59:59\",\n    \"allDayEvent\": true,\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"rrule\": \"DTSTART:20180915T000000Z\\nRRULE:FREQ=DAILY\"\n}"}],"_postman_id":"049a9fe7-d508-4396-9251-80d6c67cd820"},{"name":"Service Provider Event","id":"6ac933fc-3b99-4b97-92d7-b6df5fec4d8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/events?serviceProviderId=ent.odin&name=Test123&type=Holiday&eventName=Test / Event","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","events"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"},{"key":"eventName","value":"Test / Event"}],"variable":[]}},"response":[{"id":"28de09ff-ec8f-4c81-b758-aecffaca36bf","name":"Service Provider Event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/events?serviceProviderId=ent.odin&name=Test123&type=Holiday&eventName=Test / Event","host":["{{url}}"],"path":["api","v2","service-providers","events"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"},{"key":"eventName","value":"Test / Event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"eventName\": \"Test / Event\",\n    \"startTime\": \"2018-09-15T00:00:00\",\n    \"endTime\": \"2018-09-15T23:59:59\",\n    \"allDayEvent\": true,\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"rrule\": \"DTSTART:20180915T000000Z\\nRRULE:FREQ=DAILY\"\n}"}],"_postman_id":"6ac933fc-3b99-4b97-92d7-b6df5fec4d8d"},{"name":"Service Provider Event","id":"7e1a1cb1-b019-49e9-9a16-2d89d817cfa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"eventName\":\"Test Event\",\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-16T00:00:00.000-07:00\",\n\t\"allDayEvent\":true,\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"rrule\":\"FREQ=WEEKLY;INTERVAL=1;BYDAY=SA;COUNT=3\",\n\t\"newEventName\":\"New Test Event\"\n}"},"url":"{{url}}/api/v2/service-providers/events","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6f9b7d9a-e5ff-4d99-abf5-d88bc453ee3c","name":"Service Provider Event","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"eventName\":\"Test Event\",\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-16T00:00:00.000-07:00\",\n\t\"allDayEvent\":true,\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"serviceProviderId\":\"ent.odin\",\n\t\"rrule\":\"FREQ=WEEKLY;INTERVAL=1;BYDAY=SA;COUNT=3\",\n\t\"newEventName\":\"New Test Event\"\n}"},"url":"{{url}}/api/v2/service-providers/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"eventName\": \"New Test Event\",\n    \"startTime\": \"2018-09-15T00:00:00\",\n    \"endTime\": \"2018-09-16T23:59:59\",\n    \"allDayEvent\": true,\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"rrule\": \"DTSTART:20180915T000000Z\\nRRULE:FREQ=WEEKLY;COUNT=3;BYDAY=SA\"\n}"}],"_postman_id":"7e1a1cb1-b019-49e9-9a16-2d89d817cfa5"},{"name":"Service Provider Event","id":"3462fa1c-b8a1-4efe-a44e-99dc7ae70f55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM2OTQ2NjY0LCJuYnAiOjE1MzY5NDY2NjQsImV4cCI6MTUzNjk4OTg2NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJak5jTDI0clhDOXVVamd6VkhKclJXRkRlaXR5ZVRKV1VUMDlJaXdpZG1Gc2RXVWlPaUpLUTA5bGVYRnNXbVZLVmtVNU9XMXFlRVV3SzNkS2NYbEZVbHd2V2xKa0swMWFNemhEYjI1ek5Wd3ZNMFU5SWl3aWJXRmpJam9pTXpVeU16TXhZMk5oTXpVM01qUTFaR1U1WW1ZME5qQmxOelU0WTJZM09HTXdNMlEwTTJRd05tRmhaRFUxWVRBNE5HSmpZV1E1TmpsaU4ySTRNbVUwTmlKOSIsInAiOiJleUpwZGlJNklrUjZlRzFJYlVGdU9IWm9lbTlHTm5OWFVITTVZVkU5UFNJc0luWmhiSFZsSWpvaWEzcEphR1JSVEZadk1GZDBNV04yYWtwTmRFSlNZekJ2ZVVWUGFIVmxNMFpNWEM5TWRFeHdiV3BKVEN0Y0wwdGFkVTExTldsU1JFbzBiMDR3V2tNMVNYRkRWbUpRUjA0MlNVRkdWM1ZsUkRaVWQwVlBObGxwZHowOUlpd2liV0ZqSWpvaVpqbGlaalZpTkdVd05qTmhOR1kwTUdNNFpqYzJaVFl5TXpOaE5qVTVNVEJpWlRCaE9EWXdPV0ZqTkRjeU1qTTFaVEk0TVRkak1XSTNNRFUyWkdJd01pSjkiLCJlIjoiZXlKcGRpSTZJbXN5VFhOWFN6bE9abHd2WldGS01uTkJTMmg1Ymx3dlFUMDlJaXdpZG1Gc2RXVWlPaUpGUTB0YU0xZzRUa2g1ZEhoTVV6VnhOMHBvWnpGM1BUMGlMQ0p0WVdNaU9pSmtZV1F4TVdFMk16bGlaV1UwWW1OaVlqQTNOamcwWkRjMU5EQXpOelU0TnprNU1qQm1PVGhpWm1GbU1UY3lNVEV6WlRNM05EQmtORFpoWmpobE9EVXhJbjA9In19.JLaj8FtEqjnw2izIYcxaIx88C7z7y1bQttdEtGlcTo8"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/events?serviceProviderId=ent.odin&eventName=New Test Event&name=Test1234&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","events"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"eventName","value":"New Test Event"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[{"id":"496614eb-1bb2-48ac-9000-466c1bfca051","name":"Group Event","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM2OTQ2NjY0LCJuYnAiOjE1MzY5NDY2NjQsImV4cCI6MTUzNjk4OTg2NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJak5jTDI0clhDOXVVamd6VkhKclJXRkRlaXR5ZVRKV1VUMDlJaXdpZG1Gc2RXVWlPaUpLUTA5bGVYRnNXbVZLVmtVNU9XMXFlRVV3SzNkS2NYbEZVbHd2V2xKa0swMWFNemhEYjI1ek5Wd3ZNMFU5SWl3aWJXRmpJam9pTXpVeU16TXhZMk5oTXpVM01qUTFaR1U1WW1ZME5qQmxOelU0WTJZM09HTXdNMlEwTTJRd05tRmhaRFUxWVRBNE5HSmpZV1E1TmpsaU4ySTRNbVUwTmlKOSIsInAiOiJleUpwZGlJNklrUjZlRzFJYlVGdU9IWm9lbTlHTm5OWFVITTVZVkU5UFNJc0luWmhiSFZsSWpvaWEzcEphR1JSVEZadk1GZDBNV04yYWtwTmRFSlNZekJ2ZVVWUGFIVmxNMFpNWEM5TWRFeHdiV3BKVEN0Y0wwdGFkVTExTldsU1JFbzBiMDR3V2tNMVNYRkRWbUpRUjA0MlNVRkdWM1ZsUkRaVWQwVlBObGxwZHowOUlpd2liV0ZqSWpvaVpqbGlaalZpTkdVd05qTmhOR1kwTUdNNFpqYzJaVFl5TXpOaE5qVTVNVEJpWlRCaE9EWXdPV0ZqTkRjeU1qTTFaVEk0TVRkak1XSTNNRFUyWkdJd01pSjkiLCJlIjoiZXlKcGRpSTZJbXN5VFhOWFN6bE9abHd2WldGS01uTkJTMmg1Ymx3dlFUMDlJaXdpZG1Gc2RXVWlPaUpGUTB0YU0xZzRUa2g1ZEhoTVV6VnhOMHBvWnpGM1BUMGlMQ0p0WVdNaU9pSmtZV1F4TVdFMk16bGlaV1UwWW1OaVlqQTNOamcwWkRjMU5EQXpOelU0TnprNU1qQm1PVGhpWm1GbU1UY3lNVEV6WlRNM05EQmtORFpoWmpobE9EVXhJbjA9In19.JLaj8FtEqjnw2izIYcxaIx88C7z7y1bQttdEtGlcTo8"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/events?eventName=Test Event&groupId=odin.mock.grp1&name=Test1234&type=Holiday&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","events"],"query":[{"key":"eventName","value":"Test Event"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:29:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3462fa1c-b8a1-4efe-a44e-99dc7ae70f55"},{"name":"Group Schedules","id":"9c3d2af5-5a71-4dfc-b43c-39e167363176","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/schedules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","schedules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"820c43d4-f445-4868-a316-8b9c6d776ac1","name":"Group Schedules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/schedules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","schedules"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:25:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"231"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Test123\",\n        \"type\": \"Time\",\n        \"level\": \"Group\",\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    },\n    {\n        \"name\": \"Test1234\",\n        \"type\": \"Holiday\",\n        \"level\": \"Group\",\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\"\n    }\n]"}],"_postman_id":"9c3d2af5-5a71-4dfc-b43c-39e167363176"},{"name":"Group Schedule","id":"1737cf77-dcad-436d-a780-b7bec458fcca","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\"\n}"},"url":"{{url}}/api/v2/groups/schedules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","schedules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"25bf7dc3-4b8d-4ec5-b471-94fee80e9329","name":"Group Schedule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\"\n}"},"url":"{{url}}/api/v2/groups/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:26:14 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"1737cf77-dcad-436d-a780-b7bec458fcca"},{"name":"Group Schedule","id":"6ca23a06-63b8-4bb0-8b1b-6ea2bec5a3f0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/schedules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test123&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","schedules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[{"id":"31083e27-6c0f-487b-92ca-8403873b3529","name":"Group Schedule","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/schedules?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test123&type=Holiday","host":["{{url}}"],"path":["api","v2","groups","schedules"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:26:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"115"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"level\": \"Group\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"6ca23a06-63b8-4bb0-8b1b-6ea2bec5a3f0"},{"name":"Group Schedule","id":"33233381-c5d8-47cf-8d96-1d8af53569f4","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"level\":\"Group\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"newName\":\"Test1234\"\n}"},"url":"{{url}}/api/v2/groups/schedules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","schedules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0191bcdb-a89d-487e-abac-28d4acf31591","name":"Group Schedule","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"level\":\"Group\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"newName\":\"Test123-new\"\n}"},"url":"{{url}}/api/v2/groups/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:27:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"33233381-c5d8-47cf-8d96-1d8af53569f4"},{"name":"Group Schedule","id":"c52d0b6b-b99f-4e85-adf0-d5b694ec9803","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/schedules?groupId=odin.mock.grp1&name=Test123-new&type=Holiday&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","schedules"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test123-new"},{"key":"type","value":"Holiday"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"4903dd06-05f4-4547-9272-b106225efad6","name":"Group Schedule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/schedules?groupId=odin.mock.grp1&name=Test123-new&type=Holiday&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","schedules"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test123-new"},{"key":"type","value":"Holiday"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:27:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c52d0b6b-b99f-4e85-adf0-d5b694ec9803"},{"name":"Group Events","id":"b2043438-1bd9-4615-b9e0-04a8d8cce163","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/events?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test1234&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","events"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[{"id":"6c7f6a70-c200-4e82-8fe9-5c28be213e54","name":"Group Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/events?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test1234&type=Holiday","host":["{{url}}"],"path":["api","v2","groups","events"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:28:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"268"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"eventName\": \"Test / Event\",\n        \"startTime\": \"2018-09-15T00:00:00\",\n        \"endTime\": \"2018-09-16T00:00:00\",\n        \"allDayEvent\": true,\n        \"name\": \"Test1234\",\n        \"type\": \"Holiday\",\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"rrule\": \"DTSTART:20180915T040000Z\\nRRULE:FREQ=DAILY\"\n    }\n]"}],"_postman_id":"b2043438-1bd9-4615-b9e0-04a8d8cce163"},{"name":"Group Event","id":"23633fcd-2d2c-4378-a220-d7569d75d071","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\",\n\t\"eventName\":\"Test / Event\",\n\t\"allDayEvent\":true,\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"rrule\":\"FREQ=DAILY;INTERVAL=1\"\n}"},"url":"{{url}}/api/v2/groups/events","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"23633fcd-2d2c-4378-a220-d7569d75d071"},{"name":"Group Event","id":"6f24041c-ae6f-4a63-976b-408144d32a5c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/events?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test1234&type=Holiday&eventName=Test / Event","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","events"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"},{"key":"eventName","value":"Test / Event"}],"variable":[]}},"response":[{"id":"61b601e3-67d2-4365-ab3d-d085abdb49f2","name":"Group Event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/events?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&name=Test1234&type=Holiday&eventName=Test / Event","host":["{{url}}"],"path":["api","v2","groups","events"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"},{"key":"eventName","value":"Test / Event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:28:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"266"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"eventName\": \"Test / Event\",\n    \"startTime\": \"2018-09-15T00:00:00\",\n    \"endTime\": \"2018-09-16T00:00:00\",\n    \"allDayEvent\": true,\n    \"name\": \"Test1234\",\n    \"type\": \"Holiday\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"rrule\": \"DTSTART:20180915T040000Z\\nRRULE:FREQ=DAILY\"\n}"}],"_postman_id":"6f24041c-ae6f-4a63-976b-408144d32a5c"},{"name":"Group Event","id":"995f7117-2fcc-48ef-9884-9e18eb3fa472","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"eventName\":\"Test / Event\",\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-16T00:00:00.000-07:00\",\n\t\"allDayEvent\":true,\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"rrule\":\"FREQ=WEEKLY;INTERVAL=1;BYDAY=SA;COUNT=3\",\n\t\"newEventName\":\"Test Event\"\n}"},"url":"{{url}}/api/v2/groups/events","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3fe1b8d1-a454-4330-9e88-2f1df2fec895","name":"Group Event","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"eventName\":\"Test / Event\",\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-16T00:00:00.000-07:00\",\n\t\"allDayEvent\":true,\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"rrule\":\"FREQ=WEEKLY;INTERVAL=1;BYDAY=SA;COUNT=3\",\n\t\"newEventName\":\"Test Event\"\n}"},"url":"{{url}}/api/v2/groups/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:29:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"995f7117-2fcc-48ef-9884-9e18eb3fa472"},{"name":"Group Event","id":"66a900af-e0a1-4c96-94d1-c3ae75f8bd28","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM2OTQ2NjY0LCJuYnAiOjE1MzY5NDY2NjQsImV4cCI6MTUzNjk4OTg2NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJak5jTDI0clhDOXVVamd6VkhKclJXRkRlaXR5ZVRKV1VUMDlJaXdpZG1Gc2RXVWlPaUpLUTA5bGVYRnNXbVZLVmtVNU9XMXFlRVV3SzNkS2NYbEZVbHd2V2xKa0swMWFNemhEYjI1ek5Wd3ZNMFU5SWl3aWJXRmpJam9pTXpVeU16TXhZMk5oTXpVM01qUTFaR1U1WW1ZME5qQmxOelU0WTJZM09HTXdNMlEwTTJRd05tRmhaRFUxWVRBNE5HSmpZV1E1TmpsaU4ySTRNbVUwTmlKOSIsInAiOiJleUpwZGlJNklrUjZlRzFJYlVGdU9IWm9lbTlHTm5OWFVITTVZVkU5UFNJc0luWmhiSFZsSWpvaWEzcEphR1JSVEZadk1GZDBNV04yYWtwTmRFSlNZekJ2ZVVWUGFIVmxNMFpNWEM5TWRFeHdiV3BKVEN0Y0wwdGFkVTExTldsU1JFbzBiMDR3V2tNMVNYRkRWbUpRUjA0MlNVRkdWM1ZsUkRaVWQwVlBObGxwZHowOUlpd2liV0ZqSWpvaVpqbGlaalZpTkdVd05qTmhOR1kwTUdNNFpqYzJaVFl5TXpOaE5qVTVNVEJpWlRCaE9EWXdPV0ZqTkRjeU1qTTFaVEk0TVRkak1XSTNNRFUyWkdJd01pSjkiLCJlIjoiZXlKcGRpSTZJbXN5VFhOWFN6bE9abHd2WldGS01uTkJTMmg1Ymx3dlFUMDlJaXdpZG1Gc2RXVWlPaUpGUTB0YU0xZzRUa2g1ZEhoTVV6VnhOMHBvWnpGM1BUMGlMQ0p0WVdNaU9pSmtZV1F4TVdFMk16bGlaV1UwWW1OaVlqQTNOamcwWkRjMU5EQXpOelU0TnprNU1qQm1PVGhpWm1GbU1UY3lNVEV6WlRNM05EQmtORFpoWmpobE9EVXhJbjA9In19.JLaj8FtEqjnw2izIYcxaIx88C7z7y1bQttdEtGlcTo8"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/events?eventName=Test Event&groupId=odin.mock.grp1&name=Test1234&type=Holiday&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","events"],"host":["{{url}}"],"query":[{"key":"eventName","value":"Test Event"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"e8476362-57f3-4e8a-91ea-9004acba74f2","name":"Group Event","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM2OTQ2NjY0LCJuYnAiOjE1MzY5NDY2NjQsImV4cCI6MTUzNjk4OTg2NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJak5jTDI0clhDOXVVamd6VkhKclJXRkRlaXR5ZVRKV1VUMDlJaXdpZG1Gc2RXVWlPaUpLUTA5bGVYRnNXbVZLVmtVNU9XMXFlRVV3SzNkS2NYbEZVbHd2V2xKa0swMWFNemhEYjI1ek5Wd3ZNMFU5SWl3aWJXRmpJam9pTXpVeU16TXhZMk5oTXpVM01qUTFaR1U1WW1ZME5qQmxOelU0WTJZM09HTXdNMlEwTTJRd05tRmhaRFUxWVRBNE5HSmpZV1E1TmpsaU4ySTRNbVUwTmlKOSIsInAiOiJleUpwZGlJNklrUjZlRzFJYlVGdU9IWm9lbTlHTm5OWFVITTVZVkU5UFNJc0luWmhiSFZsSWpvaWEzcEphR1JSVEZadk1GZDBNV04yYWtwTmRFSlNZekJ2ZVVWUGFIVmxNMFpNWEM5TWRFeHdiV3BKVEN0Y0wwdGFkVTExTldsU1JFbzBiMDR3V2tNMVNYRkRWbUpRUjA0MlNVRkdWM1ZsUkRaVWQwVlBObGxwZHowOUlpd2liV0ZqSWpvaVpqbGlaalZpTkdVd05qTmhOR1kwTUdNNFpqYzJaVFl5TXpOaE5qVTVNVEJpWlRCaE9EWXdPV0ZqTkRjeU1qTTFaVEk0TVRkak1XSTNNRFUyWkdJd01pSjkiLCJlIjoiZXlKcGRpSTZJbXN5VFhOWFN6bE9abHd2WldGS01uTkJTMmg1Ymx3dlFUMDlJaXdpZG1Gc2RXVWlPaUpGUTB0YU0xZzRUa2g1ZEhoTVV6VnhOMHBvWnpGM1BUMGlMQ0p0WVdNaU9pSmtZV1F4TVdFMk16bGlaV1UwWW1OaVlqQTNOamcwWkRjMU5EQXpOelU0TnprNU1qQm1PVGhpWm1GbU1UY3lNVEV6WlRNM05EQmtORFpoWmpobE9EVXhJbjA9In19.JLaj8FtEqjnw2izIYcxaIx88C7z7y1bQttdEtGlcTo8"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/events?eventName=Test Event&groupId=odin.mock.grp1&name=Test1234&type=Holiday&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","events"],"query":[{"key":"eventName","value":"Test Event"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:29:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"66a900af-e0a1-4c96-94d1-c3ae75f8bd28"},{"name":"User Schedules","id":"1899e9fb-3ad2-4923-a4e1-13caf3d92582","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/schedules?userId=Premium@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","schedules"],"host":["{{url}}"],"query":[{"key":"userId","value":"Premium@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"105a9782-582c-4cd4-84fc-9bf82c4b3f0c","name":"User Schedules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/schedules?userId=test-mock%2Faa1","host":["{{url}}"],"path":["api","v2","users","schedules"],"query":[{"key":"userId","value":"test-mock%2Faa1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 20:29:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"103"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Test123\",\n        \"type\": \"Time\",\n        \"level\": \"Group\"\n    },\n    {\n        \"name\": \"Test1234\",\n        \"type\": \"Holiday\",\n        \"level\": \"Group\"\n    }\n]"}],"_postman_id":"1899e9fb-3ad2-4923-a4e1-13caf3d92582"},{"name":"User Schedule","id":"c42d97e6-b935-43e2-bea6-82d3e8b4f896","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\"\n}"},"url":"{{url}}/api/v2/users/schedules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","schedules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bc0a31bb-ea2a-47ab-8e99-59ba66d821c6","name":"User Schedule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\"\n}"},"url":"{{url}}/api/v2/users/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Test1234\",\n    \"type\": \"Holiday\",\n    \"level\": \"User\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"c42d97e6-b935-43e2-bea6-82d3e8b4f896"},{"name":"User Schedule","id":"fc6192a1-acfd-4a20-849a-34fc86f4dc28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/schedules?userId=4001@parkbenchsolutions.com&name=test&type=Time","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","schedules"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"test"},{"key":"type","value":"Time"}],"variable":[]}},"response":[{"id":"b976453a-7872-455e-9c0f-7669e197c42d","name":"User Schedule","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/schedules?userId=4001@parkbenchsolutions.com&name=test&type=Time","host":["{{url}}"],"path":["api","v2","users","schedules"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"test"},{"key":"type","value":"Time"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"test\",\n    \"type\": \"Time\",\n    \"level\": \"User\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"fc6192a1-acfd-4a20-849a-34fc86f4dc28"},{"name":"User Schedule","id":"24b70033-b41a-463e-b107-ec5de1e25c63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\",\n\t\"level\":\"Group\",\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"newName\":\"Test12345\"\n}"},"url":"{{url}}/api/v2/users/schedules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","schedules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"942c7b00-7f48-4f19-a19c-dc999198b897","name":"User Schedule","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Test1234\",\n\t\"type\":\"Holiday\",\n\t\"level\":\"Group\",\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"newName\":\"Test12345\"\n}"},"url":"{{url}}/api/v2/users/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Test12345\",\n    \"type\": \"Holiday\",\n    \"level\": \"User\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"24b70033-b41a-463e-b107-ec5de1e25c63"},{"name":"User Schedule","id":"54b3a930-7e07-4454-8a85-06699d164725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/users/schedules?userId=4001@parkbenchsolutions.com&name=Test12345&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","schedules"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"Test12345"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[{"id":"b8e227a6-80b2-4304-88f0-cfa54f23807b","name":"User Schedule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/users/schedules?userId=4001@parkbenchsolutions.com&name=Test12345&type=Holiday","host":["{{url}}"],"path":["api","v2","users","schedules"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"Test12345"},{"key":"type","value":"Holiday"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"54b3a930-7e07-4454-8a85-06699d164725"},{"name":"User Events","id":"ce44b5ea-3ef2-4fef-af45-9db4faf7d943","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/events?userId=4001@parkbenchsolutions.com&name=Test123&type=Holiday","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","events"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}],"variable":[]}},"response":[{"id":"9dd272e9-9e6f-44bf-a8f0-cae9bd6aa8b4","name":"User Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/events?userId=4001@parkbenchsolutions.com&name=Test123&type=Holiday","host":["{{url}}"],"path":["api","v2","users","events"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"eventName\": \"new years\",\n        \"startTime\": \"2020-01-01T00:00:00\",\n        \"endTime\": \"2020-01-02T00:00:00\",\n        \"allDayEvent\": true,\n        \"name\": \"Test123\",\n        \"type\": \"Holiday\",\n        \"userId\": \"4001@parkbenchsolutions.com\",\n        \"rrule\": \"DTSTART:20200101T050000Z\\nRRULE:FREQ=YEARLY;BYMONTHDAY=1;BYMONTH=1\"\n    }\n]"}],"_postman_id":"ce44b5ea-3ef2-4fef-af45-9db4faf7d943"},{"name":"User Event","id":"4031de67-8508-4f0a-b358-1b4052ef2ea4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"eventName\":\"Test / Event\",\n\t\"allDayEvent\":true,\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"rrule\":\"FREQ=DAILY;INTERVAL=1\"\n}"},"url":"{{url}}/api/v2/users/events","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"50e162ea-36bf-4b68-b512-cef106dae2af","name":"User Event","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"eventName\":\"Test / Event\",\n\t\"allDayEvent\":true,\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"rrule\":\"FREQ=DAILY;INTERVAL=1\"\n}"},"url":"{{url}}/api/v2/users/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"eventName\": \"Test / Event\",\n    \"startTime\": \"2018-09-15T00:00:00\",\n    \"endTime\": \"2018-09-16T00:00:00\",\n    \"allDayEvent\": true,\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"rrule\": \"DTSTART:20180915T040000Z\\nRRULE:FREQ=DAILY\"\n}"}],"_postman_id":"4031de67-8508-4f0a-b358-1b4052ef2ea4"},{"name":"User Event","id":"e41dabc8-954d-4f4d-ae64-9d61bdcf1443","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/events?userId=user-2@voicecci.net&name=a&eventName=aa&type=Time","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","events"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"4001@parkbenchsolutions.com"},{"disabled":true,"key":"name","value":"Test123"},{"disabled":true,"key":"type","value":"Holiday"},{"disabled":true,"key":"eventName","value":"Test Event"},{"key":"userId","value":"user-2@voicecci.net"},{"key":"name","value":"a"},{"key":"eventName","value":"aa"},{"key":"type","value":"Time"}],"variable":[]}},"response":[{"id":"00641832-8de1-4b16-84a4-1335f795567e","name":"User Event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/events?userId=4001@parkbenchsolutions.com&name=Test123&type=Holiday&eventName=Test / Event","host":["{{url}}"],"path":["api","v2","users","events"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"},{"key":"eventName","value":"Test / Event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"eventName\": \"Test / Event\",\n    \"startTime\": \"2018-09-15T00:00:00\",\n    \"endTime\": \"2018-09-16T00:00:00\",\n    \"allDayEvent\": true,\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"rrule\": \"DTSTART:20180915T040000Z\\nRRULE:FREQ=DAILY\"\n}"}],"_postman_id":"e41dabc8-954d-4f4d-ae64-9d61bdcf1443"},{"name":"User Event","id":"57e83341-27f7-4861-9c07-6d906517a18f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"4001@parkbenchsolutions.com\",\n\t\"eventName\":\"Test1234\",\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-16T00:00:00.000-07:00\",\n\t\"allDayEvent\":true,\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"rrule\":\"FREQ=WEEKLY;INTERVAL=1;BYDAY=SA;COUNT=3\",\n\t\"newEventName\":\"Test1234\"\n}"},"url":"{{url}}/api/v2/users/events","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"da734e7c-cd0d-4ff6-a984-f012566d25ae","name":"User Event","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"4001@parkbenchsolutions.com\",\n\t\"eventName\":\"Test1234\",\n\t\"startTime\":\"2018-09-15T00:00:00.000-07:00\",\n\t\"endTime\":\"2018-09-16T00:00:00.000-07:00\",\n\t\"allDayEvent\":true,\n\t\"name\":\"Test123\",\n\t\"type\":\"Holiday\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"rrule\":\"FREQ=WEEKLY;INTERVAL=1;BYDAY=SA;COUNT=3\",\n\t\"newEventName\":\"Test1234\"\n}"},"url":"{{url}}/api/v2/users/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"eventName\": \"Test1234\",\n    \"startTime\": \"2018-09-15T00:00:00\",\n    \"endTime\": \"2018-09-16T00:00:00\",\n    \"allDayEvent\": true,\n    \"name\": \"Test123\",\n    \"type\": \"Holiday\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"rrule\": \"DTSTART:20180915T040000Z\\nRRULE:FREQ=WEEKLY;COUNT=3;BYDAY=SA\"\n}"}],"_postman_id":"57e83341-27f7-4861-9c07-6d906517a18f"},{"name":"User Event","id":"e5527bc5-ac1e-4c47-a630-b05c48aba2d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM2OTQ2NjY0LCJuYnAiOjE1MzY5NDY2NjQsImV4cCI6MTUzNjk4OTg2NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJak5jTDI0clhDOXVVamd6VkhKclJXRkRlaXR5ZVRKV1VUMDlJaXdpZG1Gc2RXVWlPaUpLUTA5bGVYRnNXbVZLVmtVNU9XMXFlRVV3SzNkS2NYbEZVbHd2V2xKa0swMWFNemhEYjI1ek5Wd3ZNMFU5SWl3aWJXRmpJam9pTXpVeU16TXhZMk5oTXpVM01qUTFaR1U1WW1ZME5qQmxOelU0WTJZM09HTXdNMlEwTTJRd05tRmhaRFUxWVRBNE5HSmpZV1E1TmpsaU4ySTRNbVUwTmlKOSIsInAiOiJleUpwZGlJNklrUjZlRzFJYlVGdU9IWm9lbTlHTm5OWFVITTVZVkU5UFNJc0luWmhiSFZsSWpvaWEzcEphR1JSVEZadk1GZDBNV04yYWtwTmRFSlNZekJ2ZVVWUGFIVmxNMFpNWEM5TWRFeHdiV3BKVEN0Y0wwdGFkVTExTldsU1JFbzBiMDR3V2tNMVNYRkRWbUpRUjA0MlNVRkdWM1ZsUkRaVWQwVlBObGxwZHowOUlpd2liV0ZqSWpvaVpqbGlaalZpTkdVd05qTmhOR1kwTUdNNFpqYzJaVFl5TXpOaE5qVTVNVEJpWlRCaE9EWXdPV0ZqTkRjeU1qTTFaVEk0TVRkak1XSTNNRFUyWkdJd01pSjkiLCJlIjoiZXlKcGRpSTZJbXN5VFhOWFN6bE9abHd2WldGS01uTkJTMmg1Ymx3dlFUMDlJaXdpZG1Gc2RXVWlPaUpGUTB0YU0xZzRUa2g1ZEhoTVV6VnhOMHBvWnpGM1BUMGlMQ0p0WVdNaU9pSmtZV1F4TVdFMk16bGlaV1UwWW1OaVlqQTNOamcwWkRjMU5EQXpOelU0TnprNU1qQm1PVGhpWm1GbU1UY3lNVEV6WlRNM05EQmtORFpoWmpobE9EVXhJbjA9In19.JLaj8FtEqjnw2izIYcxaIx88C7z7y1bQttdEtGlcTo8"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/users/events?userId=4001@parkbenchsolutions.com&name=Test123&type=Holiday&eventName=Test1234","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","events"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"Test123"},{"key":"type","value":"Holiday"},{"key":"eventName","value":"Test1234"}],"variable":[]}},"response":[{"id":"eded3cca-284f-4584-bde2-be605da07467","name":"User Event","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM2OTQ2NjY0LCJuYnAiOjE1MzY5NDY2NjQsImV4cCI6MTUzNjk4OTg2NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJak5jTDI0clhDOXVVamd6VkhKclJXRkRlaXR5ZVRKV1VUMDlJaXdpZG1Gc2RXVWlPaUpLUTA5bGVYRnNXbVZLVmtVNU9XMXFlRVV3SzNkS2NYbEZVbHd2V2xKa0swMWFNemhEYjI1ek5Wd3ZNMFU5SWl3aWJXRmpJam9pTXpVeU16TXhZMk5oTXpVM01qUTFaR1U1WW1ZME5qQmxOelU0WTJZM09HTXdNMlEwTTJRd05tRmhaRFUxWVRBNE5HSmpZV1E1TmpsaU4ySTRNbVUwTmlKOSIsInAiOiJleUpwZGlJNklrUjZlRzFJYlVGdU9IWm9lbTlHTm5OWFVITTVZVkU5UFNJc0luWmhiSFZsSWpvaWEzcEphR1JSVEZadk1GZDBNV04yYWtwTmRFSlNZekJ2ZVVWUGFIVmxNMFpNWEM5TWRFeHdiV3BKVEN0Y0wwdGFkVTExTldsU1JFbzBiMDR3V2tNMVNYRkRWbUpRUjA0MlNVRkdWM1ZsUkRaVWQwVlBObGxwZHowOUlpd2liV0ZqSWpvaVpqbGlaalZpTkdVd05qTmhOR1kwTUdNNFpqYzJaVFl5TXpOaE5qVTVNVEJpWlRCaE9EWXdPV0ZqTkRjeU1qTTFaVEk0TVRkak1XSTNNRFUyWkdJd01pSjkiLCJlIjoiZXlKcGRpSTZJbXN5VFhOWFN6bE9abHd2WldGS01uTkJTMmg1Ymx3dlFUMDlJaXdpZG1Gc2RXVWlPaUpGUTB0YU0xZzRUa2g1ZEhoTVV6VnhOMHBvWnpGM1BUMGlMQ0p0WVdNaU9pSmtZV1F4TVdFMk16bGlaV1UwWW1OaVlqQTNOamcwWkRjMU5EQXpOelU0TnprNU1qQm1PVGhpWm1GbU1UY3lNVEV6WlRNM05EQmtORFpoWmpobE9EVXhJbjA9In19.JLaj8FtEqjnw2izIYcxaIx88C7z7y1bQttdEtGlcTo8"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/users/events?userId=4001@parkbenchsolutions.com&name=Test1234&type=Holiday&eventName=Test1234","host":["{{url}}"],"path":["api","v2","users","events"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"name","value":"Test1234"},{"key":"type","value":"Holiday"},{"key":"eventName","value":"Test1234"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"e5527bc5-ac1e-4c47-a630-b05c48aba2d4"}],"id":"a3ea0f2b-f996-4e52-ae8c-58b8d82fbc3a","_postman_id":"a3ea0f2b-f996-4e52-ae8c-58b8d82fbc3a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Security Classification","item":[{"name":"User Security Classification","id":"384811e5-7447-499f-b794-04f460fc0eea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/security-classification?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","security-classification"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[],"_postman_id":"384811e5-7447-499f-b794-04f460fc0eea"},{"name":"User Security Classification","id":"6312895d-8fc8-4335-afa5-015987379436","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"securityClassification\": \"\"\n}"},"url":"{{url}}/api/v2/users/security-classification","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","security-classification"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7640042a-9c1c-4656-936d-eb227e3a9160","name":"User Security Classification","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"securityClassification\": \"\"\n}"},"url":"{{url}}/api/v2/users/security-classification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 8073\n}"}],"_postman_id":"6312895d-8fc8-4335-afa5-015987379436"}],"id":"475f1e37-d0b1-4e68-ab93-9e828e9ffdf9","_postman_id":"475f1e37-d0b1-4e68-ab93-9e828e9ffdf9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Selective Call Acceptance","item":[{"name":"User Selective Call Acceptance Criterias","id":"95bcfb78-c447-4a95-8a33-0c9443311f1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/selective-call-acceptance?userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-acceptance"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"233bfdf6-f91d-4a40-a652-e032bda7e6a6","name":"User Selective Call Acceptance Criterias","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/selective-call-acceptance?userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-acceptance"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:10:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1016"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"isActive\": false,\n        \"criteriaName\": \"select-call-acceptance-1\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callFrom\": \"All calls\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": \"9871514002,9871514012,3213214002\",\n        \"callToType\": \"Primary,Alternate1,BroadWorks Mobility\",\n        \"callToExtension\": \"4002,4012,\",\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"9871514002\",\n                \"extension\": \"4002\"\n            },\n            {\n                \"type\": \"Alternate1\",\n                \"number\": \"9871514012\",\n                \"extension\": \"4012\"\n            },\n            {\n                \"type\": \"BroadWorks Mobility\",\n                \"number\": \"3213214002\",\n                \"extension\": \"\"\n            }\n        ]\n    },\n    {\n        \"isActive\": true,\n        \"criteriaName\": \"select-call-acceptance-2\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callFrom\": \"All calls\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": \"9871514002,9871514012,3213214002\",\n        \"callToType\": \"Primary,Alternate1,BroadWorks Mobility\",\n        \"callToExtension\": \"4002,4012,\",\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"9871514002\",\n                \"extension\": \"4002\"\n            },\n            {\n                \"type\": \"Alternate1\",\n                \"number\": \"9871514012\",\n                \"extension\": \"4012\"\n            },\n            {\n                \"type\": \"BroadWorks Mobility\",\n                \"number\": \"3213214002\",\n                \"extension\": \"\"\n            }\n        ]\n    }\n]"}],"_postman_id":"95bcfb78-c447-4a95-8a33-0c9443311f1d"},{"name":"User Selective Call Acceptance Criteria","id":"c680a355-74bb-415b-9059-570134f27d95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"isActive\": true,\n\t\"criteriaName\": \"select-call-acceptance-2\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Any\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\",\n\t\t\t\"5133335555\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"9871514002\",\n\t\t\t\"extension\": \"4002\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"9871514012\",\n\t\t\t\"extension\": \"4012\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"3213214002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-acceptance","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-acceptance"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a95c6268-4f63-4547-8536-f467e7b28029","name":"User Selective Call Acceptance Criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"isActive\": true,\n\t\"criteriaName\": \"select-call-acceptance-2\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Any\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\",\n\t\t\t\"5133335555\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"9871514002\",\n\t\t\t\"extension\": \"4002\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"9871514012\",\n\t\t\t\"extension\": \"4012\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"3213214002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-acceptance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:10:03 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"450"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": true,\n        \"includeUnavailableCallers\": true,\n        \"phoneNumbers\": [\n            \"5133334444\",\n            \"5133335555\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-acceptance-2\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        },\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"}],"_postman_id":"c680a355-74bb-415b-9059-570134f27d95"},{"name":"User Selective Call Acceptance Criteria Activation","id":"e0a13131-1152-4a45-9d9e-ddfb9612f491","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-acceptance-1\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-acceptance-2\",\n\t\t\t\"isActive\": true\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-acceptance/activation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-acceptance","activation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7e536a18-e501-4539-a633-578c1e55d2ca","name":"User Selective Call Acceptance Criteria Activation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-acceptance-1\",\n\t\t\t\"isActive\": false\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-acceptance-2\",\n\t\t\t\"isActive\": true\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-acceptance/activation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:10:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1016"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"isActive\": false,\n        \"criteriaName\": \"select-call-acceptance-1\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callFrom\": \"All calls\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": \"9871514002,9871514012,3213214002\",\n        \"callToType\": \"Primary,Alternate1,BroadWorks Mobility\",\n        \"callToExtension\": \"4002,4012,\",\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"9871514002\",\n                \"extension\": \"4002\"\n            },\n            {\n                \"type\": \"Alternate1\",\n                \"number\": \"9871514012\",\n                \"extension\": \"4012\"\n            },\n            {\n                \"type\": \"BroadWorks Mobility\",\n                \"number\": \"3213214002\",\n                \"extension\": \"\"\n            }\n        ]\n    },\n    {\n        \"isActive\": true,\n        \"criteriaName\": \"select-call-acceptance-2\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callFrom\": \"All calls\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": \"9871514002,9871514012,3213214002\",\n        \"callToType\": \"Primary,Alternate1,BroadWorks Mobility\",\n        \"callToExtension\": \"4002,4012,\",\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"9871514002\",\n                \"extension\": \"4002\"\n            },\n            {\n                \"type\": \"Alternate1\",\n                \"number\": \"9871514012\",\n                \"extension\": \"4012\"\n            },\n            {\n                \"type\": \"BroadWorks Mobility\",\n                \"number\": \"3213214002\",\n                \"extension\": \"\"\n            }\n        ]\n    }\n]"}],"_postman_id":"e0a13131-1152-4a45-9d9e-ddfb9612f491"},{"name":"User Selective Call Acceptance Criteria","id":"ac8c6c4a-a819-4903-83b1-8f151b69a18b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/selective-call-acceptance?criteriaName=select-call-acceptance-1&userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-acceptance"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"select-call-acceptance-1"},{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"2015318c-e36c-4dc1-9a6e-4576de64478d","name":"User Selective Call Acceptance Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/selective-call-acceptance?criteriaName=select-call-acceptance-1&userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-acceptance"],"query":[{"key":"criteriaName","value":"select-call-acceptance-1"},{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:10:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"450"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Any\",\n        \"includeAnonymousCallers\": true,\n        \"includeUnavailableCallers\": true,\n        \"phoneNumbers\": [\n            \"5133334444\",\n            \"5133335555\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-acceptance-1\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\",\n            \"number\": \"9871514002\",\n            \"extension\": \"4002\"\n        },\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"}],"_postman_id":"ac8c6c4a-a819-4903-83b1-8f151b69a18b"},{"name":"User Selective Call Acceptance Criteria","id":"acc5107a-c639-4312-a0b5-e7a47e09ba4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"isActive\": true,\n\t\"criteriaName\": \"select-call-acceptance-2\",\n\t\"newCriteriaName\": \"select-call-acceptance-3\",\n\t\"blacklisted\": false,\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\",\n\t\t\t\"5133333333\",\n\t\t\t\"5133332222\",\n\t\t\t\"5133331111\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"9871514012\",\n\t\t\t\"extension\": \"4012\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"3213214002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-acceptance","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-acceptance"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"903f23c3-5945-4c0e-be37-5d17ea282354","name":"User Selective Call Acceptance Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"isActive\": true,\n\t\"criteriaName\": \"select-call-acceptance-2\",\n\t\"newCriteriaName\": \"select-call-acceptance-3\",\n\t\"blacklisted\": false,\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\",\n\t\t\t\"5133333333\",\n\t\t\t\"5133332222\",\n\t\t\t\"5133331111\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Alternate1\",\n\t\t\t\"number\": \"9871514012\",\n\t\t\t\"extension\": \"4012\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"BroadWorks Mobility\",\n\t\t\t\"number\": \"3213214002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-acceptance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:12:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"427"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": true,\n        \"includeUnavailableCallers\": true,\n        \"phoneNumbers\": [\n            \"5133334444\",\n            \"5133333333\",\n            \"5133332222\",\n            \"5133331111\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-acceptance-3\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"}],"_postman_id":"acc5107a-c639-4312-a0b5-e7a47e09ba4c"},{"name":"User Selective Call Acceptance Criteria","id":"f1206116-9d74-4d24-93f4-d58ff2e7159d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-acceptance-3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/selective-call-acceptance","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-acceptance"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e89c59f0-f8d2-430b-acca-fceed4a5f26e","name":"User Selective Call Acceptance Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-acceptance-3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/selective-call-acceptance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:12:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"427"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": true,\n        \"includeUnavailableCallers\": true,\n        \"phoneNumbers\": [\n            \"5133334444\",\n            \"5133333333\",\n            \"5133332222\",\n            \"5133331111\"\n        ]\n    },\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-acceptance-3\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"9871514012\",\n            \"extension\": \"4012\"\n        },\n        {\n            \"type\": \"BroadWorks Mobility\",\n            \"number\": \"3213214002\"\n        }\n    ]\n}"}],"_postman_id":"f1206116-9d74-4d24-93f4-d58ff2e7159d"},{"name":"User Selective Call Rejection Criteria Details","id":"f02521bf-ecf6-4f13-bb78-36813d612772","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/users/selective-call-acceptance/details?userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-acceptance","details"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"4b1efa5e-37aa-46a3-9995-57f4c951e55d","name":"User Selective Call Rejection Criteria Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/selective-call-acceptance/details?userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-acceptance","details"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:10:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1350"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"select-call-acceptance-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callFrom\": \"All calls\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": \"9871514002,9871514012,3213214002\",\n            \"callToType\": \"Primary,Alternate1,BroadWorks Mobility\",\n            \"callToExtension\": \"4002,4012,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"9871514002\",\n                    \"extension\": \"4002\"\n                },\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871514012\",\n                    \"extension\": \"4012\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any\",\n                \"includeAnonymousCallers\": true,\n                \"includeUnavailableCallers\": true,\n                \"phoneNumbers\": [\n                    \"5133334444\",\n                    \"5133335555\"\n                ]\n            }\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-acceptance-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callFrom\": \"All calls\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": \"9871514002,9871514012,3213214002\",\n            \"callToType\": \"Primary,Alternate1,BroadWorks Mobility\",\n            \"callToExtension\": \"4002,4012,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"9871514002\",\n                    \"extension\": \"4002\"\n                },\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"9871514012\",\n                    \"extension\": \"4012\"\n                },\n                {\n                    \"type\": \"BroadWorks Mobility\",\n                    \"number\": \"3213214002\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Any\",\n                \"includeAnonymousCallers\": true,\n                \"includeUnavailableCallers\": true,\n                \"phoneNumbers\": [\n                    \"5133334444\",\n                    \"5133335555\"\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"f02521bf-ecf6-4f13-bb78-36813d612772"}],"id":"61e0772e-53af-46d0-a324-f6129a4c0c2e","_postman_id":"61e0772e-53af-46d0-a324-f6129a4c0c2e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Selective Call Rejection","item":[{"name":"User Selective Call Rejection Criteria Details","id":"e1dc2334-92f6-4091-8333-96f99808a64d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/selective-call-rejection/details?userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection","details"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"dc71b992-fdc3-4187-97a7-8806adf75f28","name":"User Selective Call Rejection Criteria Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/selective-call-rejection/details?userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-rejection","details"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:43:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1013"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-reject-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": null,\n            \"callToType\": \"Primary\",\n            \"callToExtension\": null,\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133334444\"\n                ]\n            },\n            \"private\": false\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-reject-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": null,\n            \"callToType\": \"Primary\",\n            \"callToExtension\": null,\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133334444\"\n                ]\n            },\n            \"private\": false\n        }\n    ]\n}"}],"_postman_id":"e1dc2334-92f6-4091-8333-96f99808a64d"},{"name":"User Selective Call Rejection Criteria Details Copy","id":"c45a702c-6e35-4844-ba77-c9e9280fac3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/selective-call-rejection/details?userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection","details"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"94353af6-2535-4dd4-be27-2289cdd9e587","name":"User Selective Call Rejection Criteria Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/selective-call-rejection/details?userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-rejection","details"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:43:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1013"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-reject-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": null,\n            \"callToType\": \"Primary\",\n            \"callToExtension\": null,\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133334444\"\n                ]\n            },\n            \"private\": false\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-reject-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": null,\n            \"callToType\": \"Primary\",\n            \"callToExtension\": null,\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133334444\"\n                ]\n            },\n            \"private\": false\n        }\n    ]\n}"}],"_postman_id":"c45a702c-6e35-4844-ba77-c9e9280fac3c"},{"name":"User Selective Call Rejection Criteria Details Copy","id":"656faf3f-89b9-42e6-a32b-111f62720c87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/selective-call-rejection/details?userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection","details"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"5573a762-3ef8-49f7-87f0-82ef96b08df8","name":"User Selective Call Rejection Criteria Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/selective-call-rejection/details?userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-rejection","details"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:43:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1013"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-reject-1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": null,\n            \"callToType\": \"Primary\",\n            \"callToExtension\": null,\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133334444\"\n                ]\n            },\n            \"private\": false\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"select-call-reject-2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": null,\n            \"callToType\": \"Primary\",\n            \"callToExtension\": null,\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Primary\"\n                }\n            ],\n            \"fromDnCriteria\": {\n                \"fromDnCriteriaSelection\": \"Specified Only\",\n                \"includeAnonymousCallers\": \"true\",\n                \"includeUnavailableCallers\": \"true\",\n                \"phoneNumbers\": [\n                    \"5133334444\"\n                ]\n            },\n            \"private\": false\n        }\n    ]\n}"}],"_postman_id":"656faf3f-89b9-42e6-a32b-111f62720c87"},{"name":"User Selective Call Rejection Criterias","id":"c69c3471-28d5-4a68-a81f-31308d19df66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/selective-call-rejection?userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection"],"host":["{{url}}"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"55ab20ef-531e-4677-be95-36e353188fc6","name":"User Selective Call Rejection Criterias","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/selective-call-rejection?userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-rejection"],"query":[{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:43:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"667"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"isActive\": true,\n        \"criteriaName\": \"select-call-reject-1\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": null,\n        \"callToType\": \"Primary\",\n        \"callToExtension\": null,\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"\",\n                \"extension\": \"\"\n            }\n        ]\n    },\n    {\n        \"isActive\": true,\n        \"criteriaName\": \"select-call-reject-2\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": null,\n        \"callToType\": \"Primary\",\n        \"callToExtension\": null,\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"\",\n                \"extension\": \"\"\n            }\n        ]\n    }\n]"}],"_postman_id":"c69c3471-28d5-4a68-a81f-31308d19df66"},{"name":"User Selective Call Rejection Criteria","id":"93d9add2-bd24-4512-858b-269acf51b85c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"isActive\": true,\n\t\"criteriaName\": \"select-call-reject-2\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\"\n\t\t\t\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-rejection","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"92f10b03-5c89-48f7-aa2d-404e304adc50","name":"User Selective Call Rejection Criteria","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"isActive\": true,\n\t\"criteriaName\": \"select-call-reject-2\",\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": true,\n\t\t\"includeUnavailableCallers\": true,\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\"\n\t\t]\n\t},\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\"\n\t\t\t\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-rejection"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:42:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"307"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"blacklisted\": false,\n    \"private\": false,\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-reject-2\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}"}],"_postman_id":"93d9add2-bd24-4512-858b-269acf51b85c"},{"name":"User Selective Call Rejection Criteria Activation","id":"5138194d-5736-478c-acee-a963afb5d235","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-reject-1\",\n\t\t\t\"isActive\": true\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-reject-2\",\n\t\t\t\"isActive\": false\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-rejection/activation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection","activation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7ce2d5dd-4361-45f0-9806-4c5a3821353c","name":"User Selective Call Rejection Criteria Activation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-reject-1\",\n\t\t\t\"isActive\": true\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"select-call-reject-2\",\n\t\t\t\"isActive\": false\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-rejection/activation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:47:23 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"668"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"isActive\": true,\n        \"criteriaName\": \"select-call-reject-1\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": null,\n        \"callToType\": \"Primary\",\n        \"callToExtension\": null,\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"\",\n                \"extension\": \"\"\n            }\n        ]\n    },\n    {\n        \"isActive\": false,\n        \"criteriaName\": \"select-call-reject-2\",\n        \"timeSchedule\": \"Every Day All Day\",\n        \"callsFrom\": \"Any private number,Any unavailable number,5133334444\",\n        \"blacklisted\": false,\n        \"holidaySchedule\": \"None\",\n        \"callToNumber\": null,\n        \"callToType\": \"Primary\",\n        \"callToExtension\": null,\n        \"callsToNumber\": [\n            {\n                \"type\": \"Primary\",\n                \"number\": \"\",\n                \"extension\": \"\"\n            }\n        ]\n    }\n]"}],"_postman_id":"5138194d-5736-478c-acee-a963afb5d235"},{"name":"User Selective Call Rejection Criteria","id":"22a4f05c-2bae-4558-8efe-be0944b774ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/selective-call-rejection?criteriaName=select-call-reject-2&userId=19871514002@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"select-call-reject-2"},{"key":"userId","value":"19871514002@odinapi.net"}],"variable":[]}},"response":[{"id":"371afcaf-1f1f-4ab7-9421-9127cc7cd8ef","name":"User Selective Call Rejection Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/selective-call-rejection?criteriaName=select-call-reject-2&userId=19871514002@odinapi.net","host":["{{url}}"],"path":["api","v2","users","selective-call-rejection"],"query":[{"key":"criteriaName","value":"select-call-reject-2"},{"key":"userId","value":"19871514002@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:43:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"307"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"blacklisted\": false,\n    \"private\": false,\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-reject-2\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}"}],"_postman_id":"22a4f05c-2bae-4558-8efe-be0944b774ae"},{"name":"User Selective Call Rejection Criteria","id":"267fc701-0827-42e6-b3ef-26168475e36a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": \"true\",\n\t\t\"includeUnavailableCallers\": \"true\",\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\"\n\t\t]\n\t},\n\t\"blacklisted\": false,\n\t\"private\": false,\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"criteriaName\": \"select-call-reject-2\",\n\t\"newCriteriaName\": \"select-call-reject-3\",\n\t\"isActive\": true,\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"9871514002\",\n\t\t\t\"extension\": \"4002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-rejection","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"058340a5-5ebd-4222-9e59-bb60c7c5120e","name":"User Selective Call Rejection Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"fromDnCriteria\": {\n\t\t\"fromDnCriteriaSelection\": \"Specified Only\",\n\t\t\"includeAnonymousCallers\": \"true\",\n\t\t\"includeUnavailableCallers\": \"true\",\n\t\t\"phoneNumbers\": [\n\t\t\t\"5133334444\"\n\t\t]\n\t},\n\t\"blacklisted\": false,\n\t\"private\": false,\n\t\"userId\": \"19871514002@odinapi.net\",\n\t\"criteriaName\": \"select-call-reject-2\",\n\t\"newCriteriaName\": \"select-call-reject-3\",\n\t\"isActive\": true,\n\t\"callsToNumber\": [\n\t\t{\n\t\t\t\"type\": \"Primary\",\n\t\t\t\"number\": \"9871514002\",\n\t\t\t\"extension\": \"4002\"\n\t\t}\n\t]\n}"},"url":"{{url}}/api/v2/users/selective-call-rejection"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:48:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"307"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"blacklisted\": false,\n    \"private\": false,\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-reject-3\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}"}],"_postman_id":"267fc701-0827-42e6-b3ef-26168475e36a"},{"name":"User Selective Call Rejection Criteria","id":"b5c536d9-2ac5-4f50-a276-9a62c1c7d300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-reject-3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/selective-call-rejection","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","selective-call-rejection"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"301f212e-bb0e-4e8e-9997-e78d0ccdbe23","name":"User Selective Call Rejection Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-reject-3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/selective-call-rejection"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 16:50:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"307"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"blacklisted\": false,\n    \"private\": false,\n    \"userId\": \"19871514002@odinapi.net\",\n    \"criteriaName\": \"select-call-reject-3\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}"}],"_postman_id":"b5c536d9-2ac5-4f50-a276-9a62c1c7d300"}],"id":"88b853ae-8040-4a48-92ac-8c038fd01ca6","_postman_id":"88b853ae-8040-4a48-92ac-8c038fd01ca6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Sequential Ring","item":[{"name":"User Sequential Ring","id":"fc63af48-7e88-4ef6-84b8-084242c81d96","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/sequential-ring?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","sequential-ring"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"0364608d-1b21-4cbd-9274-0a4d047ec8d6","name":"User Sequential Ring","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/sequential-ring?userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","sequential-ring"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"573","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 23:44:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"ringBaseLocationFirst\":true,\"baseLocationNumberOfRings\":3,\"continueIfBaseLocationIsBusy\":true,\"callerMayStopSearch\":true,\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"locations\":[{\"phoneNumber\":\"5133334444\",\"numberOfRings\":3,\"answerConfirmationRequired\":true},{\"phoneNumber\":\"5133334455\",\"numberOfRings\":3,\"answerConfirmationRequired\":true},{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false},{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false},{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false}],\"criteria\":[]}"}],"_postman_id":"fc63af48-7e88-4ef6-84b8-084242c81d96"},{"name":"User Sequential Ring","id":"b1e14572-4c5c-4732-9dd0-3cfa4dc3cf1d","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"ringBaseLocationFirst\":true,\n\t\"baseLocationNumberOfRings\":3,\n\t\"continueIfBaseLocationIsBusy\":true,\n\t\"callerMayStopSearch\":true,\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"locations\":[\n\t\t{\"phoneNumber\":\"5133334444\",\"numberOfRings\":3,\"answerConfirmationRequired\":true},\n\t\t{\"phoneNumber\":\"5133334455\",\"numberOfRings\":3,\"answerConfirmationRequired\":true},\n\t\t{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false},\n\t\t{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false},\n\t\t{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false}\n\t]\n}"},"url":"{{url}}/api/v2/users/sequential-ring","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","sequential-ring"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"70b7fb25-336b-4425-9a92-f6fa5be03238","name":"User Sequential Ring","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"ringBaseLocationFirst\":true,\n\t\"baseLocationNumberOfRings\":3,\n\t\"continueIfBaseLocationIsBusy\":true,\n\t\"callerMayStopSearch\":true,\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"locations\":[\n\t\t{\"phoneNumber\":\"5133334444\",\"numberOfRings\":3,\"answerConfirmationRequired\":true},\n\t\t{\"phoneNumber\":\"5133334455\",\"numberOfRings\":3,\"answerConfirmationRequired\":true},\n\t\t{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false},\n\t\t{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false},\n\t\t{\"phoneNumber\":\"\",\"numberOfRings\":3,\"answerConfirmationRequired\":false}\n\t]\n}"},"url":"{{url}}/api/v2/users/sequential-ring"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 23:46:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b1e14572-4c5c-4732-9dd0-3cfa4dc3cf1d"},{"name":"User Sequential Ring Criteria","id":"4981b3f3-e979-44da-9b60-6ac1674cebc6","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"isActive\":true,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"phoneNumbers\":[\n\t\t\t\"5133334444\",\n\t\t\t\"5133334455\"\n\t\t],\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"includeUnavailableCallers\":true\n\t},\n\t\"criteriaName\":\"Test123\"\n}"},"url":"{{url}}/api/v2/users/sequential-ring/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","sequential-ring","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bfa6c25b-6f9f-46bb-87c8-469418c645f7","name":"User Sequential Ring Criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"isActive\":true,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"phoneNumbers\":[\n\t\t\t\"5133334444\",\n\t\t\t\"5133334455\"\n\t\t],\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"includeUnavailableCallers\":true\n\t},\n\t\"criteriaName\":\"Test123\"\n}"},"url":"{{url}}/api/v2/users/sequential-ring/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 23:51:52 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"4981b3f3-e979-44da-9b60-6ac1674cebc6"},{"name":"User Sequential Ring Criteria","id":"73e2c4cf-da16-4478-aab4-1e71a3fa7cbe","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/sequential-ring/criteria?criteriaName=Test123&userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","sequential-ring","criteria"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"0cce683d-6abe-4c1c-a29b-d90ba1a3a1cc","name":"User Sequential Ring Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/sequential-ring/criteria?criteriaName=Test123&userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","sequential-ring","criteria"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"263","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 23:47:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"blacklisted\":false,\"fromDnCriteria\":{\"fromDnCriteriaSelection\":\"Specified Only\",\"includeAnonymousCallers\":\"true\",\"includeUnavailableCallers\":\"true\",\"phoneNumbers\":[\"5133334444\",\"5133334455\"]},\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"criteriaName\":\"Test123\"}"}],"_postman_id":"73e2c4cf-da16-4478-aab4-1e71a3fa7cbe"},{"name":"User Sequential Ring Criteria","id":"6cf532bf-92a7-4d10-852b-1ac9a3a7f71c","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"blacklisted\":false,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"includeUnavailableCallers\":true,\n\t\t\"phoneNumbers\":[\"5133334444\",\"5133334455\"]\n\t\t\n\t},\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"criteriaName\":\"Test123\",\n\t\"isActive\":true,\n\t\"newCriteriaName\":\"Test123\",\n\t\"holidaySchedule\":{},\n\t\"holidayScheduleName\":null\n}"},"url":"{{url}}/api/v2/users/sequential-ring/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","sequential-ring","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8467e07a-34d2-49a3-a737-43d2259a5467","name":"User Sequential Ring Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"blacklisted\":false,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"includeUnavailableCallers\":true,\n\t\t\"phoneNumbers\":[\"5133334444\",\"5133334455\"]\n\t\t\n\t},\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"criteriaName\":\"Test123\",\n\t\"isActive\":true,\n\t\"newCriteriaName\":\"Test123\",\n\t\"holidaySchedule\":{},\n\t\"holidayScheduleName\":null\n}"},"url":"{{url}}/api/v2/users/sequential-ring/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 23:49:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6cf532bf-92a7-4d10-852b-1ac9a3a7f71c"},{"name":"User Sequential Ring Criteria","id":"c14dc41e-d08b-4ab5-a4ce-e0a7ed56f3f3","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/sequential-ring/criteria?criteriaName=Test123&userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","sequential-ring","criteria"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"72416279-8d51-4b18-a050-dca18dc31586","name":"User Sequential Ring Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/sequential-ring/criteria?criteriaName=Test123&userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","sequential-ring","criteria"],"query":[{"key":"criteriaName","value":"Test123"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 23:49:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c14dc41e-d08b-4ab5-a4ce-e0a7ed56f3f3"}],"id":"41de696b-9a72-46e8-82f1-1aa8e1debae9","_postman_id":"41de696b-9a72-46e8-82f1-1aa8e1debae9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Series Completion","item":[{"name":"Group Series Completions","id":"b02fc472-48ca-4e1e-bd0c-a7de21d3cb1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/series-completion?serviceProviderId=ent.odin&groupId=grp.odin","description":"<p>Create a new series completion group and manage existing series completion groups. This service is used to support key system functionality that can forward calls to a selected series of lines (when lines are busy). Key systems typically ring available lines in a specified order for incoming calls, regardless of the number dialed to reach the company.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","series-completion"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"da359837-581a-4563-835b-c4a84c15df5a","name":"Group Series Completions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/series-completion?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","series-completion"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"names\": [\n        \"series-completion-1\"\n    ]\n}"}],"_postman_id":"b02fc472-48ca-4e1e-bd0c-a7de21d3cb1c"},{"name":"Group Series Completion","id":"3fbd45d9-8826-4535-b105-174995b48d4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/series-completion?serviceProviderId=ent.odin&groupId=grp.odin&name=series-completion-1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","series-completion"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"series-completion-1"}],"variable":[]}},"response":[{"id":"3b8c57b5-e83f-430c-9a27-af167fb98345","name":"Group Series Completion","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/series-completion?serviceProviderId=ent.odin&groupId=grp.odin&name=series-completion-1","host":["{{url}}"],"path":["api","v2","groups","series-completion"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"series-completion-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"series-completion-1\",\n    \"users\": [\n        {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": \"+1-8595551401\",\n            \"extension\": 51401,\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"hiraganaLastName\": 4003,\n            \"hiraganaFirstName\": 4003,\n            \"phoneNumber\": \"+1-5134004003\",\n            \"extension\": \"04003\",\n            \"department\": null,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\"\n        }\n    ]\n}"}],"_postman_id":"3fbd45d9-8826-4535-b105-174995b48d4f"},{"name":"Group Series Completion Available Users","id":"46b31741-3c94-4768-afc4-30ea8711fd20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/series-completion/users?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","series-completion","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"disabled":true,"key":"name","value":"SeriesCompletion2"}],"variable":[]}},"response":[{"id":"8f668c70-5b37-46d0-9a18-cd7ac2dca4d2","name":"Group Series Completion Available Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/series-completion/users?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","series-completion","users"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"SeriesCompletion2","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"5135564000@parkbenchsolutions.com\",\n        \"lastName\": \"Demo user\",\n        \"firstName\": \"Marc\",\n        \"hiraganaLastName\": \"Demo user\",\n        \"hiraganaFirstName\": \"Marc\",\n        \"phoneNumber\": \"+1-5135564000\",\n        \"extension\": 64000,\n        \"department\": null,\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"user4@parkbenchsolutions.com\",\n        \"lastName\": \"Sonkar\",\n        \"firstName\": \"Animesh\",\n        \"hiraganaLastName\": \"Sonkar\",\n        \"hiraganaFirstName\": \"Animesh\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"sandesh@parkbenchsolutions.com\",\n        \"lastName\": \"dixit\",\n        \"firstName\": \"sandesh\",\n        \"hiraganaLastName\": \"dixit\",\n        \"hiraganaFirstName\": \"sandesh\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"odin-device-test-1@parkbenchsolutions.com\",\n        \"lastName\": \"odin-device-test-1\",\n        \"firstName\": \"odin-device-test-1\",\n        \"hiraganaLastName\": \"odin-device-test-1\",\n        \"hiraganaFirstName\": \"odin-device-test-1\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"emailAddress\": null\n    },\n    {\n        \"userId\": \"ddoris@parkbenchsolutions.com\",\n        \"lastName\": \"doris\",\n        \"firstName\": \"dusty\",\n        \"hiraganaLastName\": \"doris\",\n        \"hiraganaFirstName\": \"dusty\",\n        \"phoneNumber\": null,\n        \"extension\": null,\n        \"department\": null,\n        \"emailAddress\": null\n    }\n]"}],"_postman_id":"46b31741-3c94-4768-afc4-30ea8711fd20"},{"name":"Group Series Competion","id":"f1ce2b6b-71ce-4f3d-8c0e-757cd1879ebc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"series-completion-2\",\n    \"users\": [\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/series-completion","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","series-completion"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"efc92406-867f-40a0-a96b-c6aae3c97e4b","name":"Group Series Competion","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"series-completion-2\",\n    \"users\": [\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/series-completion"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"series-completion-2\",\n    \"users\": [\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\",\n            \"lastName\": \"Sonkar\",\n            \"firstName\": \"Animesh\",\n            \"hiraganaLastName\": \"Sonkar\",\n            \"hiraganaFirstName\": \"Animesh\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"f1ce2b6b-71ce-4f3d-8c0e-757cd1879ebc"},{"name":"Group Series Competion","id":"f7288527-452f-41eb-b666-08c1d7f4ca0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"series-completion-2\",\n    \"users\": [\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"sandesh@parkbenchsolutions.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/series-completion","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","series-completion"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9b095908-0ce5-4491-8578-17229fbf6b5c","name":"Group Series Competion","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"series-completion-2\",\n    \"users\": [\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\"\n        },\n        {\n            \"userId\": \"sandesh@parkbenchsolutions.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/series-completion"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"series-completion-2\",\n    \"users\": [\n        {\n            \"userId\": \"user4@parkbenchsolutions.com\",\n            \"lastName\": \"Sonkar\",\n            \"firstName\": \"Animesh\",\n            \"hiraganaLastName\": \"Sonkar\",\n            \"hiraganaFirstName\": \"Animesh\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"sandesh@parkbenchsolutions.com\",\n            \"lastName\": \"dixit\",\n            \"firstName\": \"sandesh\",\n            \"hiraganaLastName\": \"dixit\",\n            \"hiraganaFirstName\": \"sandesh\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"f7288527-452f-41eb-b666-08c1d7f4ca0a"},{"name":"Group Series Completion","id":"fda75556-8dba-4758-bf2a-25596a7fb144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/series-completion?serviceProviderId=ent.odin&groupId=grp.odin&name=series-completion-2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","series-completion"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"series-completion-2"}],"variable":[]}},"response":[{"id":"8cde26c9-3850-4674-976c-bc2a90a96623","name":"Group Series Completion","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/series-completion?serviceProviderId=ent.odin&groupId=grp.odin&name=series-completion-2","host":["{{url}}"],"path":["api","v2","groups","series-completion"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"series-completion-2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"names\": [\n        \"series-completion-1\"\n    ]\n}"}],"_postman_id":"fda75556-8dba-4758-bf2a-25596a7fb144"}],"id":"b9809d5d-22f9-4b5a-a698-655d63edf8b8","_postman_id":"b9809d5d-22f9-4b5a-a698-655d63edf8b8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Service Packs","item":[{"name":"Service Providers Service Packs","id":"3de63fb4-43da-45b1-87c4-01e783d10c4f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/service-packs?serviceProviderId=odin.mock.ent1&includeUtilization=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","service-packs"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"includeUtilization","value":"true"}],"variable":[]}},"response":[],"_postman_id":"3de63fb4-43da-45b1-87c4-01e783d10c4f"},{"name":"Service Providers Service Pack","id":"9caf887d-6867-4774-9022-d1a5f312f85f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"isAvailableForUse\": true,\n\t\"servicePackQuantity\": -1,\n\t\"allowedQuantity\": -1,\n\t\"userServices\": [{\n\t\t\"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n\t}, {\n\t\t\"serviceName\": \"Basic Call Logs\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"Basic Call Logs\"\n\t}, {\n\t\t\"serviceName\": \"Barge-in Exempt\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"Barge-in Exempt\"\n\t}, {\n\t\t\"serviceName\": \"Automatic Callback\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"Automatic Callback\"\n\t}],\n\t\"servicePackName\": \"Test Pack\",\n\t\"servicePackDescription\": \"This is a Test Service Pack\"\n}"},"url":"{{url}}/api/v2/service-providers/service-packs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","service-packs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"61073b27-db08-4918-a70a-a340cdc7ba56","name":"Service Providers Service Pack","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"isAvailableForUse\": true,\n\t\"servicePackQuantity\": -1,\n\t\"allowedQuantity\": -1,\n\t\"userServices\": [{\n\t\t\"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n\t}, {\n\t\t\"serviceName\": \"Basic Call Logs\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"Basic Call Logs\"\n\t}, {\n\t\t\"serviceName\": \"Barge-in Exempt\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"Barge-in Exempt\"\n\t}, {\n\t\t\"serviceName\": \"Automatic Callback\",\n\t\t\"authorized\": true,\n\t\t\"assigned\": false,\n\t\t\"limited\": \"Unlimited\",\n\t\t\"quantity\": -1,\n\t\t\"allocated\": -1,\n\t\t\"licensed\": true,\n\t\t\"servicePackAllocation\": \"Unlimited\",\n\t\t\"userAssignable\": true,\n\t\t\"servicePackAssignable\": true,\n\t\t\"tags\": [],\n\t\t\"alias\": \"Automatic Callback\"\n\t}],\n\t\"servicePackName\": \"Test Pack\",\n\t\"servicePackDescription\": \"This is a Test Service Pack\"\n}"},"url":"{{url}}/api/v2/service-providers/service-packs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 18:15:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"9caf887d-6867-4774-9022-d1a5f312f85f"},{"name":"Service Providers Service Pack","id":"3a6b1d20-3218-42b2-a3fa-e9e2cbd985e3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/service-packs?serviceProviderId=odin.mock.ent1&servicePackName=Test Pack","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","service-packs"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"servicePackName","value":"Test Pack"}],"variable":[]}},"response":[{"id":"596c7b18-86a0-4639-b8d5-8fd3c982bfec","name":"Service Providers Service Pack","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/service-packs?serviceProviderId=odin.mock.ent1&servicePackName=Test Pack","host":["{{url}}"],"path":["api","v2","service-providers","service-packs"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"servicePackName","value":"Test Pack"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"595","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 18:22:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"servicePackName\":\"Test Pack\",\"servicePackDescription\":\"This is a Test Service Pack Update\",\"isAvailableForUse\":true,\"servicePackQuantity\":-1,\"assignedQuantity\":0,\"allowedQuantity\":-1,\"serviceProviderId\":\"odin.mock.ent1\",\"userServices\":[{\"authorized\":-1,\"allocated\":-1,\"available\":-1,\"serviceName\":\"Automatic Callback\"},{\"authorized\":-1,\"allocated\":-1,\"available\":-1,\"serviceName\":\"Barge-in Exempt\"},{\"authorized\":-1,\"allocated\":-1,\"available\":-1,\"serviceName\":\"Basic Call Logs\"},{\"authorized\":-1,\"allocated\":-1,\"available\":-1,\"serviceName\":\"BroadTouch Business Communicator Desktop - Audio\"}]}"}],"_postman_id":"3a6b1d20-3218-42b2-a3fa-e9e2cbd985e3"},{"name":"Service Providers Service Pack","id":"f7f275d4-583a-4e52-b6cb-22c4a35b4330","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"servicePackName\": \"Test Pack\",\n\t\"servicePackDescription\": \"This is a Test Service Pack Update\",\n\t\"isAvailableForUse\": true,\n\t\"servicePackQuantity\": -1,\n\t\"assignedQuantity\": 0,\n\t\"allowedQuantity\": -1,\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"userServices\": [{\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"Automatic Callback\"\n\t}, {\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"Barge-in Exempt\"\n\t}, {\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"Basic Call Logs\"\n\t}, {\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\"\n\t}]\n}"},"url":"{{url}}/api/v2/service-providers/service-packs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","service-packs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2a5f4382-833a-4fa4-b506-9f213803e100","name":"Service Providers Service Pack","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"servicePackName\": \"Test Pack\",\n\t\"servicePackDescription\": \"This is a Test Service Pack Update\",\n\t\"isAvailableForUse\": true,\n\t\"servicePackQuantity\": -1,\n\t\"assignedQuantity\": 0,\n\t\"allowedQuantity\": -1,\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"userServices\": [{\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"Automatic Callback\"\n\t}, {\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"Barge-in Exempt\"\n\t}, {\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"Basic Call Logs\"\n\t}, {\n\t\t\"authorized\": -1,\n\t\t\"allocated\": -1,\n\t\t\"available\": -1,\n\t\t\"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\"\n\t}]\n}"},"url":"{{url}}/api/v2/service-providers/service-packs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 18:21:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"f7f275d4-583a-4e52-b6cb-22c4a35b4330"},{"name":"Service Providers Service Pack","id":"06fe74be-6e06-4dd3-8db2-0c8ee16750dd","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/service-packs?serviceProviderId=odin.mock.ent1&servicePackName=Test Pack","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","service-packs"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"servicePackName","value":"Test Pack"}],"variable":[]}},"response":[{"id":"4dabb565-55ca-4d64-a8fa-dd7494a73f80","name":"Service Providers Service Pack","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/service-packs?serviceProviderId=odin.mock.ent1&servicePackName=Test Pack","host":["{{url}}"],"path":["api","v2","service-providers","service-packs"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"servicePackName","value":"Test Pack"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 18:22:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"06fe74be-6e06-4dd3-8db2-0c8ee16750dd"},{"name":"Service Providers Service Pack Usage","id":"24180000-7e33-44bf-b858-89ee53ed2816","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/service-packs/usage?serviceProviderId=odin.mock.ent1&serviceName=Basic+Call+Logs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","service-packs","usage"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"serviceName","value":"Basic+Call+Logs"}],"variable":[]}},"response":[{"id":"5c71a47b-4e43-4a58-a6c8-9567c12ea689","name":"Service Providers Service Pack Usage","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/service-packs/usage?serviceProviderId=ent.odin&serviceName=uc-one","host":["{{url}}"],"path":["api","v2","service-providers","service-packs","usage"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"serviceName","value":"uc-one"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"346","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 18:23:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"servicePackName\": \"Premium\",\n        \"totalPacks\": \"Unlimited\",\n        \"allocatedtoGroups\": \"Unlimited\"\n    },\n    {\n        \"servicePackName\": \"Standard\",\n        \"totalPacks\": \"Unlimited\",\n        \"allocatedtoGroups\": \"Unlimited\"\n    },\n    {\n        \"servicePackName\": \"uc-one\",\n        \"totalPacks\": \"Unlimited\",\n        \"allocatedtoGroups\": \"Unlimited\"\n    },\n    {\n        \"servicePackName\": \"uc-one with vm\",\n        \"totalPacks\": \"Unlimited\",\n        \"allocatedtoGroups\": 0\n    }\n]"}],"_postman_id":"24180000-7e33-44bf-b858-89ee53ed2816"}],"id":"ad1218bc-ca47-465a-8bd1-3e46cc493539","_postman_id":"ad1218bc-ca47-465a-8bd1-3e46cc493539","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Service Providers","item":[{"name":"Service Providers","event":[{"listen":"test","script":{"id":"74ca0afd-2a2c-412d-a549-4d541ff37253","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"6f5a0b70-7fc2-4250-b0d9-c7da7c432012","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers?resellerId=reseller.odin","description":"<p>List all Service Providers.  You can optionally filter by resellerId.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Filter by resellerId</p>\n","type":"text/plain"},"key":"resellerId","value":"reseller.odin"}],"variable":[]}},"response":[{"id":"0fa60b87-556e-453e-a8e7-ea70d43b95a2","name":"Service Providers - Reseller Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers?resellerId=reseller.odin","host":["{{url}}"],"path":["api","v2","service-providers"],"query":[{"key":"resellerId","value":"reseller.odin","description":"Filter by resellerId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2019 15:32:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"126"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.reseller\",\n        \"serviceProviderName\": \"odin.reseller\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"reseller.odin\"\n    }\n]"},{"id":"bd624752-2f9b-4b93-9254-5f27f5218509","name":"Service Providers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":"{{url}}/api/v2/service-providers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2637","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 30 Aug 2018 19:35:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"serviceProviderName\": \"Odin Mock Enterprise 1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.sp1\",\n        \"serviceProviderName\": \"Odin Mock Service Provider 1\",\n        \"isEnterprise\": false\n    }\n]"},{"id":"4d7edc22-1673-445c-b262-69ef5043a05f","name":"Service Providers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/webex-activation/users","host":["{{url}}"],"path":["api","v2","webex-activation","users"],"query":[{"key":"serviceProviderId","value":"ent.odin","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Security-Policy","value":"default-src         'none';       script-src         'self'         https://*.google-analytics.com         https://www.google.com;       connect-src         'self'         https://www.google-analytics.com;       img-src         'self'         data:         https://www.google-analytics.com;       style-src         'self'         'unsafe-inline';       font-src         'self';       frame-ancestors         teams.microsoft.com         *.teams.microsoft.com         *.skype.com;"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 30 Jun 2025 15:29:46 GMT"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Server","value":"Caddy"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Authorization"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"ALLOW-FROM https://teams.microsoft.com/"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"basic\": [\n        \"imp8054561297\",\n        \"imp8054561298\",\n        \"imp8054561295\",\n        \"imp8054561296\",\n        \"imp8056174313\",\n        \"impdemo_0002\",\n        \"imp8058805670\",\n        \"imp8052840779\",\n        \"imp8056174672\",\n        \"imp8052840785\",\n        \"imp8052840788\",\n        \"imp8056174182\",\n        \"imp8052840783\",\n        \"imp8058805673\",\n        \"impdemo_00027777\",\n        \"imp8058805674\",\n        \"imp8058805672\",\n        \"impcobra-pilot\",\n        \"imp8056174385\",\n        \"imp8058805671\",\n        \"impdemo_0002-trunk\",\n        \"imp8052840784\",\n        \"imp8052840782\",\n        \"imp8052840781\",\n        \"imp8052840780\",\n        \"imp8057300606\",\n        \"imp8053352593\",\n        \"imp8053352594\",\n        \"imp8052849977\",\n        \"imp8052901435\",\n        \"imp8054564201\",\n        \"imp00002-022301\",\n        \"imp00002-022309\",\n        \"imp8053352591\",\n        \"imp00002-022305\",\n        \"imp00002-022302\",\n        \"imp00002-053213\",\n        \"imp8053514123\",\n        \"imp00002-12-trunk@pilot.impulsevoip.net\",\n        \"8058846377@00002.impulsevoip.net\",\n        \"imp8058846326\",\n        \"imp8058846355\",\n        \"imp8058846372\",\n        \"imp8058846361\",\n        \"imp8058846392\",\n        \"imp8058846373\",\n        \"imp8058846357\",\n        \"imp8058846364\",\n        \"imp8054564281\",\n        \"imp00002-019973\",\n        \"imp8058846363\",\n        \"imp8058846370\",\n        \"imp8058846324\",\n        \"imp8058846394\",\n        \"imp8058846386\",\n        \"imp8058846391\",\n        \"imp8058846378\",\n        \"imp8058846332\",\n        \"imp8058846375\",\n        \"imp8058846393\",\n        \"imp8054565833\",\n        \"imp8058846318\",\n        \"imp8058846317\",\n        \"imp8058846396\",\n        \"imp8887776543\",\n        \"imp8058846368\",\n        \"imp8057554546\",\n        \"imp8055621909\",\n        \"imp8054763406\",\n        \"imptestbuild\",\n        \"imp00002-01-trunk@00002.impulsevoip.net\",\n        \"imp8059802095\",\n        \"imp8059802094\",\n        \"imp8058805658\",\n        \"imp8058846352\",\n        \"imp8058846334\",\n        \"sip8053514126\",\n        \"imp8058846316\",\n        \"imp8052901402\",\n        \"imp8057361678\",\n        \"imp8058805656\",\n        \"imp8058846315\",\n        \"imp00002-016006\",\n        \"imp8059802096\",\n        \"imp00002-014308\",\n        \"imp8058846353\",\n        \"imp00002-017887\",\n        \"imp8058846339\",\n        \"imp8058846362\",\n        \"imp8058846308\",\n        \"imp8058846371\",\n        \"ImpulseHQNOCVM\",\n        \"imp8053352597\",\n        \"imp8058846395\",\n        \"imp8058846360\",\n        \"imp8056174307\",\n        \"imp00002-directory\",\n        \"imp8058846382\",\n        \"imp8052594574\",\n        \"imp8058846397\",\n        \"imp8058846327\",\n        \"imp8058846359\",\n        \"imp8058846314\",\n        \"imp8058846369\",\n        \"imp00002-011234\",\n        \"imp00002-016502\",\n        \"imp8058846388\",\n        \"imp8053514102\",\n        \"imp8053514125\",\n        \"imp8058846312\",\n        \"imp8058846376\",\n        \"imp8058846399\",\n        \"imp8058846367\",\n        \"imp8059802093\",\n        \"imp00002-016501\",\n        \"imp00002-011888\",\n        \"imp3108736994\",\n        \"imp8058846305\",\n        \"imp8058805652\",\n        \"imp8054760300\",\n        \"imp00002-017326\",\n        \"imp8058846321\",\n        \"imp8058846337\",\n        \"imp8058846322\",\n        \"imp8052901694\",\n        \"imp8052901401\",\n        \"imp8052840348\",\n        \"imp8059802092\",\n        \"imp8058846320\",\n        \"imp8058846306\",\n        \"imp8058846313\",\n        \"imp00002-016004\",\n        \"imp00002-016245\",\n        \"imp8058805654\",\n        \"8058846325@00002.impulsevoip.net\",\n        \"imp8059802091\",\n        \"imp8058806969\",\n        \"imp00002-011403\",\n        \"imp8054760301\",\n        \"imp5038978575\",\n        \"imp8059802090\",\n        \"imp00002-013603\",\n        \"imp00002-016489\",\n        \"imp00002-016406\",\n        \"imp8058846387\",\n        \"imp8058846356\",\n        \"imp8058846323\",\n        \"imp8058846379\",\n        \"imp8058846329\",\n        \"imp8058846335\",\n        \"imp8058846381\",\n        \"imp8058846354\",\n        \"imp8058846336\",\n        \"imp8052849072\",\n        \"imp8056922712\",\n        \"imp8054565875\",\n        \"imp8053086869\",\n        \"imp8058846380\",\n        \"imp8058846338\",\n        \"imp00002-019971\",\n        \"imp00002-019972\",\n        \"imp8053514100\",\n        \"mreverman\",\n        \"slatsa\",\n        \"imp8058846351\",\n        \"imp8052433813\",\n        \"imp8058846304\",\n        \"imp8058846310\",\n        \"imp00002-013501\",\n        \"imp00002-013502\",\n        \"imp00002-013503\",\n        \"imp00002-013504\",\n        \"imp00002-013505\",\n        \"imp8058846331\",\n        \"imp5038978550\",\n        \"imp00002-012543\",\n        \"8888@00002.impulsevoip.net\",\n        \"imp8054563637\",\n        \"imp8052849523\",\n        \"imp8058803530\",\n        \"imp8054565689\",\n        \"imp00002-061501\",\n        \"imp8056833976\",\n        \"tsptsp\",\n        \"imp00002-022321\",\n        \"imp00002-022323\",\n        \"imp8058846307\",\n        \"imp00002-022308\",\n        \"imp8053352592\",\n        \"imp8052611125\",\n        \"imp8053507901\",\n        \"imp8052840426\",\n        \"00002-02Key2\",\n        \"00002-02Key3\",\n        \"00002-02Key4\",\n        \"imp8059621575\",\n        \"imp00002-024447\",\n        \"imp8052904278\",\n        \"imp00002-021999\",\n        \"imp00002-02RMA\",\n        \"Key1test\",\n        \"imp00002-053214\",\n        \"imp00002-01VMTEST9927\",\n        \"imp00002-025659\",\n        \"imp00002-022322\",\n        \"imp8052904279\",\n        \"imp8053763404\",\n        \"imp8053571362\",\n        \"imp8053571363\",\n        \"imp00002-026543\",\n        \"imp00002-022306\",\n        \"imp00002-053215\",\n        \"imp00002-022304\",\n        \"imp8052901884\",\n        \"imp00002-022303\",\n        \"imp00002-02-trunk\",\n        \"8058805650@00002.impulsevoip.net\",\n        \"imp8057701606\",\n        \"imp00090-02352\",\n        \"imp8057701609\",\n        \"imp8057701602\",\n        \"imp8057701607\",\n        \"00090-02133\",\n        \"imp8057701604\",\n        \"imp00090-02888\",\n        \"imp8057701610\",\n        \"imp8057701611\",\n        \"imp8057701605\",\n        \"imp8057701613\",\n        \"imp8057701614\",\n        \"imp8057701601\",\n        \"imp8057701612\",\n        \"imp8057701608\",\n        \"imp8057701603\",\n        \"imp00090-01100\",\n        \"imp8054760312\",\n        \"imp8052840397\",\n        \"imp8054760373\",\n        \"imp8054760374\",\n        \"imp8054760377\",\n        \"imp8054760375\",\n        \"imp8054760313\",\n        \"imp8054760379\",\n        \"imp00090-03ext226\",\n        \"imp8054760378\",\n        \"imp8054760376\",\n        \"imp8054368474\",\n        \"imp8054368478\",\n        \"imp8054368476\",\n        \"imp8054368475\",\n        \"imp8054368471\",\n        \"imp8054368472\",\n        \"imp8054368473\",\n        \"imp8058971177\",\n        \"imp8053197970\",\n        \"imp8053197977\",\n        \"imp8053197966\",\n        \"imp8053197972\",\n        \"imp8053197973\",\n        \"imp8053197965\",\n        \"imp8053197978\",\n        \"imp8053358061\",\n        \"imp8053358040\",\n        \"imp8053358056\",\n        \"imp8053358052\",\n        \"imp8053358010\",\n        \"imp8053358001\",\n        \"imp8053358051\",\n        \"imp8053358027\",\n        \"imp8053358064\",\n        \"imp8053358008\",\n        \"imp8053358013\",\n        \"imp8053358069\",\n        \"imp8053358050\",\n        \"imp8053358054\",\n        \"imp8053358007\",\n        \"imp8053358009\",\n        \"imp8053358023\",\n        \"imp8053358021\",\n        \"imp8053358004\",\n        \"imp8053358025\",\n        \"imp8053358005\",\n        \"imp8053358033\",\n        \"imp8053358002\",\n        \"imp8053358028\",\n        \"imp8053358072\",\n        \"imp8053358014\",\n        \"imp8053358057\",\n        \"imp8053358045\",\n        \"imp8053358022\",\n        \"imp8053358070\",\n        \"imp8053358044\",\n        \"imp8053358012\",\n        \"imp8053358018\",\n        \"imp8053358066\",\n        \"imp8053358019\",\n        \"imp8053358011\",\n        \"imp8053358020\",\n        \"imp8053358030\",\n        \"imp8053358059\",\n        \"imp8053358032\",\n        \"imp8053358026\",\n        \"imp8053358068\",\n        \"imp8053358042\",\n        \"imp8053358043\",\n        \"imp8053358031\",\n        \"imp8053358067\",\n        \"imp8053358062\",\n        \"imp8053358039\",\n        \"imp8053358003\",\n        \"imp8053358017\",\n        \"imp8053358029\",\n        \"imp8053358038\",\n        \"imp8053358073\",\n        \"imp8053358036\",\n        \"imp8053358065\",\n        \"imp8053358016\",\n        \"imp8053358034\",\n        \"imp8053358055\",\n        \"imp8056399459\",\n        \"imp8056399470\",\n        \"imp8056399461\",\n        \"imp8052051326\",\n        \"imp8052051314\",\n        \"imp8052051349\",\n        \"imp8052051368\",\n        \"imp8052051341\",\n        \"imp8052051358\",\n        \"imp8052051361\",\n        \"imp8052051347\",\n        \"imp8052051362\",\n        \"imp8052051338\",\n        \"imp8052051308\",\n        \"imp8052051346\",\n        \"imp8052051348\",\n        \"imp8052051343\",\n        \"imp8052051309\",\n        \"imp8058459758\",\n        \"imp8058459764\",\n        \"imp8056837594\",\n        \"imp8053358528\",\n        \"imp8056181837\",\n        \"imp00005-010\",\n        \"imp8056835374\",\n        \"imp8059645256\",\n        \"imp8056824779\",\n        \"imp8057702403\",\n        \"imp8053089201\",\n        \"imp8053089206\",\n        \"imp8053089203\",\n        \"imp8053089202\",\n        \"imp8058804250\",\n        \"imp8054566918\",\n        \"imp8054566907\",\n        \"imp8054566909\",\n        \"imp8054566915\",\n        \"imp00012-016103\",\n        \"imp8058804275\",\n        \"imp8054566908\",\n        \"imp8054566912\",\n        \"imp8054566900\",\n        \"imp00012-016101\",\n        \"imp8052901419\",\n        \"imp8058804216\",\n        \"imp8058804276\",\n        \"imp8054566901\",\n        \"imp8054566914\",\n        \"imp8054566913\",\n        \"imp8054566902\",\n        \"imp00012-016102\",\n        \"imp8054566905\",\n        \"imp8058804279\",\n        \"imp8054566904\",\n        \"imp8054566916\",\n        \"imp8054566906\",\n        \"imp8054566903\",\n        \"imp8054566910\",\n        \"imp8054566911\",\n        \"imp8054566917\",\n        \"imp8054566999\",\n        \"imp8057414368\",\n        \"imp8057414385\",\n        \"imp8057414352\",\n        \"imp8057414380\",\n        \"imp8057414357\",\n        \"imp8057414384\",\n        \"imp8057414365\",\n        \"imp8057414356\",\n        \"imp8057414379\",\n        \"imp8057365608\",\n        \"imp8057414372\",\n        \"imp8057414374\",\n        \"imp8057414367\",\n        \"imp8057414364\",\n        \"imp8057414386\",\n        \"imp8057414388\",\n        \"imp8057414377\",\n        \"imp00019-01100\",\n        \"imp3108736906\",\n        \"imp3108736917\",\n        \"imp3108736907\",\n        \"imp8054564877\",\n        \"imp3108736914\",\n        \"imp3108736903\",\n        \"imp8054564878\",\n        \"imp3108736912\",\n        \"imp8054564887\",\n        \"imp8054564882\",\n        \"imp8054566882\",\n        \"imp8056846518\",\n        \"imp8054566886\",\n        \"imp8056846519\",\n        \"imp8056846516\",\n        \"imp8054566884\",\n        \"imp8054566890\",\n        \"imp8054566889\",\n        \"imp8054566888\",\n        \"imp8054566885\",\n        \"imp8054566883\",\n        \"imp8054566881\",\n        \"imp8054566887\",\n        \"imp8056846517\",\n        \"imp8056972801\",\n        \"imp8056972803\",\n        \"imp8056972804\",\n        \"imp8056972802\",\n        \"imp8054568110\",\n        \"imp8054568114\",\n        \"imp8054568108\",\n        \"imp8054568116\",\n        \"imp8054568111\",\n        \"imp8054568112\",\n        \"imp8054568113\",\n        \"imp8054568109\",\n        \"imp8054568117\",\n        \"imp8056971451\",\n        \"imp8056971459\",\n        \"imp8056971454\",\n        \"imp8056971468\",\n        \"imp8056971458\",\n        \"imp8056971460\",\n        \"imp8056971455\",\n        \"imp8056971461\",\n        \"imp8056971467\",\n        \"imp8056971462\",\n        \"imp8056971452\",\n        \"imp8056971457\",\n        \"imp8056971453\",\n        \"imp8056971466\",\n        \"imp8058809325\",\n        \"imp8058809324\",\n        \"imp8056822989\",\n        \"imp00035-02249\",\n        \"imp00035-02238\",\n        \"imp8058809323\",\n        \"imp00035-02246\",\n        \"imp8058809317\",\n        \"imp8055639781\",\n        \"imp00035-02117\",\n        \"imp8058809319\",\n        \"imp8058809320\",\n        \"imp00035-02265\",\n        \"imp00035-02244\",\n        \"imp00035-02222\",\n        \"imp00035-02236\",\n        \"imp00035-02234\",\n        \"imp00035-02269\",\n        \"imp00035-02231\",\n        \"imp8058809321\",\n        \"imp8058809322\",\n        \"imp8058809327\",\n        \"imp8058809318\",\n        \"imp8058809315\",\n        \"imp8054621220\",\n        \"imp8055392794\",\n        \"imp8059798742\",\n        \"imp8059798746\",\n        \"imp8059798744\",\n        \"imp8059798758\",\n        \"imp8059798753\",\n        \"imp8059798776\",\n        \"imp8059798743\",\n        \"imp00052-02306\",\n        \"imp8059798752\",\n        \"imp8059798766\",\n        \"imp8059798761\",\n        \"imp8059798782\",\n        \"imp8059798784\",\n        \"imp8059798785\",\n        \"imp8059798771\",\n        \"imp8059798762\",\n        \"imp8059798788\",\n        \"imp8059798772\",\n        \"imp8059798777\",\n        \"imp8059798764\",\n        \"imp8059798770\",\n        \"imp8059798750\",\n        \"imp8059798760\",\n        \"imp8059798783\",\n        \"imp8059798741\",\n        \"imp8059798798\",\n        \"imp7086655882\",\n        \"imp7086655881\",\n        \"imp7086655884\",\n        \"imp7086655885\",\n        \"imp7087620976\",\n        \"imp7087620977\",\n        \"imp7087620978\",\n        \"imp7086655886\",\n        \"imp7086655883\",\n        \"imp8185320225\",\n        \"imp8185320227\",\n        \"imp8185320230\",\n        \"00060-02235\",\n        \"imp8185320229\",\n        \"imp8185320234\",\n        \"imp8185320228\",\n        \"imp00060-02109\",\n        \"imp8058803554\",\n        \"imp8058803553\",\n        \"imp00110-12118\",\n        \"imp00110-12117\",\n        \"imp00110-12119\",\n        \"imp8058563452\",\n        \"imp00110-08163\",\n        \"imp8058806982\",\n        \"imp00110-08161\",\n        \"imp00110-08160\",\n        \"imp00110-08162\",\n        \"imp00110-01333\",\n        \"imp8058806987\",\n        \"imp8058806986\",\n        \"imp00110-03138\",\n        \"imp00110-03139\",\n        \"imp00110-03137\",\n        \"imp8058806988\",\n        \"imp8058806989\",\n        \"imp00110-05109\",\n        \"imp00110-05113\",\n        \"imp00110-05112\",\n        \"imp8058803581\",\n        \"imp00110-05168\",\n        \"imp8053572551\",\n        \"imp8053572553\",\n        \"imp8053572554\",\n        \"imp8053572552\",\n        \"imp8058803591\",\n        \"imp8058803593\",\n        \"imp00110-09127\",\n        \"imp00110-09128\",\n        \"imp00110-09126\",\n        \"imp8058803592\",\n        \"imp8058844239\",\n        \"imp00110-10105\",\n        \"imp00110-10106\",\n        \"imp00110-10107\",\n        \"imp8058844238\",\n        \"imp8058563454\",\n        \"imp00110-11164\",\n        \"imp8058563457\",\n        \"imp8058563455\",\n        \"imp8058563453\",\n        \"imp8058806972\",\n        \"imp00110-15152\",\n        \"imp00110-15124\",\n        \"imp00110-15151\",\n        \"imp8058806975\",\n        \"imp8058806973\",\n        \"imp8058806974\",\n        \"imp8058803588\",\n        \"imp8058803589\",\n        \"imp8058803590\",\n        \"imp8058803587\",\n        \"imp00110-17111\",\n        \"imp00110-17114\",\n        \"imp00110-17115\",\n        \"imp8058803555\",\n        \"imp8059262213\",\n        \"imp8059262211\",\n        \"imp8059262214\",\n        \"imp00110-19210\",\n        \"imp8059262212\",\n        \"imp8058806985\",\n        \"imp8058806984\",\n        \"imp00110-02144\",\n        \"imp00110-02143\",\n        \"imp00110-02142\",\n        \"imp8059262203\",\n        \"imp8058803597\",\n        \"imp8058803598\",\n        \"imp00110-04148\",\n        \"imp00110-04149\",\n        \"imp00110-04147\",\n        \"imp8058803599\",\n        \"imp8058844240\",\n        \"imp8058844236\",\n        \"imp8058844257\",\n        \"imp8058844224\",\n        \"imp8058844249\",\n        \"imp8058844253\",\n        \"imp8058844258\",\n        \"imp8058844235\",\n        \"imp8058806976\",\n        \"imp8058844244\",\n        \"imp8058844243\",\n        \"imp8058844254\",\n        \"imp8058844255\",\n        \"imp8058844250\",\n        \"imp8058844259\",\n        \"imp8058844241\",\n        \"imp8058844233\",\n        \"imp8058844251\",\n        \"imp8058844227\",\n        \"imp8058844230\",\n        \"imp8058844222\",\n        \"imp8058844237\",\n        \"imp8058844225\",\n        \"imp8058844248\",\n        \"imp8058844245\",\n        \"imp8058844256\",\n        \"imp00110-13530\",\n        \"imp8056796268\",\n        \"imp8058844229\",\n        \"imp00110-13520\",\n        \"imp8058844221\",\n        \"imp8059622121\",\n        \"imp8058844232\",\n        \"imp8058844242\",\n        \"imp8058844226\",\n        \"imp8058844228\",\n        \"imp8058844220\",\n        \"imp8058844234\",\n        \"imp8058844231\",\n        \"imp8058844246\",\n        \"imp8058844223\",\n        \"imp8058844252\",\n        \"imp8058844247\",\n        \"imp8054568777\",\n        \"imp8054568771\",\n        \"imp8054568774\",\n        \"imp8054568775\",\n        \"imp8054568773\",\n        \"imp8054568770\",\n        \"imp8054568772\",\n        \"imp00064-02155\",\n        \"imp00064-02158\",\n        \"imp00064-02152\",\n        \"imp00064-02151\",\n        \"imp00064-02157\",\n        \"imp00064-02159\",\n        \"imp00064-02153\",\n        \"imp00064-02154\",\n        \"imp8054568776\",\n        \"imp00064-02160\",\n        \"imp00064-02156\",\n        \"imp8054568779\",\n        \"imp8054568778\",\n        \"imp8284331686\",\n        \"imp8053089780\",\n        \"imp8053089705\",\n        \"imp8053089759\",\n        \"imp8053089781\",\n        \"imp8053089763\",\n        \"imp8053089776\",\n        \"imp8053089783\",\n        \"imp8053089775\",\n        \"imp00072-02710\",\n        \"imp8053089818\",\n        \"imp00072-02711\",\n        \"imp8053089777\",\n        \"imp8053089787\",\n        \"imp8053089778\",\n        \"imp8053089779\",\n        \"imp8053089782\",\n        \"imp00074-01200\",\n        \"imp8058801113\",\n        \"imp8058801192\",\n        \"imp8058801158\",\n        \"imp8058801110\",\n        \"imp8058801130\",\n        \"imp8058801105\",\n        \"imp8058801149\",\n        \"imp8058801140\",\n        \"imp8058801150\",\n        \"imp8058801116\",\n        \"imp8058801146\",\n        \"imp8058801119\",\n        \"imp8058801155\",\n        \"imp8058801133\",\n        \"imp8058801134\",\n        \"imp8058801143\",\n        \"imp8058801118\",\n        \"imp8058801111\",\n        \"imp8058801142\",\n        \"imp8058801123\",\n        \"imp8058801114\",\n        \"imp8058801122\",\n        \"imp8058801154\",\n        \"imp8058801128\",\n        \"imp8058801132\",\n        \"imp8058801153\",\n        \"imp8058801152\",\n        \"imp8058801137\",\n        \"imp8058801157\",\n        \"imp8058801124\",\n        \"imp8058801136\",\n        \"imp8058801144\",\n        \"imp8058801102\",\n        \"imp8058801120\",\n        \"imp8058801147\",\n        \"imp8058801103\",\n        \"imp8058801156\",\n        \"imp8058801106\",\n        \"imp8058801107\",\n        \"imp8058801127\",\n        \"imp8058801177\",\n        \"imp8058801135\",\n        \"imp8058801151\",\n        \"imp8058801138\",\n        \"imp8058801141\",\n        \"imp8058801109\",\n        \"imp8058801126\",\n        \"imp8058801115\",\n        \"imp8058801108\",\n        \"imp8058801145\",\n        \"imp8058801148\",\n        \"imp8058801121\",\n        \"imp8058801139\",\n        \"imp8058801104\",\n        \"imp8054568745\",\n        \"imp8054568740\",\n        \"imp8054568746\",\n        \"imp8054568748\",\n        \"imp8054568743\",\n        \"imp8054568744\",\n        \"imp8054568751\",\n        \"imp8054568747\",\n        \"imp00202-02130\",\n        \"imp8054568742\",\n        \"imp8054570303\",\n        \"imp8054568750\",\n        \"imp8054568741\",\n        \"imp8054565865\",\n        \"imp8054568752\",\n        \"imp8052840298\",\n        \"imp8052840299\",\n        \"imp8057300930\",\n        \"imp8057701393\",\n        \"imp8058801552\",\n        \"imp8058801553\",\n        \"imp8057701395\",\n        \"imp8058801554\",\n        \"imp8054363430\",\n        \"imp8057701394\",\n        \"imp8057701638\",\n        \"imp8057701389\",\n        \"imp8057300915\",\n        \"imp8057701649\",\n        \"imp8052840261\",\n        \"imp8057701643\",\n        \"imp8057701398\",\n        \"imp8052840263\",\n        \"imp8053572589\",\n        \"imp8057701388\",\n        \"imp8057701359\",\n        \"imp8058801547\",\n        \"imp8057300906\",\n        \"imp8057701631\",\n        \"imp8058801556\",\n        \"imp8057701390\",\n        \"imp8055607805\",\n        \"00076-02VM550\",\n        \"imp8058801546\",\n        \"imp8057701647\",\n        \"imp8057701644\",\n        \"imp8057701633\",\n        \"imp8057701391\",\n        \"imp8058801548\",\n        \"imp8057701621\",\n        \"imp8057701632\",\n        \"imp8057701387\",\n        \"imp8053306603\",\n        \"imp8057701636\",\n        \"imp8057300907\",\n        \"imp8057701397\",\n        \"imp8057701385\",\n        \"imp8057701392\",\n        \"imp8058801544\",\n        \"imp8058801545\",\n        \"imp8057300909\",\n        \"imp8057300922\",\n        \"imp8057701635\",\n        \"imp8054564287\",\n        \"imp8058801543\",\n        \"imp8057701386\",\n        \"imp8053579517\",\n        \"imp8057701396\",\n        \"imp8057701628\",\n        \"imp8057701629\",\n        \"imp8057701630\",\n        \"imp8052840260\",\n        \"imp00076-01200\",\n        \"imp8058801615\",\n        \"imp8058801642\",\n        \"imp8058801651\",\n        \"imp8058801647\",\n        \"imp8058801602\",\n        \"imp8058801604\",\n        \"imp8058801603\",\n        \"imp8058801639\",\n        \"imp8058801648\",\n        \"imp8058801626\",\n        \"imp8058803551\",\n        \"imp8058801653\",\n        \"imp8058801608\",\n        \"imp8058801616\",\n        \"imp8058804201\",\n        \"imp8059662152\",\n        \"00208-029293\",\n        \"imp8058846301\",\n        \"8058801690x\",\n        \"imp8056796230\",\n        \"imp8056796223\",\n        \"imp8056796228\",\n        \"imp8056796225\",\n        \"imp8056796220\",\n        \"imp8056796226\",\n        \"imp8053572520\",\n        \"imp8053572524\",\n        \"imp8053572501\",\n        \"imp8053572512\",\n        \"imp8053572503\",\n        \"imp8053572515\",\n        \"imp00084-02555\",\n        \"imp00084-02556\",\n        \"imp8053572504\",\n        \"imp8053572513\",\n        \"imp8053572516\",\n        \"imp8053572514\",\n        \"imp8053572522\",\n        \"imp00084-02540\",\n        \"imp8056140060\",\n        \"imp8053572521\",\n        \"imp8053572500\",\n        \"imp8053572509\",\n        \"imp8053572508\",\n        \"imp8053572523\",\n        \"imp8053572507\",\n        \"imp8053572506\",\n        \"imp8053572505\",\n        \"imp4085122678\",\n        \"imp8053572517\",\n        \"imp8053572511\",\n        \"imp4085122682\",\n        \"imp8053572510\",\n        \"imp4085122667\",\n        \"imp4085122663\",\n        \"imp4085122674\",\n        \"imp4085122664\",\n        \"imp3238002637\",\n        \"imp3238002635\",\n        \"imp3238002638\",\n        \"imp3238002636\",\n        \"imp3238002641\",\n        \"imp8056173414\",\n        \"imp8056173415\",\n        \"imp8056173412\",\n        \"imp8056173410\",\n        \"imp8056173413\",\n        \"imp8056173411\",\n        \"imp8054568766\",\n        \"imp8053924263\",\n        \"imp8059330274\",\n        \"imp8059330275\",\n        \"imp8053924265\",\n        \"imp8059330276\",\n        \"imp8059330251\",\n        \"imp8059330354\",\n        \"imp8059330235\",\n        \"imp8059330321\",\n        \"imp8059330308\",\n        \"imp8053924266\",\n        \"imp8053924264\",\n        \"imp8056042697\",\n        \"imp8056042648\",\n        \"imp8056042642\",\n        \"imp8056042652\",\n        \"imp8056042643\",\n        \"imp8056174614\",\n        \"imp8056174910\",\n        \"imp8056174997\",\n        \"imp8056174619\",\n        \"imp6618406708\",\n        \"imp6613714483\",\n        \"imp6613714487\",\n        \"imp6613714420\",\n        \"imp6613714517\",\n        \"imp6613714433\",\n        \"imp6613714524\",\n        \"imp6618406798\",\n        \"imp6613714505\",\n        \"imp6613714494\",\n        \"imp6613714469\",\n        \"imp6618406707\",\n        \"imp6613714518\",\n        \"imp6613714453\",\n        \"imp6613714416\",\n        \"imp6613714527\",\n        \"imp6618406709\",\n        \"imp6613714493\",\n        \"imp6613714439\",\n        \"imp6613714508\",\n        \"imp6613714394\",\n        \"imp6613714481\",\n        \"imp6613714484\",\n        \"imp6613714468\",\n        \"imp6613714448\",\n        \"imp6613714373\",\n        \"imp6613714456\",\n        \"imp6613714525\",\n        \"imp6613714466\",\n        \"imp6613714460\",\n        \"imp6613714536\",\n        \"imp6613714375\",\n        \"imp00118-044499\",\n        \"imp6613714371\",\n        \"imp6613714479\",\n        \"imp6613714391\",\n        \"imp6613714519\",\n        \"imp6613714467\",\n        \"imp6613714461\",\n        \"imp6613714503\",\n        \"imp6613714482\",\n        \"imp6618406795\",\n        \"imp6618406704\",\n        \"imp6613714478\",\n        \"imp6613714431\",\n        \"imp6613714476\",\n        \"imp6613714395\",\n        \"imp6618406796\",\n        \"imp6613714450\",\n        \"imp8055661169\",\n        \"imp6613714451\",\n        \"imp6618406797\",\n        \"imp6613714465\",\n        \"imp6613714378\",\n        \"imp6613714471\",\n        \"imp6618406702\",\n        \"imp6613714458\",\n        \"imp6618406706\",\n        \"imp6613714374\",\n        \"imp6613714521\",\n        \"imp6613714377\",\n        \"imp6613714480\",\n        \"imp6613714389\",\n        \"imp6613714455\",\n        \"imp6613714438\",\n        \"imp6613714384\",\n        \"imp6613714504\",\n        \"imp00118-044404\",\n        \"imp6615253428\",\n        \"imp6615253429\",\n        \"imp6613714404\",\n        \"imp6613714499\",\n        \"imp6613714470\",\n        \"imp6613714408\",\n        \"imp6613714421\",\n        \"imp8055661170\",\n        \"imp6613714427\",\n        \"imp6618406701\",\n        \"imp6613714396\",\n        \"imp6613714440\",\n        \"imp6613714419\",\n        \"imp6613714522\",\n        \"imp6613714463\",\n        \"imp6613714501\",\n        \"imp6613714496\",\n        \"imp6613714442\",\n        \"imp6613714474\",\n        \"imp6618406703\",\n        \"imp6613714509\",\n        \"imp6613714502\",\n        \"imp6613714462\",\n        \"imp6613714454\",\n        \"imp6613714441\",\n        \"imp6613714382\",\n        \"imp6613714507\",\n        \"imp6613714516\",\n        \"imp6613714520\",\n        \"imp6613714492\",\n        \"imp6613714385\",\n        \"imp6613714393\",\n        \"imp6613714388\",\n        \"imp6615253427\",\n        \"imp6613714449\",\n        \"imp6613714383\",\n        \"imp6613714464\",\n        \"imp6613714497\",\n        \"imp6613714526\",\n        \"imp6613714475\",\n        \"imp6613714457\",\n        \"imp6613714506\",\n        \"imp6613714390\",\n        \"imp6613714436\",\n        \"imp00118-directory\",\n        \"imp00118-013000\",\n        \"imp8056952126\",\n        \"imp8058807673\",\n        \"imp8058804671\",\n        \"imp8055662869\",\n        \"imp8055664111\",\n        \"imp6618406705\",\n        \"imp8055664116\",\n        \"imp8055662876\",\n        \"imp8058807459\",\n        \"imp8054561253\",\n        \"imp8054561287\",\n        \"imp8058804617\",\n        \"imp8055664121\",\n        \"imp8058804628\",\n        \"imp8055662870\",\n        \"imp8058804626\",\n        \"imp8054561268\",\n        \"imp8058804624\",\n        \"imp8058804675\",\n        \"imp5593722432\",\n        \"imp8055662863\",\n        \"imp8058804653\",\n        \"imp8054561275\",\n        \"imp8054561255\",\n        \"imp8055662894\",\n        \"imp8056952109\",\n        \"imp8055664102\",\n        \"imp8054561289\",\n        \"imp8056173081\",\n        \"imp8054561261\",\n        \"imp8055664104\",\n        \"imp8058804650\",\n        \"imp8054561271\",\n        \"imp8054561286\",\n        \"imp8058804638\",\n        \"imp8055661447\",\n        \"imp8058804687\",\n        \"imp8055662862\",\n        \"imp8058804666\",\n        \"imp8058804680\",\n        \"imp8058804604\",\n        \"imp8055662891\",\n        \"imp8058804645\",\n        \"imp8055662884\",\n        \"imp8055662897\",\n        \"imp8058801698\",\n        \"imp8054561249\",\n        \"imp8058804649\",\n        \"imp8055662845\",\n        \"imp8054561288\",\n        \"imp8058804652\",\n        \"imp8058804619\",\n        \"imp8056952140\",\n        \"imp8055664105\",\n        \"imp8058804600\",\n        \"imp8055664120\",\n        \"imp8055662880\",\n        \"imp8056952129\",\n        \"imp8055662887\",\n        \"imp8054561247\",\n        \"imp8058804689\",\n        \"imp8058804694\",\n        \"imp8055664136\",\n        \"imp8053086904\",\n        \"imp8058804639\",\n        \"imp8058804664\",\n        \"imp8055662893\",\n        \"imp8058804630\",\n        \"imp8058804684\",\n        \"imp8058804692\",\n        \"imp8055661175\",\n        \"imp8058807442\",\n        \"imp8055662865\",\n        \"imp8058804655\",\n        \"imp8058804672\",\n        \"imp8055662871\",\n        \"imp8058807455\",\n        \"imp8058804663\",\n        \"imp8058804603\",\n        \"imp8058804607\",\n        \"imp8055662881\",\n        \"imp8058804695\",\n        \"imp8054561258\",\n        \"imp8055662879\",\n        \"imp8058804676\",\n        \"imp8056952114\",\n        \"imp8058804697\",\n        \"imp8058804627\",\n        \"imp8055662892\",\n        \"imp8058804659\",\n        \"imp8056952124\",\n        \"imp8055662882\",\n        \"imp8055662840\",\n        \"imp8058804696\",\n        \"imp8055662888\",\n        \"imp8055662850\",\n        \"imp8055664101\",\n        \"imp8058804634\",\n        \"imp8055662873\",\n        \"imp8058804677\",\n        \"imp8058804613\",\n        \"imp8054561285\",\n        \"imp8054561272\",\n        \"imp8058804678\",\n        \"imp8054561256\",\n        \"imp8055662886\",\n        \"imp8055662855\",\n        \"imp8058804636\",\n        \"imp8054561265\",\n        \"imp8055662856\",\n        \"imp8055662843\",\n        \"imp8058807447\",\n        \"imp8058807674\",\n        \"imp8058804688\",\n        \"imp8055662866\",\n        \"imp8058804631\",\n        \"imp8055662898\",\n        \"imp8058801699\",\n        \"imp8058804632\",\n        \"imp8058804682\",\n        \"imp8055664135\",\n        \"imp8055664112\",\n        \"imp8058804670\",\n        \"imp8055664110\",\n        \"imp8055664138\",\n        \"imp8058804651\",\n        \"imp8058804225\",\n        \"imp8053572559\",\n        \"imp8055662896\",\n        \"imp8058804640\",\n        \"imp8058804601\",\n        \"imp8054561269\",\n        \"imp8058804633\",\n        \"imp8056952113\",\n        \"imp8058804646\",\n        \"imp8058804620\",\n        \"imp8058804637\",\n        \"imp8054561276\",\n        \"imp8055662851\",\n        \"imp8058804616\",\n        \"imp8058807439\",\n        \"imp8054561263\",\n        \"imp8058807457\",\n        \"imp8053089227\",\n        \"imp8055662878\",\n        \"imp8058801659\",\n        \"imp8058807909\",\n        \"imp8058807454\",\n        \"imp8054561264\",\n        \"imp8055664128\",\n        \"imp8055662846\",\n        \"imp8055662861\",\n        \"imp8058804665\",\n        \"imp8058807441\",\n        \"imp8055664109\",\n        \"imp8055662883\",\n        \"imp8055664113\",\n        \"imp8056173080\",\n        \"imp8054561280\",\n        \"imp8054561262\",\n        \"imp8054561246\",\n        \"imp8055664134\",\n        \"imp8058804647\",\n        \"imp00118-021010\",\n        \"imp8058804654\",\n        \"imp8058807452\",\n        \"imp8058804662\",\n        \"imp8058804621\",\n        \"imp8054561243\",\n        \"imp8055664132\",\n        \"imp8058804679\",\n        \"imp8055662875\",\n        \"imp8055662877\",\n        \"imp8058807910\",\n        \"imp00118-022010\",\n        \"imp8054561250\",\n        \"imp8058804608\",\n        \"imp8058804673\",\n        \"imp8058807456\",\n        \"imp8058807458\",\n        \"imp8055662864\",\n        \"imp8058804685\",\n        \"imp8055664114\",\n        \"imp8055664115\",\n        \"imp8058804642\",\n        \"imp8052433849\",\n        \"imp8054565846\",\n        \"imp8055662874\",\n        \"imp8058807450\",\n        \"imp8058804280\",\n        \"imp8054561266\",\n        \"imp8055662841\",\n        \"imp8058804629\",\n        \"imp8055664133\",\n        \"imp8055662895\",\n        \"imp8058804658\",\n        \"imp8058804667\",\n        \"imp8054561254\",\n        \"imp8058804625\",\n        \"imp8058804610\",\n        \"imp8054561284\",\n        \"imp8055662885\",\n        \"imp8055662867\",\n        \"imp8055664124\",\n        \"imp8058807446\",\n        \"imp8055662844\",\n        \"imp8058804691\",\n        \"imp8058804618\",\n        \"imp8056173082\",\n        \"imp8058804644\",\n        \"imp8058804686\",\n        \"imp8058804693\",\n        \"imp8056952139\",\n        \"imp8054561273\",\n        \"imp8054561251\",\n        \"imp8055664131\",\n        \"imp8058804635\",\n        \"imp8055662848\",\n        \"imp8058804606\",\n        \"imp8055662164\",\n        \"imp8058804609\",\n        \"imp8055664137\",\n        \"imp8058804614\",\n        \"imp8055662857\",\n        \"imp8056952117\",\n        \"imp8054561270\",\n        \"imp8058804643\",\n        \"imp8055662842\",\n        \"imp8055662853\",\n        \"imp8058804602\",\n        \"imp8058804674\",\n        \"imp00118-024140\",\n        \"imp8058807449\",\n        \"imp8055664125\",\n        \"imp8055664127\",\n        \"imp8055662899\",\n        \"imp8055662860\",\n        \"imp8058807445\",\n        \"imp9723491665\",\n        \"imp8055664126\",\n        \"imp8055662847\",\n        \"imp8055664108\",\n        \"imp8058804660\",\n        \"imp8056952107\",\n        \"imp8058804648\",\n        \"imp8055662859\",\n        \"imp8058804669\",\n        \"imp8055661441\",\n        \"imp8058807448\",\n        \"imp8055664118\",\n        \"imp8055664122\",\n        \"imp8058804605\",\n        \"imp8053572556\",\n        \"imp8055662858\",\n        \"imp8055662852\",\n        \"imp8055664106\",\n        \"imp8058804612\",\n        \"imp8054561274\",\n        \"imp8058804656\",\n        \"imp8054561283\",\n        \"imp8058804615\",\n        \"imp8055664103\",\n        \"imp8058804699\",\n        \"imp8052593132\",\n        \"imp8055664139\",\n        \"imp8058807451\",\n        \"imp8058804683\",\n        \"imp8055664119\",\n        \"imp8058804668\",\n        \"imp8055661176\",\n        \"imp8056952119\",\n        \"imp8058807440\",\n        \"imp8055664129\",\n        \"imp8058807443\",\n        \"imp8058804622\",\n        \"imp8058804223\",\n        \"imp8056173075\",\n        \"imp8055662889\",\n        \"imp00118-029999\",\n        \"imp8055664117\",\n        \"imp8054561259\",\n        \"imp8058804698\",\n        \"imp8058804623\",\n        \"imp8058804641\",\n        \"imp8054561260\",\n        \"imp8054561241\",\n        \"imp8055662872\",\n        \"imp8055662854\",\n        \"imp00118-028181\",\n        \"imp9723491548\",\n        \"imp9723491562\",\n        \"imp9723491657\",\n        \"imp9723491649\",\n        \"imp9723491627\",\n        \"imp9723491640\",\n        \"imp9723491535\",\n        \"imp9723491587\",\n        \"imp9723491639\",\n        \"imp9723491658\",\n        \"imp9723491536\",\n        \"imp9723491647\",\n        \"imp9723491537\",\n        \"imp00118058888\",\n        \"imp9723491574\",\n        \"imp9723491576\",\n        \"imp9723491656\",\n        \"imp9723491659\",\n        \"imp9723491563\",\n        \"imp9723491549\",\n        \"imp9723491561\",\n        \"imp9723491661\",\n        \"imp8056906283\",\n        \"imp8056906281\",\n        \"imp8056177775\",\n        \"imp8056906240\",\n        \"imp8056177789\",\n        \"imp8056971494\",\n        \"imp8056906203\",\n        \"imp8056906294\",\n        \"imp8056971483\",\n        \"imp8056971484\",\n        \"imp8056971481\",\n        \"imp8056971482\",\n        \"imp8056971472\",\n        \"imp8058809477\",\n        \"imp8056971471\",\n        \"imp8056906266\",\n        \"imp8056906295\",\n        \"imp8056906291\",\n        \"imp8056906211\",\n        \"imp8056906229\",\n        \"imp8056906293\",\n        \"imp8056906222\",\n        \"imp8056906261\",\n        \"imp8056177768\",\n        \"imp8056177765\",\n        \"imp8056906206\",\n        \"imp8056906244\",\n        \"imp8056906265\",\n        \"imp8056906267\",\n        \"imp8056906257\",\n        \"imp8056177763\",\n        \"imp8056906287\",\n        \"imp8056906292\",\n        \"imp8056906290\",\n        \"imp8056971476\",\n        \"imp8056906209\",\n        \"imp8056906289\",\n        \"imp8056906204\",\n        \"imp8056906260\",\n        \"imp8056177836\",\n        \"imp8056177829\",\n        \"imp8056177786\",\n        \"imp8056177804\",\n        \"imp8056177845\",\n        \"imp8056177803\",\n        \"imp8056177837\",\n        \"imp8056177801\",\n        \"imp8056177844\",\n        \"imp8056177846\",\n        \"imp8056177822\",\n        \"imp8056177812\",\n        \"imp8056177821\",\n        \"imp8056177849\",\n        \"imp8053089723\",\n        \"imp8056177805\",\n        \"imp8056177847\",\n        \"imp8056177820\",\n        \"imp8056177815\",\n        \"imp8053089722\",\n        \"imp8056177809\",\n        \"imp8056177835\",\n        \"imp8056177828\",\n        \"imp8056177808\",\n        \"imp8056177841\",\n        \"imp8056177806\",\n        \"imp8056177810\",\n        \"imp8056177842\",\n        \"imp8056177814\",\n        \"imp8053089724\",\n        \"imp8056177816\",\n        \"imp8056177777\",\n        \"imp8056177848\",\n        \"imp8056177839\",\n        \"imp8056177827\",\n        \"imp8056177819\",\n        \"imp8056177807\",\n        \"imp8056177811\",\n        \"imp8056177802\",\n        \"imp8056177817\",\n        \"imp8056177813\",\n        \"imp8056177840\",\n        \"imp8056177843\",\n        \"imp8056177838\",\n        \"imp8056177818\",\n        \"imp8053089720\",\n        \"imp8058809403\",\n        \"imp8056906242\",\n        \"imp8058809459\",\n        \"imp8056906218\",\n        \"imp8056906298\",\n        \"imp8058809427\",\n        \"00126-08230\",\n        \"imp8058809462\",\n        \"imp8056177794\",\n        \"imp8058809433\",\n        \"imp8056906224\",\n        \"imp8056906263\",\n        \"imp8056906252\",\n        \"imp8056906232\",\n        \"imp8056906233\",\n        \"imp8056177758\",\n        \"imp8056906268\",\n        \"imp8056177755\",\n        \"imp8056177774\",\n        \"imp8056177762\",\n        \"imp8056906256\",\n        \"imp8056906277\",\n        \"imp8056906276\",\n        \"imp8056906225\",\n        \"imp8056906243\",\n        \"imp00126-02451\",\n        \"imp8056177759\",\n        \"imp8056906282\",\n        \"imp8056906216\",\n        \"imp8056906223\",\n        \"imp8056906214\",\n        \"imp00126-02452\",\n        \"imp8058809465\",\n        \"imp8056971477\",\n        \"imp8056177791\",\n        \"imp8056906245\",\n        \"imp8056906238\",\n        \"imp8056906254\",\n        \"imp8056906239\",\n        \"imp8056906212\",\n        \"imp8056906250\",\n        \"imp8056906234\",\n        \"imp8056906286\",\n        \"imp8056971479\",\n        \"imp8056906251\",\n        \"imp8056906248\",\n        \"imp8056906226\",\n        \"imp8056906285\",\n        \"imp8056177771\",\n        \"imp8053089702\",\n        \"imp8056906237\",\n        \"imp8056177764\",\n        \"imp8056906241\",\n        \"imp8056906213\",\n        \"imp8056177772\",\n        \"imp8056906231\",\n        \"imp8056906236\",\n        \"imp8056177761\",\n        \"imp8056177757\",\n        \"imp8056906274\",\n        \"imp8056906221\",\n        \"imp8056971478\",\n        \"imp8056177780\",\n        \"imp8056971473\",\n        \"imp8056177766\",\n        \"imp8056906217\",\n        \"imp8056906249\",\n        \"imp8056906273\",\n        \"imp8056906296\",\n        \"imp8056906201\",\n        \"imp8056906219\",\n        \"imp8056935555\",\n        \"imp8059655555\",\n        \"imp00126-01100\",\n        \"imp8056971480\",\n        \"imp00129-073235\",\n        \"imp00129-073221\",\n        \"imp00129-073230\",\n        \"imp00129-073234\",\n        \"imp00129-073226\",\n        \"imp00129-073223\",\n        \"imp00129-073225\",\n        \"imp00129-073232\",\n        \"imp8056182797\",\n        \"imp8054566080\",\n        \"imp8056182823\",\n        \"imp8054566082\",\n        \"imp8473488849\",\n        \"imp8473488850\",\n        \"imp8473488844\",\n        \"imp8473544171\",\n        \"imp8473507581\",\n        \"imp00146-062299\",\n        \"imp00146-062321\",\n        \"imp00146-062322\",\n        \"imp00146-012000\",\n        \"imp4125453955\",\n        \"imp4123763904\",\n        \"imp4125453948\",\n        \"imp4125453928\",\n        \"imp4123763905\",\n        \"imp4125453921\",\n        \"imp4123763961\",\n        \"imp4125453945\",\n        \"imp4125453918\",\n        \"imp4125453942\",\n        \"imp4123763960\",\n        \"imp4125453958\",\n        \"imp4126313868\",\n        \"imp8473544647\",\n        \"imp8473544646\",\n        \"imp8473544650\",\n        \"imp8473544661\",\n        \"imp8473544655\",\n        \"imp00146-024640\",\n        \"imp8473544649\",\n        \"imp8056864703\",\n        \"imp8054565854\",\n        \"imp8054565851\",\n        \"imp8054568141\",\n        \"imp8056181416\",\n        \"imp8054565853\",\n        \"imp8054568145\",\n        \"imp00148-02211\",\n        \"imp8054565869\",\n        \"imp8054564247\",\n        \"imp8054564249\",\n        \"imp8054564248\",\n        \"imp8054568142\",\n        \"imp8054568144\",\n        \"imp8054568143\",\n        \"imp8054760305\",\n        \"imp8054760306\",\n        \"imp8058809343\",\n        \"imp8058809342\",\n        \"imp00150-02301\",\n        \"imp8053571397\",\n        \"imp8058807105\",\n        \"imp8058807127\",\n        \"imp8058807123\",\n        \"imp8058807136\",\n        \"imp8058807125\",\n        \"imp8058807126\",\n        \"imp8058807124\",\n        \"00163-04SIP6949\",\n        \"imp8058807537\",\n        \"00163-04SIP7108\",\n        \"00163-04SIP7230\",\n        \"imp8058807114\",\n        \"00163-04SIP7116\",\n        \"00163-04SIP7118\",\n        \"00163-04SIP6952\",\n        \"00163-04SIP6954\",\n        \"00163-04SIP6950\",\n        \"00163-04SIP7232\",\n        \"001636-04SIP6969\",\n        \"00163-04SIP7115\",\n        \"00163-04SIP7284\",\n        \"00163-04SIP7120\",\n        \"00163-04SIP6960\",\n        \"00163-04SIP6959\",\n        \"00163-04SIP6961\",\n        \"00163-04-trunk\",\n        \"00163-04SIP7231\",\n        \"00163-04SIP7206\",\n        \"00163-04SIP7203\",\n        \"00163-04SIP7201\",\n        \"00163-04SIP6955\",\n        \"00163-04SIP6971\",\n        \"00163-04SIP6967\",\n        \"00163-04SIP6962\",\n        \"00163-04SIP6970\",\n        \"00163-04SIP7460\",\n        \"00163-04SIP7213\",\n        \"00163-04SIP6940\",\n        \"00163-04SIP6956\",\n        \"00163-04SIP6968\",\n        \"00163-04SIP7112\",\n        \"00163-04SIP6951\",\n        \"00163-04SIP6963\",\n        \"00163-04SIP6965\",\n        \"00163-04SIP7119\",\n        \"00163-04SIP7202\",\n        \"00163-04SIP7117\",\n        \"00163-04SIP6957\",\n        \"00163-04SIP7205\",\n        \"00163-04SIP7204\",\n        \"00163-04SIP6964\",\n        \"00163-04SIP6948\",\n        \"00163-04SIP6972\",\n        \"imp8058806966\",\n        \"imp8054567234\",\n        \"imp8054567195\",\n        \"imp8054567237\",\n        \"imp8054567229\",\n        \"imp8054567197\",\n        \"imp8054567267\",\n        \"imp8054567198\",\n        \"imp8054567269\",\n        \"imp8054567268\",\n        \"imp8054567196\",\n        \"imp8054567199\",\n        \"imp8058791701\",\n        \"imp8053089711\",\n        \"imp8053089713\",\n        \"imp8053089715\",\n        \"imp8053089714\",\n        \"imp8053089717\",\n        \"imp8053089716\",\n        \"imp8054568147\",\n        \"imp8054566252\",\n        \"imp8054566251\",\n        \"imp00179-02201\",\n        \"imp8054566256\",\n        \"imp00179-02203\",\n        \"imp00179-02202\",\n        \"imp8054567009\",\n        \"imp8054566255\",\n        \"imp8054568148\",\n        \"imp8054566254\",\n        \"imp8054566253\",\n        \"imp000182-02200\",\n        \"imp8053089239\",\n        \"imp8053089238\",\n        \"imp8054565971\",\n        \"imp8054565969\",\n        \"imp8054565972\",\n        \"imp00186-025000\",\n        \"imp00192-714892\",\n        \"imp00192-714891\",\n        \"imp00192-714893\",\n        \"imp00192-714894\",\n        \"imp00192-1109683\",\n        \"imp00192-1109684\",\n        \"imp00192-1109681\",\n        \"imp00192-1109682\",\n        \"imp00192-161401\",\n        \"imp00192-161402\",\n        \"imp00192-161404\",\n        \"imp00192-161403\",\n        \"imp00192-884731\",\n        \"imp00192-884732\",\n        \"imp00192-884733\",\n        \"imp00192-884734\",\n        \"imp00192-201804\",\n        \"imp00192-201801\",\n        \"imp00192-201802\",\n        \"imp00192-201803\",\n        \"imp00192-768401\",\n        \"imp00192-768403\",\n        \"imp00192-768402\",\n        \"imp00192-768404\",\n        \"imp00192-222103\",\n        \"imp00192-222104\",\n        \"imp00192-222101\",\n        \"imp00192-222102\",\n        \"imp00192-804714\",\n        \"imp00192-804713\",\n        \"imp00192-804712\",\n        \"imp00192-804711\",\n        \"imp00192-214913\",\n        \"imp00192-214912\",\n        \"imp00192-214911\",\n        \"imp00192-214914\",\n        \"imp00192-01100509\",\n        \"imp00192-01100519\",\n        \"imp00192-01104979\",\n        \"imp00192-01150029\",\n        \"imp00192-01150079\",\n        \"imp00192-01100529\",\n        \"imp00192-01100499\",\n        \"imp00192-01100539\",\n        \"imp00192-01100549\",\n        \"imp00192-01100559\",\n        \"imp00192-01100569\",\n        \"imp00192-01100579\",\n        \"imp00192-01100629\",\n        \"imp00192-01100639\",\n        \"imp00192-01109999\",\n        \"imp00192-01100009\",\n        \"imp00192-01100019\",\n        \"imp00192-01100029\",\n        \"imp00192-01100039\",\n        \"imp00192-01100049\",\n        \"imp00192-01100059\",\n        \"imp00192-01100099\",\n        \"imp00192-01100109\",\n        \"imp00192-01100399\",\n        \"imp00192-01100409\",\n        \"imp00192-01100419\",\n        \"imp00192-01100439\",\n        \"imp00192-01100449\",\n        \"imp00192-01100459\",\n        \"imp00192-01100469\",\n        \"imp00192-01100479\",\n        \"imp00192-01100489\",\n        \"imp00192-01150039\",\n        \"imp00192-01150049\",\n        \"imp00192-01100649\",\n        \"imp00192-01104829\",\n        \"imp00192-01104899\",\n        \"imp00192-01105029\",\n        \"imp00192-01100119\",\n        \"imp00192-01100129\",\n        \"imp00192-01100149\",\n        \"imp00192-01100159\",\n        \"imp00192-01100179\",\n        \"imp00192-01100189\",\n        \"imp00192-01100219\",\n        \"imp00192-01100229\",\n        \"imp00192-01100239\",\n        \"imp00192-01100269\",\n        \"imp00192-01100279\",\n        \"imp00192-01100289\",\n        \"imp00192-01100299\",\n        \"imp00192-01100309\",\n        \"imp00192-01100319\",\n        \"imp00192-01100329\",\n        \"imp00192-01100339\",\n        \"imp00192-01100349\",\n        \"imp00192-01100369\",\n        \"imp00192-01100379\",\n        \"imp00192-774693\",\n        \"imp00192-774691\",\n        \"imp00192-774692\",\n        \"imp00192-774694\",\n        \"imp00192-087203\",\n        \"imp00192-087201\",\n        \"imp00192-087204\",\n        \"imp00192-087202\",\n        \"imp00192-784723\",\n        \"imp00192-784722\",\n        \"imp00192-784724\",\n        \"imp00192-784721\",\n        \"imp00192-735301\",\n        \"imp00192-735304\",\n        \"imp00192-735303\",\n        \"imp00192-735302\",\n        \"imp00192-839801\",\n        \"imp00192-839802\",\n        \"imp00192-839803\",\n        \"imp00192-839804\",\n        \"imp00192-664823\",\n        \"imp00192-664822\",\n        \"imp00192-664821\",\n        \"imp00192-664824\",\n        \"imp00192-034742\",\n        \"imp00192-034744\",\n        \"imp00192-034743\",\n        \"imp00192-034741\",\n        \"imp00192-794483\",\n        \"imp00192-794484\",\n        \"imp00192-794482\",\n        \"imp00192-794481\",\n        \"imp00192-743113\",\n        \"imp00192-743114\",\n        \"imp00192-743112\",\n        \"imp00192-743111\",\n        \"imp00192-704081\",\n        \"imp00192-704082\",\n        \"imp00192-704083\",\n        \"imp00192-704084\",\n        \"imp00192-758302\",\n        \"imp00192-758301\",\n        \"imp00192-758303\",\n        \"imp00192-758304\",\n        \"imp00192-956501\",\n        \"imp00192-956502\",\n        \"imp00192-956503\",\n        \"imp00192-956504\",\n        \"imp00192-684793\",\n        \"imp00192-684791\",\n        \"imp00192-684792\",\n        \"imp00192-684794\",\n        \"imp00192-864651\",\n        \"imp00192-864652\",\n        \"imp00192-864653\",\n        \"imp00192-864654\",\n        \"imp00192-1024941\",\n        \"imp00192-1024944\",\n        \"imp00192-1024942\",\n        \"imp00192-1024943\",\n        \"imp00192-1076013\",\n        \"imp00192-1076011\",\n        \"imp00192-1076012\",\n        \"imp00192-1076014\",\n        \"imp00192-1091461\",\n        \"imp00192-1091462\",\n        \"imp00192-1091463\",\n        \"imp00192-1091464\",\n        \"imp00192-611534\",\n        \"imp00192-611531\",\n        \"imp00192-611532\",\n        \"imp00192-611533\",\n        \"imp00192-644774\",\n        \"imp00192-644772\",\n        \"imp00192-644773\",\n        \"imp00192-644771\",\n        \"imp00192-914831\",\n        \"imp00192-914832\",\n        \"imp00192-914833\",\n        \"imp00192-914834\",\n        \"imp00192-621542\",\n        \"imp00192-621544\",\n        \"imp00192-621541\",\n        \"imp00192-621543\",\n        \"imp00192-814071\",\n        \"imp00192-814073\",\n        \"imp00192-814074\",\n        \"imp00192-814072\",\n        \"imp00192-1089691\",\n        \"imp00192-1089694\",\n        \"imp00192-1089692\",\n        \"imp00192-1089693\",\n        \"8054353163\",\n        \"8054353164\",\n        \"8054353162\",\n        \"8054353167\",\n        \"8056926205\",\n        \"8054353158\",\n        \"8053089952\",\n        \"8054353165\",\n        \"8054353166\",\n        \"8054353168\",\n        \"8056926203\",\n        \"8054353169\",\n        \"8054353170\",\n        \"8059798821\",\n        \"8054353151\",\n        \"8054353171\",\n        \"8054353172\",\n        \"8053089965\",\n        \"8054353173\",\n        \"8054353174\",\n        \"8053089967\",\n        \"8053089968\",\n        \"8054353159\",\n        \"8054353160\",\n        \"8054353161\",\n        \"8054353155\",\n        \"8054353156\",\n        \"8053089981\",\n        \"8054353150\",\n        \"8054353157\",\n        \"8059798814\",\n        \"8054353153\",\n        \"8054353154\",\n        \"8054561043\",\n        \"8054561044\",\n        \"8053089999\",\n        \"8054561045\",\n        \"8054353152\",\n        \"8053089995\",\n        \"imp00192-02-trunk\",\n        \"8054353183\",\n        \"8059798820\",\n        \"8054353184\",\n        \"8054353185\",\n        \"8054353186\",\n        \"8054353187\",\n        \"8054561018\",\n        \"8053089977\",\n        \"8054561019\",\n        \"8054353177\",\n        \"8059679722\",\n        \"8053089979\",\n        \"8053089972\",\n        \"8053089973\",\n        \"8054561032\",\n        \"8054561041\",\n        \"8059798818\",\n        \"8053089951\",\n        \"8056810461\",\n        \"8054353188\",\n        \"8056810932\",\n        \"8054353189\",\n        \"8054353190\",\n        \"8056810602\",\n        \"8056810611\",\n        \"8059798813\",\n        \"8059798815\",\n        \"8053089986\",\n        \"8056926218\",\n        \"8056926216\",\n        \"8054353176\",\n        \"8053089958\",\n        \"8053089997\",\n        \"8056819520\",\n        \"8053089989\",\n        \"8056819039\",\n        \"8056819840\",\n        \"8056819721\",\n        \"8056819886\",\n        \"8053089985\",\n        \"8053089991\",\n        \"8056926204\",\n        \"8056926206\",\n        \"8056926207\",\n        \"8053089990\",\n        \"8056926202\",\n        \"8056926212\",\n        \"8056926215\",\n        \"8056926209\",\n        \"8056926214\",\n        \"8053089955\",\n        \"8056926213\",\n        \"8059798816\",\n        \"8056926210\",\n        \"8053089954\",\n        \"8056926211\",\n        \"8059798817\",\n        \"8054353175\",\n        \"8053089962\",\n        \"8053089960\",\n        \"8053089961\",\n        \"8053089956\",\n        \"8059798819\",\n        \"8053089966\",\n        \"8053089963\",\n        \"8053089978\",\n        \"8053089959\",\n        \"8053089957\",\n        \"8053089974\",\n        \"8053089975\",\n        \"8053089970\",\n        \"8056926208\",\n        \"8056926219\",\n        \"8056926217\",\n        \"8053089983\",\n        \"8053089971\",\n        \"8053089982\",\n        \"8053089969\",\n        \"8053089984\",\n        \"8053089980\",\n        \"8053089992\",\n        \"8053089987\",\n        \"8053089988\",\n        \"8056810731\",\n        \"8053089993\",\n        \"8053089998\",\n        \"8053089996\",\n        \"8054353178\",\n        \"8056810376\",\n        \"8056810061\",\n        \"8054353179\",\n        \"8053089976\",\n        \"8059798822\",\n        \"8054353196\",\n        \"8054353197\",\n        \"8054353180\",\n        \"8053089964\",\n        \"8054353181\",\n        \"8054353182\",\n        \"imp00192-02-trunk2\",\n        \"8053089953\",\n        \"8054353191\",\n        \"8054353192\",\n        \"8054353193\",\n        \"8054353194\",\n        \"8054353195\",\n        \"8054353199\",\n        \"imp00192-02-trunk3\",\n        \"8054353198\",\n        \"8053089950\",\n        \"8053089994\",\n        \"5102333164\",\n        \"5102333189\",\n        \"8054561042\",\n        \"8059677611\",\n        \"imp00192-674761\",\n        \"imp00192-674762\",\n        \"imp00192-674763\",\n        \"imp00192-674764\",\n        \"imp00192-694751\",\n        \"imp00192-694752\",\n        \"imp00192-694753\",\n        \"imp00192-694754\",\n        \"imp00192-097301\",\n        \"imp00192-097302\",\n        \"imp00192-097304\",\n        \"imp00192-097303\",\n        \"imp00192-1019741\",\n        \"imp00192-1019742\",\n        \"imp00192-1019743\",\n        \"imp00192-1019744\",\n        \"imp00192-944951\",\n        \"imp00192-944952\",\n        \"imp00192-944953\",\n        \"imp00192-944954\",\n        \"imp00192-1059071\",\n        \"imp00192-1059072\",\n        \"imp00192-1059073\",\n        \"imp00192-1059074\",\n        \"imp00192-634871\",\n        \"imp00192-634874\",\n        \"imp00192-634873\",\n        \"imp00192-634872\",\n        \"imp00192-171501\",\n        \"imp00192-171502\",\n        \"imp00192-171503\",\n        \"imp00192-171504\",\n        \"imp00192-171505\",\n        \"imp00192-171506\",\n        \"imp00192-874671\",\n        \"imp00192-874672\",\n        \"imp00192-874673\",\n        \"imp00192-874674\",\n        \"imp00192-849811\",\n        \"imp00192-849812\",\n        \"imp00192-849813\",\n        \"imp00192-849814\",\n        \"imp00192-057001\",\n        \"imp00192-057002\",\n        \"imp00192-057004\",\n        \"imp00192-057003\",\n        \"imp8059798808\",\n        \"imp8059798810\",\n        \"imp00192-525701\",\n        \"imp00192-525704\",\n        \"imp00192-525702\",\n        \"imp00192-525703\",\n        \"imp00192-363901\",\n        \"imp00192-363904\",\n        \"imp00192-363902\",\n        \"imp00192-363903\",\n        \"imp00192-724093\",\n        \"imp00192-724094\",\n        \"imp00192-724092\",\n        \"imp00192-724091\",\n        \"imp00192-131003\",\n        \"imp00192-131001\",\n        \"imp00192-131002\",\n        \"imp00192-131004\",\n        \"imp00192-1044631\",\n        \"imp00192-1044632\",\n        \"imp00192-1044634\",\n        \"imp00192-1044633\",\n        \"imp00192-151201\",\n        \"imp00192-151202\",\n        \"imp00192-151203\",\n        \"imp00192-151204\",\n        \"imp00192-069904\",\n        \"imp00192-069902\",\n        \"imp00192-069903\",\n        \"imp00192-069906\",\n        \"imp00192-069901\",\n        \"imp00192-353704\",\n        \"imp00192-353703\",\n        \"imp00192-353702\",\n        \"imp00192-353701\",\n        \"imp00192-107401\",\n        \"imp00192-107403\",\n        \"imp00192-107402\",\n        \"imp00192-107404\",\n        \"imp00192-976004\",\n        \"imp00192-976001\",\n        \"imp00192-976002\",\n        \"imp00192-976003\",\n        \"imp00192-242301\",\n        \"imp00192-242303\",\n        \"imp00192-242304\",\n        \"imp00192-242302\",\n        \"imp00192-127902\",\n        \"imp00192-127903\",\n        \"imp00192-127901\",\n        \"imp00192-127904\",\n        \"imp00192-077104\",\n        \"imp00192-077101\",\n        \"imp00192-077102\",\n        \"imp00192-077103\",\n        \"imp00192-077105\",\n        \"imp00192-077106\",\n        \"imp00192-117502\",\n        \"imp00192-117506\",\n        \"imp00192-117501\",\n        \"imp00192-117505\",\n        \"imp00192-117504\",\n        \"imp00192-117503\",\n        \"imp00192-117507\",\n        \"imp00192-184881\",\n        \"imp00192-184882\",\n        \"imp00192-184884\",\n        \"imp00192-184883\",\n        \"imp00192-141105\",\n        \"imp00192-141104\",\n        \"imp00192-141102\",\n        \"imp00192-141103\",\n        \"imp8087973168\",\n        \"imp00192-141101\",\n        \"imp00192-232202\",\n        \"imp00192-232201\",\n        \"imp00192-232204\",\n        \"imp00192-232203\",\n        \"imp00192-564971\",\n        \"imp00192-564973\",\n        \"imp00192-564972\",\n        \"imp00192-564974\",\n        \"imp00192-252602\",\n        \"imp00192-252603\",\n        \"imp00192-252601\",\n        \"imp00192-252604\",\n        \"imp00192-262701\",\n        \"imp00192-262702\",\n        \"imp00192-262704\",\n        \"imp00192-262703\",\n        \"imp00192-546303\",\n        \"imp00192-546304\",\n        \"imp00192-546301\",\n        \"imp00192-546302\",\n        \"imp00192-556403\",\n        \"imp00192-556402\",\n        \"imp00192-556401\",\n        \"imp00192-556404\",\n        \"imp00192-536223\",\n        \"imp00192-536221\",\n        \"imp00192-536222\",\n        \"imp00192-536224\",\n        \"imp00192-272803\",\n        \"imp00192-272801\",\n        \"imp00192-272804\",\n        \"imp00192-272802\",\n        \"imp00192-282904\",\n        \"imp00192-282902\",\n        \"imp00192-282901\",\n        \"imp00192-282903\",\n        \"imp00192-651574\",\n        \"imp00192-651571\",\n        \"imp00192-651573\",\n        \"imp00192-651572\",\n        \"imp00192-515602\",\n        \"imp00192-515601\",\n        \"imp00192-515603\",\n        \"imp00192-515604\",\n        \"imp00192-505502\",\n        \"imp00192-505504\",\n        \"imp00192-505503\",\n        \"imp00192-505501\",\n        \"imp00192-293004\",\n        \"imp00192-293002\",\n        \"imp00192-293003\",\n        \"imp00192-293001\",\n        \"imp00192-495403\",\n        \"imp00192-495404\",\n        \"imp00192-495401\",\n        \"imp00192-495402\",\n        \"imp00192-485201\",\n        \"imp00192-485203\",\n        \"imp00192-485202\",\n        \"imp00192-485204\",\n        \"imp00192-303104\",\n        \"imp00192-303103\",\n        \"imp00192-303102\",\n        \"imp00192-303101\",\n        \"imp00192-475103\",\n        \"imp00192-475101\",\n        \"imp00192-475104\",\n        \"imp00192-475102\",\n        \"imp00192-465003\",\n        \"imp00192-465002\",\n        \"imp00192-465001\",\n        \"imp00192-465004\",\n        \"imp00192-313203\",\n        \"imp00192-313201\",\n        \"imp00192-313204\",\n        \"imp00192-313202\",\n        \"imp00192-323301\",\n        \"imp00192-323304\",\n        \"imp00192-323303\",\n        \"imp00192-323302\",\n        \"imp00192-333403\",\n        \"imp00192-333401\",\n        \"imp00192-333402\",\n        \"imp00192-333404\",\n        \"imp00192-343603\",\n        \"imp00192-343601\",\n        \"imp00192-343602\",\n        \"imp00192-343604\",\n        \"imp00192-454904\",\n        \"imp00192-454902\",\n        \"imp00192-454903\",\n        \"imp00192-454901\",\n        \"imp00192-434704\",\n        \"imp00192-434702\",\n        \"imp00192-434703\",\n        \"imp00192-434701\",\n        \"imp00192-584784\",\n        \"imp00192-584781\",\n        \"imp00192-584782\",\n        \"imp00192-584783\",\n        \"imp00192-601524\",\n        \"imp00192-601523\",\n        \"imp00192-601522\",\n        \"imp00192-601521\",\n        \"imp00192-444804\",\n        \"imp00192-444801\",\n        \"imp00192-444803\",\n        \"imp00192-444802\",\n        \"imp00192-424602\",\n        \"imp00192-424603\",\n        \"imp00192-424601\",\n        \"imp00192-424604\",\n        \"imp00192-404402\",\n        \"imp00192-404401\",\n        \"imp00192-404403\",\n        \"imp00192-404404\",\n        \"imp00192-1069711\",\n        \"imp00192-1069714\",\n        \"imp00192-1069712\",\n        \"imp00192-1069713\",\n        \"imp00192-374003\",\n        \"imp00192-374001\",\n        \"imp00192-374004\",\n        \"imp00192-374002\",\n        \"imp00192-384104\",\n        \"imp00192-384103\",\n        \"imp00192-384101\",\n        \"imp00192-384102\",\n        \"imp00192-414501\",\n        \"imp00192-414503\",\n        \"imp00192-414504\",\n        \"imp00192-414502\",\n        \"imp00192-394303\",\n        \"imp00192-394301\",\n        \"imp00192-394302\",\n        \"imp00192-394304\",\n        \"imp00192-857801\",\n        \"imp00192-857802\",\n        \"imp00192-857803\",\n        \"imp00192-857804\",\n        \"imp00192-1004621\",\n        \"imp00192-1004622\",\n        \"imp00192-1004623\",\n        \"imp00192-1004624\",\n        \"imp00192-995991\",\n        \"imp00192-995992\",\n        \"imp00192-995993\",\n        \"imp00192-995994\",\n        \"imp00192-191701\",\n        \"imp00192-191702\",\n        \"imp00192-191703\",\n        \"imp00192-191704\",\n        \"imp00192-825903\",\n        \"imp00192-825904\",\n        \"imp00192-825902\",\n        \"imp00192-825901\",\n        \"imp00192-924661\",\n        \"imp00192-924662\",\n        \"imp00192-924663\",\n        \"imp00192-924664\",\n        \"imp00192-939701\",\n        \"imp00192-939702\",\n        \"imp00192-939703\",\n        \"imp00192-909761\",\n        \"imp00192-909762\",\n        \"imp00192-909763\",\n        \"imp00192-909764\",\n        \"imp00192-966601\",\n        \"imp00192-966602\",\n        \"imp00192-966603\",\n        \"imp00192-966604\",\n        \"imp00192-989754\",\n        \"imp00192-989751\",\n        \"imp00192-989752\",\n        \"imp00192-989753\",\n        \"imp00192-1034611\",\n        \"imp00192-1034612\",\n        \"imp00192-1034613\",\n        \"imp00192-1034614\",\n        \"imp00192-894981\",\n        \"imp00192-894982\",\n        \"imp00192-894983\",\n        \"imp00192-894984\",\n        \"imp00196-054444\",\n        \"imp00196-054019\",\n        \"imp00196-054014\",\n        \"imp00196-054020\",\n        \"imp00196-054016\",\n        \"imp00196-054073\",\n        \"imp00196-054053\",\n        \"imp00196-054013\",\n        \"imp00196-054011\",\n        \"imp00196-054010\",\n        \"imp00196-054063\",\n        \"imp00196-054018\",\n        \"imp00196-054015\",\n        \"imp00196-054083\",\n        \"imp00196-054017\",\n        \"imp00196-054012\",\n        \"imp00196-044304\",\n        \"imp00196-044303\",\n        \"imp00196-044309\",\n        \"imp00196-045401\",\n        \"imp00196-044317\",\n        \"imp00196-044302\",\n        \"imp8054568180\",\n        \"imp00196-045408\",\n        \"imp00196-044318\",\n        \"imp00196-044320\",\n        \"imp00196-044305\",\n        \"imp00196-044311\",\n        \"imp00196-044312\",\n        \"imp00196-045402\",\n        \"imp00196-045403\",\n        \"imp00196-045404\",\n        \"imp00196-045405\",\n        \"imp00196-045406\",\n        \"imp00196-045407\",\n        \"imp00196-045409\",\n        \"imp00196-044315\",\n        \"imp00196-013000\",\n        \"00196-01-directory\",\n        \"imp00196-032567\",\n        \"imp00196-032337\",\n        \"imp00196-032410\",\n        \"imp00196-032599\",\n        \"imp00196-032281\",\n        \"imp8054568193\",\n        \"imp00196-034330\",\n        \"imp00196-022268\",\n        \"imp8054568162\",\n        \"imp00196-022503\",\n        \"imp00196-022333\",\n        \"imp00196-024360\",\n        \"imp00196-022325\",\n        \"imp00196-022221\",\n        \"imp00196-022231\",\n        \"imp00196-022214\",\n        \"imp00196-022326\",\n        \"imp00196-022556\",\n        \"imp00196-022562\",\n        \"imp8055768218\",\n        \"imp8055768219\",\n        \"imp00196-022510\",\n        \"imp00196-022408\",\n        \"imp00196-024308\",\n        \"imp8055664352\",\n        \"imp00196-022330\",\n        \"imp00196-022541\",\n        \"imp00196-024036\",\n        \"imp00196-023286\",\n        \"imp00196-022312\",\n        \"imp00196-022339\",\n        \"imp8054568178\",\n        \"imp00196-022264\",\n        \"imp00196-022218\",\n        \"imp8054568151\",\n        \"imp00196-022400\",\n        \"imp00196-022200\",\n        \"imp00196-022347\",\n        \"imp00196-022451\",\n        \"imp00196-022545\",\n        \"imp00196-022336\",\n        \"imp8055768207\",\n        \"imp00196-022458\",\n        \"imp8055664337\",\n        \"imp00196-022560\",\n        \"imp8054568176\",\n        \"imp00196-022580\",\n        \"imp00196-022577\",\n        \"imp00196-022306\",\n        \"imp00196-022429\",\n        \"imp00196-022575\",\n        \"imp8055768152\",\n        \"imp00196-022529\",\n        \"imp00196-022307\",\n        \"imp00196-022600\",\n        \"imp8055664333\",\n        \"imp00196-022331\",\n        \"imp00196-022539\",\n        \"imp00196-022261\",\n        \"imp8055768214\",\n        \"imp00196-022585\",\n        \"imp00196-022423\",\n        \"imp00196-022589\",\n        \"imp00196-022354\",\n        \"imp00196-022601\",\n        \"imp00196-028100\",\n        \"imp00196-022363\",\n        \"imp8054568170\",\n        \"imp00196-022911\",\n        \"imp00196-022731\",\n        \"imp00196-022321\",\n        \"imp00196-022534\",\n        \"imp00196-022215\",\n        \"imp8055664353\",\n        \"imp00196-022442\",\n        \"imp00196-022278\",\n        \"imp00196-022544\",\n        \"imp00196-022317\",\n        \"imp00196-022405\",\n        \"imp00196-022540\",\n        \"imp00196-022315\",\n        \"imp8054568150\",\n        \"imp00196-022509\",\n        \"imp00196-022338\",\n        \"imp00196-022605\",\n        \"imp00196-022324\",\n        \"imp00196-022553\",\n        \"imp00196-022227\",\n        \"imp8056840733\",\n        \"imp00196-024000\",\n        \"imp00196-022445\",\n        \"imp00196-022008\",\n        \"imp00196-022350\",\n        \"imp00196-022209\",\n        \"imp00196-022327\",\n        \"imp8055664348\",\n        \"imp00196-022966\",\n        \"imp00196-022587\",\n        \"imp00196-022001\",\n        \"imp00196-022625\",\n        \"imp00196-028183\",\n        \"imp00196-022322\",\n        \"imp00196-022265\",\n        \"imp00196-022742\",\n        \"imp00196-022456\",\n        \"imp00196-022725\",\n        \"imp00196-022319\",\n        \"imp00196-022546\",\n        \"imp00196-022595\",\n        \"imp00196-022620\",\n        \"imp00196-022361\",\n        \"imp8055664340\",\n        \"imp00196-022343\",\n        \"imp00196-022570\",\n        \"imp00196-022411\",\n        \"imp00196-022308\",\n        \"imp00196-022213\",\n        \"imp00196-022535\",\n        \"imp00196-026767\",\n        \"imp00196-022565\",\n        \"imp00196-022203\",\n        \"imp00196-022314\",\n        \"imp00196-022550\",\n        \"imp00196-022267\",\n        \"imp00196-022502\",\n        \"imp00196-022504\",\n        \"imp00196-022328\",\n        \"imp00196-022735\",\n        \"imp00196-022590\",\n        \"imp00196-026209\",\n        \"imp00196-022217\",\n        \"imp00196-022438\",\n        \"imp00196-022276\",\n        \"imp00196-022335\",\n        \"imp00196-022318\",\n        \"imp00196-022311\",\n        \"imp00196-022358\",\n        \"imp8055664336\",\n        \"imp00196-022263\",\n        \"imp00196-022912\",\n        \"imp00196-022219\",\n        \"imp00196-022576\",\n        \"imp00196-022313\",\n        \"imp00196-022272\",\n        \"imp00196-022323\",\n        \"imp00196-022334\",\n        \"imp00196-022370\",\n        \"imp00196-024700\",\n        \"imp00196-022310\",\n        \"imp8059686758\",\n        \"imp8059686752\",\n        \"imp8059686843\",\n        \"imp8059686769\",\n        \"imp8059686860\",\n        \"imp8059686909\",\n        \"imp8059617533\",\n        \"imp8059617521\",\n        \"imp8059617565\",\n        \"imp8059617503\",\n        \"imp8059617576\",\n        \"imp8059617530\",\n        \"imp8059617525\",\n        \"imp8059617569\",\n        \"imp8055620363\",\n        \"imp8059617509\",\n        \"imp8059617510\",\n        \"imp8055625507\",\n        \"imp8059617547\",\n        \"imp8059617519\",\n        \"imp8059617528\",\n        \"imp8056905124\",\n        \"imp8059617512\",\n        \"imp8059617554\",\n        \"imp8059617507\",\n        \"imp8056905122\",\n        \"imp8055625505\",\n        \"imp8059617555\",\n        \"imp8059617534\",\n        \"imp8055625583\",\n        \"imp8059617506\",\n        \"imp8059617543\",\n        \"imp8059617572\",\n        \"imp8059617538\",\n        \"imp8059617516\",\n        \"imp8059617560\",\n        \"imp8059617550\",\n        \"imp8056905130\",\n        \"imp8059617574\",\n        \"imp8059617522\",\n        \"imp8056905125\",\n        \"imp8059617532\",\n        \"imp8056905126\",\n        \"imp8056905139\",\n        \"imp8055625504\",\n        \"imp8059617577\",\n        \"imp8055620361\",\n        \"imp8059617545\",\n        \"imp8059617563\",\n        \"imp8059617505\",\n        \"imp8055625500\",\n        \"imp8059617559\",\n        \"imp00198-025503\",\n        \"00198-02VM1007\",\n        \"imp8059617546\",\n        \"imp8059617540\",\n        \"imp8059617571\",\n        \"imp8059617508\",\n        \"imp8056905121\",\n        \"imp8055625510\",\n        \"imp8055625528\",\n        \"imp8055625530\",\n        \"imp8059617529\",\n        \"imp8059617537\",\n        \"imp8059617542\",\n        \"imp8059617561\",\n        \"imp8055620362\",\n        \"imp8055625502\",\n        \"imp8059617526\",\n        \"imp8059617518\",\n        \"imp8059617558\",\n        \"imp8059617564\",\n        \"imp8059617556\",\n        \"imp8059617502\",\n        \"imp8059617541\",\n        \"imp8059617549\",\n        \"imp8055620366\",\n        \"imp8056905123\",\n        \"imp8055625549\",\n        \"imp8055625523\",\n        \"imp8059617531\",\n        \"imp8059617562\",\n        \"imp8055625501\",\n        \"imp8059617523\",\n        \"imp8059617535\",\n        \"imp8055625512\",\n        \"imp8059617548\",\n        \"imp8059617501\",\n        \"imp8059617552\",\n        \"imp8055625508\",\n        \"imp8059617568\",\n        \"imp8059617524\",\n        \"imp8056905120\",\n        \"imp8059617573\",\n        \"imp8059686851\",\n        \"imp8059617527\",\n        \"imp8059617539\",\n        \"imp8059617578\",\n        \"imp8055625565\",\n        \"imp8056905119\",\n        \"imp8056905113\",\n        \"imp8059617536\",\n        \"imp8059617566\",\n        \"imp8056905128\",\n        \"imp8059617575\",\n        \"imp8055625533\",\n        \"imp8055625534\",\n        \"imp8055625537\",\n        \"imp8056905127\",\n        \"imp8054566961\",\n        \"imp8055625509\",\n        \"imp8055625548\",\n        \"imp8056905116\",\n        \"imp8059617557\",\n        \"imp8059617567\",\n        \"imp8059617553\",\n        \"imp8059617514\",\n        \"imp8054566962\",\n        \"imp8059617544\",\n        \"imp8054566963\",\n        \"imp8054566964\",\n        \"imp8055625506\",\n        \"imp8055625552\",\n        \"imp8055625553\",\n        \"imp8055625554\",\n        \"imp8055625557\",\n        \"imp8059617579\",\n        \"imp8056905137\",\n        \"imp8056905132\",\n        \"imp8056905134\",\n        \"imp8056905129\",\n        \"imp8056905135\",\n        \"imp00198-045142\",\n        \"imp00198-045141\",\n        \"imp8056905133\",\n        \"imp8056905136\",\n        \"imp00198-011111\",\n        \"imp8056905104\",\n        \"imp8056905105\",\n        \"imp8056905106\",\n        \"imp8056905101\",\n        \"imp8056905102\",\n        \"imp8056905103\",\n        \"imp8052840335\",\n        \"imp8052840338\",\n        \"imp8052840336\",\n        \"imp8052840337\",\n        \"imp8058300218\",\n        \"imp8058300215\",\n        \"imp8058300228\",\n        \"imp8058300217\",\n        \"imp8058300220\",\n        \"imp8058300223\",\n        \"imp8059630358\",\n        \"imp8058300213\",\n        \"imp8058300210\",\n        \"imp8058300214\",\n        \"imp8058300221\",\n        \"imp8058300219\",\n        \"imp8055644850\",\n        \"imp8058300227\",\n        \"imp8058300222\",\n        \"imp8058300216\",\n        \"imp8058300225\",\n        \"imp8058300224\",\n        \"imp8058300226\",\n        \"imp8058300212\",\n        \"imp8058300229\",\n        \"imp8059653404\",\n        \"imp8055692848\",\n        \"imp8055699558\",\n        \"imp8052840358\",\n        \"imp8052840355\",\n        \"imp8052840356\",\n        \"imp8052840375\",\n        \"imp8052840377\",\n        \"imp8052840380\",\n        \"imp8054566805\",\n        \"imp8054564295\",\n        \"imp8052840371\",\n        \"imp8054566878\",\n        \"imp8052840376\",\n        \"imp8054566803\",\n        \"imp8054564291\",\n        \"imp8054566877\",\n        \"imp8054564294\",\n        \"imp8058804228\",\n        \"imp8054566875\",\n        \"imp8052840378\",\n        \"imp8054566876\",\n        \"imp8054566879\",\n        \"imp8054564292\",\n        \"imp8054564293\",\n        \"imp8058803383\",\n        \"imp8054562700\",\n        \"imp8058806928\",\n        \"imp8058809485\",\n        \"imp8058807489\",\n        \"imp8058807488\",\n        \"imp8058807499\",\n        \"imp8058803414\",\n        \"imp8058807495\",\n        \"imp8058807494\",\n        \"imp8058807497\",\n        \"imp8058807493\",\n        \"imp8052593782\",\n        \"imp8058809341\",\n        \"imp8053358729\",\n        \"imp8053358734\",\n        \"imp8053358721\",\n        \"imp8054564946\",\n        \"imp8053358732\",\n        \"imp8053358725\",\n        \"imp8053170403\",\n        \"imp8054565890\",\n        \"imp8053358730\",\n        \"imp8053358722\",\n        \"imp8052849639\",\n        \"imp8053358726\",\n        \"imp8053358731\",\n        \"imp8053358727\",\n        \"imp8054565876\",\n        \"imp8053358724\",\n        \"imp8058809340\",\n        \"imp8054565889\",\n        \"imp8058803407\",\n        \"imp8053358720\",\n        \"imp8053358735\",\n        \"imp8053358728\",\n        \"imp8052849701\",\n        \"imp8058807466\",\n        \"imp8058807468\",\n        \"imp8058807465\",\n        \"imp8058807464\",\n        \"imp8058807467\",\n        \"imp8058807463\",\n        \"imp8058807470\",\n        \"imp8058807469\",\n        \"imp8058807473\",\n        \"imp8058807472\",\n        \"imp8058807462\",\n        \"imp8058807471\",\n        \"imp8059654603\",\n        \"imp3032536376\",\n        \"imp3032536377\",\n        \"imp3032536340\",\n        \"imp3032536306\",\n        \"imp3032536323\",\n        \"imp3032536491\",\n        \"imp3032536339\",\n        \"imp3032536343\",\n        \"imp3032536454\",\n        \"imp3032536456\",\n        \"imp3032536458\",\n        \"imp3032536362\",\n        \"imp3032536364\",\n        \"imp3032536366\",\n        \"imp3032536380\",\n        \"imp3032536385\",\n        \"imp9547364656\",\n        \"imp3032536389\",\n        \"imp7037769018\",\n        \"imp3032536390\",\n        \"imp3032536396\",\n        \"imp3032536400\",\n        \"imp3032536405\",\n        \"imp3032536408\",\n        \"imp3032536409\",\n        \"imp3032536410\",\n        \"imp3032536415\",\n        \"imp3032536422\",\n        \"imp3032536424\",\n        \"imp3032536426\",\n        \"imp3032536427\",\n        \"imp3032536430\",\n        \"imp3032536437\",\n        \"imp3032536439\",\n        \"imp3032536443\",\n        \"imp3032536444\",\n        \"imp3032536453\",\n        \"imp3032536455\",\n        \"imp7205933126\",\n        \"imp3032536337\",\n        \"imp3032536341\",\n        \"imp3032536344\",\n        \"imp3032536347\",\n        \"imp3032536356\",\n        \"imp3032536463\",\n        \"imp3032536470\",\n        \"imp3032536471\",\n        \"imp3032536473\",\n        \"imp3032536478\",\n        \"imp3032536479\",\n        \"imp3032536483\",\n        \"imp3032536484\",\n        \"imp3032536485\",\n        \"imp7205933105\",\n        \"imp7205933106\",\n        \"imp7205933113\",\n        \"imp7205933123\",\n        \"imp3032536397\",\n        \"imp3032536348\",\n        \"imp3032536338\",\n        \"imp3032536350\",\n        \"imp3032536360\",\n        \"imp9547031382\",\n        \"imp9543617143\",\n        \"imp9547617073\",\n        \"imp9547619309\",\n        \"imp8604526454\",\n        \"imp8604526455\",\n        \"imp3108736966\",\n        \"imp3108736946\",\n        \"imp5133180325\",\n        \"imp5135382580\",\n        \"imp5135382572\",\n        \"imp5135382588\",\n        \"imp5135382573\",\n        \"imp5135382571\",\n        \"imp5135382574\",\n        \"imp5135382575\",\n        \"imp5135382576\",\n        \"imp5135382577\",\n        \"imp5135382578\",\n        \"imp5135382579\",\n        \"imp5135382581\",\n        \"imp5135382582\",\n        \"imp5135382583\",\n        \"imp5135382584\",\n        \"imp5135382587\",\n        \"imp5135382570\",\n        \"imp7153180035\",\n        \"imp7153180911\",\n        \"imp7153180946\",\n        \"imp7153180996\",\n        \"imp7152455683\",\n        \"imp7153507083\",\n        \"imp7153184469\",\n        \"imp7153507069\",\n        \"imp7153507097\",\n        \"imp7152576028\",\n        \"imp7152576121\",\n        \"imp7153507090\",\n        \"imp7153507091\",\n        \"imp00230-01100\",\n        \"imp00230-030055\",\n        \"imp00230-030056\",\n        \"imp5158757035\",\n        \"imp5158757229\",\n        \"imp5158757236\",\n        \"imp5158757232\",\n        \"imp5158757235\",\n        \"imp5158757039\",\n        \"imp5158757008\",\n        \"imp5158757038\",\n        \"imp5158757286\",\n        \"imp5158757225\",\n        \"imp5158757014\",\n        \"imp5158757036\",\n        \"imp5158757507\",\n        \"imp5158757204\",\n        \"imp5158757405\",\n        \"imp5158757007\",\n        \"imp5158757042\",\n        \"imp5158757054\",\n        \"imp5158757296\",\n        \"imp5158757033\",\n        \"imp5158757130\",\n        \"imp5158757037\",\n        \"imp5158757104\",\n        \"imp5158757255\",\n        \"imp5158757169\",\n        \"imp5158757009\",\n        \"imp5158757475\",\n        \"imp5158757237\",\n        \"imp5158757103\",\n        \"imp5158757002\",\n        \"imp5158757175\",\n        \"imp5158757302\",\n        \"imp5158757219\",\n        \"imp5158757508\",\n        \"imp5158757065\",\n        \"imp5158757063\",\n        \"imp5158757403\",\n        \"imp5158757019\",\n        \"imp5158757053\",\n        \"imp5158757258\",\n        \"imp5158757222\",\n        \"imp5158757292\",\n        \"imp5158757223\",\n        \"imp5158757208\",\n        \"imp5158757158\",\n        \"imp5158757306\",\n        \"imp5158757032\",\n        \"imp5158757181\",\n        \"imp5158757059\",\n        \"imp5158757312\",\n        \"imp5158757293\",\n        \"imp5158757013\",\n        \"imp5158757055\",\n        \"imp5158757029\",\n        \"imp5158757114\",\n        \"imp5158757413\",\n        \"imp5158757253\",\n        \"imp5158757048\",\n        \"imp5158757421\",\n        \"imp5158757422\",\n        \"imp5158757431\",\n        \"imp5158757401\",\n        \"imp00230-036998\",\n        \"imp8058807474\",\n        \"imp8058809332\",\n        \"imp8058807507\",\n        \"imp8058807502\",\n        \"imp8058807501\",\n        \"imp8058807505\",\n        \"imp8058807504\",\n        \"imp8058807500\",\n        \"imp8058807503\",\n        \"imp8058807632\",\n        \"imp8058807631\",\n        \"imp8058807635\",\n        \"imp8058807626\",\n        \"imp8058807633\",\n        \"imp8058807628\",\n        \"imp8058807627\",\n        \"imp8058807634\",\n        \"imp8058807629\",\n        \"imp8058807630\",\n        \"imp8058807545\",\n        \"imp8058807608\",\n        \"imp8058807544\",\n        \"imp8058807546\",\n        \"imp8058807547\",\n        \"imp8058807548\",\n        \"imp8058801997\",\n        \"imp8058807541\",\n        \"imp8058807543\",\n        \"imp8058801998\",\n        \"imp8058807535\",\n        \"imp00244-02122\",\n        \"imp8058807540\",\n        \"imp8058807542\",\n        \"imp8058801994\",\n        \"imp8058801996\",\n        \"imp8058801999\",\n        \"imp8058801995\",\n        \"imp8056975255\",\n        \"imp8053089442\",\n        \"imp8053089443\",\n        \"imp8053089436\",\n        \"imp8053089439\",\n        \"imp8053089438\",\n        \"imp8053089437\",\n        \"imp8054564241\",\n        \"imp8053089433\",\n        \"imp8053089428\",\n        \"imp8053089426\",\n        \"imp8053089430\",\n        \"imp8053089432\",\n        \"imp8053089444\",\n        \"imp8053089527\",\n        \"imp8053089435\",\n        \"imp8053089434\",\n        \"imp8053089427\",\n        \"imp8053089431\",\n        \"imp8053089429\",\n        \"imp8053089446\",\n        \"imp8053089449\",\n        \"imp8053089456\",\n        \"imp8053089455\",\n        \"imp8058300206\",\n        \"imp8058300207\",\n        \"imp8058300205\",\n        \"imp8058300204\",\n        \"imp00255-01100\",\n        \"imp8058807650\",\n        \"imp8058807657\",\n        \"imp8058807644\",\n        \"imp8058807642\",\n        \"imp8058807656\",\n        \"imp8058807659\",\n        \"imp8058807653\",\n        \"imp8058807651\",\n        \"imp8058807643\",\n        \"imp8058807655\",\n        \"imp8058807652\",\n        \"imp8058807663\",\n        \"imp8058807661\",\n        \"imp8058807646\",\n        \"imp8058807647\",\n        \"imp8058807641\",\n        \"imp8058807660\",\n        \"imp8058807662\",\n        \"imp8058807648\",\n        \"imp8058807665\",\n        \"imp8058807654\",\n        \"imp8058807645\",\n        \"imp8058807639\",\n        \"imp8058807638\",\n        \"imp8058807649\",\n        \"imp8058807658\",\n        \"imp8059628571\",\n        \"imp8059639191\",\n        \"imp00257-03222\",\n        \"imp00257-03233\",\n        \"imp00257-03221\",\n        \"imp00257-03227\",\n        \"imp00257-03228\",\n        \"imp00257-03232\",\n        \"imp00257-03225\",\n        \"imp00257-03226\",\n        \"imp00257-03224\",\n        \"imp8058807683\",\n        \"imp8058807682\",\n        \"imp8058807678\",\n        \"imp8058807679\",\n        \"imp8058807680\",\n        \"imp8058807677\",\n        \"imp00261-02601\",\n        \"imp8058807676\",\n        \"imp8058807482\",\n        \"imp8058807675\",\n        \"imp8058807681\",\n        \"imp3254227400\",\n        \"imp00266-081630\",\n        \"imp2532392812\",\n        \"imp2532390197\",\n        \"imp2532390195\",\n        \"imp2538512126\",\n        \"imp00266-232131\",\n        \"imp00266-232132\",\n        \"imp00266-232133\",\n        \"imp2532390191\",\n        \"imp2532390193\",\n        \"imp2538532070\",\n        \"imp2532390192\",\n        \"imp00266-232139\",\n        \"imp00266-232138\",\n        \"imp8054368488\",\n        \"imp8056695611\",\n        \"imp8054368489\",\n        \"imp00266-021930\",\n        \"imp8058805622\",\n        \"imp8054567357\",\n        \"imp9092841180\",\n        \"imp9092841187\",\n        \"imp9092841185\",\n        \"imp9092841179\",\n        \"imp9092841188\",\n        \"imp9092841181\",\n        \"imp9092841183\",\n        \"imp9092841189\",\n        \"imp00266-1323821\",\n        \"imp00266-1323822\",\n        \"imp00266-1323823\",\n        \"imp00266-1323824\",\n        \"imp00266-1389731\",\n        \"imp00266-1389732\",\n        \"imp9097363387\",\n        \"imp8058801962\",\n        \"imp00266-441444\",\n        \"imp00266-441441\",\n        \"imp00266-441443\",\n        \"imp00266-441442\",\n        \"imp00266-229603\",\n        \"imp00266-229605\",\n        \"imp00266-229604\",\n        \"imp00266-229606\",\n        \"imp00266-229607\",\n        \"imp00266-229608\",\n        \"imp00266-634666\",\n        \"imp00266-1203512\",\n        \"imp00266-1203513\",\n        \"imp00266-1203511\",\n        \"imp00266-1203514\",\n        \"imp00266-1203515\",\n        \"imp00266-786653\",\n        \"imp00266-786652\",\n        \"imp00266-786619\",\n        \"imp00266-786651\",\n        \"imp00266-908001\",\n        \"imp00266-908002\",\n        \"imp00266-908005\",\n        \"imp00266-908003\",\n        \"imp00266-908004\",\n        \"imp00266-012000\",\n        \"imp8054565895\",\n        \"imp00271-02222\",\n        \"imp00271-02220\",\n        \"imp00271-02228\",\n        \"imp00271-02233\",\n        \"imp00271-02237\",\n        \"imp00271-02229\",\n        \"imp00271-02603\",\n        \"imp00271-02218\",\n        \"imp00271-02224\",\n        \"imp00271-02216\",\n        \"imp00271-02230\",\n        \"imp00271-02234\",\n        \"imp00271-02225\",\n        \"imp00271-02226\",\n        \"imp00271-02236\",\n        \"imp00271-02227\",\n        \"imp00271-02235\",\n        \"imp00271-02604\",\n        \"imp00271-02601\",\n        \"imp00271-02602\",\n        \"imp00271-02219\",\n        \"imp00271-02231\",\n        \"imp00271-02232\",\n        \"imp00271-02240\",\n        \"imp00271-02600\",\n        \"imp00271-02238\",\n        \"imp00271-02221\",\n        \"imp00271-02223\",\n        \"imp00271-02215\",\n        \"imp00271-02217\",\n        \"imp00271-02239\",\n        \"imp8058459823\",\n        \"imp8058451074\",\n        \"imp8056852046\",\n        \"imp8058451073\",\n        \"imp8058452858\",\n        \"imp8056811417\",\n        \"imp8056926926\",\n        \"imp8056926924\",\n        \"imp4069002192\",\n        \"imp8056811416\",\n        \"imp00275-02401\",\n        \"imp8056811623\",\n        \"imp00275-02501\",\n        \"imp8056811415\",\n        \"imp00275-02502\",\n        \"imp00275-02402\",\n        \"imp8056926923\",\n        \"imp8056811410\",\n        \"imp8056926928\",\n        \"imp8058458963\",\n        \"imp00275-01200\",\n        \"imp9492297775\",\n        \"imp00277-02124\",\n        \"imp00277-02113\",\n        \"imp00277-02112\",\n        \"imp00277-02106\",\n        \"imp00277-02122\",\n        \"imp00277-02102\",\n        \"imp00277-02118\",\n        \"imp00277-02114\",\n        \"imp00277-02107\",\n        \"imp8058807479\",\n        \"imp00277-06225\",\n        \"imp00277-04338\",\n        \"imp8058807476\",\n        \"imp8058807481\",\n        \"imp8058807477\",\n        \"imp8058806977\",\n        \"imp8058804273\",\n        \"imp8053572585\",\n        \"imp8053572573\",\n        \"imp8053572568\",\n        \"imp8053572569\",\n        \"imp8053572578\",\n        \"imp8053572581\",\n        \"imp8053572566\",\n        \"imp8053572586\",\n        \"imp8053572576\",\n        \"imp8053572582\",\n        \"imp8053572587\",\n        \"imp8053572588\",\n        \"imp8053572565\",\n        \"imp00277-03444\",\n        \"imp8053572584\",\n        \"imp8054568764\",\n        \"imp8054568762\",\n        \"imp8054568763\",\n        \"imp8054564983\",\n        \"imp8054564987\",\n        \"imp8054564985\",\n        \"imp8054564986\",\n        \"imp8054564981\",\n        \"imp8054564984\",\n        \"imp8054565102\",\n        \"imp8054565106\",\n        \"imp8054565103\",\n        \"imp8054565105\",\n        \"imp00284-02112\",\n        \"imp8054565104\",\n        \"imp8054567276\",\n        \"imp8054567272\",\n        \"imp8054567277\",\n        \"imp8054567278\",\n        \"imp8054567274\",\n        \"imp8054567270\",\n        \"imp8054567279\",\n        \"imp8054567275\",\n        \"imp8054567273\",\n        \"imp8054567271\",\n        \"imp00290-directory\",\n        \"imp00290-01100\",\n        \"imp8479577492\",\n        \"imp8479577251\",\n        \"imp8479577619\",\n        \"imp8479577536\",\n        \"imp8479577531\",\n        \"imp8479577490\",\n        \"imp8479577465\",\n        \"imp8479577480\",\n        \"imp8479577277\",\n        \"imp8479577486\",\n        \"imp8479577534\",\n        \"imp8479577538\",\n        \"imp8479577483\",\n        \"imp8479577467\",\n        \"imp8479577498\",\n        \"imp8479577482\",\n        \"imp8479577537\",\n        \"imp8479577410\",\n        \"imp8479577415\",\n        \"imp8479577272\",\n        \"imp8479577166\",\n        \"imp00290-02166\",\n        \"imp8479577409\",\n        \"imp8479577475\",\n        \"imp8479577533\",\n        \"00290-02167\",\n        \"imp8479577411\",\n        \"imp8479577265\",\n        \"imp8479577474\",\n        \"imp8479577469\",\n        \"imp8479865155\",\n        \"imp00290-02501\",\n        \"imp00290-02502\",\n        \"imp8479577497\",\n        \"imp8479577476\",\n        \"imp00290-02500\",\n        \"imp8479577487\",\n        \"imp8479577477\",\n        \"imp8479577275\",\n        \"imp8479577489\",\n        \"imp8479577530\",\n        \"imp8479577278\",\n        \"imp8479577491\",\n        \"imp8479577479\",\n        \"imp8479577532\",\n        \"imp8479577398\",\n        \"imp8479577484\",\n        \"imp00290-02205\",\n        \"imp8058807192\",\n        \"imp8058807184\",\n        \"imp8058807185\",\n        \"imp8058807183\",\n        \"imp8058807195\",\n        \"imp8058807182\",\n        \"imp8058807181\",\n        \"8056810379\",\n        \"8056926000\",\n        \"8056926001\",\n        \"imp00292-02-trunk\",\n        \"8056926057\",\n        \"8059641380\",\n        \"8059647622\",\n        \"8056834011\",\n        \"8056926028\",\n        \"8056926029\",\n        \"8056926030\",\n        \"8056926031\",\n        \"8056926032\",\n        \"8056926033\",\n        \"8056926034\",\n        \"8056926035\",\n        \"8056926036\",\n        \"8056926037\",\n        \"8056926038\",\n        \"8056926039\",\n        \"8056926040\",\n        \"8056926041\",\n        \"8056926042\",\n        \"8056926043\",\n        \"8056926044\",\n        \"8056926045\",\n        \"8056926046\",\n        \"8056926047\",\n        \"8056926048\",\n        \"8056926049\",\n        \"8056926050\",\n        \"8056926051\",\n        \"8056926052\",\n        \"8056926053\",\n        \"8056926054\",\n        \"8056926055\",\n        \"8056926056\",\n        \"8056926058\",\n        \"8056926059\",\n        \"8056926060\",\n        \"8056926061\",\n        \"8056926062\",\n        \"8056926063\",\n        \"8056926064\",\n        \"8056926065\",\n        \"8056926066\",\n        \"8056926067\",\n        \"8056926068\",\n        \"8056926069\",\n        \"8056926070\",\n        \"8056926071\",\n        \"8056926072\",\n        \"8056926073\",\n        \"8056926074\",\n        \"8056926075\",\n        \"8056926076\",\n        \"8056926077\",\n        \"8056926078\",\n        \"8056926079\",\n        \"8056926080\",\n        \"8056926081\",\n        \"8056926082\",\n        \"8056926083\",\n        \"8056926084\",\n        \"8056926085\",\n        \"8056926086\",\n        \"8056926087\",\n        \"8056926088\",\n        \"8056926089\",\n        \"8056926090\",\n        \"8056926091\",\n        \"8056926092\",\n        \"8056926093\",\n        \"8056926094\",\n        \"8056926095\",\n        \"8056926096\",\n        \"8056926097\",\n        \"8056926098\",\n        \"8056926099\",\n        \"8056926002\",\n        \"8056926003\",\n        \"8056926004\",\n        \"8056926005\",\n        \"8056926006\",\n        \"8056926007\",\n        \"8056926008\",\n        \"8056926009\",\n        \"8056926010\",\n        \"8056926011\",\n        \"8056926012\",\n        \"8056926013\",\n        \"8056926014\",\n        \"8056926015\",\n        \"8056926016\",\n        \"8056926017\",\n        \"8056926018\",\n        \"8056926019\",\n        \"8056926020\",\n        \"8056926021\",\n        \"8056926022\",\n        \"8056926023\",\n        \"8056926024\",\n        \"8056926025\",\n        \"8056926026\",\n        \"8056926027\",\n        \"8059640450\",\n        \"8059677111\",\n        \"8056816385\",\n        \"8056814803\",\n        \"8059671805\",\n        \"8059671900\",\n        \"imp8055392215\",\n        \"imp8055392212\",\n        \"imp8055392217\",\n        \"imp8055392220\",\n        \"8055647002\",\n        \"imp8055392206\",\n        \"imp8055392211\",\n        \"imp8055392218\",\n        \"imp8055392227\",\n        \"imp8055392205\",\n        \"imp8055392213\",\n        \"imp00295-02300\",\n        \"imp8055392204\",\n        \"imp8055392208\",\n        \"imp8055392203\",\n        \"imp8055392207\",\n        \"imp8055392229\",\n        \"imp8055392228\",\n        \"imp8055392210\",\n        \"imp8055392214\",\n        \"imp8055392209\",\n        \"imp8055392201\",\n        \"imp8055392219\",\n        \"imp00295-04-trunk@00295.impulsevoip.net\",\n        \"imp00295-directory\",\n        \"imp00295-01100\",\n        \"imp00308-02201\",\n        \"imp00308-02202\",\n        \"imp8058801695\",\n        \"1001@00310.impulsevoip.net\",\n        \"1002@00310.impulsevoip.net\",\n        \"1003@00310.impulsevoip.net\",\n        \"1004@00310.impulsevoip.net\",\n        \"1005@00310.impulsevoip.net\",\n        \"1006@00310.impulsevoip.net\",\n        \"1007@00310.impulsevoip.net\",\n        \"1008@00310.impulsevoip.net\",\n        \"1009@00310.impulsevoip.net\",\n        \"1010@00310.impulsevoip.net\",\n        \"1011@00310.impulsevoip.net\",\n        \"1012@00310.impulsevoip.net\",\n        \"1013@00310.impulsevoip.net\",\n        \"1014@00310.impulsevoip.net\",\n        \"1015@00310.impulsevoip.net\",\n        \"1016@00310.impulsevoip.net\",\n        \"1017@00310.impulsevoip.net\",\n        \"1018@00310.impulsevoip.net\",\n        \"1019@00310.impulsevoip.net\",\n        \"1020@00310.impulsevoip.net\",\n        \"1021@00310.impulsevoip.net\",\n        \"1022@00310.impulsevoip.net\",\n        \"1023@00310.impulsevoip.net\",\n        \"1024@00310.impulsevoip.net\",\n        \"1025@00310.impulsevoip.net\",\n        \"1026@00310.impulsevoip.net\",\n        \"1027@00310.impulsevoip.net\",\n        \"1028@00310.impulsevoip.net\",\n        \"1029@00310.impulsevoip.net\",\n        \"1030@00310.impulsevoip.net\",\n        \"1031@00310.impulsevoip.net\",\n        \"1032@00310.impulsevoip.net\",\n        \"1033@00310.impulsevoip.net\",\n        \"1034@00310.impulsevoip.net\",\n        \"1035@00310.impulsevoip.net\",\n        \"1036@00310.impulsevoip.net\",\n        \"1037@00310.impulsevoip.net\",\n        \"1038@00310.impulsevoip.net\",\n        \"1039@00310.impulsevoip.net\",\n        \"1040@00310.impulsevoip.net\",\n        \"1041@00310.impulsevoip.net\",\n        \"1042@00310.impulsevoip.net\",\n        \"1043@00310.impulsevoip.net\",\n        \"1044@00310.impulsevoip.net\",\n        \"1045@00310.impulsevoip.net\",\n        \"1046@00310.impulsevoip.net\",\n        \"1047@00310.impulsevoip.net\",\n        \"1048@00310.impulsevoip.net\",\n        \"1049@00310.impulsevoip.net\",\n        \"1050@00310.impulsevoip.net\",\n        \"1051@00310.impulsevoip.net\",\n        \"1052@00310.impulsevoip.net\",\n        \"1053@00310.impulsevoip.net\",\n        \"1054@00310.impulsevoip.net\",\n        \"1055@00310.impulsevoip.net\",\n        \"1056@00310.impulsevoip.net\",\n        \"1057@00310.impulsevoip.net\",\n        \"1058@00310.impulsevoip.net\",\n        \"1059@00310.impulsevoip.net\",\n        \"1060@00310.impulsevoip.net\",\n        \"1061@00310.impulsevoip.net\",\n        \"1062@00310.impulsevoip.net\",\n        \"1063@00310.impulsevoip.net\",\n        \"1064@00310.impulsevoip.net\",\n        \"1065@00310.impulsevoip.net\",\n        \"1066@00310.impulsevoip.net\",\n        \"1067@00310.impulsevoip.net\",\n        \"1068@00310.impulsevoip.net\",\n        \"1069@00310.impulsevoip.net\",\n        \"1070@00310.impulsevoip.net\",\n        \"1071@00310.impulsevoip.net\",\n        \"1072@00310.impulsevoip.net\",\n        \"1073@00310.impulsevoip.net\",\n        \"1074@00310.impulsevoip.net\",\n        \"1075@00310.impulsevoip.net\",\n        \"1076@00310.impulsevoip.net\",\n        \"1077@00310.impulsevoip.net\",\n        \"1078@00310.impulsevoip.net\",\n        \"1079@00310.impulsevoip.net\",\n        \"1080@00310.impulsevoip.net\",\n        \"1081@00310.impulsevoip.net\",\n        \"1082@00310.impulsevoip.net\",\n        \"1083@00310.impulsevoip.net\",\n        \"1084@00310.impulsevoip.net\",\n        \"1085@00310.impulsevoip.net\",\n        \"1086@00310.impulsevoip.net\",\n        \"1087@00310.impulsevoip.net\",\n        \"1088@00310.impulsevoip.net\",\n        \"1089@00310.impulsevoip.net\",\n        \"1090@00310.impulsevoip.net\",\n        \"1091@00310.impulsevoip.net\",\n        \"1092@00310.impulsevoip.net\",\n        \"1093@00310.impulsevoip.net\",\n        \"1094@00310.impulsevoip.net\",\n        \"1095@00310.impulsevoip.net\",\n        \"1096@00310.impulsevoip.net\",\n        \"1097@00310.impulsevoip.net\",\n        \"1098@00310.impulsevoip.net\",\n        \"1099@00310.impulsevoip.net\",\n        \"1100@00310.impulsevoip.net\",\n        \"1101@00310.impulsevoip.net\",\n        \"1102@00310.impulsevoip.net\",\n        \"1103@00310.impulsevoip.net\",\n        \"1104@00310.impulsevoip.net\",\n        \"1105@00310.impulsevoip.net\",\n        \"1106@00310.impulsevoip.net\",\n        \"1107@00310.impulsevoip.net\",\n        \"1108@00310.impulsevoip.net\",\n        \"1109@00310.impulsevoip.net\",\n        \"1110@00310.impulsevoip.net\",\n        \"1111@00310.impulsevoip.net\",\n        \"1112@00310.impulsevoip.net\",\n        \"1113@00310.impulsevoip.net\",\n        \"1114@00310.impulsevoip.net\",\n        \"1115@00310.impulsevoip.net\",\n        \"1116@00310.impulsevoip.net\",\n        \"1117@00310.impulsevoip.net\",\n        \"1118@00310.impulsevoip.net\",\n        \"1119@00310.impulsevoip.net\",\n        \"1120@00310.impulsevoip.net\",\n        \"1121@00310.impulsevoip.net\",\n        \"1122@00310.impulsevoip.net\",\n        \"1123@00310.impulsevoip.net\",\n        \"1124@00310.impulsevoip.net\",\n        \"1125@00310.impulsevoip.net\",\n        \"1126@00310.impulsevoip.net\",\n        \"1127@00310.impulsevoip.net\",\n        \"1128@00310.impulsevoip.net\",\n        \"1129@00310.impulsevoip.net\",\n        \"1130@00310.impulsevoip.net\",\n        \"1131@00310.impulsevoip.net\",\n        \"1132@00310.impulsevoip.net\",\n        \"1133@00310.impulsevoip.net\",\n        \"1134@00310.impulsevoip.net\",\n        \"1135@00310.impulsevoip.net\",\n        \"1136@00310.impulsevoip.net\",\n        \"1137@00310.impulsevoip.net\",\n        \"1138@00310.impulsevoip.net\",\n        \"1139@00310.impulsevoip.net\",\n        \"1140@00310.impulsevoip.net\",\n        \"1141@00310.impulsevoip.net\",\n        \"1142@00310.impulsevoip.net\",\n        \"1143@00310.impulsevoip.net\",\n        \"1144@00310.impulsevoip.net\",\n        \"1145@00310.impulsevoip.net\",\n        \"1146@00310.impulsevoip.net\",\n        \"1147@00310.impulsevoip.net\",\n        \"1148@00310.impulsevoip.net\",\n        \"1149@00310.impulsevoip.net\",\n        \"1150@00310.impulsevoip.net\",\n        \"1151@00310.impulsevoip.net\",\n        \"1152@00310.impulsevoip.net\",\n        \"1153@00310.impulsevoip.net\",\n        \"1154@00310.impulsevoip.net\",\n        \"1155@00310.impulsevoip.net\",\n        \"1156@00310.impulsevoip.net\",\n        \"1157@00310.impulsevoip.net\",\n        \"1158@00310.impulsevoip.net\",\n        \"1159@00310.impulsevoip.net\",\n        \"1160@00310.impulsevoip.net\",\n        \"1161@00310.impulsevoip.net\",\n        \"1162@00310.impulsevoip.net\",\n        \"1163@00310.impulsevoip.net\",\n        \"1164@00310.impulsevoip.net\",\n        \"1165@00310.impulsevoip.net\",\n        \"1166@00310.impulsevoip.net\",\n        \"1167@00310.impulsevoip.net\",\n        \"1168@00310.impulsevoip.net\",\n        \"1169@00310.impulsevoip.net\",\n        \"1170@00310.impulsevoip.net\",\n        \"1171@00310.impulsevoip.net\",\n        \"1172@00310.impulsevoip.net\",\n        \"1173@00310.impulsevoip.net\",\n        \"1174@00310.impulsevoip.net\",\n        \"1175@00310.impulsevoip.net\",\n        \"1176@00310.impulsevoip.net\",\n        \"1177@00310.impulsevoip.net\",\n        \"1178@00310.impulsevoip.net\",\n        \"1179@00310.impulsevoip.net\",\n        \"1180@00310.impulsevoip.net\",\n        \"1181@00310.impulsevoip.net\",\n        \"1182@00310.impulsevoip.net\",\n        \"1183@00310.impulsevoip.net\",\n        \"1184@00310.impulsevoip.net\",\n        \"1185@00310.impulsevoip.net\",\n        \"1186@00310.impulsevoip.net\",\n        \"1187@00310.impulsevoip.net\",\n        \"1188@00310.impulsevoip.net\",\n        \"1189@00310.impulsevoip.net\",\n        \"1190@00310.impulsevoip.net\",\n        \"1191@00310.impulsevoip.net\",\n        \"1192@00310.impulsevoip.net\",\n        \"1193@00310.impulsevoip.net\",\n        \"1194@00310.impulsevoip.net\",\n        \"1195@00310.impulsevoip.net\",\n        \"1196@00310.impulsevoip.net\",\n        \"1197@00310.impulsevoip.net\",\n        \"1198@00310.impulsevoip.net\",\n        \"1199@00310.impulsevoip.net\",\n        \"1200@00310.impulsevoip.net\",\n        \"1201@00310.impulsevoip.net\",\n        \"1202@00310.impulsevoip.net\",\n        \"1203@00310.impulsevoip.net\",\n        \"1204@00310.impulsevoip.net\",\n        \"1205@00310.impulsevoip.net\",\n        \"1206@00310.impulsevoip.net\",\n        \"1207@00310.impulsevoip.net\",\n        \"1208@00310.impulsevoip.net\",\n        \"1209@00310.impulsevoip.net\",\n        \"1210@00310.impulsevoip.net\",\n        \"1211@00310.impulsevoip.net\",\n        \"1212@00310.impulsevoip.net\",\n        \"1213@00310.impulsevoip.net\",\n        \"1214@00310.impulsevoip.net\",\n        \"1215@00310.impulsevoip.net\",\n        \"2484@00310.impulsevoip.net\",\n        \"2485@00310.impulsevoip.net\",\n        \"2486@00310.impulsevoip.net\",\n        \"2487@00310.impulsevoip.net\",\n        \"2488@00310.impulsevoip.net\",\n        \"2489@00310.impulsevoip.net\",\n        \"2490@00310.impulsevoip.net\",\n        \"2491@00310.impulsevoip.net\",\n        \"2492@00310.impulsevoip.net\",\n        \"2493@00310.impulsevoip.net\",\n        \"2494@00310.impulsevoip.net\",\n        \"2495@00310.impulsevoip.net\",\n        \"2496@00310.impulsevoip.net\",\n        \"2497@00310.impulsevoip.net\",\n        \"2498@00310.impulsevoip.net\",\n        \"2499@00310.impulsevoip.net\",\n        \"2500@00310.impulsevoip.net\",\n        \"2501@00310.impulsevoip.net\",\n        \"2502@00310.impulsevoip.net\",\n        \"2503@00310.impulsevoip.net\",\n        \"2504@00310.impulsevoip.net\",\n        \"2505@00310.impulsevoip.net\",\n        \"2506@00310.impulsevoip.net\",\n        \"2507@00310.impulsevoip.net\",\n        \"2508@00310.impulsevoip.net\",\n        \"2509@00310.impulsevoip.net\",\n        \"2510@00310.impulsevoip.net\",\n        \"2511@00310.impulsevoip.net\",\n        \"2512@00310.impulsevoip.net\",\n        \"2513@00310.impulsevoip.net\",\n        \"2514@00310.impulsevoip.net\",\n        \"2515@00310.impulsevoip.net\",\n        \"2516@00310.impulsevoip.net\",\n        \"2517@00310.impulsevoip.net\",\n        \"2518@00310.impulsevoip.net\",\n        \"2519@00310.impulsevoip.net\",\n        \"2520@00310.impulsevoip.net\",\n        \"2521@00310.impulsevoip.net\",\n        \"2522@00310.impulsevoip.net\",\n        \"2523@00310.impulsevoip.net\",\n        \"2524@00310.impulsevoip.net\",\n        \"2525@00310.impulsevoip.net\",\n        \"2526@00310.impulsevoip.net\",\n        \"2527@00310.impulsevoip.net\",\n        \"2528@00310.impulsevoip.net\",\n        \"2529@00310.impulsevoip.net\",\n        \"2530@00310.impulsevoip.net\",\n        \"2531@00310.impulsevoip.net\",\n        \"2532@00310.impulsevoip.net\",\n        \"2533@00310.impulsevoip.net\",\n        \"2534@00310.impulsevoip.net\",\n        \"2535@00310.impulsevoip.net\",\n        \"2536@00310.impulsevoip.net\",\n        \"2537@00310.impulsevoip.net\",\n        \"2538@00310.impulsevoip.net\",\n        \"2539@00310.impulsevoip.net\",\n        \"2540@00310.impulsevoip.net\",\n        \"2541@00310.impulsevoip.net\",\n        \"2542@00310.impulsevoip.net\",\n        \"2543@00310.impulsevoip.net\",\n        \"2544@00310.impulsevoip.net\",\n        \"2545@00310.impulsevoip.net\",\n        \"2546@00310.impulsevoip.net\",\n        \"2547@00310.impulsevoip.net\",\n        \"2548@00310.impulsevoip.net\",\n        \"2549@00310.impulsevoip.net\",\n        \"2550@00310.impulsevoip.net\",\n        \"2551@00310.impulsevoip.net\",\n        \"2552@00310.impulsevoip.net\",\n        \"2553@00310.impulsevoip.net\",\n        \"2554@00310.impulsevoip.net\",\n        \"2555@00310.impulsevoip.net\",\n        \"2556@00310.impulsevoip.net\",\n        \"2557@00310.impulsevoip.net\",\n        \"2558@00310.impulsevoip.net\",\n        \"2559@00310.impulsevoip.net\",\n        \"2560@00310.impulsevoip.net\",\n        \"2561@00310.impulsevoip.net\",\n        \"2562@00310.impulsevoip.net\",\n        \"2563@00310.impulsevoip.net\",\n        \"2564@00310.impulsevoip.net\",\n        \"2565@00310.impulsevoip.net\",\n        \"2566@00310.impulsevoip.net\",\n        \"2567@00310.impulsevoip.net\",\n        \"2568@00310.impulsevoip.net\",\n        \"2569@00310.impulsevoip.net\",\n        \"2570@00310.impulsevoip.net\",\n        \"2571@00310.impulsevoip.net\",\n        \"2572@00310.impulsevoip.net\",\n        \"2573@00310.impulsevoip.net\",\n        \"2574@00310.impulsevoip.net\",\n        \"2575@00310.impulsevoip.net\",\n        \"2576@00310.impulsevoip.net\",\n        \"2577@00310.impulsevoip.net\",\n        \"2578@00310.impulsevoip.net\",\n        \"2579@00310.impulsevoip.net\",\n        \"2580@00310.impulsevoip.net\",\n        \"2581@00310.impulsevoip.net\",\n        \"2582@00310.impulsevoip.net\",\n        \"2583@00310.impulsevoip.net\",\n        \"2584@00310.impulsevoip.net\",\n        \"2585@00310.impulsevoip.net\",\n        \"2586@00310.impulsevoip.net\",\n        \"2587@00310.impulsevoip.net\",\n        \"2588@00310.impulsevoip.net\",\n        \"2589@00310.impulsevoip.net\",\n        \"2590@00310.impulsevoip.net\",\n        \"2591@00310.impulsevoip.net\",\n        \"2592@00310.impulsevoip.net\",\n        \"2593@00310.impulsevoip.net\",\n        \"2594@00310.impulsevoip.net\",\n        \"2595@00310.impulsevoip.net\",\n        \"2596@00310.impulsevoip.net\",\n        \"2597@00310.impulsevoip.net\",\n        \"2598@00310.impulsevoip.net\",\n        \"2599@00310.impulsevoip.net\",\n        \"2600@00310.impulsevoip.net\",\n        \"2601@00310.impulsevoip.net\",\n        \"2602@00310.impulsevoip.net\",\n        \"2603@00310.impulsevoip.net\",\n        \"2604@00310.impulsevoip.net\",\n        \"2605@00310.impulsevoip.net\",\n        \"2606@00310.impulsevoip.net\",\n        \"2607@00310.impulsevoip.net\",\n        \"2608@00310.impulsevoip.net\",\n        \"2609@00310.impulsevoip.net\",\n        \"2610@00310.impulsevoip.net\",\n        \"2611@00310.impulsevoip.net\",\n        \"2612@00310.impulsevoip.net\",\n        \"2613@00310.impulsevoip.net\",\n        \"2614@00310.impulsevoip.net\",\n        \"2615@00310.impulsevoip.net\",\n        \"2616@00310.impulsevoip.net\",\n        \"2617@00310.impulsevoip.net\",\n        \"2618@00310.impulsevoip.net\",\n        \"2619@00310.impulsevoip.net\",\n        \"2620@00310.impulsevoip.net\",\n        \"2621@00310.impulsevoip.net\",\n        \"2622@00310.impulsevoip.net\",\n        \"2623@00310.impulsevoip.net\",\n        \"2624@00310.impulsevoip.net\",\n        \"2625@00310.impulsevoip.net\",\n        \"2626@00310.impulsevoip.net\",\n        \"2627@00310.impulsevoip.net\",\n        \"2628@00310.impulsevoip.net\",\n        \"2629@00310.impulsevoip.net\",\n        \"2630@00310.impulsevoip.net\",\n        \"2631@00310.impulsevoip.net\",\n        \"2632@00310.impulsevoip.net\",\n        \"2633@00310.impulsevoip.net\",\n        \"2634@00310.impulsevoip.net\",\n        \"2635@00310.impulsevoip.net\",\n        \"2636@00310.impulsevoip.net\",\n        \"2637@00310.impulsevoip.net\",\n        \"2638@00310.impulsevoip.net\",\n        \"2639@00310.impulsevoip.net\",\n        \"2640@00310.impulsevoip.net\",\n        \"2641@00310.impulsevoip.net\",\n        \"2642@00310.impulsevoip.net\",\n        \"2643@00310.impulsevoip.net\",\n        \"2644@00310.impulsevoip.net\",\n        \"2645@00310.impulsevoip.net\",\n        \"2646@00310.impulsevoip.net\",\n        \"2647@00310.impulsevoip.net\",\n        \"2648@00310.impulsevoip.net\",\n        \"2649@00310.impulsevoip.net\",\n        \"2650@00310.impulsevoip.net\",\n        \"2651@00310.impulsevoip.net\",\n        \"2652@00310.impulsevoip.net\",\n        \"2653@00310.impulsevoip.net\",\n        \"2654@00310.impulsevoip.net\",\n        \"2655@00310.impulsevoip.net\",\n        \"2656@00310.impulsevoip.net\",\n        \"2657@00310.impulsevoip.net\",\n        \"2658@00310.impulsevoip.net\",\n        \"2659@00310.impulsevoip.net\",\n        \"2660@00310.impulsevoip.net\",\n        \"2661@00310.impulsevoip.net\",\n        \"2662@00310.impulsevoip.net\",\n        \"2663@00310.impulsevoip.net\",\n        \"2664@00310.impulsevoip.net\",\n        \"2665@00310.impulsevoip.net\",\n        \"2666@00310.impulsevoip.net\",\n        \"2667@00310.impulsevoip.net\",\n        \"2668@00310.impulsevoip.net\",\n        \"2669@00310.impulsevoip.net\",\n        \"2670@00310.impulsevoip.net\",\n        \"2671@00310.impulsevoip.net\",\n        \"2672@00310.impulsevoip.net\",\n        \"2673@00310.impulsevoip.net\",\n        \"2674@00310.impulsevoip.net\",\n        \"2675@00310.impulsevoip.net\",\n        \"2676@00310.impulsevoip.net\",\n        \"2677@00310.impulsevoip.net\",\n        \"2678@00310.impulsevoip.net\",\n        \"2679@00310.impulsevoip.net\",\n        \"1912@00310.impulsevoip.net\",\n        \"1913@00310.impulsevoip.net\",\n        \"1914@00310.impulsevoip.net\",\n        \"1915@00310.impulsevoip.net\",\n        \"1916@00310.impulsevoip.net\",\n        \"1917@00310.impulsevoip.net\",\n        \"1918@00310.impulsevoip.net\",\n        \"1919@00310.impulsevoip.net\",\n        \"1920@00310.impulsevoip.net\",\n        \"1921@00310.impulsevoip.net\",\n        \"1922@00310.impulsevoip.net\",\n        \"1923@00310.impulsevoip.net\",\n        \"1924@00310.impulsevoip.net\",\n        \"1925@00310.impulsevoip.net\",\n        \"1926@00310.impulsevoip.net\",\n        \"1927@00310.impulsevoip.net\",\n        \"1928@00310.impulsevoip.net\",\n        \"1929@00310.impulsevoip.net\",\n        \"1930@00310.impulsevoip.net\",\n        \"1931@00310.impulsevoip.net\",\n        \"1932@00310.impulsevoip.net\",\n        \"1933@00310.impulsevoip.net\",\n        \"1934@00310.impulsevoip.net\",\n        \"1935@00310.impulsevoip.net\",\n        \"1936@00310.impulsevoip.net\",\n        \"1937@00310.impulsevoip.net\",\n        \"1938@00310.impulsevoip.net\",\n        \"1939@00310.impulsevoip.net\",\n        \"1940@00310.impulsevoip.net\",\n        \"1941@00310.impulsevoip.net\",\n        \"1942@00310.impulsevoip.net\",\n        \"1943@00310.impulsevoip.net\",\n        \"1944@00310.impulsevoip.net\",\n        \"1945@00310.impulsevoip.net\",\n        \"1946@00310.impulsevoip.net\",\n        \"1947@00310.impulsevoip.net\",\n        \"1948@00310.impulsevoip.net\",\n        \"1949@00310.impulsevoip.net\",\n        \"1950@00310.impulsevoip.net\",\n        \"1951@00310.impulsevoip.net\",\n        \"1952@00310.impulsevoip.net\",\n        \"1953@00310.impulsevoip.net\",\n        \"1954@00310.impulsevoip.net\",\n        \"1955@00310.impulsevoip.net\",\n        \"1956@00310.impulsevoip.net\",\n        \"1957@00310.impulsevoip.net\",\n        \"1958@00310.impulsevoip.net\",\n        \"1959@00310.impulsevoip.net\",\n        \"1960@00310.impulsevoip.net\",\n        \"1961@00310.impulsevoip.net\",\n        \"1962@00310.impulsevoip.net\",\n        \"1963@00310.impulsevoip.net\",\n        \"1964@00310.impulsevoip.net\",\n        \"1965@00310.impulsevoip.net\",\n        \"1966@00310.impulsevoip.net\",\n        \"1967@00310.impulsevoip.net\",\n        \"1968@00310.impulsevoip.net\",\n        \"1969@00310.impulsevoip.net\",\n        \"1970@00310.impulsevoip.net\",\n        \"1971@00310.impulsevoip.net\",\n        \"1718@00310.impulsevoip.net\",\n        \"1719@00310.impulsevoip.net\",\n        \"1720@00310.impulsevoip.net\",\n        \"1721@00310.impulsevoip.net\",\n        \"1722@00310.impulsevoip.net\",\n        \"1723@00310.impulsevoip.net\",\n        \"1724@00310.impulsevoip.net\",\n        \"1725@00310.impulsevoip.net\",\n        \"1726@00310.impulsevoip.net\",\n        \"1727@00310.impulsevoip.net\",\n        \"1728@00310.impulsevoip.net\",\n        \"1729@00310.impulsevoip.net\",\n        \"1730@00310.impulsevoip.net\",\n        \"1731@00310.impulsevoip.net\",\n        \"1732@00310.impulsevoip.net\",\n        \"1733@00310.impulsevoip.net\",\n        \"1734@00310.impulsevoip.net\",\n        \"1735@00310.impulsevoip.net\",\n        \"1736@00310.impulsevoip.net\",\n        \"1737@00310.impulsevoip.net\",\n        \"1738@00310.impulsevoip.net\",\n        \"1739@00310.impulsevoip.net\",\n        \"1740@00310.impulsevoip.net\",\n        \"1741@00310.impulsevoip.net\",\n        \"1742@00310.impulsevoip.net\",\n        \"1743@00310.impulsevoip.net\",\n        \"1744@00310.impulsevoip.net\",\n        \"1745@00310.impulsevoip.net\",\n        \"1746@00310.impulsevoip.net\",\n        \"1747@00310.impulsevoip.net\",\n        \"1748@00310.impulsevoip.net\",\n        \"1749@00310.impulsevoip.net\",\n        \"1750@00310.impulsevoip.net\",\n        \"1751@00310.impulsevoip.net\",\n        \"1752@00310.impulsevoip.net\",\n        \"1753@00310.impulsevoip.net\",\n        \"1754@00310.impulsevoip.net\",\n        \"1755@00310.impulsevoip.net\",\n        \"1756@00310.impulsevoip.net\",\n        \"1757@00310.impulsevoip.net\",\n        \"1758@00310.impulsevoip.net\",\n        \"1759@00310.impulsevoip.net\",\n        \"1760@00310.impulsevoip.net\",\n        \"1761@00310.impulsevoip.net\",\n        \"1762@00310.impulsevoip.net\",\n        \"1763@00310.impulsevoip.net\",\n        \"1764@00310.impulsevoip.net\",\n        \"1765@00310.impulsevoip.net\",\n        \"1766@00310.impulsevoip.net\",\n        \"1767@00310.impulsevoip.net\",\n        \"1768@00310.impulsevoip.net\",\n        \"1769@00310.impulsevoip.net\",\n        \"1770@00310.impulsevoip.net\",\n        \"1771@00310.impulsevoip.net\",\n        \"1772@00310.impulsevoip.net\",\n        \"1773@00310.impulsevoip.net\",\n        \"1774@00310.impulsevoip.net\",\n        \"1775@00310.impulsevoip.net\",\n        \"1776@00310.impulsevoip.net\",\n        \"1777@00310.impulsevoip.net\",\n        \"1778@00310.impulsevoip.net\",\n        \"1779@00310.impulsevoip.net\",\n        \"1780@00310.impulsevoip.net\",\n        \"1781@00310.impulsevoip.net\",\n        \"1782@00310.impulsevoip.net\",\n        \"1783@00310.impulsevoip.net\",\n        \"1784@00310.impulsevoip.net\",\n        \"1785@00310.impulsevoip.net\",\n        \"1786@00310.impulsevoip.net\",\n        \"1787@00310.impulsevoip.net\",\n        \"1788@00310.impulsevoip.net\",\n        \"1789@00310.impulsevoip.net\",\n        \"1790@00310.impulsevoip.net\",\n        \"1791@00310.impulsevoip.net\",\n        \"1792@00310.impulsevoip.net\",\n        \"1793@00310.impulsevoip.net\",\n        \"1794@00310.impulsevoip.net\",\n        \"1795@00310.impulsevoip.net\",\n        \"1796@00310.impulsevoip.net\",\n        \"1797@00310.impulsevoip.net\",\n        \"1798@00310.impulsevoip.net\",\n        \"1799@00310.impulsevoip.net\",\n        \"1800@00310.impulsevoip.net\",\n        \"1801@00310.impulsevoip.net\",\n        \"1802@00310.impulsevoip.net\",\n        \"1803@00310.impulsevoip.net\",\n        \"1804@00310.impulsevoip.net\",\n        \"1805@00310.impulsevoip.net\",\n        \"1806@00310.impulsevoip.net\",\n        \"1807@00310.impulsevoip.net\",\n        \"1808@00310.impulsevoip.net\",\n        \"1809@00310.impulsevoip.net\",\n        \"1810@00310.impulsevoip.net\",\n        \"1811@00310.impulsevoip.net\",\n        \"1812@00310.impulsevoip.net\",\n        \"1813@00310.impulsevoip.net\",\n        \"1814@00310.impulsevoip.net\",\n        \"1815@00310.impulsevoip.net\",\n        \"1000@00310.impulsevoip.net\",\n        \"1438@00310.impulsevoip.net\",\n        \"1439@00310.impulsevoip.net\",\n        \"1440@00310.impulsevoip.net\",\n        \"1441@00310.impulsevoip.net\",\n        \"1442@00310.impulsevoip.net\",\n        \"1250@00310.impulsevoip.net\",\n        \"1251@00310.impulsevoip.net\",\n        \"1252@00310.impulsevoip.net\",\n        \"1253@00310.impulsevoip.net\",\n        \"1254@00310.impulsevoip.net\",\n        \"1255@00310.impulsevoip.net\",\n        \"1256@00310.impulsevoip.net\",\n        \"1427@00310.impulsevoip.net\",\n        \"1428@00310.impulsevoip.net\",\n        \"1429@00310.impulsevoip.net\",\n        \"1430@00310.impulsevoip.net\",\n        \"1431@00310.impulsevoip.net\",\n        \"1432@00310.impulsevoip.net\",\n        \"1433@00310.impulsevoip.net\",\n        \"1434@00310.impulsevoip.net\",\n        \"1435@00310.impulsevoip.net\",\n        \"1436@00310.impulsevoip.net\",\n        \"1437@00310.impulsevoip.net\",\n        \"1367@00310.impulsevoip.net\",\n        \"1368@00310.impulsevoip.net\",\n        \"1369@00310.impulsevoip.net\",\n        \"1370@00310.impulsevoip.net\",\n        \"1371@00310.impulsevoip.net\",\n        \"1372@00310.impulsevoip.net\",\n        \"1373@00310.impulsevoip.net\",\n        \"1374@00310.impulsevoip.net\",\n        \"1375@00310.impulsevoip.net\",\n        \"1443@00310.impulsevoip.net\",\n        \"1444@00310.impulsevoip.net\",\n        \"1445@00310.impulsevoip.net\",\n        \"1446@00310.impulsevoip.net\",\n        \"1447@00310.impulsevoip.net\",\n        \"1448@00310.impulsevoip.net\",\n        \"1449@00310.impulsevoip.net\",\n        \"1450@00310.impulsevoip.net\",\n        \"1451@00310.impulsevoip.net\",\n        \"1329@00310.impulsevoip.net\",\n        \"1330@00310.impulsevoip.net\",\n        \"1331@00310.impulsevoip.net\",\n        \"1332@00310.impulsevoip.net\",\n        \"1333@00310.impulsevoip.net\",\n        \"1334@00310.impulsevoip.net\",\n        \"1335@00310.impulsevoip.net\",\n        \"1336@00310.impulsevoip.net\",\n        \"1337@00310.impulsevoip.net\",\n        \"1383@00310.impulsevoip.net\",\n        \"1384@00310.impulsevoip.net\",\n        \"1385@00310.impulsevoip.net\",\n        \"1386@00310.impulsevoip.net\",\n        \"1387@00310.impulsevoip.net\",\n        \"1388@00310.impulsevoip.net\",\n        \"1286@00310.impulsevoip.net\",\n        \"1287@00310.impulsevoip.net\",\n        \"1288@00310.impulsevoip.net\",\n        \"1289@00310.impulsevoip.net\",\n        \"1290@00310.impulsevoip.net\",\n        \"1291@00310.impulsevoip.net\",\n        \"1292@00310.impulsevoip.net\",\n        \"1293@00310.impulsevoip.net\",\n        \"1294@00310.impulsevoip.net\",\n        \"1295@00310.impulsevoip.net\",\n        \"1296@00310.impulsevoip.net\",\n        \"1297@00310.impulsevoip.net\",\n        \"1298@00310.impulsevoip.net\",\n        \"1299@00310.impulsevoip.net\",\n        \"1300@00310.impulsevoip.net\",\n        \"1301@00310.impulsevoip.net\",\n        \"1302@00310.impulsevoip.net\",\n        \"1303@00310.impulsevoip.net\",\n        \"1304@00310.impulsevoip.net\",\n        \"1305@00310.impulsevoip.net\",\n        \"1389@00310.impulsevoip.net\",\n        \"1390@00310.impulsevoip.net\",\n        \"1391@00310.impulsevoip.net\",\n        \"1392@00310.impulsevoip.net\",\n        \"1393@00310.impulsevoip.net\",\n        \"1394@00310.impulsevoip.net\",\n        \"1395@00310.impulsevoip.net\",\n        \"1376@00310.impulsevoip.net\",\n        \"1377@00310.impulsevoip.net\",\n        \"1378@00310.impulsevoip.net\",\n        \"1379@00310.impulsevoip.net\",\n        \"1380@00310.impulsevoip.net\",\n        \"1381@00310.impulsevoip.net\",\n        \"1382@00310.impulsevoip.net\",\n        \"1396@00310.impulsevoip.net\",\n        \"1397@00310.impulsevoip.net\",\n        \"1398@00310.impulsevoip.net\",\n        \"1399@00310.impulsevoip.net\",\n        \"1400@00310.impulsevoip.net\",\n        \"1401@00310.impulsevoip.net\",\n        \"1402@00310.impulsevoip.net\",\n        \"1403@00310.impulsevoip.net\",\n        \"1404@00310.impulsevoip.net\",\n        \"1405@00310.impulsevoip.net\",\n        \"1306@00310.impulsevoip.net\",\n        \"1307@00310.impulsevoip.net\",\n        \"1308@00310.impulsevoip.net\",\n        \"1309@00310.impulsevoip.net\",\n        \"1310@00310.impulsevoip.net\",\n        \"1311@00310.impulsevoip.net\",\n        \"1312@00310.impulsevoip.net\",\n        \"1313@00310.impulsevoip.net\",\n        \"1314@00310.impulsevoip.net\",\n        \"1315@00310.impulsevoip.net\",\n        \"1316@00310.impulsevoip.net\",\n        \"1317@00310.impulsevoip.net\",\n        \"1318@00310.impulsevoip.net\",\n        \"1319@00310.impulsevoip.net\",\n        \"1320@00310.impulsevoip.net\",\n        \"1321@00310.impulsevoip.net\",\n        \"1322@00310.impulsevoip.net\",\n        \"1323@00310.impulsevoip.net\",\n        \"1324@00310.impulsevoip.net\",\n        \"1325@00310.impulsevoip.net\",\n        \"1326@00310.impulsevoip.net\",\n        \"1327@00310.impulsevoip.net\",\n        \"1328@00310.impulsevoip.net\",\n        \"1406@00310.impulsevoip.net\",\n        \"1407@00310.impulsevoip.net\",\n        \"1408@00310.impulsevoip.net\",\n        \"1409@00310.impulsevoip.net\",\n        \"1410@00310.impulsevoip.net\",\n        \"1411@00310.impulsevoip.net\",\n        \"1412@00310.impulsevoip.net\",\n        \"1413@00310.impulsevoip.net\",\n        \"1414@00310.impulsevoip.net\",\n        \"1415@00310.impulsevoip.net\",\n        \"1416@00310.impulsevoip.net\",\n        \"1417@00310.impulsevoip.net\",\n        \"1418@00310.impulsevoip.net\",\n        \"1419@00310.impulsevoip.net\",\n        \"1420@00310.impulsevoip.net\",\n        \"1267@00310.impulsevoip.net\",\n        \"1268@00310.impulsevoip.net\",\n        \"1269@00310.impulsevoip.net\",\n        \"1270@00310.impulsevoip.net\",\n        \"1271@00310.impulsevoip.net\",\n        \"1272@00310.impulsevoip.net\",\n        \"1273@00310.impulsevoip.net\",\n        \"1274@00310.impulsevoip.net\",\n        \"1275@00310.impulsevoip.net\",\n        \"1276@00310.impulsevoip.net\",\n        \"1277@00310.impulsevoip.net\",\n        \"1278@00310.impulsevoip.net\",\n        \"1279@00310.impulsevoip.net\",\n        \"1280@00310.impulsevoip.net\",\n        \"1281@00310.impulsevoip.net\",\n        \"1282@00310.impulsevoip.net\",\n        \"1283@00310.impulsevoip.net\",\n        \"1284@00310.impulsevoip.net\",\n        \"1285@00310.impulsevoip.net\",\n        \"1349@00310.impulsevoip.net\",\n        \"1350@00310.impulsevoip.net\",\n        \"1351@00310.impulsevoip.net\",\n        \"1352@00310.impulsevoip.net\",\n        \"1353@00310.impulsevoip.net\",\n        \"1354@00310.impulsevoip.net\",\n        \"1355@00310.impulsevoip.net\",\n        \"1356@00310.impulsevoip.net\",\n        \"1357@00310.impulsevoip.net\",\n        \"1358@00310.impulsevoip.net\",\n        \"1359@00310.impulsevoip.net\",\n        \"1360@00310.impulsevoip.net\",\n        \"1361@00310.impulsevoip.net\",\n        \"1362@00310.impulsevoip.net\",\n        \"1363@00310.impulsevoip.net\",\n        \"1364@00310.impulsevoip.net\",\n        \"1365@00310.impulsevoip.net\",\n        \"1366@00310.impulsevoip.net\",\n        \"1452@00310.impulsevoip.net\",\n        \"3168@00310.impulsevoip.net\",\n        \"3169@00310.impulsevoip.net\",\n        \"3170@00310.impulsevoip.net\",\n        \"3171@00310.impulsevoip.net\",\n        \"1453@00310.impulsevoip.net\",\n        \"1454@00310.impulsevoip.net\",\n        \"1455@00310.impulsevoip.net\",\n        \"1456@00310.impulsevoip.net\",\n        \"1457@00310.impulsevoip.net\",\n        \"1458@00310.impulsevoip.net\",\n        \"1257@00310.impulsevoip.net\",\n        \"1258@00310.impulsevoip.net\",\n        \"1259@00310.impulsevoip.net\",\n        \"1260@00310.impulsevoip.net\",\n        \"1261@00310.impulsevoip.net\",\n        \"1262@00310.impulsevoip.net\",\n        \"1263@00310.impulsevoip.net\",\n        \"1264@00310.impulsevoip.net\",\n        \"1265@00310.impulsevoip.net\",\n        \"1266@00310.impulsevoip.net\",\n        \"1421@00310.impulsevoip.net\",\n        \"1422@00310.impulsevoip.net\",\n        \"1423@00310.impulsevoip.net\",\n        \"1424@00310.impulsevoip.net\",\n        \"1425@00310.impulsevoip.net\",\n        \"1426@00310.impulsevoip.net\",\n        \"1338@00310.impulsevoip.net\",\n        \"1339@00310.impulsevoip.net\",\n        \"1340@00310.impulsevoip.net\",\n        \"1341@00310.impulsevoip.net\",\n        \"1342@00310.impulsevoip.net\",\n        \"1343@00310.impulsevoip.net\",\n        \"1344@00310.impulsevoip.net\",\n        \"1345@00310.impulsevoip.net\",\n        \"1346@00310.impulsevoip.net\",\n        \"1347@00310.impulsevoip.net\",\n        \"1348@00310.impulsevoip.net\",\n        \"1459@00310.impulsevoip.net\",\n        \"1460@00310.impulsevoip.net\",\n        \"imp00310-03-trunk@00310.impulsevoip.net\",\n        \"1461@00310.impulsevoip.net\",\n        \"1462@00310.impulsevoip.net\",\n        \"1216@00310.impulsevoip.net\",\n        \"1217@00310.impulsevoip.net\",\n        \"1218@00310.impulsevoip.net\",\n        \"1219@00310.impulsevoip.net\",\n        \"1220@00310.impulsevoip.net\",\n        \"1221@00310.impulsevoip.net\",\n        \"1222@00310.impulsevoip.net\",\n        \"1223@00310.impulsevoip.net\",\n        \"1224@00310.impulsevoip.net\",\n        \"1225@00310.impulsevoip.net\",\n        \"1226@00310.impulsevoip.net\",\n        \"1227@00310.impulsevoip.net\",\n        \"1228@00310.impulsevoip.net\",\n        \"1229@00310.impulsevoip.net\",\n        \"1230@00310.impulsevoip.net\",\n        \"1231@00310.impulsevoip.net\",\n        \"1232@00310.impulsevoip.net\",\n        \"1233@00310.impulsevoip.net\",\n        \"1234@00310.impulsevoip.net\",\n        \"1235@00310.impulsevoip.net\",\n        \"1236@00310.impulsevoip.net\",\n        \"1237@00310.impulsevoip.net\",\n        \"1238@00310.impulsevoip.net\",\n        \"1239@00310.impulsevoip.net\",\n        \"1240@00310.impulsevoip.net\",\n        \"1241@00310.impulsevoip.net\",\n        \"1242@00310.impulsevoip.net\",\n        \"1243@00310.impulsevoip.net\",\n        \"1244@00310.impulsevoip.net\",\n        \"1245@00310.impulsevoip.net\",\n        \"1246@00310.impulsevoip.net\",\n        \"1247@00310.impulsevoip.net\",\n        \"1248@00310.impulsevoip.net\",\n        \"1249@00310.impulsevoip.net\",\n        \"1816@00310.impulsevoip.net\",\n        \"1817@00310.impulsevoip.net\",\n        \"1818@00310.impulsevoip.net\",\n        \"1819@00310.impulsevoip.net\",\n        \"1820@00310.impulsevoip.net\",\n        \"1821@00310.impulsevoip.net\",\n        \"1822@00310.impulsevoip.net\",\n        \"1823@00310.impulsevoip.net\",\n        \"1824@00310.impulsevoip.net\",\n        \"1825@00310.impulsevoip.net\",\n        \"1826@00310.impulsevoip.net\",\n        \"1827@00310.impulsevoip.net\",\n        \"1828@00310.impulsevoip.net\",\n        \"1829@00310.impulsevoip.net\",\n        \"1830@00310.impulsevoip.net\",\n        \"1831@00310.impulsevoip.net\",\n        \"1832@00310.impulsevoip.net\",\n        \"1833@00310.impulsevoip.net\",\n        \"1834@00310.impulsevoip.net\",\n        \"1835@00310.impulsevoip.net\",\n        \"1836@00310.impulsevoip.net\",\n        \"1837@00310.impulsevoip.net\",\n        \"1838@00310.impulsevoip.net\",\n        \"1839@00310.impulsevoip.net\",\n        \"1840@00310.impulsevoip.net\",\n        \"1841@00310.impulsevoip.net\",\n        \"1842@00310.impulsevoip.net\",\n        \"1843@00310.impulsevoip.net\",\n        \"1844@00310.impulsevoip.net\",\n        \"1845@00310.impulsevoip.net\",\n        \"1846@00310.impulsevoip.net\",\n        \"1847@00310.impulsevoip.net\",\n        \"1848@00310.impulsevoip.net\",\n        \"1849@00310.impulsevoip.net\",\n        \"1850@00310.impulsevoip.net\",\n        \"1851@00310.impulsevoip.net\",\n        \"1852@00310.impulsevoip.net\",\n        \"1853@00310.impulsevoip.net\",\n        \"1854@00310.impulsevoip.net\",\n        \"1855@00310.impulsevoip.net\",\n        \"1856@00310.impulsevoip.net\",\n        \"1857@00310.impulsevoip.net\",\n        \"1858@00310.impulsevoip.net\",\n        \"1859@00310.impulsevoip.net\",\n        \"1860@00310.impulsevoip.net\",\n        \"1861@00310.impulsevoip.net\",\n        \"1862@00310.impulsevoip.net\",\n        \"1863@00310.impulsevoip.net\",\n        \"1864@00310.impulsevoip.net\",\n        \"1865@00310.impulsevoip.net\",\n        \"1866@00310.impulsevoip.net\",\n        \"1867@00310.impulsevoip.net\",\n        \"1868@00310.impulsevoip.net\",\n        \"1869@00310.impulsevoip.net\",\n        \"1870@00310.impulsevoip.net\",\n        \"1871@00310.impulsevoip.net\",\n        \"1872@00310.impulsevoip.net\",\n        \"1873@00310.impulsevoip.net\",\n        \"1874@00310.impulsevoip.net\",\n        \"1875@00310.impulsevoip.net\",\n        \"1876@00310.impulsevoip.net\",\n        \"1877@00310.impulsevoip.net\",\n        \"1878@00310.impulsevoip.net\",\n        \"1879@00310.impulsevoip.net\",\n        \"1880@00310.impulsevoip.net\",\n        \"1881@00310.impulsevoip.net\",\n        \"1882@00310.impulsevoip.net\",\n        \"1883@00310.impulsevoip.net\",\n        \"1884@00310.impulsevoip.net\",\n        \"1885@00310.impulsevoip.net\",\n        \"1886@00310.impulsevoip.net\",\n        \"1887@00310.impulsevoip.net\",\n        \"1888@00310.impulsevoip.net\",\n        \"1889@00310.impulsevoip.net\",\n        \"1890@00310.impulsevoip.net\",\n        \"1891@00310.impulsevoip.net\",\n        \"1892@00310.impulsevoip.net\",\n        \"1893@00310.impulsevoip.net\",\n        \"1894@00310.impulsevoip.net\",\n        \"1895@00310.impulsevoip.net\",\n        \"1896@00310.impulsevoip.net\",\n        \"1897@00310.impulsevoip.net\",\n        \"1898@00310.impulsevoip.net\",\n        \"1899@00310.impulsevoip.net\",\n        \"1900@00310.impulsevoip.net\",\n        \"1901@00310.impulsevoip.net\",\n        \"1902@00310.impulsevoip.net\",\n        \"1903@00310.impulsevoip.net\",\n        \"1904@00310.impulsevoip.net\",\n        \"1905@00310.impulsevoip.net\",\n        \"1906@00310.impulsevoip.net\",\n        \"1907@00310.impulsevoip.net\",\n        \"1908@00310.impulsevoip.net\",\n        \"1909@00310.impulsevoip.net\",\n        \"1910@00310.impulsevoip.net\",\n        \"2424@00310.impulsevoip.net\",\n        \"2425@00310.impulsevoip.net\",\n        \"2426@00310.impulsevoip.net\",\n        \"2427@00310.impulsevoip.net\",\n        \"2428@00310.impulsevoip.net\",\n        \"2429@00310.impulsevoip.net\",\n        \"2430@00310.impulsevoip.net\",\n        \"2431@00310.impulsevoip.net\",\n        \"2432@00310.impulsevoip.net\",\n        \"2433@00310.impulsevoip.net\",\n        \"2434@00310.impulsevoip.net\",\n        \"2435@00310.impulsevoip.net\",\n        \"2436@00310.impulsevoip.net\",\n        \"2437@00310.impulsevoip.net\",\n        \"2438@00310.impulsevoip.net\",\n        \"2439@00310.impulsevoip.net\",\n        \"2440@00310.impulsevoip.net\",\n        \"2441@00310.impulsevoip.net\",\n        \"2442@00310.impulsevoip.net\",\n        \"2443@00310.impulsevoip.net\",\n        \"2444@00310.impulsevoip.net\",\n        \"2445@00310.impulsevoip.net\",\n        \"2446@00310.impulsevoip.net\",\n        \"2447@00310.impulsevoip.net\",\n        \"2448@00310.impulsevoip.net\",\n        \"2449@00310.impulsevoip.net\",\n        \"2450@00310.impulsevoip.net\",\n        \"2451@00310.impulsevoip.net\",\n        \"2452@00310.impulsevoip.net\",\n        \"2453@00310.impulsevoip.net\",\n        \"2454@00310.impulsevoip.net\",\n        \"2455@00310.impulsevoip.net\",\n        \"2456@00310.impulsevoip.net\",\n        \"2457@00310.impulsevoip.net\",\n        \"2458@00310.impulsevoip.net\",\n        \"2459@00310.impulsevoip.net\",\n        \"2460@00310.impulsevoip.net\",\n        \"2461@00310.impulsevoip.net\",\n        \"2462@00310.impulsevoip.net\",\n        \"2463@00310.impulsevoip.net\",\n        \"2464@00310.impulsevoip.net\",\n        \"2465@00310.impulsevoip.net\",\n        \"2466@00310.impulsevoip.net\",\n        \"2467@00310.impulsevoip.net\",\n        \"2468@00310.impulsevoip.net\",\n        \"2469@00310.impulsevoip.net\",\n        \"2470@00310.impulsevoip.net\",\n        \"2471@00310.impulsevoip.net\",\n        \"2472@00310.impulsevoip.net\",\n        \"2473@00310.impulsevoip.net\",\n        \"2474@00310.impulsevoip.net\",\n        \"2475@00310.impulsevoip.net\",\n        \"2476@00310.impulsevoip.net\",\n        \"2477@00310.impulsevoip.net\",\n        \"2478@00310.impulsevoip.net\",\n        \"2479@00310.impulsevoip.net\",\n        \"2480@00310.impulsevoip.net\",\n        \"2481@00310.impulsevoip.net\",\n        \"2482@00310.impulsevoip.net\",\n        \"2483@00310.impulsevoip.net\",\n        \"1463@00310.impulsevoip.net\",\n        \"1464@00310.impulsevoip.net\",\n        \"1465@00310.impulsevoip.net\",\n        \"1466@00310.impulsevoip.net\",\n        \"1467@00310.impulsevoip.net\",\n        \"1468@00310.impulsevoip.net\",\n        \"1469@00310.impulsevoip.net\",\n        \"1470@00310.impulsevoip.net\",\n        \"1471@00310.impulsevoip.net\",\n        \"1472@00310.impulsevoip.net\",\n        \"1473@00310.impulsevoip.net\",\n        \"1474@00310.impulsevoip.net\",\n        \"1475@00310.impulsevoip.net\",\n        \"1476@00310.impulsevoip.net\",\n        \"1477@00310.impulsevoip.net\",\n        \"1478@00310.impulsevoip.net\",\n        \"1479@00310.impulsevoip.net\",\n        \"1480@00310.impulsevoip.net\",\n        \"1481@00310.impulsevoip.net\",\n        \"1482@00310.impulsevoip.net\",\n        \"1483@00310.impulsevoip.net\",\n        \"1484@00310.impulsevoip.net\",\n        \"1485@00310.impulsevoip.net\",\n        \"1486@00310.impulsevoip.net\",\n        \"1487@00310.impulsevoip.net\",\n        \"1488@00310.impulsevoip.net\",\n        \"1489@00310.impulsevoip.net\",\n        \"1490@00310.impulsevoip.net\",\n        \"1491@00310.impulsevoip.net\",\n        \"1492@00310.impulsevoip.net\",\n        \"1493@00310.impulsevoip.net\",\n        \"1494@00310.impulsevoip.net\",\n        \"1495@00310.impulsevoip.net\",\n        \"1496@00310.impulsevoip.net\",\n        \"1497@00310.impulsevoip.net\",\n        \"1498@00310.impulsevoip.net\",\n        \"1499@00310.impulsevoip.net\",\n        \"1500@00310.impulsevoip.net\",\n        \"1501@00310.impulsevoip.net\",\n        \"1502@00310.impulsevoip.net\",\n        \"1503@00310.impulsevoip.net\",\n        \"1504@00310.impulsevoip.net\",\n        \"1505@00310.impulsevoip.net\",\n        \"1506@00310.impulsevoip.net\",\n        \"1507@00310.impulsevoip.net\",\n        \"1508@00310.impulsevoip.net\",\n        \"1509@00310.impulsevoip.net\",\n        \"1510@00310.impulsevoip.net\",\n        \"1511@00310.impulsevoip.net\",\n        \"1512@00310.impulsevoip.net\",\n        \"1513@00310.impulsevoip.net\",\n        \"1514@00310.impulsevoip.net\",\n        \"1515@00310.impulsevoip.net\",\n        \"1516@00310.impulsevoip.net\",\n        \"1517@00310.impulsevoip.net\",\n        \"1518@00310.impulsevoip.net\",\n        \"1519@00310.impulsevoip.net\",\n        \"1520@00310.impulsevoip.net\",\n        \"1521@00310.impulsevoip.net\",\n        \"1522@00310.impulsevoip.net\",\n        \"1523@00310.impulsevoip.net\",\n        \"1524@00310.impulsevoip.net\",\n        \"1525@00310.impulsevoip.net\",\n        \"1526@00310.impulsevoip.net\",\n        \"1527@00310.impulsevoip.net\",\n        \"1528@00310.impulsevoip.net\",\n        \"1529@00310.impulsevoip.net\",\n        \"1530@00310.impulsevoip.net\",\n        \"1531@00310.impulsevoip.net\",\n        \"1532@00310.impulsevoip.net\",\n        \"1533@00310.impulsevoip.net\",\n        \"1534@00310.impulsevoip.net\",\n        \"1535@00310.impulsevoip.net\",\n        \"1536@00310.impulsevoip.net\",\n        \"1537@00310.impulsevoip.net\",\n        \"1538@00310.impulsevoip.net\",\n        \"1539@00310.impulsevoip.net\",\n        \"1540@00310.impulsevoip.net\",\n        \"1541@00310.impulsevoip.net\",\n        \"1542@00310.impulsevoip.net\",\n        \"1543@00310.impulsevoip.net\",\n        \"1544@00310.impulsevoip.net\",\n        \"1545@00310.impulsevoip.net\",\n        \"1546@00310.impulsevoip.net\",\n        \"1547@00310.impulsevoip.net\",\n        \"1548@00310.impulsevoip.net\",\n        \"1549@00310.impulsevoip.net\",\n        \"1550@00310.impulsevoip.net\",\n        \"1551@00310.impulsevoip.net\",\n        \"1552@00310.impulsevoip.net\",\n        \"1553@00310.impulsevoip.net\",\n        \"1554@00310.impulsevoip.net\",\n        \"1555@00310.impulsevoip.net\",\n        \"1556@00310.impulsevoip.net\",\n        \"1557@00310.impulsevoip.net\",\n        \"1558@00310.impulsevoip.net\",\n        \"1559@00310.impulsevoip.net\",\n        \"1560@00310.impulsevoip.net\",\n        \"1561@00310.impulsevoip.net\",\n        \"1562@00310.impulsevoip.net\",\n        \"1563@00310.impulsevoip.net\",\n        \"1564@00310.impulsevoip.net\",\n        \"1565@00310.impulsevoip.net\",\n        \"1566@00310.impulsevoip.net\",\n        \"1567@00310.impulsevoip.net\",\n        \"1568@00310.impulsevoip.net\",\n        \"1569@00310.impulsevoip.net\",\n        \"1570@00310.impulsevoip.net\",\n        \"1571@00310.impulsevoip.net\",\n        \"1572@00310.impulsevoip.net\",\n        \"1573@00310.impulsevoip.net\",\n        \"1574@00310.impulsevoip.net\",\n        \"1575@00310.impulsevoip.net\",\n        \"1576@00310.impulsevoip.net\",\n        \"1577@00310.impulsevoip.net\",\n        \"1578@00310.impulsevoip.net\",\n        \"1579@00310.impulsevoip.net\",\n        \"1580@00310.impulsevoip.net\",\n        \"1581@00310.impulsevoip.net\",\n        \"1582@00310.impulsevoip.net\",\n        \"1583@00310.impulsevoip.net\",\n        \"1584@00310.impulsevoip.net\",\n        \"1585@00310.impulsevoip.net\",\n        \"1586@00310.impulsevoip.net\",\n        \"1587@00310.impulsevoip.net\",\n        \"1588@00310.impulsevoip.net\",\n        \"1589@00310.impulsevoip.net\",\n        \"1590@00310.impulsevoip.net\",\n        \"1591@00310.impulsevoip.net\",\n        \"1592@00310.impulsevoip.net\",\n        \"1593@00310.impulsevoip.net\",\n        \"1594@00310.impulsevoip.net\",\n        \"1595@00310.impulsevoip.net\",\n        \"1596@00310.impulsevoip.net\",\n        \"1597@00310.impulsevoip.net\",\n        \"1598@00310.impulsevoip.net\",\n        \"1599@00310.impulsevoip.net\",\n        \"1600@00310.impulsevoip.net\",\n        \"1601@00310.impulsevoip.net\",\n        \"1602@00310.impulsevoip.net\",\n        \"1603@00310.impulsevoip.net\",\n        \"1604@00310.impulsevoip.net\",\n        \"1605@00310.impulsevoip.net\",\n        \"1606@00310.impulsevoip.net\",\n        \"1607@00310.impulsevoip.net\",\n        \"1608@00310.impulsevoip.net\",\n        \"1609@00310.impulsevoip.net\",\n        \"1610@00310.impulsevoip.net\",\n        \"1611@00310.impulsevoip.net\",\n        \"1612@00310.impulsevoip.net\",\n        \"1613@00310.impulsevoip.net\",\n        \"1614@00310.impulsevoip.net\",\n        \"1615@00310.impulsevoip.net\",\n        \"1616@00310.impulsevoip.net\",\n        \"1617@00310.impulsevoip.net\",\n        \"1618@00310.impulsevoip.net\",\n        \"1619@00310.impulsevoip.net\",\n        \"1620@00310.impulsevoip.net\",\n        \"1621@00310.impulsevoip.net\",\n        \"1622@00310.impulsevoip.net\",\n        \"1623@00310.impulsevoip.net\",\n        \"1624@00310.impulsevoip.net\",\n        \"1625@00310.impulsevoip.net\",\n        \"1626@00310.impulsevoip.net\",\n        \"1627@00310.impulsevoip.net\",\n        \"1628@00310.impulsevoip.net\",\n        \"1629@00310.impulsevoip.net\",\n        \"1630@00310.impulsevoip.net\",\n        \"1631@00310.impulsevoip.net\",\n        \"1632@00310.impulsevoip.net\",\n        \"1633@00310.impulsevoip.net\",\n        \"1634@00310.impulsevoip.net\",\n        \"1635@00310.impulsevoip.net\",\n        \"1636@00310.impulsevoip.net\",\n        \"1637@00310.impulsevoip.net\",\n        \"1638@00310.impulsevoip.net\",\n        \"1639@00310.impulsevoip.net\",\n        \"1640@00310.impulsevoip.net\",\n        \"1641@00310.impulsevoip.net\",\n        \"1642@00310.impulsevoip.net\",\n        \"1643@00310.impulsevoip.net\",\n        \"1644@00310.impulsevoip.net\",\n        \"1645@00310.impulsevoip.net\",\n        \"1646@00310.impulsevoip.net\",\n        \"1647@00310.impulsevoip.net\",\n        \"1648@00310.impulsevoip.net\",\n        \"1649@00310.impulsevoip.net\",\n        \"1650@00310.impulsevoip.net\",\n        \"1651@00310.impulsevoip.net\",\n        \"1652@00310.impulsevoip.net\",\n        \"1653@00310.impulsevoip.net\",\n        \"1654@00310.impulsevoip.net\",\n        \"1655@00310.impulsevoip.net\",\n        \"1656@00310.impulsevoip.net\",\n        \"1657@00310.impulsevoip.net\",\n        \"1658@00310.impulsevoip.net\",\n        \"1659@00310.impulsevoip.net\",\n        \"1660@00310.impulsevoip.net\",\n        \"1661@00310.impulsevoip.net\",\n        \"1662@00310.impulsevoip.net\",\n        \"1663@00310.impulsevoip.net\",\n        \"1664@00310.impulsevoip.net\",\n        \"1665@00310.impulsevoip.net\",\n        \"1666@00310.impulsevoip.net\",\n        \"1667@00310.impulsevoip.net\",\n        \"1668@00310.impulsevoip.net\",\n        \"1669@00310.impulsevoip.net\",\n        \"1670@00310.impulsevoip.net\",\n        \"1671@00310.impulsevoip.net\",\n        \"1672@00310.impulsevoip.net\",\n        \"1673@00310.impulsevoip.net\",\n        \"1674@00310.impulsevoip.net\",\n        \"1675@00310.impulsevoip.net\",\n        \"1676@00310.impulsevoip.net\",\n        \"1677@00310.impulsevoip.net\",\n        \"1678@00310.impulsevoip.net\",\n        \"1679@00310.impulsevoip.net\",\n        \"1680@00310.impulsevoip.net\",\n        \"1681@00310.impulsevoip.net\",\n        \"1682@00310.impulsevoip.net\",\n        \"1683@00310.impulsevoip.net\",\n        \"1684@00310.impulsevoip.net\",\n        \"1685@00310.impulsevoip.net\",\n        \"1686@00310.impulsevoip.net\",\n        \"1687@00310.impulsevoip.net\",\n        \"1688@00310.impulsevoip.net\",\n        \"1689@00310.impulsevoip.net\",\n        \"1690@00310.impulsevoip.net\",\n        \"1691@00310.impulsevoip.net\",\n        \"1692@00310.impulsevoip.net\",\n        \"1693@00310.impulsevoip.net\",\n        \"1694@00310.impulsevoip.net\",\n        \"1695@00310.impulsevoip.net\",\n        \"1696@00310.impulsevoip.net\",\n        \"1697@00310.impulsevoip.net\",\n        \"1698@00310.impulsevoip.net\",\n        \"1699@00310.impulsevoip.net\",\n        \"1700@00310.impulsevoip.net\",\n        \"1701@00310.impulsevoip.net\",\n        \"1702@00310.impulsevoip.net\",\n        \"1703@00310.impulsevoip.net\",\n        \"1704@00310.impulsevoip.net\",\n        \"1705@00310.impulsevoip.net\",\n        \"1706@00310.impulsevoip.net\",\n        \"1707@00310.impulsevoip.net\",\n        \"1708@00310.impulsevoip.net\",\n        \"1709@00310.impulsevoip.net\",\n        \"1710@00310.impulsevoip.net\",\n        \"1711@00310.impulsevoip.net\",\n        \"1712@00310.impulsevoip.net\",\n        \"1713@00310.impulsevoip.net\",\n        \"1714@00310.impulsevoip.net\",\n        \"1715@00310.impulsevoip.net\",\n        \"1716@00310.impulsevoip.net\",\n        \"1717@00310.impulsevoip.net\",\n        \"1972@00310.impulsevoip.net\",\n        \"1973@00310.impulsevoip.net\",\n        \"1974@00310.impulsevoip.net\",\n        \"1975@00310.impulsevoip.net\",\n        \"1976@00310.impulsevoip.net\",\n        \"1977@00310.impulsevoip.net\",\n        \"1978@00310.impulsevoip.net\",\n        \"1979@00310.impulsevoip.net\",\n        \"1980@00310.impulsevoip.net\",\n        \"1981@00310.impulsevoip.net\",\n        \"1982@00310.impulsevoip.net\",\n        \"1983@00310.impulsevoip.net\",\n        \"1984@00310.impulsevoip.net\",\n        \"1985@00310.impulsevoip.net\",\n        \"1986@00310.impulsevoip.net\",\n        \"1987@00310.impulsevoip.net\",\n        \"1988@00310.impulsevoip.net\",\n        \"1989@00310.impulsevoip.net\",\n        \"1990@00310.impulsevoip.net\",\n        \"1991@00310.impulsevoip.net\",\n        \"1992@00310.impulsevoip.net\",\n        \"1993@00310.impulsevoip.net\",\n        \"1994@00310.impulsevoip.net\",\n        \"1995@00310.impulsevoip.net\",\n        \"1996@00310.impulsevoip.net\",\n        \"1997@00310.impulsevoip.net\",\n        \"1998@00310.impulsevoip.net\",\n        \"1999@00310.impulsevoip.net\",\n        \"2000@00310.impulsevoip.net\",\n        \"2001@00310.impulsevoip.net\",\n        \"2002@00310.impulsevoip.net\",\n        \"2003@00310.impulsevoip.net\",\n        \"2004@00310.impulsevoip.net\",\n        \"2005@00310.impulsevoip.net\",\n        \"2006@00310.impulsevoip.net\",\n        \"2007@00310.impulsevoip.net\",\n        \"2008@00310.impulsevoip.net\",\n        \"2009@00310.impulsevoip.net\",\n        \"2010@00310.impulsevoip.net\",\n        \"2011@00310.impulsevoip.net\",\n        \"2012@00310.impulsevoip.net\",\n        \"2013@00310.impulsevoip.net\",\n        \"2014@00310.impulsevoip.net\",\n        \"2015@00310.impulsevoip.net\",\n        \"2016@00310.impulsevoip.net\",\n        \"2017@00310.impulsevoip.net\",\n        \"2018@00310.impulsevoip.net\",\n        \"2019@00310.impulsevoip.net\",\n        \"2020@00310.impulsevoip.net\",\n        \"2021@00310.impulsevoip.net\",\n        \"2022@00310.impulsevoip.net\",\n        \"2023@00310.impulsevoip.net\",\n        \"2024@00310.impulsevoip.net\",\n        \"2025@00310.impulsevoip.net\",\n        \"2026@00310.impulsevoip.net\",\n        \"2027@00310.impulsevoip.net\",\n        \"2028@00310.impulsevoip.net\",\n        \"2029@00310.impulsevoip.net\",\n        \"2030@00310.impulsevoip.net\",\n        \"2031@00310.impulsevoip.net\",\n        \"2032@00310.impulsevoip.net\",\n        \"2033@00310.impulsevoip.net\",\n        \"2034@00310.impulsevoip.net\",\n        \"2035@00310.impulsevoip.net\",\n        \"2036@00310.impulsevoip.net\",\n        \"2037@00310.impulsevoip.net\",\n        \"2038@00310.impulsevoip.net\",\n        \"2039@00310.impulsevoip.net\",\n        \"2040@00310.impulsevoip.net\",\n        \"2041@00310.impulsevoip.net\",\n        \"2042@00310.impulsevoip.net\",\n        \"2043@00310.impulsevoip.net\",\n        \"2044@00310.impulsevoip.net\",\n        \"2045@00310.impulsevoip.net\",\n        \"2046@00310.impulsevoip.net\",\n        \"2047@00310.impulsevoip.net\",\n        \"2048@00310.impulsevoip.net\",\n        \"2049@00310.impulsevoip.net\",\n        \"2050@00310.impulsevoip.net\",\n        \"2051@00310.impulsevoip.net\",\n        \"2052@00310.impulsevoip.net\",\n        \"2053@00310.impulsevoip.net\",\n        \"2054@00310.impulsevoip.net\",\n        \"2055@00310.impulsevoip.net\",\n        \"2056@00310.impulsevoip.net\",\n        \"2057@00310.impulsevoip.net\",\n        \"2058@00310.impulsevoip.net\",\n        \"2059@00310.impulsevoip.net\",\n        \"2060@00310.impulsevoip.net\",\n        \"2061@00310.impulsevoip.net\",\n        \"2062@00310.impulsevoip.net\",\n        \"2063@00310.impulsevoip.net\",\n        \"2064@00310.impulsevoip.net\",\n        \"2065@00310.impulsevoip.net\",\n        \"2066@00310.impulsevoip.net\",\n        \"2067@00310.impulsevoip.net\",\n        \"2068@00310.impulsevoip.net\",\n        \"2069@00310.impulsevoip.net\",\n        \"2070@00310.impulsevoip.net\",\n        \"2071@00310.impulsevoip.net\",\n        \"2072@00310.impulsevoip.net\",\n        \"2073@00310.impulsevoip.net\",\n        \"2074@00310.impulsevoip.net\",\n        \"2075@00310.impulsevoip.net\",\n        \"2076@00310.impulsevoip.net\",\n        \"2077@00310.impulsevoip.net\",\n        \"2078@00310.impulsevoip.net\",\n        \"2079@00310.impulsevoip.net\",\n        \"2080@00310.impulsevoip.net\",\n        \"2081@00310.impulsevoip.net\",\n        \"2082@00310.impulsevoip.net\",\n        \"2083@00310.impulsevoip.net\",\n        \"2084@00310.impulsevoip.net\",\n        \"2085@00310.impulsevoip.net\",\n        \"2086@00310.impulsevoip.net\",\n        \"2087@00310.impulsevoip.net\",\n        \"2088@00310.impulsevoip.net\",\n        \"2089@00310.impulsevoip.net\",\n        \"2090@00310.impulsevoip.net\",\n        \"2091@00310.impulsevoip.net\",\n        \"2092@00310.impulsevoip.net\",\n        \"2093@00310.impulsevoip.net\",\n        \"2094@00310.impulsevoip.net\",\n        \"2095@00310.impulsevoip.net\",\n        \"2096@00310.impulsevoip.net\",\n        \"2097@00310.impulsevoip.net\",\n        \"2098@00310.impulsevoip.net\",\n        \"2099@00310.impulsevoip.net\",\n        \"2100@00310.impulsevoip.net\",\n        \"2101@00310.impulsevoip.net\",\n        \"2102@00310.impulsevoip.net\",\n        \"2103@00310.impulsevoip.net\",\n        \"2104@00310.impulsevoip.net\",\n        \"2105@00310.impulsevoip.net\",\n        \"2106@00310.impulsevoip.net\",\n        \"2107@00310.impulsevoip.net\",\n        \"2108@00310.impulsevoip.net\",\n        \"2109@00310.impulsevoip.net\",\n        \"2110@00310.impulsevoip.net\",\n        \"2111@00310.impulsevoip.net\",\n        \"2112@00310.impulsevoip.net\",\n        \"2113@00310.impulsevoip.net\",\n        \"2114@00310.impulsevoip.net\",\n        \"2115@00310.impulsevoip.net\",\n        \"2116@00310.impulsevoip.net\",\n        \"2117@00310.impulsevoip.net\",\n        \"2118@00310.impulsevoip.net\",\n        \"2119@00310.impulsevoip.net\",\n        \"2120@00310.impulsevoip.net\",\n        \"2121@00310.impulsevoip.net\",\n        \"2122@00310.impulsevoip.net\",\n        \"2123@00310.impulsevoip.net\",\n        \"2124@00310.impulsevoip.net\",\n        \"2125@00310.impulsevoip.net\",\n        \"2126@00310.impulsevoip.net\",\n        \"2127@00310.impulsevoip.net\",\n        \"2128@00310.impulsevoip.net\",\n        \"2129@00310.impulsevoip.net\",\n        \"2130@00310.impulsevoip.net\",\n        \"2131@00310.impulsevoip.net\",\n        \"2132@00310.impulsevoip.net\",\n        \"2133@00310.impulsevoip.net\",\n        \"2134@00310.impulsevoip.net\",\n        \"2135@00310.impulsevoip.net\",\n        \"2136@00310.impulsevoip.net\",\n        \"2137@00310.impulsevoip.net\",\n        \"2138@00310.impulsevoip.net\",\n        \"2139@00310.impulsevoip.net\",\n        \"2140@00310.impulsevoip.net\",\n        \"2141@00310.impulsevoip.net\",\n        \"2142@00310.impulsevoip.net\",\n        \"2143@00310.impulsevoip.net\",\n        \"2144@00310.impulsevoip.net\",\n        \"2145@00310.impulsevoip.net\",\n        \"2146@00310.impulsevoip.net\",\n        \"2147@00310.impulsevoip.net\",\n        \"2148@00310.impulsevoip.net\",\n        \"2149@00310.impulsevoip.net\",\n        \"2150@00310.impulsevoip.net\",\n        \"2151@00310.impulsevoip.net\",\n        \"2152@00310.impulsevoip.net\",\n        \"2153@00310.impulsevoip.net\",\n        \"2154@00310.impulsevoip.net\",\n        \"2155@00310.impulsevoip.net\",\n        \"2156@00310.impulsevoip.net\",\n        \"2157@00310.impulsevoip.net\",\n        \"2158@00310.impulsevoip.net\",\n        \"2159@00310.impulsevoip.net\",\n        \"2160@00310.impulsevoip.net\",\n        \"2161@00310.impulsevoip.net\",\n        \"2162@00310.impulsevoip.net\",\n        \"2163@00310.impulsevoip.net\",\n        \"2164@00310.impulsevoip.net\",\n        \"2165@00310.impulsevoip.net\",\n        \"2166@00310.impulsevoip.net\",\n        \"2167@00310.impulsevoip.net\",\n        \"2680@00310.impulsevoip.net\",\n        \"2681@00310.impulsevoip.net\",\n        \"2682@00310.impulsevoip.net\",\n        \"2683@00310.impulsevoip.net\",\n        \"2684@00310.impulsevoip.net\",\n        \"2685@00310.impulsevoip.net\",\n        \"2686@00310.impulsevoip.net\",\n        \"2687@00310.impulsevoip.net\",\n        \"2688@00310.impulsevoip.net\",\n        \"2689@00310.impulsevoip.net\",\n        \"2690@00310.impulsevoip.net\",\n        \"2691@00310.impulsevoip.net\",\n        \"2692@00310.impulsevoip.net\",\n        \"2693@00310.impulsevoip.net\",\n        \"2694@00310.impulsevoip.net\",\n        \"2695@00310.impulsevoip.net\",\n        \"2696@00310.impulsevoip.net\",\n        \"2697@00310.impulsevoip.net\",\n        \"2698@00310.impulsevoip.net\",\n        \"2699@00310.impulsevoip.net\",\n        \"2700@00310.impulsevoip.net\",\n        \"2701@00310.impulsevoip.net\",\n        \"2702@00310.impulsevoip.net\",\n        \"2703@00310.impulsevoip.net\",\n        \"2704@00310.impulsevoip.net\",\n        \"2705@00310.impulsevoip.net\",\n        \"2706@00310.impulsevoip.net\",\n        \"2707@00310.impulsevoip.net\",\n        \"2708@00310.impulsevoip.net\",\n        \"2709@00310.impulsevoip.net\",\n        \"2710@00310.impulsevoip.net\",\n        \"2711@00310.impulsevoip.net\",\n        \"2712@00310.impulsevoip.net\",\n        \"2713@00310.impulsevoip.net\",\n        \"2714@00310.impulsevoip.net\",\n        \"2715@00310.impulsevoip.net\",\n        \"2716@00310.impulsevoip.net\",\n        \"2717@00310.impulsevoip.net\",\n        \"2718@00310.impulsevoip.net\",\n        \"2719@00310.impulsevoip.net\",\n        \"2720@00310.impulsevoip.net\",\n        \"2721@00310.impulsevoip.net\",\n        \"2722@00310.impulsevoip.net\",\n        \"2723@00310.impulsevoip.net\",\n        \"2724@00310.impulsevoip.net\",\n        \"2725@00310.impulsevoip.net\",\n        \"2726@00310.impulsevoip.net\",\n        \"2727@00310.impulsevoip.net\",\n        \"2728@00310.impulsevoip.net\",\n        \"2729@00310.impulsevoip.net\",\n        \"2730@00310.impulsevoip.net\",\n        \"2731@00310.impulsevoip.net\",\n        \"2732@00310.impulsevoip.net\",\n        \"2733@00310.impulsevoip.net\",\n        \"2734@00310.impulsevoip.net\",\n        \"2735@00310.impulsevoip.net\",\n        \"2736@00310.impulsevoip.net\",\n        \"2737@00310.impulsevoip.net\",\n        \"2738@00310.impulsevoip.net\",\n        \"2739@00310.impulsevoip.net\",\n        \"2740@00310.impulsevoip.net\",\n        \"2741@00310.impulsevoip.net\",\n        \"2742@00310.impulsevoip.net\",\n        \"2743@00310.impulsevoip.net\",\n        \"2744@00310.impulsevoip.net\",\n        \"2745@00310.impulsevoip.net\",\n        \"2746@00310.impulsevoip.net\",\n        \"2747@00310.impulsevoip.net\",\n        \"2748@00310.impulsevoip.net\",\n        \"2749@00310.impulsevoip.net\",\n        \"2750@00310.impulsevoip.net\",\n        \"2751@00310.impulsevoip.net\",\n        \"2752@00310.impulsevoip.net\",\n        \"2753@00310.impulsevoip.net\",\n        \"2754@00310.impulsevoip.net\",\n        \"2755@00310.impulsevoip.net\",\n        \"2756@00310.impulsevoip.net\",\n        \"2757@00310.impulsevoip.net\",\n        \"2758@00310.impulsevoip.net\",\n        \"2759@00310.impulsevoip.net\",\n        \"2760@00310.impulsevoip.net\",\n        \"2761@00310.impulsevoip.net\",\n        \"2762@00310.impulsevoip.net\",\n        \"2763@00310.impulsevoip.net\",\n        \"2764@00310.impulsevoip.net\",\n        \"2765@00310.impulsevoip.net\",\n        \"2766@00310.impulsevoip.net\",\n        \"2767@00310.impulsevoip.net\",\n        \"2768@00310.impulsevoip.net\",\n        \"2769@00310.impulsevoip.net\",\n        \"2770@00310.impulsevoip.net\",\n        \"2771@00310.impulsevoip.net\",\n        \"2772@00310.impulsevoip.net\",\n        \"2773@00310.impulsevoip.net\",\n        \"2774@00310.impulsevoip.net\",\n        \"2775@00310.impulsevoip.net\",\n        \"2776@00310.impulsevoip.net\",\n        \"2777@00310.impulsevoip.net\",\n        \"2778@00310.impulsevoip.net\",\n        \"2779@00310.impulsevoip.net\",\n        \"2780@00310.impulsevoip.net\",\n        \"2781@00310.impulsevoip.net\",\n        \"2782@00310.impulsevoip.net\",\n        \"2783@00310.impulsevoip.net\",\n        \"2784@00310.impulsevoip.net\",\n        \"2785@00310.impulsevoip.net\",\n        \"2786@00310.impulsevoip.net\",\n        \"2787@00310.impulsevoip.net\",\n        \"2788@00310.impulsevoip.net\",\n        \"2789@00310.impulsevoip.net\",\n        \"2790@00310.impulsevoip.net\",\n        \"2791@00310.impulsevoip.net\",\n        \"2792@00310.impulsevoip.net\",\n        \"2793@00310.impulsevoip.net\",\n        \"2794@00310.impulsevoip.net\",\n        \"2795@00310.impulsevoip.net\",\n        \"2796@00310.impulsevoip.net\",\n        \"2797@00310.impulsevoip.net\",\n        \"2798@00310.impulsevoip.net\",\n        \"2799@00310.impulsevoip.net\",\n        \"2800@00310.impulsevoip.net\",\n        \"2801@00310.impulsevoip.net\",\n        \"2802@00310.impulsevoip.net\",\n        \"2803@00310.impulsevoip.net\",\n        \"2804@00310.impulsevoip.net\",\n        \"2805@00310.impulsevoip.net\",\n        \"2806@00310.impulsevoip.net\",\n        \"2807@00310.impulsevoip.net\",\n        \"2808@00310.impulsevoip.net\",\n        \"2809@00310.impulsevoip.net\",\n        \"2810@00310.impulsevoip.net\",\n        \"2811@00310.impulsevoip.net\",\n        \"2812@00310.impulsevoip.net\",\n        \"2813@00310.impulsevoip.net\",\n        \"2814@00310.impulsevoip.net\",\n        \"2815@00310.impulsevoip.net\",\n        \"2816@00310.impulsevoip.net\",\n        \"2817@00310.impulsevoip.net\",\n        \"2818@00310.impulsevoip.net\",\n        \"2819@00310.impulsevoip.net\",\n        \"2820@00310.impulsevoip.net\",\n        \"2821@00310.impulsevoip.net\",\n        \"2822@00310.impulsevoip.net\",\n        \"2823@00310.impulsevoip.net\",\n        \"2824@00310.impulsevoip.net\",\n        \"2825@00310.impulsevoip.net\",\n        \"2826@00310.impulsevoip.net\",\n        \"2827@00310.impulsevoip.net\",\n        \"2828@00310.impulsevoip.net\",\n        \"2829@00310.impulsevoip.net\",\n        \"2830@00310.impulsevoip.net\",\n        \"2831@00310.impulsevoip.net\",\n        \"2832@00310.impulsevoip.net\",\n        \"2833@00310.impulsevoip.net\",\n        \"2834@00310.impulsevoip.net\",\n        \"2835@00310.impulsevoip.net\",\n        \"2836@00310.impulsevoip.net\",\n        \"2837@00310.impulsevoip.net\",\n        \"2838@00310.impulsevoip.net\",\n        \"2839@00310.impulsevoip.net\",\n        \"2840@00310.impulsevoip.net\",\n        \"2841@00310.impulsevoip.net\",\n        \"2842@00310.impulsevoip.net\",\n        \"2843@00310.impulsevoip.net\",\n        \"2844@00310.impulsevoip.net\",\n        \"2845@00310.impulsevoip.net\",\n        \"2846@00310.impulsevoip.net\",\n        \"2847@00310.impulsevoip.net\",\n        \"2848@00310.impulsevoip.net\",\n        \"2849@00310.impulsevoip.net\",\n        \"2850@00310.impulsevoip.net\",\n        \"2851@00310.impulsevoip.net\",\n        \"2852@00310.impulsevoip.net\",\n        \"2853@00310.impulsevoip.net\",\n        \"2854@00310.impulsevoip.net\",\n        \"2855@00310.impulsevoip.net\",\n        \"2856@00310.impulsevoip.net\",\n        \"2857@00310.impulsevoip.net\",\n        \"2858@00310.impulsevoip.net\",\n        \"2859@00310.impulsevoip.net\",\n        \"2860@00310.impulsevoip.net\",\n        \"2861@00310.impulsevoip.net\",\n        \"2862@00310.impulsevoip.net\",\n        \"2863@00310.impulsevoip.net\",\n        \"2864@00310.impulsevoip.net\",\n        \"2865@00310.impulsevoip.net\",\n        \"2866@00310.impulsevoip.net\",\n        \"2867@00310.impulsevoip.net\",\n        \"2868@00310.impulsevoip.net\",\n        \"2869@00310.impulsevoip.net\",\n        \"2870@00310.impulsevoip.net\",\n        \"2871@00310.impulsevoip.net\",\n        \"2872@00310.impulsevoip.net\",\n        \"2873@00310.impulsevoip.net\",\n        \"2874@00310.impulsevoip.net\",\n        \"2875@00310.impulsevoip.net\",\n        \"2876@00310.impulsevoip.net\",\n        \"2877@00310.impulsevoip.net\",\n        \"2878@00310.impulsevoip.net\",\n        \"2879@00310.impulsevoip.net\",\n        \"2880@00310.impulsevoip.net\",\n        \"2881@00310.impulsevoip.net\",\n        \"2882@00310.impulsevoip.net\",\n        \"2883@00310.impulsevoip.net\",\n        \"2884@00310.impulsevoip.net\",\n        \"2885@00310.impulsevoip.net\",\n        \"2886@00310.impulsevoip.net\",\n        \"2887@00310.impulsevoip.net\",\n        \"2888@00310.impulsevoip.net\",\n        \"2889@00310.impulsevoip.net\",\n        \"2890@00310.impulsevoip.net\",\n        \"2891@00310.impulsevoip.net\",\n        \"2892@00310.impulsevoip.net\",\n        \"2893@00310.impulsevoip.net\",\n        \"2894@00310.impulsevoip.net\",\n        \"2895@00310.impulsevoip.net\",\n        \"2896@00310.impulsevoip.net\",\n        \"2897@00310.impulsevoip.net\",\n        \"2898@00310.impulsevoip.net\",\n        \"2899@00310.impulsevoip.net\",\n        \"2900@00310.impulsevoip.net\",\n        \"2901@00310.impulsevoip.net\",\n        \"2902@00310.impulsevoip.net\",\n        \"2903@00310.impulsevoip.net\",\n        \"2904@00310.impulsevoip.net\",\n        \"2905@00310.impulsevoip.net\",\n        \"2906@00310.impulsevoip.net\",\n        \"2907@00310.impulsevoip.net\",\n        \"2908@00310.impulsevoip.net\",\n        \"2909@00310.impulsevoip.net\",\n        \"2910@00310.impulsevoip.net\",\n        \"2168@00310.impulsevoip.net\",\n        \"2169@00310.impulsevoip.net\",\n        \"2170@00310.impulsevoip.net\",\n        \"2171@00310.impulsevoip.net\",\n        \"2172@00310.impulsevoip.net\",\n        \"2173@00310.impulsevoip.net\",\n        \"2174@00310.impulsevoip.net\",\n        \"2175@00310.impulsevoip.net\",\n        \"2176@00310.impulsevoip.net\",\n        \"2177@00310.impulsevoip.net\",\n        \"2178@00310.impulsevoip.net\",\n        \"2179@00310.impulsevoip.net\",\n        \"2180@00310.impulsevoip.net\",\n        \"2181@00310.impulsevoip.net\",\n        \"2182@00310.impulsevoip.net\",\n        \"2183@00310.impulsevoip.net\",\n        \"2184@00310.impulsevoip.net\",\n        \"2185@00310.impulsevoip.net\",\n        \"2186@00310.impulsevoip.net\",\n        \"2187@00310.impulsevoip.net\",\n        \"2188@00310.impulsevoip.net\",\n        \"2189@00310.impulsevoip.net\",\n        \"2190@00310.impulsevoip.net\",\n        \"2191@00310.impulsevoip.net\",\n        \"2192@00310.impulsevoip.net\",\n        \"2193@00310.impulsevoip.net\",\n        \"2194@00310.impulsevoip.net\",\n        \"2195@00310.impulsevoip.net\",\n        \"2196@00310.impulsevoip.net\",\n        \"2197@00310.impulsevoip.net\",\n        \"2198@00310.impulsevoip.net\",\n        \"2199@00310.impulsevoip.net\",\n        \"2200@00310.impulsevoip.net\",\n        \"2201@00310.impulsevoip.net\",\n        \"2202@00310.impulsevoip.net\",\n        \"2203@00310.impulsevoip.net\",\n        \"2204@00310.impulsevoip.net\",\n        \"2205@00310.impulsevoip.net\",\n        \"2206@00310.impulsevoip.net\",\n        \"2207@00310.impulsevoip.net\",\n        \"2208@00310.impulsevoip.net\",\n        \"2209@00310.impulsevoip.net\",\n        \"2210@00310.impulsevoip.net\",\n        \"2211@00310.impulsevoip.net\",\n        \"2212@00310.impulsevoip.net\",\n        \"2213@00310.impulsevoip.net\",\n        \"2214@00310.impulsevoip.net\",\n        \"2215@00310.impulsevoip.net\",\n        \"2216@00310.impulsevoip.net\",\n        \"2217@00310.impulsevoip.net\",\n        \"2218@00310.impulsevoip.net\",\n        \"2219@00310.impulsevoip.net\",\n        \"2220@00310.impulsevoip.net\",\n        \"2221@00310.impulsevoip.net\",\n        \"2222@00310.impulsevoip.net\",\n        \"2223@00310.impulsevoip.net\",\n        \"2224@00310.impulsevoip.net\",\n        \"2225@00310.impulsevoip.net\",\n        \"2226@00310.impulsevoip.net\",\n        \"2227@00310.impulsevoip.net\",\n        \"2228@00310.impulsevoip.net\",\n        \"2229@00310.impulsevoip.net\",\n        \"2230@00310.impulsevoip.net\",\n        \"2231@00310.impulsevoip.net\",\n        \"2232@00310.impulsevoip.net\",\n        \"2233@00310.impulsevoip.net\",\n        \"2234@00310.impulsevoip.net\",\n        \"2235@00310.impulsevoip.net\",\n        \"2236@00310.impulsevoip.net\",\n        \"2237@00310.impulsevoip.net\",\n        \"2238@00310.impulsevoip.net\",\n        \"2239@00310.impulsevoip.net\",\n        \"2240@00310.impulsevoip.net\",\n        \"2241@00310.impulsevoip.net\",\n        \"2242@00310.impulsevoip.net\",\n        \"2243@00310.impulsevoip.net\",\n        \"2244@00310.impulsevoip.net\",\n        \"2245@00310.impulsevoip.net\",\n        \"2246@00310.impulsevoip.net\",\n        \"2247@00310.impulsevoip.net\",\n        \"2248@00310.impulsevoip.net\",\n        \"2249@00310.impulsevoip.net\",\n        \"2250@00310.impulsevoip.net\",\n        \"2251@00310.impulsevoip.net\",\n        \"2252@00310.impulsevoip.net\",\n        \"2253@00310.impulsevoip.net\",\n        \"2254@00310.impulsevoip.net\",\n        \"2255@00310.impulsevoip.net\",\n        \"2256@00310.impulsevoip.net\",\n        \"2257@00310.impulsevoip.net\",\n        \"2258@00310.impulsevoip.net\",\n        \"2259@00310.impulsevoip.net\",\n        \"2260@00310.impulsevoip.net\",\n        \"2261@00310.impulsevoip.net\",\n        \"2262@00310.impulsevoip.net\",\n        \"2263@00310.impulsevoip.net\",\n        \"2264@00310.impulsevoip.net\",\n        \"2265@00310.impulsevoip.net\",\n        \"2266@00310.impulsevoip.net\",\n        \"2267@00310.impulsevoip.net\",\n        \"2268@00310.impulsevoip.net\",\n        \"2269@00310.impulsevoip.net\",\n        \"2270@00310.impulsevoip.net\",\n        \"2271@00310.impulsevoip.net\",\n        \"2272@00310.impulsevoip.net\",\n        \"2273@00310.impulsevoip.net\",\n        \"2274@00310.impulsevoip.net\",\n        \"2275@00310.impulsevoip.net\",\n        \"2276@00310.impulsevoip.net\",\n        \"2277@00310.impulsevoip.net\",\n        \"2278@00310.impulsevoip.net\",\n        \"2279@00310.impulsevoip.net\",\n        \"2280@00310.impulsevoip.net\",\n        \"2281@00310.impulsevoip.net\",\n        \"2282@00310.impulsevoip.net\",\n        \"2283@00310.impulsevoip.net\",\n        \"2284@00310.impulsevoip.net\",\n        \"2285@00310.impulsevoip.net\",\n        \"2286@00310.impulsevoip.net\",\n        \"2287@00310.impulsevoip.net\",\n        \"2288@00310.impulsevoip.net\",\n        \"2289@00310.impulsevoip.net\",\n        \"2290@00310.impulsevoip.net\",\n        \"2291@00310.impulsevoip.net\",\n        \"2292@00310.impulsevoip.net\",\n        \"2293@00310.impulsevoip.net\",\n        \"2294@00310.impulsevoip.net\",\n        \"2295@00310.impulsevoip.net\",\n        \"2296@00310.impulsevoip.net\",\n        \"2297@00310.impulsevoip.net\",\n        \"2298@00310.impulsevoip.net\",\n        \"2299@00310.impulsevoip.net\",\n        \"2300@00310.impulsevoip.net\",\n        \"2301@00310.impulsevoip.net\",\n        \"2302@00310.impulsevoip.net\",\n        \"2303@00310.impulsevoip.net\",\n        \"2304@00310.impulsevoip.net\",\n        \"2305@00310.impulsevoip.net\",\n        \"2306@00310.impulsevoip.net\",\n        \"2307@00310.impulsevoip.net\",\n        \"2308@00310.impulsevoip.net\",\n        \"2309@00310.impulsevoip.net\",\n        \"2310@00310.impulsevoip.net\",\n        \"2311@00310.impulsevoip.net\",\n        \"2312@00310.impulsevoip.net\",\n        \"2313@00310.impulsevoip.net\",\n        \"2314@00310.impulsevoip.net\",\n        \"2315@00310.impulsevoip.net\",\n        \"2316@00310.impulsevoip.net\",\n        \"2317@00310.impulsevoip.net\",\n        \"2318@00310.impulsevoip.net\",\n        \"2319@00310.impulsevoip.net\",\n        \"2320@00310.impulsevoip.net\",\n        \"2321@00310.impulsevoip.net\",\n        \"2322@00310.impulsevoip.net\",\n        \"2323@00310.impulsevoip.net\",\n        \"2324@00310.impulsevoip.net\",\n        \"2325@00310.impulsevoip.net\",\n        \"2326@00310.impulsevoip.net\",\n        \"2327@00310.impulsevoip.net\",\n        \"2328@00310.impulsevoip.net\",\n        \"2329@00310.impulsevoip.net\",\n        \"2330@00310.impulsevoip.net\",\n        \"2331@00310.impulsevoip.net\",\n        \"2332@00310.impulsevoip.net\",\n        \"2333@00310.impulsevoip.net\",\n        \"2334@00310.impulsevoip.net\",\n        \"2335@00310.impulsevoip.net\",\n        \"2336@00310.impulsevoip.net\",\n        \"2337@00310.impulsevoip.net\",\n        \"2338@00310.impulsevoip.net\",\n        \"2339@00310.impulsevoip.net\",\n        \"2340@00310.impulsevoip.net\",\n        \"2341@00310.impulsevoip.net\",\n        \"2342@00310.impulsevoip.net\",\n        \"2343@00310.impulsevoip.net\",\n        \"2344@00310.impulsevoip.net\",\n        \"2345@00310.impulsevoip.net\",\n        \"2346@00310.impulsevoip.net\",\n        \"2347@00310.impulsevoip.net\",\n        \"2348@00310.impulsevoip.net\",\n        \"2349@00310.impulsevoip.net\",\n        \"2350@00310.impulsevoip.net\",\n        \"2351@00310.impulsevoip.net\",\n        \"2352@00310.impulsevoip.net\",\n        \"2353@00310.impulsevoip.net\",\n        \"2354@00310.impulsevoip.net\",\n        \"2355@00310.impulsevoip.net\",\n        \"2356@00310.impulsevoip.net\",\n        \"2357@00310.impulsevoip.net\",\n        \"2358@00310.impulsevoip.net\",\n        \"2359@00310.impulsevoip.net\",\n        \"2360@00310.impulsevoip.net\",\n        \"2361@00310.impulsevoip.net\",\n        \"2362@00310.impulsevoip.net\",\n        \"2363@00310.impulsevoip.net\",\n        \"2364@00310.impulsevoip.net\",\n        \"2365@00310.impulsevoip.net\",\n        \"2366@00310.impulsevoip.net\",\n        \"2367@00310.impulsevoip.net\",\n        \"2368@00310.impulsevoip.net\",\n        \"2369@00310.impulsevoip.net\",\n        \"2370@00310.impulsevoip.net\",\n        \"2371@00310.impulsevoip.net\",\n        \"2372@00310.impulsevoip.net\",\n        \"2373@00310.impulsevoip.net\",\n        \"2374@00310.impulsevoip.net\",\n        \"2375@00310.impulsevoip.net\",\n        \"2376@00310.impulsevoip.net\",\n        \"2377@00310.impulsevoip.net\",\n        \"2378@00310.impulsevoip.net\",\n        \"2379@00310.impulsevoip.net\",\n        \"2380@00310.impulsevoip.net\",\n        \"2381@00310.impulsevoip.net\",\n        \"2382@00310.impulsevoip.net\",\n        \"2383@00310.impulsevoip.net\",\n        \"2384@00310.impulsevoip.net\",\n        \"2385@00310.impulsevoip.net\",\n        \"2386@00310.impulsevoip.net\",\n        \"2387@00310.impulsevoip.net\",\n        \"2388@00310.impulsevoip.net\",\n        \"2389@00310.impulsevoip.net\",\n        \"2390@00310.impulsevoip.net\",\n        \"2391@00310.impulsevoip.net\",\n        \"2392@00310.impulsevoip.net\",\n        \"2393@00310.impulsevoip.net\",\n        \"2394@00310.impulsevoip.net\",\n        \"2395@00310.impulsevoip.net\",\n        \"2396@00310.impulsevoip.net\",\n        \"2397@00310.impulsevoip.net\",\n        \"2398@00310.impulsevoip.net\",\n        \"2399@00310.impulsevoip.net\",\n        \"2400@00310.impulsevoip.net\",\n        \"2401@00310.impulsevoip.net\",\n        \"2402@00310.impulsevoip.net\",\n        \"2403@00310.impulsevoip.net\",\n        \"2404@00310.impulsevoip.net\",\n        \"2405@00310.impulsevoip.net\",\n        \"2406@00310.impulsevoip.net\",\n        \"2407@00310.impulsevoip.net\",\n        \"2408@00310.impulsevoip.net\",\n        \"2409@00310.impulsevoip.net\",\n        \"2410@00310.impulsevoip.net\",\n        \"2411@00310.impulsevoip.net\",\n        \"2412@00310.impulsevoip.net\",\n        \"2413@00310.impulsevoip.net\",\n        \"2414@00310.impulsevoip.net\",\n        \"2415@00310.impulsevoip.net\",\n        \"2416@00310.impulsevoip.net\",\n        \"2417@00310.impulsevoip.net\",\n        \"2418@00310.impulsevoip.net\",\n        \"2419@00310.impulsevoip.net\",\n        \"2420@00310.impulsevoip.net\",\n        \"2421@00310.impulsevoip.net\",\n        \"2422@00310.impulsevoip.net\",\n        \"2423@00310.impulsevoip.net\",\n        \"3172@00310.impulsevoip.net\",\n        \"3173@00310.impulsevoip.net\",\n        \"3174@00310.impulsevoip.net\",\n        \"3175@00310.impulsevoip.net\",\n        \"3176@00310.impulsevoip.net\",\n        \"3177@00310.impulsevoip.net\",\n        \"3178@00310.impulsevoip.net\",\n        \"3179@00310.impulsevoip.net\",\n        \"3180@00310.impulsevoip.net\",\n        \"3181@00310.impulsevoip.net\",\n        \"3182@00310.impulsevoip.net\",\n        \"3183@00310.impulsevoip.net\",\n        \"3184@00310.impulsevoip.net\",\n        \"3185@00310.impulsevoip.net\",\n        \"3186@00310.impulsevoip.net\",\n        \"3187@00310.impulsevoip.net\",\n        \"3188@00310.impulsevoip.net\",\n        \"3189@00310.impulsevoip.net\",\n        \"3190@00310.impulsevoip.net\",\n        \"3191@00310.impulsevoip.net\",\n        \"3192@00310.impulsevoip.net\",\n        \"3193@00310.impulsevoip.net\",\n        \"3194@00310.impulsevoip.net\",\n        \"3195@00310.impulsevoip.net\",\n        \"3196@00310.impulsevoip.net\",\n        \"3197@00310.impulsevoip.net\",\n        \"3198@00310.impulsevoip.net\",\n        \"3199@00310.impulsevoip.net\",\n        \"3200@00310.impulsevoip.net\",\n        \"3201@00310.impulsevoip.net\",\n        \"3202@00310.impulsevoip.net\",\n        \"3203@00310.impulsevoip.net\",\n        \"3204@00310.impulsevoip.net\",\n        \"3205@00310.impulsevoip.net\",\n        \"3206@00310.impulsevoip.net\",\n        \"3207@00310.impulsevoip.net\",\n        \"3208@00310.impulsevoip.net\",\n        \"3209@00310.impulsevoip.net\",\n        \"3210@00310.impulsevoip.net\",\n        \"3211@00310.impulsevoip.net\",\n        \"3212@00310.impulsevoip.net\",\n        \"3213@00310.impulsevoip.net\",\n        \"3214@00310.impulsevoip.net\",\n        \"3215@00310.impulsevoip.net\",\n        \"3216@00310.impulsevoip.net\",\n        \"3217@00310.impulsevoip.net\",\n        \"3218@00310.impulsevoip.net\",\n        \"3219@00310.impulsevoip.net\",\n        \"3220@00310.impulsevoip.net\",\n        \"3221@00310.impulsevoip.net\",\n        \"3222@00310.impulsevoip.net\",\n        \"3223@00310.impulsevoip.net\",\n        \"3224@00310.impulsevoip.net\",\n        \"3225@00310.impulsevoip.net\",\n        \"3226@00310.impulsevoip.net\",\n        \"3227@00310.impulsevoip.net\",\n        \"3228@00310.impulsevoip.net\",\n        \"3229@00310.impulsevoip.net\",\n        \"3230@00310.impulsevoip.net\",\n        \"3231@00310.impulsevoip.net\",\n        \"3232@00310.impulsevoip.net\",\n        \"3233@00310.impulsevoip.net\",\n        \"3234@00310.impulsevoip.net\",\n        \"3235@00310.impulsevoip.net\",\n        \"3236@00310.impulsevoip.net\",\n        \"3237@00310.impulsevoip.net\",\n        \"3238@00310.impulsevoip.net\",\n        \"3239@00310.impulsevoip.net\",\n        \"3240@00310.impulsevoip.net\",\n        \"3241@00310.impulsevoip.net\",\n        \"3242@00310.impulsevoip.net\",\n        \"3243@00310.impulsevoip.net\",\n        \"3244@00310.impulsevoip.net\",\n        \"3245@00310.impulsevoip.net\",\n        \"3246@00310.impulsevoip.net\",\n        \"3247@00310.impulsevoip.net\",\n        \"3248@00310.impulsevoip.net\",\n        \"3249@00310.impulsevoip.net\",\n        \"3250@00310.impulsevoip.net\",\n        \"3251@00310.impulsevoip.net\",\n        \"3252@00310.impulsevoip.net\",\n        \"3253@00310.impulsevoip.net\",\n        \"3254@00310.impulsevoip.net\",\n        \"3255@00310.impulsevoip.net\",\n        \"3256@00310.impulsevoip.net\",\n        \"3257@00310.impulsevoip.net\",\n        \"3258@00310.impulsevoip.net\",\n        \"3259@00310.impulsevoip.net\",\n        \"3260@00310.impulsevoip.net\",\n        \"3261@00310.impulsevoip.net\",\n        \"3262@00310.impulsevoip.net\",\n        \"3263@00310.impulsevoip.net\",\n        \"3264@00310.impulsevoip.net\",\n        \"3265@00310.impulsevoip.net\",\n        \"3266@00310.impulsevoip.net\",\n        \"3267@00310.impulsevoip.net\",\n        \"3268@00310.impulsevoip.net\",\n        \"3269@00310.impulsevoip.net\",\n        \"3270@00310.impulsevoip.net\",\n        \"3271@00310.impulsevoip.net\",\n        \"3272@00310.impulsevoip.net\",\n        \"3273@00310.impulsevoip.net\",\n        \"3274@00310.impulsevoip.net\",\n        \"3275@00310.impulsevoip.net\",\n        \"3276@00310.impulsevoip.net\",\n        \"3277@00310.impulsevoip.net\",\n        \"3278@00310.impulsevoip.net\",\n        \"3279@00310.impulsevoip.net\",\n        \"3280@00310.impulsevoip.net\",\n        \"3281@00310.impulsevoip.net\",\n        \"3282@00310.impulsevoip.net\",\n        \"3283@00310.impulsevoip.net\",\n        \"3284@00310.impulsevoip.net\",\n        \"3285@00310.impulsevoip.net\",\n        \"3286@00310.impulsevoip.net\",\n        \"3287@00310.impulsevoip.net\",\n        \"3288@00310.impulsevoip.net\",\n        \"3289@00310.impulsevoip.net\",\n        \"3290@00310.impulsevoip.net\",\n        \"3291@00310.impulsevoip.net\",\n        \"3292@00310.impulsevoip.net\",\n        \"3293@00310.impulsevoip.net\",\n        \"3294@00310.impulsevoip.net\",\n        \"3295@00310.impulsevoip.net\",\n        \"3296@00310.impulsevoip.net\",\n        \"3297@00310.impulsevoip.net\",\n        \"3298@00310.impulsevoip.net\",\n        \"3299@00310.impulsevoip.net\",\n        \"3300@00310.impulsevoip.net\",\n        \"3301@00310.impulsevoip.net\",\n        \"3302@00310.impulsevoip.net\",\n        \"3303@00310.impulsevoip.net\",\n        \"3304@00310.impulsevoip.net\",\n        \"3305@00310.impulsevoip.net\",\n        \"3306@00310.impulsevoip.net\",\n        \"3307@00310.impulsevoip.net\",\n        \"3308@00310.impulsevoip.net\",\n        \"3309@00310.impulsevoip.net\",\n        \"3310@00310.impulsevoip.net\",\n        \"3311@00310.impulsevoip.net\",\n        \"3312@00310.impulsevoip.net\",\n        \"3313@00310.impulsevoip.net\",\n        \"3314@00310.impulsevoip.net\",\n        \"3315@00310.impulsevoip.net\",\n        \"3316@00310.impulsevoip.net\",\n        \"3317@00310.impulsevoip.net\",\n        \"3318@00310.impulsevoip.net\",\n        \"3319@00310.impulsevoip.net\",\n        \"3320@00310.impulsevoip.net\",\n        \"3321@00310.impulsevoip.net\",\n        \"3322@00310.impulsevoip.net\",\n        \"3323@00310.impulsevoip.net\",\n        \"3324@00310.impulsevoip.net\",\n        \"3325@00310.impulsevoip.net\",\n        \"3326@00310.impulsevoip.net\",\n        \"3327@00310.impulsevoip.net\",\n        \"3328@00310.impulsevoip.net\",\n        \"3329@00310.impulsevoip.net\",\n        \"3330@00310.impulsevoip.net\",\n        \"3331@00310.impulsevoip.net\",\n        \"3332@00310.impulsevoip.net\",\n        \"3333@00310.impulsevoip.net\",\n        \"3334@00310.impulsevoip.net\",\n        \"3335@00310.impulsevoip.net\",\n        \"3336@00310.impulsevoip.net\",\n        \"3337@00310.impulsevoip.net\",\n        \"3338@00310.impulsevoip.net\",\n        \"3339@00310.impulsevoip.net\",\n        \"3340@00310.impulsevoip.net\",\n        \"3341@00310.impulsevoip.net\",\n        \"3342@00310.impulsevoip.net\",\n        \"3343@00310.impulsevoip.net\",\n        \"3344@00310.impulsevoip.net\",\n        \"3345@00310.impulsevoip.net\",\n        \"3346@00310.impulsevoip.net\",\n        \"3347@00310.impulsevoip.net\",\n        \"3348@00310.impulsevoip.net\",\n        \"3349@00310.impulsevoip.net\",\n        \"3350@00310.impulsevoip.net\",\n        \"3351@00310.impulsevoip.net\",\n        \"3352@00310.impulsevoip.net\",\n        \"3353@00310.impulsevoip.net\",\n        \"3354@00310.impulsevoip.net\",\n        \"3355@00310.impulsevoip.net\",\n        \"3356@00310.impulsevoip.net\",\n        \"3357@00310.impulsevoip.net\",\n        \"3358@00310.impulsevoip.net\",\n        \"3359@00310.impulsevoip.net\",\n        \"3360@00310.impulsevoip.net\",\n        \"3361@00310.impulsevoip.net\",\n        \"3362@00310.impulsevoip.net\",\n        \"3363@00310.impulsevoip.net\",\n        \"3364@00310.impulsevoip.net\",\n        \"3365@00310.impulsevoip.net\",\n        \"3366@00310.impulsevoip.net\",\n        \"3367@00310.impulsevoip.net\",\n        \"3368@00310.impulsevoip.net\",\n        \"3369@00310.impulsevoip.net\",\n        \"3370@00310.impulsevoip.net\",\n        \"3371@00310.impulsevoip.net\",\n        \"3372@00310.impulsevoip.net\",\n        \"3373@00310.impulsevoip.net\",\n        \"3374@00310.impulsevoip.net\",\n        \"3375@00310.impulsevoip.net\",\n        \"3376@00310.impulsevoip.net\",\n        \"3377@00310.impulsevoip.net\",\n        \"3378@00310.impulsevoip.net\",\n        \"3379@00310.impulsevoip.net\",\n        \"3380@00310.impulsevoip.net\",\n        \"3381@00310.impulsevoip.net\",\n        \"3382@00310.impulsevoip.net\",\n        \"3383@00310.impulsevoip.net\",\n        \"3384@00310.impulsevoip.net\",\n        \"3385@00310.impulsevoip.net\",\n        \"3386@00310.impulsevoip.net\",\n        \"3387@00310.impulsevoip.net\",\n        \"3388@00310.impulsevoip.net\",\n        \"3389@00310.impulsevoip.net\",\n        \"3390@00310.impulsevoip.net\",\n        \"3391@00310.impulsevoip.net\",\n        \"3392@00310.impulsevoip.net\",\n        \"3393@00310.impulsevoip.net\",\n        \"3394@00310.impulsevoip.net\",\n        \"3395@00310.impulsevoip.net\",\n        \"3396@00310.impulsevoip.net\",\n        \"3397@00310.impulsevoip.net\",\n        \"3398@00310.impulsevoip.net\",\n        \"3399@00310.impulsevoip.net\",\n        \"3400@00310.impulsevoip.net\",\n        \"3401@00310.impulsevoip.net\",\n        \"3402@00310.impulsevoip.net\",\n        \"3403@00310.impulsevoip.net\",\n        \"3404@00310.impulsevoip.net\",\n        \"3405@00310.impulsevoip.net\",\n        \"3406@00310.impulsevoip.net\",\n        \"3407@00310.impulsevoip.net\",\n        \"3408@00310.impulsevoip.net\",\n        \"3409@00310.impulsevoip.net\",\n        \"3410@00310.impulsevoip.net\",\n        \"3411@00310.impulsevoip.net\",\n        \"3412@00310.impulsevoip.net\",\n        \"3413@00310.impulsevoip.net\",\n        \"3414@00310.impulsevoip.net\",\n        \"3415@00310.impulsevoip.net\",\n        \"3416@00310.impulsevoip.net\",\n        \"3417@00310.impulsevoip.net\",\n        \"3418@00310.impulsevoip.net\",\n        \"3419@00310.impulsevoip.net\",\n        \"3420@00310.impulsevoip.net\",\n        \"3421@00310.impulsevoip.net\",\n        \"3422@00310.impulsevoip.net\",\n        \"3423@00310.impulsevoip.net\",\n        \"2912@00310.impulsevoip.net\",\n        \"2913@00310.impulsevoip.net\",\n        \"2914@00310.impulsevoip.net\",\n        \"2915@00310.impulsevoip.net\",\n        \"2916@00310.impulsevoip.net\",\n        \"2917@00310.impulsevoip.net\",\n        \"2918@00310.impulsevoip.net\",\n        \"2919@00310.impulsevoip.net\",\n        \"2920@00310.impulsevoip.net\",\n        \"2921@00310.impulsevoip.net\",\n        \"2922@00310.impulsevoip.net\",\n        \"2923@00310.impulsevoip.net\",\n        \"2924@00310.impulsevoip.net\",\n        \"2925@00310.impulsevoip.net\",\n        \"2926@00310.impulsevoip.net\",\n        \"2927@00310.impulsevoip.net\",\n        \"2928@00310.impulsevoip.net\",\n        \"2929@00310.impulsevoip.net\",\n        \"2930@00310.impulsevoip.net\",\n        \"2931@00310.impulsevoip.net\",\n        \"2932@00310.impulsevoip.net\",\n        \"2933@00310.impulsevoip.net\",\n        \"2934@00310.impulsevoip.net\",\n        \"2935@00310.impulsevoip.net\",\n        \"2936@00310.impulsevoip.net\",\n        \"2937@00310.impulsevoip.net\",\n        \"2938@00310.impulsevoip.net\",\n        \"2939@00310.impulsevoip.net\",\n        \"2940@00310.impulsevoip.net\",\n        \"2941@00310.impulsevoip.net\",\n        \"2942@00310.impulsevoip.net\",\n        \"2943@00310.impulsevoip.net\",\n        \"2944@00310.impulsevoip.net\",\n        \"2945@00310.impulsevoip.net\",\n        \"2946@00310.impulsevoip.net\",\n        \"2947@00310.impulsevoip.net\",\n        \"2948@00310.impulsevoip.net\",\n        \"2949@00310.impulsevoip.net\",\n        \"2950@00310.impulsevoip.net\",\n        \"2951@00310.impulsevoip.net\",\n        \"2952@00310.impulsevoip.net\",\n        \"2953@00310.impulsevoip.net\",\n        \"2954@00310.impulsevoip.net\",\n        \"2955@00310.impulsevoip.net\",\n        \"2956@00310.impulsevoip.net\",\n        \"2957@00310.impulsevoip.net\",\n        \"2958@00310.impulsevoip.net\",\n        \"2959@00310.impulsevoip.net\",\n        \"2960@00310.impulsevoip.net\",\n        \"2961@00310.impulsevoip.net\",\n        \"2962@00310.impulsevoip.net\",\n        \"2963@00310.impulsevoip.net\",\n        \"2964@00310.impulsevoip.net\",\n        \"2965@00310.impulsevoip.net\",\n        \"2966@00310.impulsevoip.net\",\n        \"2967@00310.impulsevoip.net\",\n        \"2968@00310.impulsevoip.net\",\n        \"2969@00310.impulsevoip.net\",\n        \"2970@00310.impulsevoip.net\",\n        \"2971@00310.impulsevoip.net\",\n        \"2972@00310.impulsevoip.net\",\n        \"2973@00310.impulsevoip.net\",\n        \"2974@00310.impulsevoip.net\",\n        \"2975@00310.impulsevoip.net\",\n        \"2976@00310.impulsevoip.net\",\n        \"2977@00310.impulsevoip.net\",\n        \"2978@00310.impulsevoip.net\",\n        \"2979@00310.impulsevoip.net\",\n        \"2980@00310.impulsevoip.net\",\n        \"2981@00310.impulsevoip.net\",\n        \"2982@00310.impulsevoip.net\",\n        \"2983@00310.impulsevoip.net\",\n        \"2984@00310.impulsevoip.net\",\n        \"2985@00310.impulsevoip.net\",\n        \"2986@00310.impulsevoip.net\",\n        \"2987@00310.impulsevoip.net\",\n        \"2988@00310.impulsevoip.net\",\n        \"2989@00310.impulsevoip.net\",\n        \"2990@00310.impulsevoip.net\",\n        \"2991@00310.impulsevoip.net\",\n        \"2992@00310.impulsevoip.net\",\n        \"2993@00310.impulsevoip.net\",\n        \"2994@00310.impulsevoip.net\",\n        \"2995@00310.impulsevoip.net\",\n        \"2996@00310.impulsevoip.net\",\n        \"2997@00310.impulsevoip.net\",\n        \"2998@00310.impulsevoip.net\",\n        \"2999@00310.impulsevoip.net\",\n        \"3000@00310.impulsevoip.net\",\n        \"3001@00310.impulsevoip.net\",\n        \"3002@00310.impulsevoip.net\",\n        \"3003@00310.impulsevoip.net\",\n        \"3004@00310.impulsevoip.net\",\n        \"3005@00310.impulsevoip.net\",\n        \"3006@00310.impulsevoip.net\",\n        \"3007@00310.impulsevoip.net\",\n        \"3008@00310.impulsevoip.net\",\n        \"3009@00310.impulsevoip.net\",\n        \"3010@00310.impulsevoip.net\",\n        \"3011@00310.impulsevoip.net\",\n        \"3012@00310.impulsevoip.net\",\n        \"3013@00310.impulsevoip.net\",\n        \"3014@00310.impulsevoip.net\",\n        \"3015@00310.impulsevoip.net\",\n        \"3016@00310.impulsevoip.net\",\n        \"3017@00310.impulsevoip.net\",\n        \"3018@00310.impulsevoip.net\",\n        \"3019@00310.impulsevoip.net\",\n        \"3020@00310.impulsevoip.net\",\n        \"3021@00310.impulsevoip.net\",\n        \"3022@00310.impulsevoip.net\",\n        \"3023@00310.impulsevoip.net\",\n        \"3024@00310.impulsevoip.net\",\n        \"3025@00310.impulsevoip.net\",\n        \"3026@00310.impulsevoip.net\",\n        \"3027@00310.impulsevoip.net\",\n        \"3028@00310.impulsevoip.net\",\n        \"3029@00310.impulsevoip.net\",\n        \"3030@00310.impulsevoip.net\",\n        \"3031@00310.impulsevoip.net\",\n        \"3032@00310.impulsevoip.net\",\n        \"3033@00310.impulsevoip.net\",\n        \"3034@00310.impulsevoip.net\",\n        \"3035@00310.impulsevoip.net\",\n        \"3036@00310.impulsevoip.net\",\n        \"3037@00310.impulsevoip.net\",\n        \"3038@00310.impulsevoip.net\",\n        \"3039@00310.impulsevoip.net\",\n        \"3040@00310.impulsevoip.net\",\n        \"3041@00310.impulsevoip.net\",\n        \"3042@00310.impulsevoip.net\",\n        \"3043@00310.impulsevoip.net\",\n        \"3044@00310.impulsevoip.net\",\n        \"3045@00310.impulsevoip.net\",\n        \"3046@00310.impulsevoip.net\",\n        \"3047@00310.impulsevoip.net\",\n        \"3048@00310.impulsevoip.net\",\n        \"3049@00310.impulsevoip.net\",\n        \"3050@00310.impulsevoip.net\",\n        \"3051@00310.impulsevoip.net\",\n        \"3052@00310.impulsevoip.net\",\n        \"3053@00310.impulsevoip.net\",\n        \"3054@00310.impulsevoip.net\",\n        \"3055@00310.impulsevoip.net\",\n        \"3056@00310.impulsevoip.net\",\n        \"3057@00310.impulsevoip.net\",\n        \"3058@00310.impulsevoip.net\",\n        \"3059@00310.impulsevoip.net\",\n        \"3060@00310.impulsevoip.net\",\n        \"3061@00310.impulsevoip.net\",\n        \"3062@00310.impulsevoip.net\",\n        \"3063@00310.impulsevoip.net\",\n        \"3064@00310.impulsevoip.net\",\n        \"3065@00310.impulsevoip.net\",\n        \"3066@00310.impulsevoip.net\",\n        \"3067@00310.impulsevoip.net\",\n        \"3068@00310.impulsevoip.net\",\n        \"3069@00310.impulsevoip.net\",\n        \"3070@00310.impulsevoip.net\",\n        \"3071@00310.impulsevoip.net\",\n        \"3072@00310.impulsevoip.net\",\n        \"3073@00310.impulsevoip.net\",\n        \"3074@00310.impulsevoip.net\",\n        \"3075@00310.impulsevoip.net\",\n        \"3076@00310.impulsevoip.net\",\n        \"3077@00310.impulsevoip.net\",\n        \"3078@00310.impulsevoip.net\",\n        \"3079@00310.impulsevoip.net\",\n        \"3080@00310.impulsevoip.net\",\n        \"3081@00310.impulsevoip.net\",\n        \"3082@00310.impulsevoip.net\",\n        \"3083@00310.impulsevoip.net\",\n        \"3084@00310.impulsevoip.net\",\n        \"3085@00310.impulsevoip.net\",\n        \"3086@00310.impulsevoip.net\",\n        \"3087@00310.impulsevoip.net\",\n        \"3088@00310.impulsevoip.net\",\n        \"3089@00310.impulsevoip.net\",\n        \"3090@00310.impulsevoip.net\",\n        \"3091@00310.impulsevoip.net\",\n        \"3092@00310.impulsevoip.net\",\n        \"3093@00310.impulsevoip.net\",\n        \"3094@00310.impulsevoip.net\",\n        \"3095@00310.impulsevoip.net\",\n        \"3096@00310.impulsevoip.net\",\n        \"3097@00310.impulsevoip.net\",\n        \"3098@00310.impulsevoip.net\",\n        \"3099@00310.impulsevoip.net\",\n        \"3100@00310.impulsevoip.net\",\n        \"3101@00310.impulsevoip.net\",\n        \"3102@00310.impulsevoip.net\",\n        \"3103@00310.impulsevoip.net\",\n        \"3104@00310.impulsevoip.net\",\n        \"3105@00310.impulsevoip.net\",\n        \"3106@00310.impulsevoip.net\",\n        \"3107@00310.impulsevoip.net\",\n        \"3108@00310.impulsevoip.net\",\n        \"3109@00310.impulsevoip.net\",\n        \"3110@00310.impulsevoip.net\",\n        \"3111@00310.impulsevoip.net\",\n        \"3112@00310.impulsevoip.net\",\n        \"3113@00310.impulsevoip.net\",\n        \"3114@00310.impulsevoip.net\",\n        \"3115@00310.impulsevoip.net\",\n        \"3116@00310.impulsevoip.net\",\n        \"3117@00310.impulsevoip.net\",\n        \"3118@00310.impulsevoip.net\",\n        \"3119@00310.impulsevoip.net\",\n        \"3120@00310.impulsevoip.net\",\n        \"3121@00310.impulsevoip.net\",\n        \"3122@00310.impulsevoip.net\",\n        \"3123@00310.impulsevoip.net\",\n        \"3124@00310.impulsevoip.net\",\n        \"3125@00310.impulsevoip.net\",\n        \"3126@00310.impulsevoip.net\",\n        \"3127@00310.impulsevoip.net\",\n        \"3128@00310.impulsevoip.net\",\n        \"3129@00310.impulsevoip.net\",\n        \"3130@00310.impulsevoip.net\",\n        \"3131@00310.impulsevoip.net\",\n        \"3132@00310.impulsevoip.net\",\n        \"3133@00310.impulsevoip.net\",\n        \"3134@00310.impulsevoip.net\",\n        \"3135@00310.impulsevoip.net\",\n        \"3136@00310.impulsevoip.net\",\n        \"3137@00310.impulsevoip.net\",\n        \"3138@00310.impulsevoip.net\",\n        \"3139@00310.impulsevoip.net\",\n        \"3140@00310.impulsevoip.net\",\n        \"3141@00310.impulsevoip.net\",\n        \"3142@00310.impulsevoip.net\",\n        \"3143@00310.impulsevoip.net\",\n        \"3144@00310.impulsevoip.net\",\n        \"3145@00310.impulsevoip.net\",\n        \"3146@00310.impulsevoip.net\",\n        \"3147@00310.impulsevoip.net\",\n        \"3148@00310.impulsevoip.net\",\n        \"3149@00310.impulsevoip.net\",\n        \"3150@00310.impulsevoip.net\",\n        \"3151@00310.impulsevoip.net\",\n        \"3152@00310.impulsevoip.net\",\n        \"3153@00310.impulsevoip.net\",\n        \"3154@00310.impulsevoip.net\",\n        \"3155@00310.impulsevoip.net\",\n        \"3156@00310.impulsevoip.net\",\n        \"3157@00310.impulsevoip.net\",\n        \"3158@00310.impulsevoip.net\",\n        \"3159@00310.impulsevoip.net\",\n        \"3160@00310.impulsevoip.net\",\n        \"3161@00310.impulsevoip.net\",\n        \"3162@00310.impulsevoip.net\",\n        \"3163@00310.impulsevoip.net\",\n        \"3164@00310.impulsevoip.net\",\n        \"3165@00310.impulsevoip.net\",\n        \"3166@00310.impulsevoip.net\",\n        \"3167@00310.impulsevoip.net\",\n        \"3424@00310.impulsevoip.net\",\n        \"3425@00310.impulsevoip.net\",\n        \"3426@00310.impulsevoip.net\",\n        \"3427@00310.impulsevoip.net\",\n        \"3428@00310.impulsevoip.net\",\n        \"3429@00310.impulsevoip.net\",\n        \"3430@00310.impulsevoip.net\",\n        \"3431@00310.impulsevoip.net\",\n        \"3432@00310.impulsevoip.net\",\n        \"3433@00310.impulsevoip.net\",\n        \"3434@00310.impulsevoip.net\",\n        \"3435@00310.impulsevoip.net\",\n        \"3436@00310.impulsevoip.net\",\n        \"3437@00310.impulsevoip.net\",\n        \"3438@00310.impulsevoip.net\",\n        \"3439@00310.impulsevoip.net\",\n        \"3440@00310.impulsevoip.net\",\n        \"3441@00310.impulsevoip.net\",\n        \"3442@00310.impulsevoip.net\",\n        \"3443@00310.impulsevoip.net\",\n        \"3444@00310.impulsevoip.net\",\n        \"3445@00310.impulsevoip.net\",\n        \"3446@00310.impulsevoip.net\",\n        \"3447@00310.impulsevoip.net\",\n        \"3448@00310.impulsevoip.net\",\n        \"3449@00310.impulsevoip.net\",\n        \"3450@00310.impulsevoip.net\",\n        \"3451@00310.impulsevoip.net\",\n        \"3452@00310.impulsevoip.net\",\n        \"3453@00310.impulsevoip.net\",\n        \"3454@00310.impulsevoip.net\",\n        \"3455@00310.impulsevoip.net\",\n        \"3456@00310.impulsevoip.net\",\n        \"3457@00310.impulsevoip.net\",\n        \"3458@00310.impulsevoip.net\",\n        \"3459@00310.impulsevoip.net\",\n        \"3460@00310.impulsevoip.net\",\n        \"3461@00310.impulsevoip.net\",\n        \"3462@00310.impulsevoip.net\",\n        \"3463@00310.impulsevoip.net\",\n        \"3464@00310.impulsevoip.net\",\n        \"3465@00310.impulsevoip.net\",\n        \"3466@00310.impulsevoip.net\",\n        \"3467@00310.impulsevoip.net\",\n        \"3468@00310.impulsevoip.net\",\n        \"3469@00310.impulsevoip.net\",\n        \"3470@00310.impulsevoip.net\",\n        \"3471@00310.impulsevoip.net\",\n        \"3472@00310.impulsevoip.net\",\n        \"3473@00310.impulsevoip.net\",\n        \"3474@00310.impulsevoip.net\",\n        \"3475@00310.impulsevoip.net\",\n        \"3476@00310.impulsevoip.net\",\n        \"3477@00310.impulsevoip.net\",\n        \"3478@00310.impulsevoip.net\",\n        \"3479@00310.impulsevoip.net\",\n        \"3480@00310.impulsevoip.net\",\n        \"3481@00310.impulsevoip.net\",\n        \"3482@00310.impulsevoip.net\",\n        \"3483@00310.impulsevoip.net\",\n        \"3484@00310.impulsevoip.net\",\n        \"3485@00310.impulsevoip.net\",\n        \"3486@00310.impulsevoip.net\",\n        \"3487@00310.impulsevoip.net\",\n        \"3488@00310.impulsevoip.net\",\n        \"3489@00310.impulsevoip.net\",\n        \"3490@00310.impulsevoip.net\",\n        \"3491@00310.impulsevoip.net\",\n        \"3492@00310.impulsevoip.net\",\n        \"3493@00310.impulsevoip.net\",\n        \"3494@00310.impulsevoip.net\",\n        \"3495@00310.impulsevoip.net\",\n        \"3496@00310.impulsevoip.net\",\n        \"3497@00310.impulsevoip.net\",\n        \"3498@00310.impulsevoip.net\",\n        \"3499@00310.impulsevoip.net\",\n        \"3500@00310.impulsevoip.net\",\n        \"3501@00310.impulsevoip.net\",\n        \"3502@00310.impulsevoip.net\",\n        \"3503@00310.impulsevoip.net\",\n        \"3504@00310.impulsevoip.net\",\n        \"3505@00310.impulsevoip.net\",\n        \"3506@00310.impulsevoip.net\",\n        \"3507@00310.impulsevoip.net\",\n        \"3508@00310.impulsevoip.net\",\n        \"3509@00310.impulsevoip.net\",\n        \"3510@00310.impulsevoip.net\",\n        \"3511@00310.impulsevoip.net\",\n        \"3512@00310.impulsevoip.net\",\n        \"3513@00310.impulsevoip.net\",\n        \"3514@00310.impulsevoip.net\",\n        \"3515@00310.impulsevoip.net\",\n        \"3516@00310.impulsevoip.net\",\n        \"3517@00310.impulsevoip.net\",\n        \"3518@00310.impulsevoip.net\",\n        \"3519@00310.impulsevoip.net\",\n        \"3520@00310.impulsevoip.net\",\n        \"3521@00310.impulsevoip.net\",\n        \"3522@00310.impulsevoip.net\",\n        \"3523@00310.impulsevoip.net\",\n        \"3524@00310.impulsevoip.net\",\n        \"3525@00310.impulsevoip.net\",\n        \"3526@00310.impulsevoip.net\",\n        \"3527@00310.impulsevoip.net\",\n        \"3528@00310.impulsevoip.net\",\n        \"3529@00310.impulsevoip.net\",\n        \"3530@00310.impulsevoip.net\",\n        \"3531@00310.impulsevoip.net\",\n        \"3532@00310.impulsevoip.net\",\n        \"3533@00310.impulsevoip.net\",\n        \"3534@00310.impulsevoip.net\",\n        \"3535@00310.impulsevoip.net\",\n        \"3536@00310.impulsevoip.net\",\n        \"3537@00310.impulsevoip.net\",\n        \"3538@00310.impulsevoip.net\",\n        \"3539@00310.impulsevoip.net\",\n        \"3540@00310.impulsevoip.net\",\n        \"3541@00310.impulsevoip.net\",\n        \"3542@00310.impulsevoip.net\",\n        \"3543@00310.impulsevoip.net\",\n        \"3544@00310.impulsevoip.net\",\n        \"3545@00310.impulsevoip.net\",\n        \"3546@00310.impulsevoip.net\",\n        \"3547@00310.impulsevoip.net\",\n        \"3548@00310.impulsevoip.net\",\n        \"3549@00310.impulsevoip.net\",\n        \"3550@00310.impulsevoip.net\",\n        \"3551@00310.impulsevoip.net\",\n        \"3552@00310.impulsevoip.net\",\n        \"3553@00310.impulsevoip.net\",\n        \"3554@00310.impulsevoip.net\",\n        \"3555@00310.impulsevoip.net\",\n        \"3556@00310.impulsevoip.net\",\n        \"3557@00310.impulsevoip.net\",\n        \"3558@00310.impulsevoip.net\",\n        \"3559@00310.impulsevoip.net\",\n        \"3560@00310.impulsevoip.net\",\n        \"3561@00310.impulsevoip.net\",\n        \"3562@00310.impulsevoip.net\",\n        \"3563@00310.impulsevoip.net\",\n        \"3564@00310.impulsevoip.net\",\n        \"3565@00310.impulsevoip.net\",\n        \"3566@00310.impulsevoip.net\",\n        \"3567@00310.impulsevoip.net\",\n        \"3568@00310.impulsevoip.net\",\n        \"3569@00310.impulsevoip.net\",\n        \"3570@00310.impulsevoip.net\",\n        \"3571@00310.impulsevoip.net\",\n        \"3572@00310.impulsevoip.net\",\n        \"3573@00310.impulsevoip.net\",\n        \"3574@00310.impulsevoip.net\",\n        \"3575@00310.impulsevoip.net\",\n        \"3576@00310.impulsevoip.net\",\n        \"3577@00310.impulsevoip.net\",\n        \"3578@00310.impulsevoip.net\",\n        \"3579@00310.impulsevoip.net\",\n        \"3580@00310.impulsevoip.net\",\n        \"3581@00310.impulsevoip.net\",\n        \"3582@00310.impulsevoip.net\",\n        \"3583@00310.impulsevoip.net\",\n        \"3584@00310.impulsevoip.net\",\n        \"3585@00310.impulsevoip.net\",\n        \"3586@00310.impulsevoip.net\",\n        \"3587@00310.impulsevoip.net\",\n        \"3588@00310.impulsevoip.net\",\n        \"3589@00310.impulsevoip.net\",\n        \"3590@00310.impulsevoip.net\",\n        \"3591@00310.impulsevoip.net\",\n        \"3592@00310.impulsevoip.net\",\n        \"3593@00310.impulsevoip.net\",\n        \"3594@00310.impulsevoip.net\",\n        \"3595@00310.impulsevoip.net\",\n        \"3596@00310.impulsevoip.net\",\n        \"3597@00310.impulsevoip.net\",\n        \"3598@00310.impulsevoip.net\",\n        \"3599@00310.impulsevoip.net\",\n        \"3600@00310.impulsevoip.net\",\n        \"3601@00310.impulsevoip.net\",\n        \"3602@00310.impulsevoip.net\",\n        \"3603@00310.impulsevoip.net\",\n        \"3604@00310.impulsevoip.net\",\n        \"3605@00310.impulsevoip.net\",\n        \"3606@00310.impulsevoip.net\",\n        \"3607@00310.impulsevoip.net\",\n        \"3608@00310.impulsevoip.net\",\n        \"3609@00310.impulsevoip.net\",\n        \"3610@00310.impulsevoip.net\",\n        \"3611@00310.impulsevoip.net\",\n        \"3612@00310.impulsevoip.net\",\n        \"3613@00310.impulsevoip.net\",\n        \"3614@00310.impulsevoip.net\",\n        \"3615@00310.impulsevoip.net\",\n        \"3616@00310.impulsevoip.net\",\n        \"3617@00310.impulsevoip.net\",\n        \"3618@00310.impulsevoip.net\",\n        \"3619@00310.impulsevoip.net\",\n        \"3620@00310.impulsevoip.net\",\n        \"3621@00310.impulsevoip.net\",\n        \"3622@00310.impulsevoip.net\",\n        \"3623@00310.impulsevoip.net\",\n        \"3624@00310.impulsevoip.net\",\n        \"3625@00310.impulsevoip.net\",\n        \"3626@00310.impulsevoip.net\",\n        \"3627@00310.impulsevoip.net\",\n        \"3628@00310.impulsevoip.net\",\n        \"3629@00310.impulsevoip.net\",\n        \"3630@00310.impulsevoip.net\",\n        \"3631@00310.impulsevoip.net\",\n        \"3632@00310.impulsevoip.net\",\n        \"3633@00310.impulsevoip.net\",\n        \"3634@00310.impulsevoip.net\",\n        \"3635@00310.impulsevoip.net\",\n        \"3636@00310.impulsevoip.net\",\n        \"3637@00310.impulsevoip.net\",\n        \"3638@00310.impulsevoip.net\",\n        \"3639@00310.impulsevoip.net\",\n        \"3640@00310.impulsevoip.net\",\n        \"3641@00310.impulsevoip.net\",\n        \"3642@00310.impulsevoip.net\",\n        \"3643@00310.impulsevoip.net\",\n        \"3644@00310.impulsevoip.net\",\n        \"3645@00310.impulsevoip.net\",\n        \"3646@00310.impulsevoip.net\",\n        \"3647@00310.impulsevoip.net\",\n        \"3648@00310.impulsevoip.net\",\n        \"3649@00310.impulsevoip.net\",\n        \"3650@00310.impulsevoip.net\",\n        \"3651@00310.impulsevoip.net\",\n        \"3652@00310.impulsevoip.net\",\n        \"3653@00310.impulsevoip.net\",\n        \"3654@00310.impulsevoip.net\",\n        \"3655@00310.impulsevoip.net\",\n        \"3656@00310.impulsevoip.net\",\n        \"3657@00310.impulsevoip.net\",\n        \"3658@00310.impulsevoip.net\",\n        \"3659@00310.impulsevoip.net\",\n        \"3660@00310.impulsevoip.net\",\n        \"3661@00310.impulsevoip.net\",\n        \"3662@00310.impulsevoip.net\",\n        \"3663@00310.impulsevoip.net\",\n        \"3664@00310.impulsevoip.net\",\n        \"3665@00310.impulsevoip.net\",\n        \"3666@00310.impulsevoip.net\",\n        \"3667@00310.impulsevoip.net\",\n        \"3668@00310.impulsevoip.net\",\n        \"3669@00310.impulsevoip.net\",\n        \"3670@00310.impulsevoip.net\",\n        \"3671@00310.impulsevoip.net\",\n        \"3672@00310.impulsevoip.net\",\n        \"3673@00310.impulsevoip.net\",\n        \"3674@00310.impulsevoip.net\",\n        \"3675@00310.impulsevoip.net\",\n        \"3676@00310.impulsevoip.net\",\n        \"3677@00310.impulsevoip.net\",\n        \"3678@00310.impulsevoip.net\",\n        \"3679@00310.impulsevoip.net\",\n        \"3680@00310.impulsevoip.net\",\n        \"3681@00310.impulsevoip.net\",\n        \"3682@00310.impulsevoip.net\",\n        \"3683@00310.impulsevoip.net\",\n        \"3684@00310.impulsevoip.net\",\n        \"3685@00310.impulsevoip.net\",\n        \"3686@00310.impulsevoip.net\",\n        \"3687@00310.impulsevoip.net\",\n        \"3688@00310.impulsevoip.net\",\n        \"3689@00310.impulsevoip.net\",\n        \"3690@00310.impulsevoip.net\",\n        \"3691@00310.impulsevoip.net\",\n        \"3692@00310.impulsevoip.net\",\n        \"3693@00310.impulsevoip.net\",\n        \"3694@00310.impulsevoip.net\",\n        \"3695@00310.impulsevoip.net\",\n        \"3696@00310.impulsevoip.net\",\n        \"3697@00310.impulsevoip.net\",\n        \"3698@00310.impulsevoip.net\",\n        \"3699@00310.impulsevoip.net\",\n        \"3700@00310.impulsevoip.net\",\n        \"3701@00310.impulsevoip.net\",\n        \"3702@00310.impulsevoip.net\",\n        \"3703@00310.impulsevoip.net\",\n        \"3704@00310.impulsevoip.net\",\n        \"3705@00310.impulsevoip.net\",\n        \"3706@00310.impulsevoip.net\",\n        \"3707@00310.impulsevoip.net\",\n        \"3708@00310.impulsevoip.net\",\n        \"3709@00310.impulsevoip.net\",\n        \"3710@00310.impulsevoip.net\",\n        \"3711@00310.impulsevoip.net\",\n        \"3712@00310.impulsevoip.net\",\n        \"3713@00310.impulsevoip.net\",\n        \"3714@00310.impulsevoip.net\",\n        \"3715@00310.impulsevoip.net\",\n        \"3716@00310.impulsevoip.net\",\n        \"3717@00310.impulsevoip.net\",\n        \"3718@00310.impulsevoip.net\",\n        \"3719@00310.impulsevoip.net\",\n        \"3720@00310.impulsevoip.net\",\n        \"3721@00310.impulsevoip.net\",\n        \"3722@00310.impulsevoip.net\",\n        \"3723@00310.impulsevoip.net\",\n        \"3724@00310.impulsevoip.net\",\n        \"3725@00310.impulsevoip.net\",\n        \"3726@00310.impulsevoip.net\",\n        \"3727@00310.impulsevoip.net\",\n        \"3728@00310.impulsevoip.net\",\n        \"3729@00310.impulsevoip.net\",\n        \"3730@00310.impulsevoip.net\",\n        \"3731@00310.impulsevoip.net\",\n        \"3732@00310.impulsevoip.net\",\n        \"3733@00310.impulsevoip.net\",\n        \"3734@00310.impulsevoip.net\",\n        \"3735@00310.impulsevoip.net\",\n        \"3736@00310.impulsevoip.net\",\n        \"3737@00310.impulsevoip.net\",\n        \"3738@00310.impulsevoip.net\",\n        \"3739@00310.impulsevoip.net\",\n        \"3740@00310.impulsevoip.net\",\n        \"3741@00310.impulsevoip.net\",\n        \"3742@00310.impulsevoip.net\",\n        \"3743@00310.impulsevoip.net\",\n        \"3744@00310.impulsevoip.net\",\n        \"3745@00310.impulsevoip.net\",\n        \"3746@00310.impulsevoip.net\",\n        \"3747@00310.impulsevoip.net\",\n        \"3748@00310.impulsevoip.net\",\n        \"3749@00310.impulsevoip.net\",\n        \"3750@00310.impulsevoip.net\",\n        \"3751@00310.impulsevoip.net\",\n        \"3752@00310.impulsevoip.net\",\n        \"3753@00310.impulsevoip.net\",\n        \"3754@00310.impulsevoip.net\",\n        \"3755@00310.impulsevoip.net\",\n        \"3756@00310.impulsevoip.net\",\n        \"3757@00310.impulsevoip.net\",\n        \"3758@00310.impulsevoip.net\",\n        \"3759@00310.impulsevoip.net\",\n        \"3760@00310.impulsevoip.net\",\n        \"3761@00310.impulsevoip.net\",\n        \"3762@00310.impulsevoip.net\",\n        \"3763@00310.impulsevoip.net\",\n        \"3764@00310.impulsevoip.net\",\n        \"3765@00310.impulsevoip.net\",\n        \"3766@00310.impulsevoip.net\",\n        \"3767@00310.impulsevoip.net\",\n        \"3768@00310.impulsevoip.net\",\n        \"3769@00310.impulsevoip.net\",\n        \"3770@00310.impulsevoip.net\",\n        \"3771@00310.impulsevoip.net\",\n        \"3772@00310.impulsevoip.net\",\n        \"3773@00310.impulsevoip.net\",\n        \"3774@00310.impulsevoip.net\",\n        \"3775@00310.impulsevoip.net\",\n        \"3776@00310.impulsevoip.net\",\n        \"3777@00310.impulsevoip.net\",\n        \"3778@00310.impulsevoip.net\",\n        \"3779@00310.impulsevoip.net\",\n        \"3780@00310.impulsevoip.net\",\n        \"3781@00310.impulsevoip.net\",\n        \"3782@00310.impulsevoip.net\",\n        \"3783@00310.impulsevoip.net\",\n        \"3784@00310.impulsevoip.net\",\n        \"3785@00310.impulsevoip.net\",\n        \"3786@00310.impulsevoip.net\",\n        \"3787@00310.impulsevoip.net\",\n        \"3788@00310.impulsevoip.net\",\n        \"3789@00310.impulsevoip.net\",\n        \"3790@00310.impulsevoip.net\",\n        \"3791@00310.impulsevoip.net\",\n        \"3792@00310.impulsevoip.net\",\n        \"3793@00310.impulsevoip.net\",\n        \"3794@00310.impulsevoip.net\",\n        \"3795@00310.impulsevoip.net\",\n        \"3796@00310.impulsevoip.net\",\n        \"3797@00310.impulsevoip.net\",\n        \"3798@00310.impulsevoip.net\",\n        \"3799@00310.impulsevoip.net\",\n        \"3800@00310.impulsevoip.net\",\n        \"3801@00310.impulsevoip.net\",\n        \"3802@00310.impulsevoip.net\",\n        \"3803@00310.impulsevoip.net\",\n        \"3804@00310.impulsevoip.net\",\n        \"3805@00310.impulsevoip.net\",\n        \"3806@00310.impulsevoip.net\",\n        \"3807@00310.impulsevoip.net\",\n        \"3808@00310.impulsevoip.net\",\n        \"3809@00310.impulsevoip.net\",\n        \"3810@00310.impulsevoip.net\",\n        \"3811@00310.impulsevoip.net\",\n        \"3812@00310.impulsevoip.net\",\n        \"3813@00310.impulsevoip.net\",\n        \"3814@00310.impulsevoip.net\",\n        \"3815@00310.impulsevoip.net\",\n        \"3816@00310.impulsevoip.net\",\n        \"3817@00310.impulsevoip.net\",\n        \"3818@00310.impulsevoip.net\",\n        \"3819@00310.impulsevoip.net\",\n        \"3820@00310.impulsevoip.net\",\n        \"3821@00310.impulsevoip.net\",\n        \"3822@00310.impulsevoip.net\",\n        \"3823@00310.impulsevoip.net\",\n        \"3824@00310.impulsevoip.net\",\n        \"3825@00310.impulsevoip.net\",\n        \"3826@00310.impulsevoip.net\",\n        \"3827@00310.impulsevoip.net\",\n        \"3828@00310.impulsevoip.net\",\n        \"3829@00310.impulsevoip.net\",\n        \"3830@00310.impulsevoip.net\",\n        \"3831@00310.impulsevoip.net\",\n        \"3832@00310.impulsevoip.net\",\n        \"3833@00310.impulsevoip.net\",\n        \"3834@00310.impulsevoip.net\",\n        \"3835@00310.impulsevoip.net\",\n        \"3836@00310.impulsevoip.net\",\n        \"3837@00310.impulsevoip.net\",\n        \"3838@00310.impulsevoip.net\",\n        \"3839@00310.impulsevoip.net\",\n        \"3840@00310.impulsevoip.net\",\n        \"3841@00310.impulsevoip.net\",\n        \"3842@00310.impulsevoip.net\",\n        \"3843@00310.impulsevoip.net\",\n        \"3844@00310.impulsevoip.net\",\n        \"3845@00310.impulsevoip.net\",\n        \"3846@00310.impulsevoip.net\",\n        \"3847@00310.impulsevoip.net\",\n        \"3848@00310.impulsevoip.net\",\n        \"3849@00310.impulsevoip.net\",\n        \"3850@00310.impulsevoip.net\",\n        \"3851@00310.impulsevoip.net\",\n        \"3852@00310.impulsevoip.net\",\n        \"3853@00310.impulsevoip.net\",\n        \"3854@00310.impulsevoip.net\",\n        \"3855@00310.impulsevoip.net\",\n        \"3856@00310.impulsevoip.net\",\n        \"3857@00310.impulsevoip.net\",\n        \"3858@00310.impulsevoip.net\",\n        \"3859@00310.impulsevoip.net\",\n        \"3860@00310.impulsevoip.net\",\n        \"3861@00310.impulsevoip.net\",\n        \"3862@00310.impulsevoip.net\",\n        \"3863@00310.impulsevoip.net\",\n        \"3864@00310.impulsevoip.net\",\n        \"3865@00310.impulsevoip.net\",\n        \"3866@00310.impulsevoip.net\",\n        \"3867@00310.impulsevoip.net\",\n        \"3868@00310.impulsevoip.net\",\n        \"3869@00310.impulsevoip.net\",\n        \"3870@00310.impulsevoip.net\",\n        \"3871@00310.impulsevoip.net\",\n        \"3872@00310.impulsevoip.net\",\n        \"3873@00310.impulsevoip.net\",\n        \"3874@00310.impulsevoip.net\",\n        \"3875@00310.impulsevoip.net\",\n        \"3876@00310.impulsevoip.net\",\n        \"3877@00310.impulsevoip.net\",\n        \"3878@00310.impulsevoip.net\",\n        \"3879@00310.impulsevoip.net\",\n        \"3880@00310.impulsevoip.net\",\n        \"3881@00310.impulsevoip.net\",\n        \"3882@00310.impulsevoip.net\",\n        \"3883@00310.impulsevoip.net\",\n        \"3884@00310.impulsevoip.net\",\n        \"3885@00310.impulsevoip.net\",\n        \"3886@00310.impulsevoip.net\",\n        \"3887@00310.impulsevoip.net\",\n        \"3888@00310.impulsevoip.net\",\n        \"3889@00310.impulsevoip.net\",\n        \"3890@00310.impulsevoip.net\",\n        \"3891@00310.impulsevoip.net\",\n        \"3892@00310.impulsevoip.net\",\n        \"3893@00310.impulsevoip.net\",\n        \"3894@00310.impulsevoip.net\",\n        \"3895@00310.impulsevoip.net\",\n        \"3896@00310.impulsevoip.net\",\n        \"3897@00310.impulsevoip.net\",\n        \"3898@00310.impulsevoip.net\",\n        \"3899@00310.impulsevoip.net\",\n        \"3900@00310.impulsevoip.net\",\n        \"3901@00310.impulsevoip.net\",\n        \"3902@00310.impulsevoip.net\",\n        \"3903@00310.impulsevoip.net\",\n        \"3904@00310.impulsevoip.net\",\n        \"3905@00310.impulsevoip.net\",\n        \"3906@00310.impulsevoip.net\",\n        \"3907@00310.impulsevoip.net\",\n        \"3908@00310.impulsevoip.net\",\n        \"3909@00310.impulsevoip.net\",\n        \"3910@00310.impulsevoip.net\",\n        \"3912@00310.impulsevoip.net\",\n        \"3913@00310.impulsevoip.net\",\n        \"3914@00310.impulsevoip.net\",\n        \"3915@00310.impulsevoip.net\",\n        \"3916@00310.impulsevoip.net\",\n        \"3917@00310.impulsevoip.net\",\n        \"3918@00310.impulsevoip.net\",\n        \"3919@00310.impulsevoip.net\",\n        \"3920@00310.impulsevoip.net\",\n        \"3921@00310.impulsevoip.net\",\n        \"3922@00310.impulsevoip.net\",\n        \"3923@00310.impulsevoip.net\",\n        \"3924@00310.impulsevoip.net\",\n        \"3925@00310.impulsevoip.net\",\n        \"3926@00310.impulsevoip.net\",\n        \"3927@00310.impulsevoip.net\",\n        \"3928@00310.impulsevoip.net\",\n        \"3929@00310.impulsevoip.net\",\n        \"3930@00310.impulsevoip.net\",\n        \"3931@00310.impulsevoip.net\",\n        \"3932@00310.impulsevoip.net\",\n        \"3933@00310.impulsevoip.net\",\n        \"3934@00310.impulsevoip.net\",\n        \"3935@00310.impulsevoip.net\",\n        \"3936@00310.impulsevoip.net\",\n        \"3937@00310.impulsevoip.net\",\n        \"3938@00310.impulsevoip.net\",\n        \"3939@00310.impulsevoip.net\",\n        \"3940@00310.impulsevoip.net\",\n        \"3941@00310.impulsevoip.net\",\n        \"3942@00310.impulsevoip.net\",\n        \"3943@00310.impulsevoip.net\",\n        \"3944@00310.impulsevoip.net\",\n        \"3945@00310.impulsevoip.net\",\n        \"3946@00310.impulsevoip.net\",\n        \"3947@00310.impulsevoip.net\",\n        \"3948@00310.impulsevoip.net\",\n        \"3949@00310.impulsevoip.net\",\n        \"3950@00310.impulsevoip.net\",\n        \"3951@00310.impulsevoip.net\",\n        \"3952@00310.impulsevoip.net\",\n        \"3953@00310.impulsevoip.net\",\n        \"3954@00310.impulsevoip.net\",\n        \"3955@00310.impulsevoip.net\",\n        \"3956@00310.impulsevoip.net\",\n        \"3957@00310.impulsevoip.net\",\n        \"3958@00310.impulsevoip.net\",\n        \"3959@00310.impulsevoip.net\",\n        \"3960@00310.impulsevoip.net\",\n        \"3961@00310.impulsevoip.net\",\n        \"3962@00310.impulsevoip.net\",\n        \"3963@00310.impulsevoip.net\",\n        \"3964@00310.impulsevoip.net\",\n        \"3965@00310.impulsevoip.net\",\n        \"3966@00310.impulsevoip.net\",\n        \"3967@00310.impulsevoip.net\",\n        \"3968@00310.impulsevoip.net\",\n        \"3969@00310.impulsevoip.net\",\n        \"3970@00310.impulsevoip.net\",\n        \"3971@00310.impulsevoip.net\",\n        \"3972@00310.impulsevoip.net\",\n        \"3973@00310.impulsevoip.net\",\n        \"3974@00310.impulsevoip.net\",\n        \"3975@00310.impulsevoip.net\",\n        \"3976@00310.impulsevoip.net\",\n        \"3977@00310.impulsevoip.net\",\n        \"3978@00310.impulsevoip.net\",\n        \"3979@00310.impulsevoip.net\",\n        \"3980@00310.impulsevoip.net\",\n        \"3981@00310.impulsevoip.net\",\n        \"3982@00310.impulsevoip.net\",\n        \"3983@00310.impulsevoip.net\",\n        \"3984@00310.impulsevoip.net\",\n        \"3985@00310.impulsevoip.net\",\n        \"3986@00310.impulsevoip.net\",\n        \"3987@00310.impulsevoip.net\",\n        \"3988@00310.impulsevoip.net\",\n        \"3989@00310.impulsevoip.net\",\n        \"3990@00310.impulsevoip.net\",\n        \"3991@00310.impulsevoip.net\",\n        \"3992@00310.impulsevoip.net\",\n        \"3993@00310.impulsevoip.net\",\n        \"3994@00310.impulsevoip.net\",\n        \"3995@00310.impulsevoip.net\",\n        \"3996@00310.impulsevoip.net\",\n        \"3997@00310.impulsevoip.net\",\n        \"3998@00310.impulsevoip.net\",\n        \"3999@00310.impulsevoip.net\",\n        \"4000@00310.impulsevoip.net\",\n        \"4001@00310.impulsevoip.net\",\n        \"4002@00310.impulsevoip.net\",\n        \"4003@00310.impulsevoip.net\",\n        \"4004@00310.impulsevoip.net\",\n        \"4005@00310.impulsevoip.net\",\n        \"4006@00310.impulsevoip.net\",\n        \"4007@00310.impulsevoip.net\",\n        \"4008@00310.impulsevoip.net\",\n        \"4009@00310.impulsevoip.net\",\n        \"4010@00310.impulsevoip.net\",\n        \"4011@00310.impulsevoip.net\",\n        \"4012@00310.impulsevoip.net\",\n        \"4013@00310.impulsevoip.net\",\n        \"4014@00310.impulsevoip.net\",\n        \"4015@00310.impulsevoip.net\",\n        \"4016@00310.impulsevoip.net\",\n        \"4017@00310.impulsevoip.net\",\n        \"4018@00310.impulsevoip.net\",\n        \"4019@00310.impulsevoip.net\",\n        \"4020@00310.impulsevoip.net\",\n        \"4021@00310.impulsevoip.net\",\n        \"4022@00310.impulsevoip.net\",\n        \"4023@00310.impulsevoip.net\",\n        \"4024@00310.impulsevoip.net\",\n        \"4025@00310.impulsevoip.net\",\n        \"4026@00310.impulsevoip.net\",\n        \"4027@00310.impulsevoip.net\",\n        \"4028@00310.impulsevoip.net\",\n        \"4029@00310.impulsevoip.net\",\n        \"4030@00310.impulsevoip.net\",\n        \"4031@00310.impulsevoip.net\",\n        \"4032@00310.impulsevoip.net\",\n        \"4033@00310.impulsevoip.net\",\n        \"4034@00310.impulsevoip.net\",\n        \"4035@00310.impulsevoip.net\",\n        \"4036@00310.impulsevoip.net\",\n        \"4037@00310.impulsevoip.net\",\n        \"4038@00310.impulsevoip.net\",\n        \"4039@00310.impulsevoip.net\",\n        \"4040@00310.impulsevoip.net\",\n        \"4041@00310.impulsevoip.net\",\n        \"4042@00310.impulsevoip.net\",\n        \"4043@00310.impulsevoip.net\",\n        \"4044@00310.impulsevoip.net\",\n        \"4045@00310.impulsevoip.net\",\n        \"4046@00310.impulsevoip.net\",\n        \"4047@00310.impulsevoip.net\",\n        \"4048@00310.impulsevoip.net\",\n        \"4049@00310.impulsevoip.net\",\n        \"4050@00310.impulsevoip.net\",\n        \"4051@00310.impulsevoip.net\",\n        \"4052@00310.impulsevoip.net\",\n        \"4053@00310.impulsevoip.net\",\n        \"4054@00310.impulsevoip.net\",\n        \"4055@00310.impulsevoip.net\",\n        \"4056@00310.impulsevoip.net\",\n        \"4057@00310.impulsevoip.net\",\n        \"4058@00310.impulsevoip.net\",\n        \"4059@00310.impulsevoip.net\",\n        \"4060@00310.impulsevoip.net\",\n        \"4061@00310.impulsevoip.net\",\n        \"4062@00310.impulsevoip.net\",\n        \"4063@00310.impulsevoip.net\",\n        \"4064@00310.impulsevoip.net\",\n        \"4065@00310.impulsevoip.net\",\n        \"4066@00310.impulsevoip.net\",\n        \"4067@00310.impulsevoip.net\",\n        \"4068@00310.impulsevoip.net\",\n        \"4069@00310.impulsevoip.net\",\n        \"4070@00310.impulsevoip.net\",\n        \"4071@00310.impulsevoip.net\",\n        \"4072@00310.impulsevoip.net\",\n        \"4073@00310.impulsevoip.net\",\n        \"4074@00310.impulsevoip.net\",\n        \"4075@00310.impulsevoip.net\",\n        \"4076@00310.impulsevoip.net\",\n        \"4077@00310.impulsevoip.net\",\n        \"4078@00310.impulsevoip.net\",\n        \"4079@00310.impulsevoip.net\",\n        \"4080@00310.impulsevoip.net\",\n        \"4081@00310.impulsevoip.net\",\n        \"4082@00310.impulsevoip.net\",\n        \"4083@00310.impulsevoip.net\",\n        \"4084@00310.impulsevoip.net\",\n        \"4085@00310.impulsevoip.net\",\n        \"4086@00310.impulsevoip.net\",\n        \"4087@00310.impulsevoip.net\",\n        \"4088@00310.impulsevoip.net\",\n        \"4089@00310.impulsevoip.net\",\n        \"4090@00310.impulsevoip.net\",\n        \"4091@00310.impulsevoip.net\",\n        \"4092@00310.impulsevoip.net\",\n        \"4093@00310.impulsevoip.net\",\n        \"4094@00310.impulsevoip.net\",\n        \"4095@00310.impulsevoip.net\",\n        \"4096@00310.impulsevoip.net\",\n        \"4097@00310.impulsevoip.net\",\n        \"4098@00310.impulsevoip.net\",\n        \"4099@00310.impulsevoip.net\",\n        \"4100@00310.impulsevoip.net\",\n        \"4101@00310.impulsevoip.net\",\n        \"4102@00310.impulsevoip.net\",\n        \"4103@00310.impulsevoip.net\",\n        \"4104@00310.impulsevoip.net\",\n        \"4105@00310.impulsevoip.net\",\n        \"4106@00310.impulsevoip.net\",\n        \"4107@00310.impulsevoip.net\",\n        \"4108@00310.impulsevoip.net\",\n        \"4109@00310.impulsevoip.net\",\n        \"4110@00310.impulsevoip.net\",\n        \"4111@00310.impulsevoip.net\",\n        \"4112@00310.impulsevoip.net\",\n        \"4113@00310.impulsevoip.net\",\n        \"4114@00310.impulsevoip.net\",\n        \"4115@00310.impulsevoip.net\",\n        \"4116@00310.impulsevoip.net\",\n        \"4117@00310.impulsevoip.net\",\n        \"4118@00310.impulsevoip.net\",\n        \"4119@00310.impulsevoip.net\",\n        \"4120@00310.impulsevoip.net\",\n        \"4121@00310.impulsevoip.net\",\n        \"4122@00310.impulsevoip.net\",\n        \"4123@00310.impulsevoip.net\",\n        \"4124@00310.impulsevoip.net\",\n        \"4125@00310.impulsevoip.net\",\n        \"4126@00310.impulsevoip.net\",\n        \"4127@00310.impulsevoip.net\",\n        \"4128@00310.impulsevoip.net\",\n        \"4129@00310.impulsevoip.net\",\n        \"4130@00310.impulsevoip.net\",\n        \"4131@00310.impulsevoip.net\",\n        \"4132@00310.impulsevoip.net\",\n        \"4133@00310.impulsevoip.net\",\n        \"4134@00310.impulsevoip.net\",\n        \"4135@00310.impulsevoip.net\",\n        \"4136@00310.impulsevoip.net\",\n        \"4137@00310.impulsevoip.net\",\n        \"4138@00310.impulsevoip.net\",\n        \"4139@00310.impulsevoip.net\",\n        \"4140@00310.impulsevoip.net\",\n        \"4141@00310.impulsevoip.net\",\n        \"4142@00310.impulsevoip.net\",\n        \"4143@00310.impulsevoip.net\",\n        \"4144@00310.impulsevoip.net\",\n        \"4145@00310.impulsevoip.net\",\n        \"4146@00310.impulsevoip.net\",\n        \"4147@00310.impulsevoip.net\",\n        \"4148@00310.impulsevoip.net\",\n        \"4149@00310.impulsevoip.net\",\n        \"4150@00310.impulsevoip.net\",\n        \"4151@00310.impulsevoip.net\",\n        \"4152@00310.impulsevoip.net\",\n        \"4153@00310.impulsevoip.net\",\n        \"4154@00310.impulsevoip.net\",\n        \"4155@00310.impulsevoip.net\",\n        \"4156@00310.impulsevoip.net\",\n        \"4157@00310.impulsevoip.net\",\n        \"4158@00310.impulsevoip.net\",\n        \"4159@00310.impulsevoip.net\",\n        \"4160@00310.impulsevoip.net\",\n        \"4161@00310.impulsevoip.net\",\n        \"4162@00310.impulsevoip.net\",\n        \"4163@00310.impulsevoip.net\",\n        \"4164@00310.impulsevoip.net\",\n        \"4165@00310.impulsevoip.net\",\n        \"4166@00310.impulsevoip.net\",\n        \"4167@00310.impulsevoip.net\",\n        \"4168@00310.impulsevoip.net\",\n        \"4169@00310.impulsevoip.net\",\n        \"4170@00310.impulsevoip.net\",\n        \"4171@00310.impulsevoip.net\",\n        \"4172@00310.impulsevoip.net\",\n        \"4173@00310.impulsevoip.net\",\n        \"4174@00310.impulsevoip.net\",\n        \"4175@00310.impulsevoip.net\",\n        \"4176@00310.impulsevoip.net\",\n        \"4177@00310.impulsevoip.net\",\n        \"4178@00310.impulsevoip.net\",\n        \"4179@00310.impulsevoip.net\",\n        \"4180@00310.impulsevoip.net\",\n        \"4181@00310.impulsevoip.net\",\n        \"4182@00310.impulsevoip.net\",\n        \"4183@00310.impulsevoip.net\",\n        \"4184@00310.impulsevoip.net\",\n        \"4185@00310.impulsevoip.net\",\n        \"4186@00310.impulsevoip.net\",\n        \"4187@00310.impulsevoip.net\",\n        \"4188@00310.impulsevoip.net\",\n        \"4189@00310.impulsevoip.net\",\n        \"4190@00310.impulsevoip.net\",\n        \"4191@00310.impulsevoip.net\",\n        \"4192@00310.impulsevoip.net\",\n        \"4193@00310.impulsevoip.net\",\n        \"4194@00310.impulsevoip.net\",\n        \"4195@00310.impulsevoip.net\",\n        \"4196@00310.impulsevoip.net\",\n        \"4197@00310.impulsevoip.net\",\n        \"4198@00310.impulsevoip.net\",\n        \"4199@00310.impulsevoip.net\",\n        \"4200@00310.impulsevoip.net\",\n        \"4201@00310.impulsevoip.net\",\n        \"4202@00310.impulsevoip.net\",\n        \"4203@00310.impulsevoip.net\",\n        \"4204@00310.impulsevoip.net\",\n        \"4205@00310.impulsevoip.net\",\n        \"4206@00310.impulsevoip.net\",\n        \"4207@00310.impulsevoip.net\",\n        \"4208@00310.impulsevoip.net\",\n        \"4209@00310.impulsevoip.net\",\n        \"4210@00310.impulsevoip.net\",\n        \"4211@00310.impulsevoip.net\",\n        \"4212@00310.impulsevoip.net\",\n        \"4213@00310.impulsevoip.net\",\n        \"4214@00310.impulsevoip.net\",\n        \"4215@00310.impulsevoip.net\",\n        \"4216@00310.impulsevoip.net\",\n        \"4217@00310.impulsevoip.net\",\n        \"4218@00310.impulsevoip.net\",\n        \"4219@00310.impulsevoip.net\",\n        \"4220@00310.impulsevoip.net\",\n        \"4221@00310.impulsevoip.net\",\n        \"4222@00310.impulsevoip.net\",\n        \"4223@00310.impulsevoip.net\",\n        \"4224@00310.impulsevoip.net\",\n        \"4225@00310.impulsevoip.net\",\n        \"4226@00310.impulsevoip.net\",\n        \"4227@00310.impulsevoip.net\",\n        \"4228@00310.impulsevoip.net\",\n        \"4229@00310.impulsevoip.net\",\n        \"4230@00310.impulsevoip.net\",\n        \"4231@00310.impulsevoip.net\",\n        \"4232@00310.impulsevoip.net\",\n        \"4233@00310.impulsevoip.net\",\n        \"4234@00310.impulsevoip.net\",\n        \"4235@00310.impulsevoip.net\",\n        \"4236@00310.impulsevoip.net\",\n        \"4237@00310.impulsevoip.net\",\n        \"4238@00310.impulsevoip.net\",\n        \"4239@00310.impulsevoip.net\",\n        \"4240@00310.impulsevoip.net\",\n        \"4241@00310.impulsevoip.net\",\n        \"4242@00310.impulsevoip.net\",\n        \"4243@00310.impulsevoip.net\",\n        \"4244@00310.impulsevoip.net\",\n        \"4245@00310.impulsevoip.net\",\n        \"4246@00310.impulsevoip.net\",\n        \"4247@00310.impulsevoip.net\",\n        \"4248@00310.impulsevoip.net\",\n        \"4249@00310.impulsevoip.net\",\n        \"4250@00310.impulsevoip.net\",\n        \"4251@00310.impulsevoip.net\",\n        \"4252@00310.impulsevoip.net\",\n        \"4253@00310.impulsevoip.net\",\n        \"4254@00310.impulsevoip.net\",\n        \"4255@00310.impulsevoip.net\",\n        \"4256@00310.impulsevoip.net\",\n        \"4257@00310.impulsevoip.net\",\n        \"4258@00310.impulsevoip.net\",\n        \"4259@00310.impulsevoip.net\",\n        \"4260@00310.impulsevoip.net\",\n        \"4261@00310.impulsevoip.net\",\n        \"4262@00310.impulsevoip.net\",\n        \"4263@00310.impulsevoip.net\",\n        \"4264@00310.impulsevoip.net\",\n        \"4265@00310.impulsevoip.net\",\n        \"4266@00310.impulsevoip.net\",\n        \"4267@00310.impulsevoip.net\",\n        \"4268@00310.impulsevoip.net\",\n        \"4269@00310.impulsevoip.net\",\n        \"4270@00310.impulsevoip.net\",\n        \"4271@00310.impulsevoip.net\",\n        \"4272@00310.impulsevoip.net\",\n        \"4273@00310.impulsevoip.net\",\n        \"4274@00310.impulsevoip.net\",\n        \"4275@00310.impulsevoip.net\",\n        \"4276@00310.impulsevoip.net\",\n        \"4277@00310.impulsevoip.net\",\n        \"4278@00310.impulsevoip.net\",\n        \"4279@00310.impulsevoip.net\",\n        \"4280@00310.impulsevoip.net\",\n        \"4281@00310.impulsevoip.net\",\n        \"4282@00310.impulsevoip.net\",\n        \"4283@00310.impulsevoip.net\",\n        \"4284@00310.impulsevoip.net\",\n        \"4285@00310.impulsevoip.net\",\n        \"4286@00310.impulsevoip.net\",\n        \"4287@00310.impulsevoip.net\",\n        \"4288@00310.impulsevoip.net\",\n        \"4289@00310.impulsevoip.net\",\n        \"4290@00310.impulsevoip.net\",\n        \"4291@00310.impulsevoip.net\",\n        \"4292@00310.impulsevoip.net\",\n        \"4293@00310.impulsevoip.net\",\n        \"4294@00310.impulsevoip.net\",\n        \"4295@00310.impulsevoip.net\",\n        \"4296@00310.impulsevoip.net\",\n        \"4297@00310.impulsevoip.net\",\n        \"4298@00310.impulsevoip.net\",\n        \"4299@00310.impulsevoip.net\",\n        \"4300@00310.impulsevoip.net\",\n        \"4301@00310.impulsevoip.net\",\n        \"4302@00310.impulsevoip.net\",\n        \"4303@00310.impulsevoip.net\",\n        \"4304@00310.impulsevoip.net\",\n        \"4305@00310.impulsevoip.net\",\n        \"4306@00310.impulsevoip.net\",\n        \"4307@00310.impulsevoip.net\",\n        \"4308@00310.impulsevoip.net\",\n        \"4309@00310.impulsevoip.net\",\n        \"4310@00310.impulsevoip.net\",\n        \"4311@00310.impulsevoip.net\",\n        \"4312@00310.impulsevoip.net\",\n        \"4313@00310.impulsevoip.net\",\n        \"4314@00310.impulsevoip.net\",\n        \"4315@00310.impulsevoip.net\",\n        \"4316@00310.impulsevoip.net\",\n        \"4317@00310.impulsevoip.net\",\n        \"4318@00310.impulsevoip.net\",\n        \"4319@00310.impulsevoip.net\",\n        \"4320@00310.impulsevoip.net\",\n        \"4321@00310.impulsevoip.net\",\n        \"4322@00310.impulsevoip.net\",\n        \"4323@00310.impulsevoip.net\",\n        \"4324@00310.impulsevoip.net\",\n        \"4325@00310.impulsevoip.net\",\n        \"4326@00310.impulsevoip.net\",\n        \"4327@00310.impulsevoip.net\",\n        \"4328@00310.impulsevoip.net\",\n        \"4329@00310.impulsevoip.net\",\n        \"4330@00310.impulsevoip.net\",\n        \"4331@00310.impulsevoip.net\",\n        \"4332@00310.impulsevoip.net\",\n        \"4333@00310.impulsevoip.net\",\n        \"4334@00310.impulsevoip.net\",\n        \"4335@00310.impulsevoip.net\",\n        \"4336@00310.impulsevoip.net\",\n        \"4337@00310.impulsevoip.net\",\n        \"4338@00310.impulsevoip.net\",\n        \"4339@00310.impulsevoip.net\",\n        \"4340@00310.impulsevoip.net\",\n        \"4341@00310.impulsevoip.net\",\n        \"4342@00310.impulsevoip.net\",\n        \"4343@00310.impulsevoip.net\",\n        \"4344@00310.impulsevoip.net\",\n        \"4345@00310.impulsevoip.net\",\n        \"4346@00310.impulsevoip.net\",\n        \"4347@00310.impulsevoip.net\",\n        \"4348@00310.impulsevoip.net\",\n        \"4349@00310.impulsevoip.net\",\n        \"4350@00310.impulsevoip.net\",\n        \"4351@00310.impulsevoip.net\",\n        \"4352@00310.impulsevoip.net\",\n        \"4353@00310.impulsevoip.net\",\n        \"4354@00310.impulsevoip.net\",\n        \"4355@00310.impulsevoip.net\",\n        \"4356@00310.impulsevoip.net\",\n        \"4357@00310.impulsevoip.net\",\n        \"4358@00310.impulsevoip.net\",\n        \"4359@00310.impulsevoip.net\",\n        \"4360@00310.impulsevoip.net\",\n        \"4361@00310.impulsevoip.net\",\n        \"4362@00310.impulsevoip.net\",\n        \"4363@00310.impulsevoip.net\",\n        \"4364@00310.impulsevoip.net\",\n        \"4365@00310.impulsevoip.net\",\n        \"4366@00310.impulsevoip.net\",\n        \"4367@00310.impulsevoip.net\",\n        \"4368@00310.impulsevoip.net\",\n        \"4369@00310.impulsevoip.net\",\n        \"4370@00310.impulsevoip.net\",\n        \"4371@00310.impulsevoip.net\",\n        \"4372@00310.impulsevoip.net\",\n        \"4373@00310.impulsevoip.net\",\n        \"4374@00310.impulsevoip.net\",\n        \"4375@00310.impulsevoip.net\",\n        \"4376@00310.impulsevoip.net\",\n        \"4377@00310.impulsevoip.net\",\n        \"4378@00310.impulsevoip.net\",\n        \"4379@00310.impulsevoip.net\",\n        \"4380@00310.impulsevoip.net\",\n        \"4381@00310.impulsevoip.net\",\n        \"4382@00310.impulsevoip.net\",\n        \"4383@00310.impulsevoip.net\",\n        \"4384@00310.impulsevoip.net\",\n        \"4385@00310.impulsevoip.net\",\n        \"4386@00310.impulsevoip.net\",\n        \"4387@00310.impulsevoip.net\",\n        \"4388@00310.impulsevoip.net\",\n        \"4389@00310.impulsevoip.net\",\n        \"4390@00310.impulsevoip.net\",\n        \"4391@00310.impulsevoip.net\",\n        \"4392@00310.impulsevoip.net\",\n        \"4393@00310.impulsevoip.net\",\n        \"4394@00310.impulsevoip.net\",\n        \"4395@00310.impulsevoip.net\",\n        \"4396@00310.impulsevoip.net\",\n        \"4397@00310.impulsevoip.net\",\n        \"4398@00310.impulsevoip.net\",\n        \"4399@00310.impulsevoip.net\",\n        \"4400@00310.impulsevoip.net\",\n        \"4401@00310.impulsevoip.net\",\n        \"4402@00310.impulsevoip.net\",\n        \"4403@00310.impulsevoip.net\",\n        \"4404@00310.impulsevoip.net\",\n        \"4405@00310.impulsevoip.net\",\n        \"4406@00310.impulsevoip.net\",\n        \"4407@00310.impulsevoip.net\",\n        \"4408@00310.impulsevoip.net\",\n        \"4409@00310.impulsevoip.net\",\n        \"4410@00310.impulsevoip.net\",\n        \"4411@00310.impulsevoip.net\",\n        \"4412@00310.impulsevoip.net\",\n        \"4413@00310.impulsevoip.net\",\n        \"4414@00310.impulsevoip.net\",\n        \"4415@00310.impulsevoip.net\",\n        \"4416@00310.impulsevoip.net\",\n        \"4417@00310.impulsevoip.net\",\n        \"4418@00310.impulsevoip.net\",\n        \"4419@00310.impulsevoip.net\",\n        \"4420@00310.impulsevoip.net\",\n        \"4421@00310.impulsevoip.net\",\n        \"4422@00310.impulsevoip.net\",\n        \"4423@00310.impulsevoip.net\",\n        \"4424@00310.impulsevoip.net\",\n        \"4425@00310.impulsevoip.net\",\n        \"4426@00310.impulsevoip.net\",\n        \"4427@00310.impulsevoip.net\",\n        \"4428@00310.impulsevoip.net\",\n        \"4429@00310.impulsevoip.net\",\n        \"4430@00310.impulsevoip.net\",\n        \"4431@00310.impulsevoip.net\",\n        \"4432@00310.impulsevoip.net\",\n        \"4433@00310.impulsevoip.net\",\n        \"4434@00310.impulsevoip.net\",\n        \"4435@00310.impulsevoip.net\",\n        \"4436@00310.impulsevoip.net\",\n        \"4437@00310.impulsevoip.net\",\n        \"4438@00310.impulsevoip.net\",\n        \"4439@00310.impulsevoip.net\",\n        \"4440@00310.impulsevoip.net\",\n        \"4441@00310.impulsevoip.net\",\n        \"4442@00310.impulsevoip.net\",\n        \"4443@00310.impulsevoip.net\",\n        \"4444@00310.impulsevoip.net\",\n        \"4445@00310.impulsevoip.net\",\n        \"4446@00310.impulsevoip.net\",\n        \"4447@00310.impulsevoip.net\",\n        \"4448@00310.impulsevoip.net\",\n        \"4449@00310.impulsevoip.net\",\n        \"4450@00310.impulsevoip.net\",\n        \"4451@00310.impulsevoip.net\",\n        \"4452@00310.impulsevoip.net\",\n        \"4453@00310.impulsevoip.net\",\n        \"4454@00310.impulsevoip.net\",\n        \"4455@00310.impulsevoip.net\",\n        \"4456@00310.impulsevoip.net\",\n        \"4457@00310.impulsevoip.net\",\n        \"4458@00310.impulsevoip.net\",\n        \"4459@00310.impulsevoip.net\",\n        \"4460@00310.impulsevoip.net\",\n        \"4461@00310.impulsevoip.net\",\n        \"4462@00310.impulsevoip.net\",\n        \"4463@00310.impulsevoip.net\",\n        \"4464@00310.impulsevoip.net\",\n        \"4465@00310.impulsevoip.net\",\n        \"4466@00310.impulsevoip.net\",\n        \"4467@00310.impulsevoip.net\",\n        \"4468@00310.impulsevoip.net\",\n        \"4469@00310.impulsevoip.net\",\n        \"4470@00310.impulsevoip.net\",\n        \"4471@00310.impulsevoip.net\",\n        \"4472@00310.impulsevoip.net\",\n        \"4473@00310.impulsevoip.net\",\n        \"4474@00310.impulsevoip.net\",\n        \"4475@00310.impulsevoip.net\",\n        \"4476@00310.impulsevoip.net\",\n        \"4477@00310.impulsevoip.net\",\n        \"4478@00310.impulsevoip.net\",\n        \"4479@00310.impulsevoip.net\",\n        \"4480@00310.impulsevoip.net\",\n        \"4481@00310.impulsevoip.net\",\n        \"4482@00310.impulsevoip.net\",\n        \"4483@00310.impulsevoip.net\",\n        \"4484@00310.impulsevoip.net\",\n        \"4485@00310.impulsevoip.net\",\n        \"4486@00310.impulsevoip.net\",\n        \"4487@00310.impulsevoip.net\",\n        \"4488@00310.impulsevoip.net\",\n        \"4489@00310.impulsevoip.net\",\n        \"4490@00310.impulsevoip.net\",\n        \"4491@00310.impulsevoip.net\",\n        \"4492@00310.impulsevoip.net\",\n        \"4493@00310.impulsevoip.net\",\n        \"4494@00310.impulsevoip.net\",\n        \"4495@00310.impulsevoip.net\",\n        \"4496@00310.impulsevoip.net\",\n        \"4497@00310.impulsevoip.net\",\n        \"4498@00310.impulsevoip.net\",\n        \"4499@00310.impulsevoip.net\",\n        \"4500@00310.impulsevoip.net\",\n        \"4501@00310.impulsevoip.net\",\n        \"4502@00310.impulsevoip.net\",\n        \"4503@00310.impulsevoip.net\",\n        \"4504@00310.impulsevoip.net\",\n        \"4505@00310.impulsevoip.net\",\n        \"4506@00310.impulsevoip.net\",\n        \"4507@00310.impulsevoip.net\",\n        \"4508@00310.impulsevoip.net\",\n        \"4509@00310.impulsevoip.net\",\n        \"4510@00310.impulsevoip.net\",\n        \"4511@00310.impulsevoip.net\",\n        \"4512@00310.impulsevoip.net\",\n        \"4513@00310.impulsevoip.net\",\n        \"4514@00310.impulsevoip.net\",\n        \"4515@00310.impulsevoip.net\",\n        \"4516@00310.impulsevoip.net\",\n        \"4517@00310.impulsevoip.net\",\n        \"4518@00310.impulsevoip.net\",\n        \"4519@00310.impulsevoip.net\",\n        \"4520@00310.impulsevoip.net\",\n        \"4521@00310.impulsevoip.net\",\n        \"4522@00310.impulsevoip.net\",\n        \"4523@00310.impulsevoip.net\",\n        \"4524@00310.impulsevoip.net\",\n        \"4525@00310.impulsevoip.net\",\n        \"4526@00310.impulsevoip.net\",\n        \"4527@00310.impulsevoip.net\",\n        \"4528@00310.impulsevoip.net\",\n        \"4529@00310.impulsevoip.net\",\n        \"4530@00310.impulsevoip.net\",\n        \"4531@00310.impulsevoip.net\",\n        \"4532@00310.impulsevoip.net\",\n        \"4533@00310.impulsevoip.net\",\n        \"4534@00310.impulsevoip.net\",\n        \"4535@00310.impulsevoip.net\",\n        \"4536@00310.impulsevoip.net\",\n        \"4537@00310.impulsevoip.net\",\n        \"4538@00310.impulsevoip.net\",\n        \"4539@00310.impulsevoip.net\",\n        \"4540@00310.impulsevoip.net\",\n        \"4541@00310.impulsevoip.net\",\n        \"4542@00310.impulsevoip.net\",\n        \"4543@00310.impulsevoip.net\",\n        \"4544@00310.impulsevoip.net\",\n        \"4545@00310.impulsevoip.net\",\n        \"4546@00310.impulsevoip.net\",\n        \"4547@00310.impulsevoip.net\",\n        \"4548@00310.impulsevoip.net\",\n        \"4549@00310.impulsevoip.net\",\n        \"4550@00310.impulsevoip.net\",\n        \"4551@00310.impulsevoip.net\",\n        \"4552@00310.impulsevoip.net\",\n        \"4553@00310.impulsevoip.net\",\n        \"4554@00310.impulsevoip.net\",\n        \"4555@00310.impulsevoip.net\",\n        \"4556@00310.impulsevoip.net\",\n        \"4557@00310.impulsevoip.net\",\n        \"4558@00310.impulsevoip.net\",\n        \"4559@00310.impulsevoip.net\",\n        \"4560@00310.impulsevoip.net\",\n        \"4561@00310.impulsevoip.net\",\n        \"4562@00310.impulsevoip.net\",\n        \"4563@00310.impulsevoip.net\",\n        \"4564@00310.impulsevoip.net\",\n        \"4565@00310.impulsevoip.net\",\n        \"4566@00310.impulsevoip.net\",\n        \"4567@00310.impulsevoip.net\",\n        \"4568@00310.impulsevoip.net\",\n        \"4569@00310.impulsevoip.net\",\n        \"4570@00310.impulsevoip.net\",\n        \"4571@00310.impulsevoip.net\",\n        \"4572@00310.impulsevoip.net\",\n        \"4573@00310.impulsevoip.net\",\n        \"4574@00310.impulsevoip.net\",\n        \"4575@00310.impulsevoip.net\",\n        \"4576@00310.impulsevoip.net\",\n        \"4577@00310.impulsevoip.net\",\n        \"4578@00310.impulsevoip.net\",\n        \"4579@00310.impulsevoip.net\",\n        \"4580@00310.impulsevoip.net\",\n        \"4581@00310.impulsevoip.net\",\n        \"4582@00310.impulsevoip.net\",\n        \"4583@00310.impulsevoip.net\",\n        \"4584@00310.impulsevoip.net\",\n        \"4585@00310.impulsevoip.net\",\n        \"4586@00310.impulsevoip.net\",\n        \"4587@00310.impulsevoip.net\",\n        \"4588@00310.impulsevoip.net\",\n        \"4589@00310.impulsevoip.net\",\n        \"4590@00310.impulsevoip.net\",\n        \"4591@00310.impulsevoip.net\",\n        \"4592@00310.impulsevoip.net\",\n        \"4593@00310.impulsevoip.net\",\n        \"4594@00310.impulsevoip.net\",\n        \"4595@00310.impulsevoip.net\",\n        \"4596@00310.impulsevoip.net\",\n        \"4597@00310.impulsevoip.net\",\n        \"4598@00310.impulsevoip.net\",\n        \"4599@00310.impulsevoip.net\",\n        \"4600@00310.impulsevoip.net\",\n        \"4601@00310.impulsevoip.net\",\n        \"4602@00310.impulsevoip.net\",\n        \"4603@00310.impulsevoip.net\",\n        \"4604@00310.impulsevoip.net\",\n        \"4605@00310.impulsevoip.net\",\n        \"4606@00310.impulsevoip.net\",\n        \"4607@00310.impulsevoip.net\",\n        \"4608@00310.impulsevoip.net\",\n        \"4609@00310.impulsevoip.net\",\n        \"4610@00310.impulsevoip.net\",\n        \"4611@00310.impulsevoip.net\",\n        \"4612@00310.impulsevoip.net\",\n        \"4613@00310.impulsevoip.net\",\n        \"4614@00310.impulsevoip.net\",\n        \"4615@00310.impulsevoip.net\",\n        \"4616@00310.impulsevoip.net\",\n        \"4617@00310.impulsevoip.net\",\n        \"4618@00310.impulsevoip.net\",\n        \"4619@00310.impulsevoip.net\",\n        \"4620@00310.impulsevoip.net\",\n        \"4621@00310.impulsevoip.net\",\n        \"4622@00310.impulsevoip.net\",\n        \"4623@00310.impulsevoip.net\",\n        \"4624@00310.impulsevoip.net\",\n        \"4625@00310.impulsevoip.net\",\n        \"4626@00310.impulsevoip.net\",\n        \"4627@00310.impulsevoip.net\",\n        \"4628@00310.impulsevoip.net\",\n        \"4629@00310.impulsevoip.net\",\n        \"4630@00310.impulsevoip.net\",\n        \"4631@00310.impulsevoip.net\",\n        \"4632@00310.impulsevoip.net\",\n        \"4633@00310.impulsevoip.net\",\n        \"4634@00310.impulsevoip.net\",\n        \"4635@00310.impulsevoip.net\",\n        \"4636@00310.impulsevoip.net\",\n        \"4637@00310.impulsevoip.net\",\n        \"4638@00310.impulsevoip.net\",\n        \"4639@00310.impulsevoip.net\",\n        \"4640@00310.impulsevoip.net\",\n        \"4641@00310.impulsevoip.net\",\n        \"4642@00310.impulsevoip.net\",\n        \"4643@00310.impulsevoip.net\",\n        \"4644@00310.impulsevoip.net\",\n        \"4645@00310.impulsevoip.net\",\n        \"4646@00310.impulsevoip.net\",\n        \"4647@00310.impulsevoip.net\",\n        \"4648@00310.impulsevoip.net\",\n        \"4649@00310.impulsevoip.net\",\n        \"4650@00310.impulsevoip.net\",\n        \"4651@00310.impulsevoip.net\",\n        \"4652@00310.impulsevoip.net\",\n        \"4653@00310.impulsevoip.net\",\n        \"4654@00310.impulsevoip.net\",\n        \"4655@00310.impulsevoip.net\",\n        \"4656@00310.impulsevoip.net\",\n        \"4657@00310.impulsevoip.net\",\n        \"4658@00310.impulsevoip.net\",\n        \"4659@00310.impulsevoip.net\",\n        \"4660@00310.impulsevoip.net\",\n        \"4661@00310.impulsevoip.net\",\n        \"4662@00310.impulsevoip.net\",\n        \"4663@00310.impulsevoip.net\",\n        \"4664@00310.impulsevoip.net\",\n        \"4665@00310.impulsevoip.net\",\n        \"4666@00310.impulsevoip.net\",\n        \"4667@00310.impulsevoip.net\",\n        \"4668@00310.impulsevoip.net\",\n        \"4669@00310.impulsevoip.net\",\n        \"4670@00310.impulsevoip.net\",\n        \"4671@00310.impulsevoip.net\",\n        \"4672@00310.impulsevoip.net\",\n        \"4673@00310.impulsevoip.net\",\n        \"4674@00310.impulsevoip.net\",\n        \"4675@00310.impulsevoip.net\",\n        \"4676@00310.impulsevoip.net\",\n        \"4677@00310.impulsevoip.net\",\n        \"4678@00310.impulsevoip.net\",\n        \"4679@00310.impulsevoip.net\",\n        \"4680@00310.impulsevoip.net\",\n        \"4681@00310.impulsevoip.net\",\n        \"4682@00310.impulsevoip.net\",\n        \"4683@00310.impulsevoip.net\",\n        \"4684@00310.impulsevoip.net\",\n        \"4685@00310.impulsevoip.net\",\n        \"4686@00310.impulsevoip.net\",\n        \"4687@00310.impulsevoip.net\",\n        \"4688@00310.impulsevoip.net\",\n        \"4689@00310.impulsevoip.net\",\n        \"4690@00310.impulsevoip.net\",\n        \"4691@00310.impulsevoip.net\",\n        \"4692@00310.impulsevoip.net\",\n        \"4693@00310.impulsevoip.net\",\n        \"4694@00310.impulsevoip.net\",\n        \"4695@00310.impulsevoip.net\",\n        \"4696@00310.impulsevoip.net\",\n        \"4697@00310.impulsevoip.net\",\n        \"4698@00310.impulsevoip.net\",\n        \"4699@00310.impulsevoip.net\",\n        \"4700@00310.impulsevoip.net\",\n        \"4701@00310.impulsevoip.net\",\n        \"4702@00310.impulsevoip.net\",\n        \"4703@00310.impulsevoip.net\",\n        \"4704@00310.impulsevoip.net\",\n        \"4705@00310.impulsevoip.net\",\n        \"4706@00310.impulsevoip.net\",\n        \"4707@00310.impulsevoip.net\",\n        \"4708@00310.impulsevoip.net\",\n        \"4709@00310.impulsevoip.net\",\n        \"4710@00310.impulsevoip.net\",\n        \"4711@00310.impulsevoip.net\",\n        \"4712@00310.impulsevoip.net\",\n        \"4713@00310.impulsevoip.net\",\n        \"4714@00310.impulsevoip.net\",\n        \"4715@00310.impulsevoip.net\",\n        \"4716@00310.impulsevoip.net\",\n        \"4717@00310.impulsevoip.net\",\n        \"4718@00310.impulsevoip.net\",\n        \"4719@00310.impulsevoip.net\",\n        \"4720@00310.impulsevoip.net\",\n        \"4721@00310.impulsevoip.net\",\n        \"4722@00310.impulsevoip.net\",\n        \"4723@00310.impulsevoip.net\",\n        \"4724@00310.impulsevoip.net\",\n        \"4725@00310.impulsevoip.net\",\n        \"4726@00310.impulsevoip.net\",\n        \"4727@00310.impulsevoip.net\",\n        \"4728@00310.impulsevoip.net\",\n        \"4729@00310.impulsevoip.net\",\n        \"4730@00310.impulsevoip.net\",\n        \"4731@00310.impulsevoip.net\",\n        \"4732@00310.impulsevoip.net\",\n        \"4733@00310.impulsevoip.net\",\n        \"4734@00310.impulsevoip.net\",\n        \"4735@00310.impulsevoip.net\",\n        \"4736@00310.impulsevoip.net\",\n        \"4737@00310.impulsevoip.net\",\n        \"4738@00310.impulsevoip.net\",\n        \"4739@00310.impulsevoip.net\",\n        \"4740@00310.impulsevoip.net\",\n        \"4741@00310.impulsevoip.net\",\n        \"4742@00310.impulsevoip.net\",\n        \"4743@00310.impulsevoip.net\",\n        \"4744@00310.impulsevoip.net\",\n        \"4745@00310.impulsevoip.net\",\n        \"4746@00310.impulsevoip.net\",\n        \"4747@00310.impulsevoip.net\",\n        \"4748@00310.impulsevoip.net\",\n        \"4749@00310.impulsevoip.net\",\n        \"4750@00310.impulsevoip.net\",\n        \"4751@00310.impulsevoip.net\",\n        \"4752@00310.impulsevoip.net\",\n        \"4753@00310.impulsevoip.net\",\n        \"4754@00310.impulsevoip.net\",\n        \"4755@00310.impulsevoip.net\",\n        \"4756@00310.impulsevoip.net\",\n        \"4757@00310.impulsevoip.net\",\n        \"4758@00310.impulsevoip.net\",\n        \"4759@00310.impulsevoip.net\",\n        \"4760@00310.impulsevoip.net\",\n        \"4761@00310.impulsevoip.net\",\n        \"4762@00310.impulsevoip.net\",\n        \"4763@00310.impulsevoip.net\",\n        \"4764@00310.impulsevoip.net\",\n        \"4765@00310.impulsevoip.net\",\n        \"4766@00310.impulsevoip.net\",\n        \"4767@00310.impulsevoip.net\",\n        \"4768@00310.impulsevoip.net\",\n        \"4769@00310.impulsevoip.net\",\n        \"4770@00310.impulsevoip.net\",\n        \"4771@00310.impulsevoip.net\",\n        \"4772@00310.impulsevoip.net\",\n        \"4773@00310.impulsevoip.net\",\n        \"4774@00310.impulsevoip.net\",\n        \"4775@00310.impulsevoip.net\",\n        \"4776@00310.impulsevoip.net\",\n        \"4777@00310.impulsevoip.net\",\n        \"4778@00310.impulsevoip.net\",\n        \"4779@00310.impulsevoip.net\",\n        \"4780@00310.impulsevoip.net\",\n        \"4781@00310.impulsevoip.net\",\n        \"4782@00310.impulsevoip.net\",\n        \"4783@00310.impulsevoip.net\",\n        \"4784@00310.impulsevoip.net\",\n        \"4785@00310.impulsevoip.net\",\n        \"4786@00310.impulsevoip.net\",\n        \"4787@00310.impulsevoip.net\",\n        \"4788@00310.impulsevoip.net\",\n        \"4789@00310.impulsevoip.net\",\n        \"4790@00310.impulsevoip.net\",\n        \"4791@00310.impulsevoip.net\",\n        \"4792@00310.impulsevoip.net\",\n        \"4793@00310.impulsevoip.net\",\n        \"4794@00310.impulsevoip.net\",\n        \"4795@00310.impulsevoip.net\",\n        \"4796@00310.impulsevoip.net\",\n        \"4797@00310.impulsevoip.net\",\n        \"4798@00310.impulsevoip.net\",\n        \"4799@00310.impulsevoip.net\",\n        \"4800@00310.impulsevoip.net\",\n        \"4801@00310.impulsevoip.net\",\n        \"4802@00310.impulsevoip.net\",\n        \"4803@00310.impulsevoip.net\",\n        \"4804@00310.impulsevoip.net\",\n        \"4805@00310.impulsevoip.net\",\n        \"4806@00310.impulsevoip.net\",\n        \"4807@00310.impulsevoip.net\",\n        \"4808@00310.impulsevoip.net\",\n        \"4809@00310.impulsevoip.net\",\n        \"4810@00310.impulsevoip.net\",\n        \"4811@00310.impulsevoip.net\",\n        \"4812@00310.impulsevoip.net\",\n        \"4813@00310.impulsevoip.net\",\n        \"4814@00310.impulsevoip.net\",\n        \"4815@00310.impulsevoip.net\",\n        \"4816@00310.impulsevoip.net\",\n        \"4817@00310.impulsevoip.net\",\n        \"4818@00310.impulsevoip.net\",\n        \"4819@00310.impulsevoip.net\",\n        \"4820@00310.impulsevoip.net\",\n        \"4821@00310.impulsevoip.net\",\n        \"4822@00310.impulsevoip.net\",\n        \"4823@00310.impulsevoip.net\",\n        \"4824@00310.impulsevoip.net\",\n        \"4825@00310.impulsevoip.net\",\n        \"4826@00310.impulsevoip.net\",\n        \"4827@00310.impulsevoip.net\",\n        \"4828@00310.impulsevoip.net\",\n        \"4829@00310.impulsevoip.net\",\n        \"4830@00310.impulsevoip.net\",\n        \"4831@00310.impulsevoip.net\",\n        \"4832@00310.impulsevoip.net\",\n        \"4833@00310.impulsevoip.net\",\n        \"4834@00310.impulsevoip.net\",\n        \"4835@00310.impulsevoip.net\",\n        \"4836@00310.impulsevoip.net\",\n        \"4837@00310.impulsevoip.net\",\n        \"4838@00310.impulsevoip.net\",\n        \"4839@00310.impulsevoip.net\",\n        \"4840@00310.impulsevoip.net\",\n        \"4841@00310.impulsevoip.net\",\n        \"4842@00310.impulsevoip.net\",\n        \"4843@00310.impulsevoip.net\",\n        \"4844@00310.impulsevoip.net\",\n        \"4845@00310.impulsevoip.net\",\n        \"4846@00310.impulsevoip.net\",\n        \"4847@00310.impulsevoip.net\",\n        \"4848@00310.impulsevoip.net\",\n        \"4849@00310.impulsevoip.net\",\n        \"4850@00310.impulsevoip.net\",\n        \"4851@00310.impulsevoip.net\",\n        \"4852@00310.impulsevoip.net\",\n        \"4853@00310.impulsevoip.net\",\n        \"4854@00310.impulsevoip.net\",\n        \"4855@00310.impulsevoip.net\",\n        \"4856@00310.impulsevoip.net\",\n        \"4857@00310.impulsevoip.net\",\n        \"4858@00310.impulsevoip.net\",\n        \"4859@00310.impulsevoip.net\",\n        \"4860@00310.impulsevoip.net\",\n        \"4861@00310.impulsevoip.net\",\n        \"4862@00310.impulsevoip.net\",\n        \"4863@00310.impulsevoip.net\",\n        \"4864@00310.impulsevoip.net\",\n        \"4865@00310.impulsevoip.net\",\n        \"4866@00310.impulsevoip.net\",\n        \"4867@00310.impulsevoip.net\",\n        \"4868@00310.impulsevoip.net\",\n        \"4869@00310.impulsevoip.net\",\n        \"4870@00310.impulsevoip.net\",\n        \"4871@00310.impulsevoip.net\",\n        \"4872@00310.impulsevoip.net\",\n        \"4873@00310.impulsevoip.net\",\n        \"4874@00310.impulsevoip.net\",\n        \"4875@00310.impulsevoip.net\",\n        \"4876@00310.impulsevoip.net\",\n        \"4877@00310.impulsevoip.net\",\n        \"4878@00310.impulsevoip.net\",\n        \"4879@00310.impulsevoip.net\",\n        \"4880@00310.impulsevoip.net\",\n        \"4881@00310.impulsevoip.net\",\n        \"4882@00310.impulsevoip.net\",\n        \"4883@00310.impulsevoip.net\",\n        \"4884@00310.impulsevoip.net\",\n        \"4885@00310.impulsevoip.net\",\n        \"4886@00310.impulsevoip.net\",\n        \"4887@00310.impulsevoip.net\",\n        \"4888@00310.impulsevoip.net\",\n        \"4889@00310.impulsevoip.net\",\n        \"4890@00310.impulsevoip.net\",\n        \"4891@00310.impulsevoip.net\",\n        \"4892@00310.impulsevoip.net\",\n        \"4893@00310.impulsevoip.net\",\n        \"4894@00310.impulsevoip.net\",\n        \"4895@00310.impulsevoip.net\",\n        \"4896@00310.impulsevoip.net\",\n        \"4897@00310.impulsevoip.net\",\n        \"4898@00310.impulsevoip.net\",\n        \"4899@00310.impulsevoip.net\",\n        \"4900@00310.impulsevoip.net\",\n        \"4901@00310.impulsevoip.net\",\n        \"4902@00310.impulsevoip.net\",\n        \"4903@00310.impulsevoip.net\",\n        \"4904@00310.impulsevoip.net\",\n        \"4905@00310.impulsevoip.net\",\n        \"4906@00310.impulsevoip.net\",\n        \"4907@00310.impulsevoip.net\",\n        \"4908@00310.impulsevoip.net\",\n        \"4909@00310.impulsevoip.net\",\n        \"4910@00310.impulsevoip.net\",\n        \"5587@00310.impulsevoip.net\",\n        \"4912@00310.impulsevoip.net\",\n        \"4913@00310.impulsevoip.net\",\n        \"4914@00310.impulsevoip.net\",\n        \"4915@00310.impulsevoip.net\",\n        \"4916@00310.impulsevoip.net\",\n        \"4917@00310.impulsevoip.net\",\n        \"4918@00310.impulsevoip.net\",\n        \"4919@00310.impulsevoip.net\",\n        \"4920@00310.impulsevoip.net\",\n        \"4921@00310.impulsevoip.net\",\n        \"4922@00310.impulsevoip.net\",\n        \"4923@00310.impulsevoip.net\",\n        \"4924@00310.impulsevoip.net\",\n        \"4925@00310.impulsevoip.net\",\n        \"4926@00310.impulsevoip.net\",\n        \"4927@00310.impulsevoip.net\",\n        \"4928@00310.impulsevoip.net\",\n        \"4929@00310.impulsevoip.net\",\n        \"4930@00310.impulsevoip.net\",\n        \"4931@00310.impulsevoip.net\",\n        \"4932@00310.impulsevoip.net\",\n        \"4933@00310.impulsevoip.net\",\n        \"4934@00310.impulsevoip.net\",\n        \"4935@00310.impulsevoip.net\",\n        \"4936@00310.impulsevoip.net\",\n        \"4937@00310.impulsevoip.net\",\n        \"4938@00310.impulsevoip.net\",\n        \"4939@00310.impulsevoip.net\",\n        \"4940@00310.impulsevoip.net\",\n        \"4941@00310.impulsevoip.net\",\n        \"4942@00310.impulsevoip.net\",\n        \"4943@00310.impulsevoip.net\",\n        \"4944@00310.impulsevoip.net\",\n        \"4945@00310.impulsevoip.net\",\n        \"4946@00310.impulsevoip.net\",\n        \"4947@00310.impulsevoip.net\",\n        \"4948@00310.impulsevoip.net\",\n        \"4949@00310.impulsevoip.net\",\n        \"4950@00310.impulsevoip.net\",\n        \"4951@00310.impulsevoip.net\",\n        \"4952@00310.impulsevoip.net\",\n        \"4953@00310.impulsevoip.net\",\n        \"4954@00310.impulsevoip.net\",\n        \"4955@00310.impulsevoip.net\",\n        \"4956@00310.impulsevoip.net\",\n        \"4957@00310.impulsevoip.net\",\n        \"4958@00310.impulsevoip.net\",\n        \"4959@00310.impulsevoip.net\",\n        \"4960@00310.impulsevoip.net\",\n        \"4961@00310.impulsevoip.net\",\n        \"4962@00310.impulsevoip.net\",\n        \"4963@00310.impulsevoip.net\",\n        \"4964@00310.impulsevoip.net\",\n        \"4965@00310.impulsevoip.net\",\n        \"4966@00310.impulsevoip.net\",\n        \"4967@00310.impulsevoip.net\",\n        \"4968@00310.impulsevoip.net\",\n        \"4969@00310.impulsevoip.net\",\n        \"4970@00310.impulsevoip.net\",\n        \"4971@00310.impulsevoip.net\",\n        \"4972@00310.impulsevoip.net\",\n        \"4973@00310.impulsevoip.net\",\n        \"4974@00310.impulsevoip.net\",\n        \"4975@00310.impulsevoip.net\",\n        \"4976@00310.impulsevoip.net\",\n        \"4977@00310.impulsevoip.net\",\n        \"4978@00310.impulsevoip.net\",\n        \"4979@00310.impulsevoip.net\",\n        \"4980@00310.impulsevoip.net\",\n        \"4981@00310.impulsevoip.net\",\n        \"4982@00310.impulsevoip.net\",\n        \"4983@00310.impulsevoip.net\",\n        \"4984@00310.impulsevoip.net\",\n        \"4985@00310.impulsevoip.net\",\n        \"4986@00310.impulsevoip.net\",\n        \"4987@00310.impulsevoip.net\",\n        \"4988@00310.impulsevoip.net\",\n        \"4989@00310.impulsevoip.net\",\n        \"4990@00310.impulsevoip.net\",\n        \"4991@00310.impulsevoip.net\",\n        \"4992@00310.impulsevoip.net\",\n        \"4993@00310.impulsevoip.net\",\n        \"4994@00310.impulsevoip.net\",\n        \"4995@00310.impulsevoip.net\",\n        \"4996@00310.impulsevoip.net\",\n        \"4997@00310.impulsevoip.net\",\n        \"4998@00310.impulsevoip.net\",\n        \"4999@00310.impulsevoip.net\",\n        \"5000@00310.impulsevoip.net\",\n        \"5001@00310.impulsevoip.net\",\n        \"5002@00310.impulsevoip.net\",\n        \"5003@00310.impulsevoip.net\",\n        \"5004@00310.impulsevoip.net\",\n        \"5005@00310.impulsevoip.net\",\n        \"5006@00310.impulsevoip.net\",\n        \"5007@00310.impulsevoip.net\",\n        \"5008@00310.impulsevoip.net\",\n        \"5009@00310.impulsevoip.net\",\n        \"5010@00310.impulsevoip.net\",\n        \"5011@00310.impulsevoip.net\",\n        \"5012@00310.impulsevoip.net\",\n        \"5013@00310.impulsevoip.net\",\n        \"5014@00310.impulsevoip.net\",\n        \"5015@00310.impulsevoip.net\",\n        \"5016@00310.impulsevoip.net\",\n        \"5017@00310.impulsevoip.net\",\n        \"5018@00310.impulsevoip.net\",\n        \"5019@00310.impulsevoip.net\",\n        \"5020@00310.impulsevoip.net\",\n        \"5021@00310.impulsevoip.net\",\n        \"5022@00310.impulsevoip.net\",\n        \"5023@00310.impulsevoip.net\",\n        \"5024@00310.impulsevoip.net\",\n        \"5025@00310.impulsevoip.net\",\n        \"5026@00310.impulsevoip.net\",\n        \"5027@00310.impulsevoip.net\",\n        \"5028@00310.impulsevoip.net\",\n        \"5029@00310.impulsevoip.net\",\n        \"5030@00310.impulsevoip.net\",\n        \"5031@00310.impulsevoip.net\",\n        \"5032@00310.impulsevoip.net\",\n        \"5033@00310.impulsevoip.net\",\n        \"5034@00310.impulsevoip.net\",\n        \"5035@00310.impulsevoip.net\",\n        \"5036@00310.impulsevoip.net\",\n        \"5037@00310.impulsevoip.net\",\n        \"5038@00310.impulsevoip.net\",\n        \"5039@00310.impulsevoip.net\",\n        \"5040@00310.impulsevoip.net\",\n        \"5041@00310.impulsevoip.net\",\n        \"5042@00310.impulsevoip.net\",\n        \"5043@00310.impulsevoip.net\",\n        \"5044@00310.impulsevoip.net\",\n        \"5045@00310.impulsevoip.net\",\n        \"5046@00310.impulsevoip.net\",\n        \"5047@00310.impulsevoip.net\",\n        \"5048@00310.impulsevoip.net\",\n        \"5049@00310.impulsevoip.net\",\n        \"5050@00310.impulsevoip.net\",\n        \"5051@00310.impulsevoip.net\",\n        \"5052@00310.impulsevoip.net\",\n        \"5053@00310.impulsevoip.net\",\n        \"5054@00310.impulsevoip.net\",\n        \"5055@00310.impulsevoip.net\",\n        \"5056@00310.impulsevoip.net\",\n        \"5057@00310.impulsevoip.net\",\n        \"5058@00310.impulsevoip.net\",\n        \"5059@00310.impulsevoip.net\",\n        \"5060@00310.impulsevoip.net\",\n        \"5061@00310.impulsevoip.net\",\n        \"5062@00310.impulsevoip.net\",\n        \"5063@00310.impulsevoip.net\",\n        \"5064@00310.impulsevoip.net\",\n        \"5065@00310.impulsevoip.net\",\n        \"5066@00310.impulsevoip.net\",\n        \"5067@00310.impulsevoip.net\",\n        \"5068@00310.impulsevoip.net\",\n        \"5069@00310.impulsevoip.net\",\n        \"5070@00310.impulsevoip.net\",\n        \"5071@00310.impulsevoip.net\",\n        \"5072@00310.impulsevoip.net\",\n        \"5073@00310.impulsevoip.net\",\n        \"5074@00310.impulsevoip.net\",\n        \"5075@00310.impulsevoip.net\",\n        \"5076@00310.impulsevoip.net\",\n        \"5077@00310.impulsevoip.net\",\n        \"5078@00310.impulsevoip.net\",\n        \"5079@00310.impulsevoip.net\",\n        \"5080@00310.impulsevoip.net\",\n        \"5081@00310.impulsevoip.net\",\n        \"5082@00310.impulsevoip.net\",\n        \"5083@00310.impulsevoip.net\",\n        \"5084@00310.impulsevoip.net\",\n        \"5085@00310.impulsevoip.net\",\n        \"5086@00310.impulsevoip.net\",\n        \"5087@00310.impulsevoip.net\",\n        \"5088@00310.impulsevoip.net\",\n        \"5089@00310.impulsevoip.net\",\n        \"5090@00310.impulsevoip.net\",\n        \"5091@00310.impulsevoip.net\",\n        \"5092@00310.impulsevoip.net\",\n        \"5093@00310.impulsevoip.net\",\n        \"5094@00310.impulsevoip.net\",\n        \"5095@00310.impulsevoip.net\",\n        \"5096@00310.impulsevoip.net\",\n        \"5097@00310.impulsevoip.net\",\n        \"5098@00310.impulsevoip.net\",\n        \"5099@00310.impulsevoip.net\",\n        \"5100@00310.impulsevoip.net\",\n        \"5101@00310.impulsevoip.net\",\n        \"5102@00310.impulsevoip.net\",\n        \"5103@00310.impulsevoip.net\",\n        \"5104@00310.impulsevoip.net\",\n        \"5105@00310.impulsevoip.net\",\n        \"5106@00310.impulsevoip.net\",\n        \"5107@00310.impulsevoip.net\",\n        \"5108@00310.impulsevoip.net\",\n        \"5109@00310.impulsevoip.net\",\n        \"5110@00310.impulsevoip.net\",\n        \"5111@00310.impulsevoip.net\",\n        \"5112@00310.impulsevoip.net\",\n        \"5113@00310.impulsevoip.net\",\n        \"5114@00310.impulsevoip.net\",\n        \"5115@00310.impulsevoip.net\",\n        \"5116@00310.impulsevoip.net\",\n        \"5117@00310.impulsevoip.net\",\n        \"5118@00310.impulsevoip.net\",\n        \"5119@00310.impulsevoip.net\",\n        \"5120@00310.impulsevoip.net\",\n        \"5121@00310.impulsevoip.net\",\n        \"5122@00310.impulsevoip.net\",\n        \"5123@00310.impulsevoip.net\",\n        \"5124@00310.impulsevoip.net\",\n        \"5125@00310.impulsevoip.net\",\n        \"5126@00310.impulsevoip.net\",\n        \"5127@00310.impulsevoip.net\",\n        \"5128@00310.impulsevoip.net\",\n        \"5129@00310.impulsevoip.net\",\n        \"5130@00310.impulsevoip.net\",\n        \"5131@00310.impulsevoip.net\",\n        \"5132@00310.impulsevoip.net\",\n        \"5133@00310.impulsevoip.net\",\n        \"5134@00310.impulsevoip.net\",\n        \"5135@00310.impulsevoip.net\",\n        \"5136@00310.impulsevoip.net\",\n        \"5137@00310.impulsevoip.net\",\n        \"5138@00310.impulsevoip.net\",\n        \"5139@00310.impulsevoip.net\",\n        \"5140@00310.impulsevoip.net\",\n        \"5141@00310.impulsevoip.net\",\n        \"5142@00310.impulsevoip.net\",\n        \"5143@00310.impulsevoip.net\",\n        \"5144@00310.impulsevoip.net\",\n        \"5145@00310.impulsevoip.net\",\n        \"5146@00310.impulsevoip.net\",\n        \"5147@00310.impulsevoip.net\",\n        \"5148@00310.impulsevoip.net\",\n        \"5149@00310.impulsevoip.net\",\n        \"5150@00310.impulsevoip.net\",\n        \"5151@00310.impulsevoip.net\",\n        \"5152@00310.impulsevoip.net\",\n        \"5153@00310.impulsevoip.net\",\n        \"5154@00310.impulsevoip.net\",\n        \"5155@00310.impulsevoip.net\",\n        \"5156@00310.impulsevoip.net\",\n        \"5157@00310.impulsevoip.net\",\n        \"5158@00310.impulsevoip.net\",\n        \"5159@00310.impulsevoip.net\",\n        \"5160@00310.impulsevoip.net\",\n        \"5161@00310.impulsevoip.net\",\n        \"5162@00310.impulsevoip.net\",\n        \"5163@00310.impulsevoip.net\",\n        \"5164@00310.impulsevoip.net\",\n        \"5165@00310.impulsevoip.net\",\n        \"5166@00310.impulsevoip.net\",\n        \"5167@00310.impulsevoip.net\",\n        \"5680@00310.impulsevoip.net\",\n        \"5681@00310.impulsevoip.net\",\n        \"5682@00310.impulsevoip.net\",\n        \"5683@00310.impulsevoip.net\",\n        \"5684@00310.impulsevoip.net\",\n        \"5685@00310.impulsevoip.net\",\n        \"5686@00310.impulsevoip.net\",\n        \"5687@00310.impulsevoip.net\",\n        \"5688@00310.impulsevoip.net\",\n        \"5689@00310.impulsevoip.net\",\n        \"5690@00310.impulsevoip.net\",\n        \"5691@00310.impulsevoip.net\",\n        \"5692@00310.impulsevoip.net\",\n        \"5693@00310.impulsevoip.net\",\n        \"5694@00310.impulsevoip.net\",\n        \"5695@00310.impulsevoip.net\",\n        \"5696@00310.impulsevoip.net\",\n        \"5697@00310.impulsevoip.net\",\n        \"5698@00310.impulsevoip.net\",\n        \"5699@00310.impulsevoip.net\",\n        \"5700@00310.impulsevoip.net\",\n        \"5701@00310.impulsevoip.net\",\n        \"5702@00310.impulsevoip.net\",\n        \"5703@00310.impulsevoip.net\",\n        \"5704@00310.impulsevoip.net\",\n        \"5705@00310.impulsevoip.net\",\n        \"5706@00310.impulsevoip.net\",\n        \"5707@00310.impulsevoip.net\",\n        \"5708@00310.impulsevoip.net\",\n        \"5709@00310.impulsevoip.net\",\n        \"5710@00310.impulsevoip.net\",\n        \"5711@00310.impulsevoip.net\",\n        \"5712@00310.impulsevoip.net\",\n        \"5713@00310.impulsevoip.net\",\n        \"5714@00310.impulsevoip.net\",\n        \"5715@00310.impulsevoip.net\",\n        \"5716@00310.impulsevoip.net\",\n        \"5717@00310.impulsevoip.net\",\n        \"5718@00310.impulsevoip.net\",\n        \"5719@00310.impulsevoip.net\",\n        \"5720@00310.impulsevoip.net\",\n        \"5721@00310.impulsevoip.net\",\n        \"5722@00310.impulsevoip.net\",\n        \"5723@00310.impulsevoip.net\",\n        \"5724@00310.impulsevoip.net\",\n        \"5725@00310.impulsevoip.net\",\n        \"5726@00310.impulsevoip.net\",\n        \"5727@00310.impulsevoip.net\",\n        \"5728@00310.impulsevoip.net\",\n        \"5729@00310.impulsevoip.net\",\n        \"5730@00310.impulsevoip.net\",\n        \"5731@00310.impulsevoip.net\",\n        \"5732@00310.impulsevoip.net\",\n        \"5733@00310.impulsevoip.net\",\n        \"5734@00310.impulsevoip.net\",\n        \"5735@00310.impulsevoip.net\",\n        \"5736@00310.impulsevoip.net\",\n        \"5737@00310.impulsevoip.net\",\n        \"5738@00310.impulsevoip.net\",\n        \"5739@00310.impulsevoip.net\",\n        \"5740@00310.impulsevoip.net\",\n        \"5741@00310.impulsevoip.net\",\n        \"5742@00310.impulsevoip.net\",\n        \"5743@00310.impulsevoip.net\",\n        \"5744@00310.impulsevoip.net\",\n        \"5745@00310.impulsevoip.net\",\n        \"5746@00310.impulsevoip.net\",\n        \"5747@00310.impulsevoip.net\",\n        \"5748@00310.impulsevoip.net\",\n        \"5749@00310.impulsevoip.net\",\n        \"5750@00310.impulsevoip.net\",\n        \"5751@00310.impulsevoip.net\",\n        \"5752@00310.impulsevoip.net\",\n        \"5753@00310.impulsevoip.net\",\n        \"5754@00310.impulsevoip.net\",\n        \"5755@00310.impulsevoip.net\",\n        \"5756@00310.impulsevoip.net\",\n        \"5757@00310.impulsevoip.net\",\n        \"5758@00310.impulsevoip.net\",\n        \"5759@00310.impulsevoip.net\",\n        \"5760@00310.impulsevoip.net\",\n        \"5761@00310.impulsevoip.net\",\n        \"5762@00310.impulsevoip.net\",\n        \"5763@00310.impulsevoip.net\",\n        \"5764@00310.impulsevoip.net\",\n        \"5765@00310.impulsevoip.net\",\n        \"5766@00310.impulsevoip.net\",\n        \"5767@00310.impulsevoip.net\",\n        \"5768@00310.impulsevoip.net\",\n        \"5769@00310.impulsevoip.net\",\n        \"5770@00310.impulsevoip.net\",\n        \"5771@00310.impulsevoip.net\",\n        \"5772@00310.impulsevoip.net\",\n        \"5773@00310.impulsevoip.net\",\n        \"5774@00310.impulsevoip.net\",\n        \"5775@00310.impulsevoip.net\",\n        \"5776@00310.impulsevoip.net\",\n        \"5777@00310.impulsevoip.net\",\n        \"5778@00310.impulsevoip.net\",\n        \"5779@00310.impulsevoip.net\",\n        \"5780@00310.impulsevoip.net\",\n        \"5781@00310.impulsevoip.net\",\n        \"5782@00310.impulsevoip.net\",\n        \"5783@00310.impulsevoip.net\",\n        \"5784@00310.impulsevoip.net\",\n        \"5785@00310.impulsevoip.net\",\n        \"5786@00310.impulsevoip.net\",\n        \"5787@00310.impulsevoip.net\",\n        \"5788@00310.impulsevoip.net\",\n        \"5789@00310.impulsevoip.net\",\n        \"5790@00310.impulsevoip.net\",\n        \"5791@00310.impulsevoip.net\",\n        \"5792@00310.impulsevoip.net\",\n        \"5793@00310.impulsevoip.net\",\n        \"5794@00310.impulsevoip.net\",\n        \"5795@00310.impulsevoip.net\",\n        \"5796@00310.impulsevoip.net\",\n        \"5797@00310.impulsevoip.net\",\n        \"5798@00310.impulsevoip.net\",\n        \"5799@00310.impulsevoip.net\",\n        \"5800@00310.impulsevoip.net\",\n        \"5801@00310.impulsevoip.net\",\n        \"5802@00310.impulsevoip.net\",\n        \"5803@00310.impulsevoip.net\",\n        \"5804@00310.impulsevoip.net\",\n        \"5805@00310.impulsevoip.net\",\n        \"5806@00310.impulsevoip.net\",\n        \"5807@00310.impulsevoip.net\",\n        \"5808@00310.impulsevoip.net\",\n        \"5809@00310.impulsevoip.net\",\n        \"5810@00310.impulsevoip.net\",\n        \"5811@00310.impulsevoip.net\",\n        \"5812@00310.impulsevoip.net\",\n        \"5813@00310.impulsevoip.net\",\n        \"5814@00310.impulsevoip.net\",\n        \"5815@00310.impulsevoip.net\",\n        \"5816@00310.impulsevoip.net\",\n        \"5817@00310.impulsevoip.net\",\n        \"5818@00310.impulsevoip.net\",\n        \"5819@00310.impulsevoip.net\",\n        \"5820@00310.impulsevoip.net\",\n        \"5821@00310.impulsevoip.net\",\n        \"5822@00310.impulsevoip.net\",\n        \"5823@00310.impulsevoip.net\",\n        \"5824@00310.impulsevoip.net\",\n        \"5825@00310.impulsevoip.net\",\n        \"5826@00310.impulsevoip.net\",\n        \"5827@00310.impulsevoip.net\",\n        \"5828@00310.impulsevoip.net\",\n        \"5829@00310.impulsevoip.net\",\n        \"5830@00310.impulsevoip.net\",\n        \"5831@00310.impulsevoip.net\",\n        \"5832@00310.impulsevoip.net\",\n        \"5833@00310.impulsevoip.net\",\n        \"5834@00310.impulsevoip.net\",\n        \"5835@00310.impulsevoip.net\",\n        \"5836@00310.impulsevoip.net\",\n        \"5837@00310.impulsevoip.net\",\n        \"5838@00310.impulsevoip.net\",\n        \"5839@00310.impulsevoip.net\",\n        \"5840@00310.impulsevoip.net\",\n        \"5841@00310.impulsevoip.net\",\n        \"5842@00310.impulsevoip.net\",\n        \"5843@00310.impulsevoip.net\",\n        \"5844@00310.impulsevoip.net\",\n        \"5845@00310.impulsevoip.net\",\n        \"5846@00310.impulsevoip.net\",\n        \"5847@00310.impulsevoip.net\",\n        \"5848@00310.impulsevoip.net\",\n        \"5849@00310.impulsevoip.net\",\n        \"5850@00310.impulsevoip.net\",\n        \"5851@00310.impulsevoip.net\",\n        \"5852@00310.impulsevoip.net\",\n        \"5853@00310.impulsevoip.net\",\n        \"5854@00310.impulsevoip.net\",\n        \"5855@00310.impulsevoip.net\",\n        \"5856@00310.impulsevoip.net\",\n        \"5857@00310.impulsevoip.net\",\n        \"5858@00310.impulsevoip.net\",\n        \"5859@00310.impulsevoip.net\",\n        \"5860@00310.impulsevoip.net\",\n        \"5861@00310.impulsevoip.net\",\n        \"5862@00310.impulsevoip.net\",\n        \"5863@00310.impulsevoip.net\",\n        \"5864@00310.impulsevoip.net\",\n        \"5865@00310.impulsevoip.net\",\n        \"5866@00310.impulsevoip.net\",\n        \"5867@00310.impulsevoip.net\",\n        \"5868@00310.impulsevoip.net\",\n        \"5869@00310.impulsevoip.net\",\n        \"5870@00310.impulsevoip.net\",\n        \"5871@00310.impulsevoip.net\",\n        \"5872@00310.impulsevoip.net\",\n        \"5873@00310.impulsevoip.net\",\n        \"5874@00310.impulsevoip.net\",\n        \"5875@00310.impulsevoip.net\",\n        \"5876@00310.impulsevoip.net\",\n        \"5877@00310.impulsevoip.net\",\n        \"5878@00310.impulsevoip.net\",\n        \"5879@00310.impulsevoip.net\",\n        \"5880@00310.impulsevoip.net\",\n        \"5881@00310.impulsevoip.net\",\n        \"5882@00310.impulsevoip.net\",\n        \"5883@00310.impulsevoip.net\",\n        \"5884@00310.impulsevoip.net\",\n        \"5885@00310.impulsevoip.net\",\n        \"5886@00310.impulsevoip.net\",\n        \"5887@00310.impulsevoip.net\",\n        \"5888@00310.impulsevoip.net\",\n        \"5889@00310.impulsevoip.net\",\n        \"5890@00310.impulsevoip.net\",\n        \"5891@00310.impulsevoip.net\",\n        \"5892@00310.impulsevoip.net\",\n        \"5893@00310.impulsevoip.net\",\n        \"5894@00310.impulsevoip.net\",\n        \"5895@00310.impulsevoip.net\",\n        \"5896@00310.impulsevoip.net\",\n        \"5897@00310.impulsevoip.net\",\n        \"5898@00310.impulsevoip.net\",\n        \"5899@00310.impulsevoip.net\",\n        \"5900@00310.impulsevoip.net\",\n        \"5901@00310.impulsevoip.net\",\n        \"5902@00310.impulsevoip.net\",\n        \"5903@00310.impulsevoip.net\",\n        \"5904@00310.impulsevoip.net\",\n        \"5905@00310.impulsevoip.net\",\n        \"5906@00310.impulsevoip.net\",\n        \"5907@00310.impulsevoip.net\",\n        \"5908@00310.impulsevoip.net\",\n        \"5909@00310.impulsevoip.net\",\n        \"5910@00310.impulsevoip.net\",\n        \"5168@00310.impulsevoip.net\",\n        \"5169@00310.impulsevoip.net\",\n        \"5170@00310.impulsevoip.net\",\n        \"5171@00310.impulsevoip.net\",\n        \"5172@00310.impulsevoip.net\",\n        \"5173@00310.impulsevoip.net\",\n        \"5174@00310.impulsevoip.net\",\n        \"5175@00310.impulsevoip.net\",\n        \"5176@00310.impulsevoip.net\",\n        \"5177@00310.impulsevoip.net\",\n        \"5178@00310.impulsevoip.net\",\n        \"5179@00310.impulsevoip.net\",\n        \"5180@00310.impulsevoip.net\",\n        \"5181@00310.impulsevoip.net\",\n        \"5182@00310.impulsevoip.net\",\n        \"5183@00310.impulsevoip.net\",\n        \"5184@00310.impulsevoip.net\",\n        \"5185@00310.impulsevoip.net\",\n        \"5186@00310.impulsevoip.net\",\n        \"5187@00310.impulsevoip.net\",\n        \"5188@00310.impulsevoip.net\",\n        \"5189@00310.impulsevoip.net\",\n        \"5190@00310.impulsevoip.net\",\n        \"5191@00310.impulsevoip.net\",\n        \"5192@00310.impulsevoip.net\",\n        \"5193@00310.impulsevoip.net\",\n        \"5194@00310.impulsevoip.net\",\n        \"5195@00310.impulsevoip.net\",\n        \"5196@00310.impulsevoip.net\",\n        \"5197@00310.impulsevoip.net\",\n        \"5198@00310.impulsevoip.net\",\n        \"5199@00310.impulsevoip.net\",\n        \"5200@00310.impulsevoip.net\",\n        \"5201@00310.impulsevoip.net\",\n        \"5202@00310.impulsevoip.net\",\n        \"5203@00310.impulsevoip.net\",\n        \"5204@00310.impulsevoip.net\",\n        \"5205@00310.impulsevoip.net\",\n        \"5206@00310.impulsevoip.net\",\n        \"5207@00310.impulsevoip.net\",\n        \"5208@00310.impulsevoip.net\",\n        \"5209@00310.impulsevoip.net\",\n        \"5210@00310.impulsevoip.net\",\n        \"5211@00310.impulsevoip.net\",\n        \"5212@00310.impulsevoip.net\",\n        \"5213@00310.impulsevoip.net\",\n        \"5214@00310.impulsevoip.net\",\n        \"5215@00310.impulsevoip.net\",\n        \"5216@00310.impulsevoip.net\",\n        \"5217@00310.impulsevoip.net\",\n        \"5218@00310.impulsevoip.net\",\n        \"5219@00310.impulsevoip.net\",\n        \"5220@00310.impulsevoip.net\",\n        \"5221@00310.impulsevoip.net\",\n        \"5222@00310.impulsevoip.net\",\n        \"5223@00310.impulsevoip.net\",\n        \"5224@00310.impulsevoip.net\",\n        \"5225@00310.impulsevoip.net\",\n        \"5226@00310.impulsevoip.net\",\n        \"5227@00310.impulsevoip.net\",\n        \"5228@00310.impulsevoip.net\",\n        \"5229@00310.impulsevoip.net\",\n        \"5230@00310.impulsevoip.net\",\n        \"5231@00310.impulsevoip.net\",\n        \"5232@00310.impulsevoip.net\",\n        \"5233@00310.impulsevoip.net\",\n        \"5234@00310.impulsevoip.net\",\n        \"5235@00310.impulsevoip.net\",\n        \"5236@00310.impulsevoip.net\",\n        \"5237@00310.impulsevoip.net\",\n        \"5238@00310.impulsevoip.net\",\n        \"5239@00310.impulsevoip.net\",\n        \"5240@00310.impulsevoip.net\",\n        \"5241@00310.impulsevoip.net\",\n        \"5242@00310.impulsevoip.net\",\n        \"5243@00310.impulsevoip.net\",\n        \"5244@00310.impulsevoip.net\",\n        \"5245@00310.impulsevoip.net\",\n        \"5246@00310.impulsevoip.net\",\n        \"5247@00310.impulsevoip.net\",\n        \"5248@00310.impulsevoip.net\",\n        \"5249@00310.impulsevoip.net\",\n        \"5250@00310.impulsevoip.net\",\n        \"5251@00310.impulsevoip.net\",\n        \"5252@00310.impulsevoip.net\",\n        \"5253@00310.impulsevoip.net\",\n        \"5254@00310.impulsevoip.net\",\n        \"5255@00310.impulsevoip.net\",\n        \"5256@00310.impulsevoip.net\",\n        \"5257@00310.impulsevoip.net\",\n        \"5258@00310.impulsevoip.net\",\n        \"5259@00310.impulsevoip.net\",\n        \"5260@00310.impulsevoip.net\",\n        \"5261@00310.impulsevoip.net\",\n        \"5262@00310.impulsevoip.net\",\n        \"5263@00310.impulsevoip.net\",\n        \"5264@00310.impulsevoip.net\",\n        \"5265@00310.impulsevoip.net\",\n        \"5266@00310.impulsevoip.net\",\n        \"5267@00310.impulsevoip.net\",\n        \"5268@00310.impulsevoip.net\",\n        \"5269@00310.impulsevoip.net\",\n        \"5270@00310.impulsevoip.net\",\n        \"5271@00310.impulsevoip.net\",\n        \"5272@00310.impulsevoip.net\",\n        \"5273@00310.impulsevoip.net\",\n        \"5274@00310.impulsevoip.net\",\n        \"5275@00310.impulsevoip.net\",\n        \"5276@00310.impulsevoip.net\",\n        \"5277@00310.impulsevoip.net\",\n        \"5278@00310.impulsevoip.net\",\n        \"5279@00310.impulsevoip.net\",\n        \"5280@00310.impulsevoip.net\",\n        \"5281@00310.impulsevoip.net\",\n        \"5282@00310.impulsevoip.net\",\n        \"5283@00310.impulsevoip.net\",\n        \"5284@00310.impulsevoip.net\",\n        \"5285@00310.impulsevoip.net\",\n        \"5286@00310.impulsevoip.net\",\n        \"5287@00310.impulsevoip.net\",\n        \"5288@00310.impulsevoip.net\",\n        \"5289@00310.impulsevoip.net\",\n        \"5290@00310.impulsevoip.net\",\n        \"5291@00310.impulsevoip.net\",\n        \"5292@00310.impulsevoip.net\",\n        \"5293@00310.impulsevoip.net\",\n        \"5294@00310.impulsevoip.net\",\n        \"5295@00310.impulsevoip.net\",\n        \"5296@00310.impulsevoip.net\",\n        \"5297@00310.impulsevoip.net\",\n        \"5298@00310.impulsevoip.net\",\n        \"5299@00310.impulsevoip.net\",\n        \"5300@00310.impulsevoip.net\",\n        \"5301@00310.impulsevoip.net\",\n        \"5302@00310.impulsevoip.net\",\n        \"5303@00310.impulsevoip.net\",\n        \"5305@00310.impulsevoip.net\",\n        \"5306@00310.impulsevoip.net\",\n        \"5307@00310.impulsevoip.net\",\n        \"5308@00310.impulsevoip.net\",\n        \"5309@00310.impulsevoip.net\",\n        \"5310@00310.impulsevoip.net\",\n        \"5311@00310.impulsevoip.net\",\n        \"5312@00310.impulsevoip.net\",\n        \"5313@00310.impulsevoip.net\",\n        \"5314@00310.impulsevoip.net\",\n        \"5315@00310.impulsevoip.net\",\n        \"5316@00310.impulsevoip.net\",\n        \"5317@00310.impulsevoip.net\",\n        \"5318@00310.impulsevoip.net\",\n        \"5319@00310.impulsevoip.net\",\n        \"5320@00310.impulsevoip.net\",\n        \"5321@00310.impulsevoip.net\",\n        \"5322@00310.impulsevoip.net\",\n        \"5323@00310.impulsevoip.net\",\n        \"5324@00310.impulsevoip.net\",\n        \"5325@00310.impulsevoip.net\",\n        \"5326@00310.impulsevoip.net\",\n        \"5327@00310.impulsevoip.net\",\n        \"5328@00310.impulsevoip.net\",\n        \"5329@00310.impulsevoip.net\",\n        \"5330@00310.impulsevoip.net\",\n        \"5331@00310.impulsevoip.net\",\n        \"5332@00310.impulsevoip.net\",\n        \"5333@00310.impulsevoip.net\",\n        \"5334@00310.impulsevoip.net\",\n        \"5335@00310.impulsevoip.net\",\n        \"5336@00310.impulsevoip.net\",\n        \"5337@00310.impulsevoip.net\",\n        \"5338@00310.impulsevoip.net\",\n        \"5339@00310.impulsevoip.net\",\n        \"5340@00310.impulsevoip.net\",\n        \"5341@00310.impulsevoip.net\",\n        \"5342@00310.impulsevoip.net\",\n        \"5343@00310.impulsevoip.net\",\n        \"5344@00310.impulsevoip.net\",\n        \"5345@00310.impulsevoip.net\",\n        \"5346@00310.impulsevoip.net\",\n        \"5347@00310.impulsevoip.net\",\n        \"5348@00310.impulsevoip.net\",\n        \"5349@00310.impulsevoip.net\",\n        \"5350@00310.impulsevoip.net\",\n        \"5351@00310.impulsevoip.net\",\n        \"5352@00310.impulsevoip.net\",\n        \"5353@00310.impulsevoip.net\",\n        \"5354@00310.impulsevoip.net\",\n        \"5355@00310.impulsevoip.net\",\n        \"5356@00310.impulsevoip.net\",\n        \"5357@00310.impulsevoip.net\",\n        \"5358@00310.impulsevoip.net\",\n        \"5359@00310.impulsevoip.net\",\n        \"5360@00310.impulsevoip.net\",\n        \"5361@00310.impulsevoip.net\",\n        \"5362@00310.impulsevoip.net\",\n        \"5363@00310.impulsevoip.net\",\n        \"5364@00310.impulsevoip.net\",\n        \"5365@00310.impulsevoip.net\",\n        \"5366@00310.impulsevoip.net\",\n        \"5367@00310.impulsevoip.net\",\n        \"5368@00310.impulsevoip.net\",\n        \"5369@00310.impulsevoip.net\",\n        \"5370@00310.impulsevoip.net\",\n        \"5371@00310.impulsevoip.net\",\n        \"5372@00310.impulsevoip.net\",\n        \"5373@00310.impulsevoip.net\",\n        \"5374@00310.impulsevoip.net\",\n        \"5375@00310.impulsevoip.net\",\n        \"5376@00310.impulsevoip.net\",\n        \"5377@00310.impulsevoip.net\",\n        \"5378@00310.impulsevoip.net\",\n        \"5379@00310.impulsevoip.net\",\n        \"5380@00310.impulsevoip.net\",\n        \"5381@00310.impulsevoip.net\",\n        \"5382@00310.impulsevoip.net\",\n        \"5383@00310.impulsevoip.net\",\n        \"5384@00310.impulsevoip.net\",\n        \"5385@00310.impulsevoip.net\",\n        \"5386@00310.impulsevoip.net\",\n        \"5387@00310.impulsevoip.net\",\n        \"5388@00310.impulsevoip.net\",\n        \"5389@00310.impulsevoip.net\",\n        \"5390@00310.impulsevoip.net\",\n        \"5391@00310.impulsevoip.net\",\n        \"5392@00310.impulsevoip.net\",\n        \"5393@00310.impulsevoip.net\",\n        \"5394@00310.impulsevoip.net\",\n        \"5395@00310.impulsevoip.net\",\n        \"5396@00310.impulsevoip.net\",\n        \"5397@00310.impulsevoip.net\",\n        \"5398@00310.impulsevoip.net\",\n        \"5399@00310.impulsevoip.net\",\n        \"5400@00310.impulsevoip.net\",\n        \"5401@00310.impulsevoip.net\",\n        \"5402@00310.impulsevoip.net\",\n        \"5403@00310.impulsevoip.net\",\n        \"5404@00310.impulsevoip.net\",\n        \"5405@00310.impulsevoip.net\",\n        \"5406@00310.impulsevoip.net\",\n        \"5407@00310.impulsevoip.net\",\n        \"5408@00310.impulsevoip.net\",\n        \"5409@00310.impulsevoip.net\",\n        \"5410@00310.impulsevoip.net\",\n        \"5411@00310.impulsevoip.net\",\n        \"5412@00310.impulsevoip.net\",\n        \"5413@00310.impulsevoip.net\",\n        \"5414@00310.impulsevoip.net\",\n        \"5415@00310.impulsevoip.net\",\n        \"5416@00310.impulsevoip.net\",\n        \"5417@00310.impulsevoip.net\",\n        \"5418@00310.impulsevoip.net\",\n        \"5419@00310.impulsevoip.net\",\n        \"5420@00310.impulsevoip.net\",\n        \"5421@00310.impulsevoip.net\",\n        \"5422@00310.impulsevoip.net\",\n        \"5423@00310.impulsevoip.net\",\n        \"5424@00310.impulsevoip.net\",\n        \"5425@00310.impulsevoip.net\",\n        \"5426@00310.impulsevoip.net\",\n        \"5427@00310.impulsevoip.net\",\n        \"5428@00310.impulsevoip.net\",\n        \"5429@00310.impulsevoip.net\",\n        \"5430@00310.impulsevoip.net\",\n        \"5431@00310.impulsevoip.net\",\n        \"5432@00310.impulsevoip.net\",\n        \"5433@00310.impulsevoip.net\",\n        \"5434@00310.impulsevoip.net\",\n        \"5435@00310.impulsevoip.net\",\n        \"5436@00310.impulsevoip.net\",\n        \"5437@00310.impulsevoip.net\",\n        \"5438@00310.impulsevoip.net\",\n        \"5439@00310.impulsevoip.net\",\n        \"5440@00310.impulsevoip.net\",\n        \"5441@00310.impulsevoip.net\",\n        \"5442@00310.impulsevoip.net\",\n        \"5443@00310.impulsevoip.net\",\n        \"5444@00310.impulsevoip.net\",\n        \"5445@00310.impulsevoip.net\",\n        \"5446@00310.impulsevoip.net\",\n        \"5447@00310.impulsevoip.net\",\n        \"5448@00310.impulsevoip.net\",\n        \"5449@00310.impulsevoip.net\",\n        \"5450@00310.impulsevoip.net\",\n        \"5451@00310.impulsevoip.net\",\n        \"5452@00310.impulsevoip.net\",\n        \"5453@00310.impulsevoip.net\",\n        \"5454@00310.impulsevoip.net\",\n        \"5455@00310.impulsevoip.net\",\n        \"5456@00310.impulsevoip.net\",\n        \"5457@00310.impulsevoip.net\",\n        \"5458@00310.impulsevoip.net\",\n        \"5459@00310.impulsevoip.net\",\n        \"5460@00310.impulsevoip.net\",\n        \"5461@00310.impulsevoip.net\",\n        \"5462@00310.impulsevoip.net\",\n        \"5463@00310.impulsevoip.net\",\n        \"5464@00310.impulsevoip.net\",\n        \"5465@00310.impulsevoip.net\",\n        \"5466@00310.impulsevoip.net\",\n        \"5467@00310.impulsevoip.net\",\n        \"5468@00310.impulsevoip.net\",\n        \"5469@00310.impulsevoip.net\",\n        \"5470@00310.impulsevoip.net\",\n        \"5471@00310.impulsevoip.net\",\n        \"5472@00310.impulsevoip.net\",\n        \"5473@00310.impulsevoip.net\",\n        \"5474@00310.impulsevoip.net\",\n        \"5475@00310.impulsevoip.net\",\n        \"5476@00310.impulsevoip.net\",\n        \"5477@00310.impulsevoip.net\",\n        \"5478@00310.impulsevoip.net\",\n        \"5479@00310.impulsevoip.net\",\n        \"5480@00310.impulsevoip.net\",\n        \"5481@00310.impulsevoip.net\",\n        \"5482@00310.impulsevoip.net\",\n        \"5483@00310.impulsevoip.net\",\n        \"5484@00310.impulsevoip.net\",\n        \"5485@00310.impulsevoip.net\",\n        \"5486@00310.impulsevoip.net\",\n        \"5487@00310.impulsevoip.net\",\n        \"5488@00310.impulsevoip.net\",\n        \"5489@00310.impulsevoip.net\",\n        \"5490@00310.impulsevoip.net\",\n        \"5491@00310.impulsevoip.net\",\n        \"5492@00310.impulsevoip.net\",\n        \"5493@00310.impulsevoip.net\",\n        \"5494@00310.impulsevoip.net\",\n        \"5495@00310.impulsevoip.net\",\n        \"5496@00310.impulsevoip.net\",\n        \"5497@00310.impulsevoip.net\",\n        \"5498@00310.impulsevoip.net\",\n        \"5499@00310.impulsevoip.net\",\n        \"5500@00310.impulsevoip.net\",\n        \"5501@00310.impulsevoip.net\",\n        \"5502@00310.impulsevoip.net\",\n        \"5503@00310.impulsevoip.net\",\n        \"5504@00310.impulsevoip.net\",\n        \"5505@00310.impulsevoip.net\",\n        \"5506@00310.impulsevoip.net\",\n        \"5507@00310.impulsevoip.net\",\n        \"5508@00310.impulsevoip.net\",\n        \"5509@00310.impulsevoip.net\",\n        \"5510@00310.impulsevoip.net\",\n        \"5511@00310.impulsevoip.net\",\n        \"5512@00310.impulsevoip.net\",\n        \"5513@00310.impulsevoip.net\",\n        \"5514@00310.impulsevoip.net\",\n        \"5515@00310.impulsevoip.net\",\n        \"5516@00310.impulsevoip.net\",\n        \"5517@00310.impulsevoip.net\",\n        \"5518@00310.impulsevoip.net\",\n        \"5519@00310.impulsevoip.net\",\n        \"5520@00310.impulsevoip.net\",\n        \"5521@00310.impulsevoip.net\",\n        \"5522@00310.impulsevoip.net\",\n        \"5523@00310.impulsevoip.net\",\n        \"5524@00310.impulsevoip.net\",\n        \"5525@00310.impulsevoip.net\",\n        \"5526@00310.impulsevoip.net\",\n        \"5527@00310.impulsevoip.net\",\n        \"5528@00310.impulsevoip.net\",\n        \"5529@00310.impulsevoip.net\",\n        \"5530@00310.impulsevoip.net\",\n        \"5531@00310.impulsevoip.net\",\n        \"5532@00310.impulsevoip.net\",\n        \"5533@00310.impulsevoip.net\",\n        \"5534@00310.impulsevoip.net\",\n        \"5535@00310.impulsevoip.net\",\n        \"5536@00310.impulsevoip.net\",\n        \"5537@00310.impulsevoip.net\",\n        \"5538@00310.impulsevoip.net\",\n        \"5539@00310.impulsevoip.net\",\n        \"5540@00310.impulsevoip.net\",\n        \"5541@00310.impulsevoip.net\",\n        \"5542@00310.impulsevoip.net\",\n        \"5543@00310.impulsevoip.net\",\n        \"5544@00310.impulsevoip.net\",\n        \"5545@00310.impulsevoip.net\",\n        \"5546@00310.impulsevoip.net\",\n        \"5547@00310.impulsevoip.net\",\n        \"5548@00310.impulsevoip.net\",\n        \"5549@00310.impulsevoip.net\",\n        \"5550@00310.impulsevoip.net\",\n        \"5551@00310.impulsevoip.net\",\n        \"5552@00310.impulsevoip.net\",\n        \"5553@00310.impulsevoip.net\",\n        \"5554@00310.impulsevoip.net\",\n        \"5555@00310.impulsevoip.net\",\n        \"5556@00310.impulsevoip.net\",\n        \"5557@00310.impulsevoip.net\",\n        \"5558@00310.impulsevoip.net\",\n        \"5559@00310.impulsevoip.net\",\n        \"5560@00310.impulsevoip.net\",\n        \"5561@00310.impulsevoip.net\",\n        \"5562@00310.impulsevoip.net\",\n        \"5563@00310.impulsevoip.net\",\n        \"5564@00310.impulsevoip.net\",\n        \"5565@00310.impulsevoip.net\",\n        \"5566@00310.impulsevoip.net\",\n        \"5567@00310.impulsevoip.net\",\n        \"5568@00310.impulsevoip.net\",\n        \"5569@00310.impulsevoip.net\",\n        \"5570@00310.impulsevoip.net\",\n        \"5571@00310.impulsevoip.net\",\n        \"5572@00310.impulsevoip.net\",\n        \"5573@00310.impulsevoip.net\",\n        \"5574@00310.impulsevoip.net\",\n        \"5575@00310.impulsevoip.net\",\n        \"5576@00310.impulsevoip.net\",\n        \"5577@00310.impulsevoip.net\",\n        \"5578@00310.impulsevoip.net\",\n        \"5579@00310.impulsevoip.net\",\n        \"5580@00310.impulsevoip.net\",\n        \"5581@00310.impulsevoip.net\",\n        \"5582@00310.impulsevoip.net\",\n        \"5583@00310.impulsevoip.net\",\n        \"5584@00310.impulsevoip.net\",\n        \"5585@00310.impulsevoip.net\",\n        \"5586@00310.impulsevoip.net\",\n        \"5588@00310.impulsevoip.net\",\n        \"5589@00310.impulsevoip.net\",\n        \"5590@00310.impulsevoip.net\",\n        \"5591@00310.impulsevoip.net\",\n        \"5592@00310.impulsevoip.net\",\n        \"5593@00310.impulsevoip.net\",\n        \"5594@00310.impulsevoip.net\",\n        \"5595@00310.impulsevoip.net\",\n        \"5596@00310.impulsevoip.net\",\n        \"5597@00310.impulsevoip.net\",\n        \"5598@00310.impulsevoip.net\",\n        \"5599@00310.impulsevoip.net\",\n        \"5600@00310.impulsevoip.net\",\n        \"5601@00310.impulsevoip.net\",\n        \"5602@00310.impulsevoip.net\",\n        \"5603@00310.impulsevoip.net\",\n        \"5604@00310.impulsevoip.net\",\n        \"5605@00310.impulsevoip.net\",\n        \"5606@00310.impulsevoip.net\",\n        \"5607@00310.impulsevoip.net\",\n        \"5608@00310.impulsevoip.net\",\n        \"5609@00310.impulsevoip.net\",\n        \"5610@00310.impulsevoip.net\",\n        \"5611@00310.impulsevoip.net\",\n        \"5612@00310.impulsevoip.net\",\n        \"5613@00310.impulsevoip.net\",\n        \"5614@00310.impulsevoip.net\",\n        \"5615@00310.impulsevoip.net\",\n        \"5616@00310.impulsevoip.net\",\n        \"5617@00310.impulsevoip.net\",\n        \"5618@00310.impulsevoip.net\",\n        \"5619@00310.impulsevoip.net\",\n        \"5620@00310.impulsevoip.net\",\n        \"5621@00310.impulsevoip.net\",\n        \"5622@00310.impulsevoip.net\",\n        \"5623@00310.impulsevoip.net\",\n        \"5624@00310.impulsevoip.net\",\n        \"5625@00310.impulsevoip.net\",\n        \"5626@00310.impulsevoip.net\",\n        \"5627@00310.impulsevoip.net\",\n        \"5628@00310.impulsevoip.net\",\n        \"5629@00310.impulsevoip.net\",\n        \"5630@00310.impulsevoip.net\",\n        \"5631@00310.impulsevoip.net\",\n        \"5632@00310.impulsevoip.net\",\n        \"5633@00310.impulsevoip.net\",\n        \"5634@00310.impulsevoip.net\",\n        \"5635@00310.impulsevoip.net\",\n        \"5636@00310.impulsevoip.net\",\n        \"5637@00310.impulsevoip.net\",\n        \"5638@00310.impulsevoip.net\",\n        \"5639@00310.impulsevoip.net\",\n        \"5640@00310.impulsevoip.net\",\n        \"5641@00310.impulsevoip.net\",\n        \"5642@00310.impulsevoip.net\",\n        \"5643@00310.impulsevoip.net\",\n        \"5644@00310.impulsevoip.net\",\n        \"5645@00310.impulsevoip.net\",\n        \"5646@00310.impulsevoip.net\",\n        \"5647@00310.impulsevoip.net\",\n        \"5648@00310.impulsevoip.net\",\n        \"5649@00310.impulsevoip.net\",\n        \"5650@00310.impulsevoip.net\",\n        \"5651@00310.impulsevoip.net\",\n        \"5652@00310.impulsevoip.net\",\n        \"5653@00310.impulsevoip.net\",\n        \"5654@00310.impulsevoip.net\",\n        \"5655@00310.impulsevoip.net\",\n        \"5656@00310.impulsevoip.net\",\n        \"5657@00310.impulsevoip.net\",\n        \"5658@00310.impulsevoip.net\",\n        \"5659@00310.impulsevoip.net\",\n        \"5660@00310.impulsevoip.net\",\n        \"5661@00310.impulsevoip.net\",\n        \"5662@00310.impulsevoip.net\",\n        \"5663@00310.impulsevoip.net\",\n        \"5664@00310.impulsevoip.net\",\n        \"5665@00310.impulsevoip.net\",\n        \"5666@00310.impulsevoip.net\",\n        \"5667@00310.impulsevoip.net\",\n        \"5668@00310.impulsevoip.net\",\n        \"5669@00310.impulsevoip.net\",\n        \"5670@00310.impulsevoip.net\",\n        \"5671@00310.impulsevoip.net\",\n        \"5672@00310.impulsevoip.net\",\n        \"5673@00310.impulsevoip.net\",\n        \"5674@00310.impulsevoip.net\",\n        \"5675@00310.impulsevoip.net\",\n        \"5676@00310.impulsevoip.net\",\n        \"5677@00310.impulsevoip.net\",\n        \"5678@00310.impulsevoip.net\",\n        \"5679@00310.impulsevoip.net\",\n        \"6168@00310.impulsevoip.net\",\n        \"6169@00310.impulsevoip.net\",\n        \"6170@00310.impulsevoip.net\",\n        \"6171@00310.impulsevoip.net\",\n        \"6172@00310.impulsevoip.net\",\n        \"6173@00310.impulsevoip.net\",\n        \"6174@00310.impulsevoip.net\",\n        \"6175@00310.impulsevoip.net\",\n        \"6176@00310.impulsevoip.net\",\n        \"6177@00310.impulsevoip.net\",\n        \"6178@00310.impulsevoip.net\",\n        \"6179@00310.impulsevoip.net\",\n        \"6180@00310.impulsevoip.net\",\n        \"6181@00310.impulsevoip.net\",\n        \"6182@00310.impulsevoip.net\",\n        \"6183@00310.impulsevoip.net\",\n        \"6184@00310.impulsevoip.net\",\n        \"6185@00310.impulsevoip.net\",\n        \"6186@00310.impulsevoip.net\",\n        \"6187@00310.impulsevoip.net\",\n        \"6188@00310.impulsevoip.net\",\n        \"6189@00310.impulsevoip.net\",\n        \"6190@00310.impulsevoip.net\",\n        \"6191@00310.impulsevoip.net\",\n        \"6192@00310.impulsevoip.net\",\n        \"6193@00310.impulsevoip.net\",\n        \"6194@00310.impulsevoip.net\",\n        \"6195@00310.impulsevoip.net\",\n        \"6196@00310.impulsevoip.net\",\n        \"6197@00310.impulsevoip.net\",\n        \"6198@00310.impulsevoip.net\",\n        \"6199@00310.impulsevoip.net\",\n        \"6200@00310.impulsevoip.net\",\n        \"6201@00310.impulsevoip.net\",\n        \"6202@00310.impulsevoip.net\",\n        \"6203@00310.impulsevoip.net\",\n        \"6204@00310.impulsevoip.net\",\n        \"6205@00310.impulsevoip.net\",\n        \"6206@00310.impulsevoip.net\",\n        \"6207@00310.impulsevoip.net\",\n        \"6208@00310.impulsevoip.net\",\n        \"6209@00310.impulsevoip.net\",\n        \"6210@00310.impulsevoip.net\",\n        \"6211@00310.impulsevoip.net\",\n        \"6212@00310.impulsevoip.net\",\n        \"6213@00310.impulsevoip.net\",\n        \"6214@00310.impulsevoip.net\",\n        \"6215@00310.impulsevoip.net\",\n        \"6216@00310.impulsevoip.net\",\n        \"6217@00310.impulsevoip.net\",\n        \"6218@00310.impulsevoip.net\",\n        \"6219@00310.impulsevoip.net\",\n        \"6220@00310.impulsevoip.net\",\n        \"6221@00310.impulsevoip.net\",\n        \"6222@00310.impulsevoip.net\",\n        \"6223@00310.impulsevoip.net\",\n        \"6224@00310.impulsevoip.net\",\n        \"6225@00310.impulsevoip.net\",\n        \"6226@00310.impulsevoip.net\",\n        \"6227@00310.impulsevoip.net\",\n        \"6228@00310.impulsevoip.net\",\n        \"6229@00310.impulsevoip.net\",\n        \"6230@00310.impulsevoip.net\",\n        \"6231@00310.impulsevoip.net\",\n        \"6232@00310.impulsevoip.net\",\n        \"6233@00310.impulsevoip.net\",\n        \"6234@00310.impulsevoip.net\",\n        \"6235@00310.impulsevoip.net\",\n        \"6236@00310.impulsevoip.net\",\n        \"6237@00310.impulsevoip.net\",\n        \"6238@00310.impulsevoip.net\",\n        \"6239@00310.impulsevoip.net\",\n        \"6240@00310.impulsevoip.net\",\n        \"6241@00310.impulsevoip.net\",\n        \"6242@00310.impulsevoip.net\",\n        \"6243@00310.impulsevoip.net\",\n        \"6244@00310.impulsevoip.net\",\n        \"6245@00310.impulsevoip.net\",\n        \"6246@00310.impulsevoip.net\",\n        \"6247@00310.impulsevoip.net\",\n        \"6248@00310.impulsevoip.net\",\n        \"6249@00310.impulsevoip.net\",\n        \"6250@00310.impulsevoip.net\",\n        \"6251@00310.impulsevoip.net\",\n        \"6252@00310.impulsevoip.net\",\n        \"6253@00310.impulsevoip.net\",\n        \"6254@00310.impulsevoip.net\",\n        \"6255@00310.impulsevoip.net\",\n        \"6256@00310.impulsevoip.net\",\n        \"6257@00310.impulsevoip.net\",\n        \"6258@00310.impulsevoip.net\",\n        \"6259@00310.impulsevoip.net\",\n        \"6260@00310.impulsevoip.net\",\n        \"6261@00310.impulsevoip.net\",\n        \"6262@00310.impulsevoip.net\",\n        \"6263@00310.impulsevoip.net\",\n        \"6264@00310.impulsevoip.net\",\n        \"6265@00310.impulsevoip.net\",\n        \"6266@00310.impulsevoip.net\",\n        \"6267@00310.impulsevoip.net\",\n        \"6268@00310.impulsevoip.net\",\n        \"6269@00310.impulsevoip.net\",\n        \"6270@00310.impulsevoip.net\",\n        \"6271@00310.impulsevoip.net\",\n        \"6272@00310.impulsevoip.net\",\n        \"6273@00310.impulsevoip.net\",\n        \"6274@00310.impulsevoip.net\",\n        \"6275@00310.impulsevoip.net\",\n        \"6276@00310.impulsevoip.net\",\n        \"6277@00310.impulsevoip.net\",\n        \"6278@00310.impulsevoip.net\",\n        \"6279@00310.impulsevoip.net\",\n        \"6280@00310.impulsevoip.net\",\n        \"6281@00310.impulsevoip.net\",\n        \"6282@00310.impulsevoip.net\",\n        \"6283@00310.impulsevoip.net\",\n        \"6284@00310.impulsevoip.net\",\n        \"6285@00310.impulsevoip.net\",\n        \"6286@00310.impulsevoip.net\",\n        \"6287@00310.impulsevoip.net\",\n        \"6288@00310.impulsevoip.net\",\n        \"6289@00310.impulsevoip.net\",\n        \"6290@00310.impulsevoip.net\",\n        \"6291@00310.impulsevoip.net\",\n        \"6292@00310.impulsevoip.net\",\n        \"6293@00310.impulsevoip.net\",\n        \"6294@00310.impulsevoip.net\",\n        \"6295@00310.impulsevoip.net\",\n        \"6296@00310.impulsevoip.net\",\n        \"6297@00310.impulsevoip.net\",\n        \"6298@00310.impulsevoip.net\",\n        \"6299@00310.impulsevoip.net\",\n        \"6300@00310.impulsevoip.net\",\n        \"6301@00310.impulsevoip.net\",\n        \"6302@00310.impulsevoip.net\",\n        \"6303@00310.impulsevoip.net\",\n        \"6304@00310.impulsevoip.net\",\n        \"6305@00310.impulsevoip.net\",\n        \"6306@00310.impulsevoip.net\",\n        \"6307@00310.impulsevoip.net\",\n        \"6308@00310.impulsevoip.net\",\n        \"6309@00310.impulsevoip.net\",\n        \"6310@00310.impulsevoip.net\",\n        \"6311@00310.impulsevoip.net\",\n        \"6312@00310.impulsevoip.net\",\n        \"6313@00310.impulsevoip.net\",\n        \"6314@00310.impulsevoip.net\",\n        \"6315@00310.impulsevoip.net\",\n        \"6316@00310.impulsevoip.net\",\n        \"6317@00310.impulsevoip.net\",\n        \"6318@00310.impulsevoip.net\",\n        \"6319@00310.impulsevoip.net\",\n        \"6320@00310.impulsevoip.net\",\n        \"6321@00310.impulsevoip.net\",\n        \"6322@00310.impulsevoip.net\",\n        \"6323@00310.impulsevoip.net\",\n        \"6324@00310.impulsevoip.net\",\n        \"6325@00310.impulsevoip.net\",\n        \"6326@00310.impulsevoip.net\",\n        \"6327@00310.impulsevoip.net\",\n        \"6328@00310.impulsevoip.net\",\n        \"6329@00310.impulsevoip.net\",\n        \"6330@00310.impulsevoip.net\",\n        \"6331@00310.impulsevoip.net\",\n        \"6332@00310.impulsevoip.net\",\n        \"6333@00310.impulsevoip.net\",\n        \"6334@00310.impulsevoip.net\",\n        \"6335@00310.impulsevoip.net\",\n        \"6336@00310.impulsevoip.net\",\n        \"6337@00310.impulsevoip.net\",\n        \"6338@00310.impulsevoip.net\",\n        \"6339@00310.impulsevoip.net\",\n        \"6340@00310.impulsevoip.net\",\n        \"6341@00310.impulsevoip.net\",\n        \"6342@00310.impulsevoip.net\",\n        \"6343@00310.impulsevoip.net\",\n        \"6344@00310.impulsevoip.net\",\n        \"6345@00310.impulsevoip.net\",\n        \"6346@00310.impulsevoip.net\",\n        \"6347@00310.impulsevoip.net\",\n        \"6348@00310.impulsevoip.net\",\n        \"6349@00310.impulsevoip.net\",\n        \"6350@00310.impulsevoip.net\",\n        \"6351@00310.impulsevoip.net\",\n        \"6352@00310.impulsevoip.net\",\n        \"6353@00310.impulsevoip.net\",\n        \"6354@00310.impulsevoip.net\",\n        \"6355@00310.impulsevoip.net\",\n        \"6356@00310.impulsevoip.net\",\n        \"6357@00310.impulsevoip.net\",\n        \"6358@00310.impulsevoip.net\",\n        \"6359@00310.impulsevoip.net\",\n        \"6360@00310.impulsevoip.net\",\n        \"6361@00310.impulsevoip.net\",\n        \"6362@00310.impulsevoip.net\",\n        \"6363@00310.impulsevoip.net\",\n        \"6364@00310.impulsevoip.net\",\n        \"6365@00310.impulsevoip.net\",\n        \"6366@00310.impulsevoip.net\",\n        \"6367@00310.impulsevoip.net\",\n        \"6368@00310.impulsevoip.net\",\n        \"6369@00310.impulsevoip.net\",\n        \"6370@00310.impulsevoip.net\",\n        \"6371@00310.impulsevoip.net\",\n        \"6372@00310.impulsevoip.net\",\n        \"6373@00310.impulsevoip.net\",\n        \"6374@00310.impulsevoip.net\",\n        \"6375@00310.impulsevoip.net\",\n        \"6376@00310.impulsevoip.net\",\n        \"6377@00310.impulsevoip.net\",\n        \"6378@00310.impulsevoip.net\",\n        \"6379@00310.impulsevoip.net\",\n        \"6380@00310.impulsevoip.net\",\n        \"6381@00310.impulsevoip.net\",\n        \"6382@00310.impulsevoip.net\",\n        \"6383@00310.impulsevoip.net\",\n        \"6384@00310.impulsevoip.net\",\n        \"6385@00310.impulsevoip.net\",\n        \"6386@00310.impulsevoip.net\",\n        \"6387@00310.impulsevoip.net\",\n        \"6388@00310.impulsevoip.net\",\n        \"6389@00310.impulsevoip.net\",\n        \"6390@00310.impulsevoip.net\",\n        \"6391@00310.impulsevoip.net\",\n        \"6392@00310.impulsevoip.net\",\n        \"6393@00310.impulsevoip.net\",\n        \"6394@00310.impulsevoip.net\",\n        \"6395@00310.impulsevoip.net\",\n        \"6396@00310.impulsevoip.net\",\n        \"6397@00310.impulsevoip.net\",\n        \"6398@00310.impulsevoip.net\",\n        \"6399@00310.impulsevoip.net\",\n        \"6400@00310.impulsevoip.net\",\n        \"6401@00310.impulsevoip.net\",\n        \"6402@00310.impulsevoip.net\",\n        \"6403@00310.impulsevoip.net\",\n        \"6404@00310.impulsevoip.net\",\n        \"6405@00310.impulsevoip.net\",\n        \"6406@00310.impulsevoip.net\",\n        \"6407@00310.impulsevoip.net\",\n        \"6408@00310.impulsevoip.net\",\n        \"6409@00310.impulsevoip.net\",\n        \"6410@00310.impulsevoip.net\",\n        \"6411@00310.impulsevoip.net\",\n        \"6412@00310.impulsevoip.net\",\n        \"6413@00310.impulsevoip.net\",\n        \"6414@00310.impulsevoip.net\",\n        \"6415@00310.impulsevoip.net\",\n        \"6416@00310.impulsevoip.net\",\n        \"6417@00310.impulsevoip.net\",\n        \"6418@00310.impulsevoip.net\",\n        \"6419@00310.impulsevoip.net\",\n        \"6420@00310.impulsevoip.net\",\n        \"6421@00310.impulsevoip.net\",\n        \"6422@00310.impulsevoip.net\",\n        \"6423@00310.impulsevoip.net\",\n        \"6424@00310.impulsevoip.net\",\n        \"6425@00310.impulsevoip.net\",\n        \"6426@00310.impulsevoip.net\",\n        \"6427@00310.impulsevoip.net\",\n        \"6428@00310.impulsevoip.net\",\n        \"6429@00310.impulsevoip.net\",\n        \"6430@00310.impulsevoip.net\",\n        \"6431@00310.impulsevoip.net\",\n        \"6432@00310.impulsevoip.net\",\n        \"6433@00310.impulsevoip.net\",\n        \"6434@00310.impulsevoip.net\",\n        \"6435@00310.impulsevoip.net\",\n        \"6436@00310.impulsevoip.net\",\n        \"6437@00310.impulsevoip.net\",\n        \"6438@00310.impulsevoip.net\",\n        \"6439@00310.impulsevoip.net\",\n        \"6440@00310.impulsevoip.net\",\n        \"6441@00310.impulsevoip.net\",\n        \"6442@00310.impulsevoip.net\",\n        \"6443@00310.impulsevoip.net\",\n        \"6444@00310.impulsevoip.net\",\n        \"6445@00310.impulsevoip.net\",\n        \"6446@00310.impulsevoip.net\",\n        \"6447@00310.impulsevoip.net\",\n        \"6448@00310.impulsevoip.net\",\n        \"6449@00310.impulsevoip.net\",\n        \"6450@00310.impulsevoip.net\",\n        \"6451@00310.impulsevoip.net\",\n        \"6452@00310.impulsevoip.net\",\n        \"6453@00310.impulsevoip.net\",\n        \"6454@00310.impulsevoip.net\",\n        \"6455@00310.impulsevoip.net\",\n        \"6456@00310.impulsevoip.net\",\n        \"6457@00310.impulsevoip.net\",\n        \"6458@00310.impulsevoip.net\",\n        \"6459@00310.impulsevoip.net\",\n        \"6460@00310.impulsevoip.net\",\n        \"6461@00310.impulsevoip.net\",\n        \"6462@00310.impulsevoip.net\",\n        \"6463@00310.impulsevoip.net\",\n        \"6464@00310.impulsevoip.net\",\n        \"6465@00310.impulsevoip.net\",\n        \"6466@00310.impulsevoip.net\",\n        \"6467@00310.impulsevoip.net\",\n        \"6468@00310.impulsevoip.net\",\n        \"6469@00310.impulsevoip.net\",\n        \"6470@00310.impulsevoip.net\",\n        \"6471@00310.impulsevoip.net\",\n        \"6472@00310.impulsevoip.net\",\n        \"6473@00310.impulsevoip.net\",\n        \"6474@00310.impulsevoip.net\",\n        \"6475@00310.impulsevoip.net\",\n        \"6476@00310.impulsevoip.net\",\n        \"6477@00310.impulsevoip.net\",\n        \"6478@00310.impulsevoip.net\",\n        \"6479@00310.impulsevoip.net\",\n        \"6480@00310.impulsevoip.net\",\n        \"6481@00310.impulsevoip.net\",\n        \"6482@00310.impulsevoip.net\",\n        \"6483@00310.impulsevoip.net\",\n        \"6484@00310.impulsevoip.net\",\n        \"6485@00310.impulsevoip.net\",\n        \"6486@00310.impulsevoip.net\",\n        \"6487@00310.impulsevoip.net\",\n        \"6488@00310.impulsevoip.net\",\n        \"6489@00310.impulsevoip.net\",\n        \"6490@00310.impulsevoip.net\",\n        \"6491@00310.impulsevoip.net\",\n        \"6492@00310.impulsevoip.net\",\n        \"6493@00310.impulsevoip.net\",\n        \"6494@00310.impulsevoip.net\",\n        \"6495@00310.impulsevoip.net\",\n        \"6496@00310.impulsevoip.net\",\n        \"6497@00310.impulsevoip.net\",\n        \"6498@00310.impulsevoip.net\",\n        \"6499@00310.impulsevoip.net\",\n        \"6500@00310.impulsevoip.net\",\n        \"6501@00310.impulsevoip.net\",\n        \"6502@00310.impulsevoip.net\",\n        \"6503@00310.impulsevoip.net\",\n        \"6504@00310.impulsevoip.net\",\n        \"6505@00310.impulsevoip.net\",\n        \"6506@00310.impulsevoip.net\",\n        \"6507@00310.impulsevoip.net\",\n        \"6508@00310.impulsevoip.net\",\n        \"6509@00310.impulsevoip.net\",\n        \"6510@00310.impulsevoip.net\",\n        \"6511@00310.impulsevoip.net\",\n        \"6512@00310.impulsevoip.net\",\n        \"6513@00310.impulsevoip.net\",\n        \"6514@00310.impulsevoip.net\",\n        \"6515@00310.impulsevoip.net\",\n        \"6516@00310.impulsevoip.net\",\n        \"6517@00310.impulsevoip.net\",\n        \"6518@00310.impulsevoip.net\",\n        \"6519@00310.impulsevoip.net\",\n        \"6520@00310.impulsevoip.net\",\n        \"6521@00310.impulsevoip.net\",\n        \"6522@00310.impulsevoip.net\",\n        \"6523@00310.impulsevoip.net\",\n        \"6524@00310.impulsevoip.net\",\n        \"6525@00310.impulsevoip.net\",\n        \"6526@00310.impulsevoip.net\",\n        \"6527@00310.impulsevoip.net\",\n        \"6528@00310.impulsevoip.net\",\n        \"6529@00310.impulsevoip.net\",\n        \"6530@00310.impulsevoip.net\",\n        \"6531@00310.impulsevoip.net\",\n        \"6532@00310.impulsevoip.net\",\n        \"6533@00310.impulsevoip.net\",\n        \"6534@00310.impulsevoip.net\",\n        \"6535@00310.impulsevoip.net\",\n        \"6536@00310.impulsevoip.net\",\n        \"6537@00310.impulsevoip.net\",\n        \"6538@00310.impulsevoip.net\",\n        \"6539@00310.impulsevoip.net\",\n        \"6540@00310.impulsevoip.net\",\n        \"6541@00310.impulsevoip.net\",\n        \"6542@00310.impulsevoip.net\",\n        \"6543@00310.impulsevoip.net\",\n        \"6544@00310.impulsevoip.net\",\n        \"6545@00310.impulsevoip.net\",\n        \"6546@00310.impulsevoip.net\",\n        \"6547@00310.impulsevoip.net\",\n        \"6548@00310.impulsevoip.net\",\n        \"6549@00310.impulsevoip.net\",\n        \"6550@00310.impulsevoip.net\",\n        \"6551@00310.impulsevoip.net\",\n        \"6552@00310.impulsevoip.net\",\n        \"6553@00310.impulsevoip.net\",\n        \"6554@00310.impulsevoip.net\",\n        \"6555@00310.impulsevoip.net\",\n        \"6556@00310.impulsevoip.net\",\n        \"6557@00310.impulsevoip.net\",\n        \"6558@00310.impulsevoip.net\",\n        \"6559@00310.impulsevoip.net\",\n        \"6560@00310.impulsevoip.net\",\n        \"6561@00310.impulsevoip.net\",\n        \"6562@00310.impulsevoip.net\",\n        \"6563@00310.impulsevoip.net\",\n        \"6564@00310.impulsevoip.net\",\n        \"6565@00310.impulsevoip.net\",\n        \"6566@00310.impulsevoip.net\",\n        \"6567@00310.impulsevoip.net\",\n        \"6568@00310.impulsevoip.net\",\n        \"6569@00310.impulsevoip.net\",\n        \"6570@00310.impulsevoip.net\",\n        \"6571@00310.impulsevoip.net\",\n        \"6572@00310.impulsevoip.net\",\n        \"6573@00310.impulsevoip.net\",\n        \"6574@00310.impulsevoip.net\",\n        \"6575@00310.impulsevoip.net\",\n        \"6576@00310.impulsevoip.net\",\n        \"6577@00310.impulsevoip.net\",\n        \"6578@00310.impulsevoip.net\",\n        \"6579@00310.impulsevoip.net\",\n        \"6580@00310.impulsevoip.net\",\n        \"6581@00310.impulsevoip.net\",\n        \"6582@00310.impulsevoip.net\",\n        \"6583@00310.impulsevoip.net\",\n        \"6584@00310.impulsevoip.net\",\n        \"6585@00310.impulsevoip.net\",\n        \"6586@00310.impulsevoip.net\",\n        \"6587@00310.impulsevoip.net\",\n        \"6588@00310.impulsevoip.net\",\n        \"6589@00310.impulsevoip.net\",\n        \"6590@00310.impulsevoip.net\",\n        \"6591@00310.impulsevoip.net\",\n        \"6592@00310.impulsevoip.net\",\n        \"6593@00310.impulsevoip.net\",\n        \"6594@00310.impulsevoip.net\",\n        \"6595@00310.impulsevoip.net\",\n        \"6596@00310.impulsevoip.net\",\n        \"6597@00310.impulsevoip.net\",\n        \"6598@00310.impulsevoip.net\",\n        \"6599@00310.impulsevoip.net\",\n        \"6600@00310.impulsevoip.net\",\n        \"6601@00310.impulsevoip.net\",\n        \"6602@00310.impulsevoip.net\",\n        \"6603@00310.impulsevoip.net\",\n        \"6604@00310.impulsevoip.net\",\n        \"6605@00310.impulsevoip.net\",\n        \"6606@00310.impulsevoip.net\",\n        \"6607@00310.impulsevoip.net\",\n        \"6608@00310.impulsevoip.net\",\n        \"6609@00310.impulsevoip.net\",\n        \"6610@00310.impulsevoip.net\",\n        \"6611@00310.impulsevoip.net\",\n        \"6612@00310.impulsevoip.net\",\n        \"6613@00310.impulsevoip.net\",\n        \"6614@00310.impulsevoip.net\",\n        \"6615@00310.impulsevoip.net\",\n        \"6616@00310.impulsevoip.net\",\n        \"6617@00310.impulsevoip.net\",\n        \"6618@00310.impulsevoip.net\",\n        \"6619@00310.impulsevoip.net\",\n        \"6620@00310.impulsevoip.net\",\n        \"6621@00310.impulsevoip.net\",\n        \"6622@00310.impulsevoip.net\",\n        \"6623@00310.impulsevoip.net\",\n        \"6624@00310.impulsevoip.net\",\n        \"6625@00310.impulsevoip.net\",\n        \"6626@00310.impulsevoip.net\",\n        \"6627@00310.impulsevoip.net\",\n        \"6628@00310.impulsevoip.net\",\n        \"6629@00310.impulsevoip.net\",\n        \"6630@00310.impulsevoip.net\",\n        \"6631@00310.impulsevoip.net\",\n        \"6632@00310.impulsevoip.net\",\n        \"6633@00310.impulsevoip.net\",\n        \"6634@00310.impulsevoip.net\",\n        \"6635@00310.impulsevoip.net\",\n        \"6636@00310.impulsevoip.net\",\n        \"6637@00310.impulsevoip.net\",\n        \"6638@00310.impulsevoip.net\",\n        \"6639@00310.impulsevoip.net\",\n        \"6640@00310.impulsevoip.net\",\n        \"6641@00310.impulsevoip.net\",\n        \"6642@00310.impulsevoip.net\",\n        \"6643@00310.impulsevoip.net\",\n        \"6644@00310.impulsevoip.net\",\n        \"6645@00310.impulsevoip.net\",\n        \"6646@00310.impulsevoip.net\",\n        \"6647@00310.impulsevoip.net\",\n        \"6648@00310.impulsevoip.net\",\n        \"6649@00310.impulsevoip.net\",\n        \"6650@00310.impulsevoip.net\",\n        \"6651@00310.impulsevoip.net\",\n        \"6652@00310.impulsevoip.net\",\n        \"6653@00310.impulsevoip.net\",\n        \"6654@00310.impulsevoip.net\",\n        \"6655@00310.impulsevoip.net\",\n        \"6656@00310.impulsevoip.net\",\n        \"6657@00310.impulsevoip.net\",\n        \"6658@00310.impulsevoip.net\",\n        \"6659@00310.impulsevoip.net\",\n        \"6660@00310.impulsevoip.net\",\n        \"6661@00310.impulsevoip.net\",\n        \"6662@00310.impulsevoip.net\",\n        \"6663@00310.impulsevoip.net\",\n        \"6664@00310.impulsevoip.net\",\n        \"6665@00310.impulsevoip.net\",\n        \"6666@00310.impulsevoip.net\",\n        \"6667@00310.impulsevoip.net\",\n        \"6668@00310.impulsevoip.net\",\n        \"6669@00310.impulsevoip.net\",\n        \"6670@00310.impulsevoip.net\",\n        \"6671@00310.impulsevoip.net\",\n        \"6672@00310.impulsevoip.net\",\n        \"6673@00310.impulsevoip.net\",\n        \"6674@00310.impulsevoip.net\",\n        \"6675@00310.impulsevoip.net\",\n        \"6676@00310.impulsevoip.net\",\n        \"6677@00310.impulsevoip.net\",\n        \"6678@00310.impulsevoip.net\",\n        \"6679@00310.impulsevoip.net\",\n        \"5912@00310.impulsevoip.net\",\n        \"5913@00310.impulsevoip.net\",\n        \"5914@00310.impulsevoip.net\",\n        \"5915@00310.impulsevoip.net\",\n        \"5916@00310.impulsevoip.net\",\n        \"5917@00310.impulsevoip.net\",\n        \"5918@00310.impulsevoip.net\",\n        \"5919@00310.impulsevoip.net\",\n        \"5920@00310.impulsevoip.net\",\n        \"5921@00310.impulsevoip.net\",\n        \"5922@00310.impulsevoip.net\",\n        \"5923@00310.impulsevoip.net\",\n        \"5924@00310.impulsevoip.net\",\n        \"5925@00310.impulsevoip.net\",\n        \"5926@00310.impulsevoip.net\",\n        \"5927@00310.impulsevoip.net\",\n        \"5928@00310.impulsevoip.net\",\n        \"5929@00310.impulsevoip.net\",\n        \"5930@00310.impulsevoip.net\",\n        \"5931@00310.impulsevoip.net\",\n        \"5932@00310.impulsevoip.net\",\n        \"5933@00310.impulsevoip.net\",\n        \"5934@00310.impulsevoip.net\",\n        \"5935@00310.impulsevoip.net\",\n        \"5936@00310.impulsevoip.net\",\n        \"5937@00310.impulsevoip.net\",\n        \"5938@00310.impulsevoip.net\",\n        \"5939@00310.impulsevoip.net\",\n        \"5940@00310.impulsevoip.net\",\n        \"5941@00310.impulsevoip.net\",\n        \"5942@00310.impulsevoip.net\",\n        \"5943@00310.impulsevoip.net\",\n        \"5944@00310.impulsevoip.net\",\n        \"5945@00310.impulsevoip.net\",\n        \"5946@00310.impulsevoip.net\",\n        \"5947@00310.impulsevoip.net\",\n        \"5948@00310.impulsevoip.net\",\n        \"5949@00310.impulsevoip.net\",\n        \"5950@00310.impulsevoip.net\",\n        \"5951@00310.impulsevoip.net\",\n        \"5952@00310.impulsevoip.net\",\n        \"5953@00310.impulsevoip.net\",\n        \"5954@00310.impulsevoip.net\",\n        \"5955@00310.impulsevoip.net\",\n        \"5956@00310.impulsevoip.net\",\n        \"5957@00310.impulsevoip.net\",\n        \"5958@00310.impulsevoip.net\",\n        \"5959@00310.impulsevoip.net\",\n        \"5960@00310.impulsevoip.net\",\n        \"5961@00310.impulsevoip.net\",\n        \"5962@00310.impulsevoip.net\",\n        \"5963@00310.impulsevoip.net\",\n        \"5964@00310.impulsevoip.net\",\n        \"5965@00310.impulsevoip.net\",\n        \"5966@00310.impulsevoip.net\",\n        \"5967@00310.impulsevoip.net\",\n        \"5968@00310.impulsevoip.net\",\n        \"5969@00310.impulsevoip.net\",\n        \"5970@00310.impulsevoip.net\",\n        \"5971@00310.impulsevoip.net\",\n        \"5972@00310.impulsevoip.net\",\n        \"5973@00310.impulsevoip.net\",\n        \"5974@00310.impulsevoip.net\",\n        \"5975@00310.impulsevoip.net\",\n        \"5976@00310.impulsevoip.net\",\n        \"5977@00310.impulsevoip.net\",\n        \"5978@00310.impulsevoip.net\",\n        \"5979@00310.impulsevoip.net\",\n        \"5980@00310.impulsevoip.net\",\n        \"5981@00310.impulsevoip.net\",\n        \"5982@00310.impulsevoip.net\",\n        \"5983@00310.impulsevoip.net\",\n        \"5984@00310.impulsevoip.net\",\n        \"5985@00310.impulsevoip.net\",\n        \"5986@00310.impulsevoip.net\",\n        \"5987@00310.impulsevoip.net\",\n        \"5988@00310.impulsevoip.net\",\n        \"5989@00310.impulsevoip.net\",\n        \"5990@00310.impulsevoip.net\",\n        \"5991@00310.impulsevoip.net\",\n        \"5992@00310.impulsevoip.net\",\n        \"5993@00310.impulsevoip.net\",\n        \"5994@00310.impulsevoip.net\",\n        \"5995@00310.impulsevoip.net\",\n        \"5996@00310.impulsevoip.net\",\n        \"5997@00310.impulsevoip.net\",\n        \"5998@00310.impulsevoip.net\",\n        \"5999@00310.impulsevoip.net\",\n        \"6000@00310.impulsevoip.net\",\n        \"6001@00310.impulsevoip.net\",\n        \"6002@00310.impulsevoip.net\",\n        \"6003@00310.impulsevoip.net\",\n        \"6004@00310.impulsevoip.net\",\n        \"6005@00310.impulsevoip.net\",\n        \"6006@00310.impulsevoip.net\",\n        \"6007@00310.impulsevoip.net\",\n        \"6008@00310.impulsevoip.net\",\n        \"6009@00310.impulsevoip.net\",\n        \"6010@00310.impulsevoip.net\",\n        \"6011@00310.impulsevoip.net\",\n        \"6012@00310.impulsevoip.net\",\n        \"6013@00310.impulsevoip.net\",\n        \"6014@00310.impulsevoip.net\",\n        \"6015@00310.impulsevoip.net\",\n        \"6016@00310.impulsevoip.net\",\n        \"6017@00310.impulsevoip.net\",\n        \"6018@00310.impulsevoip.net\",\n        \"6019@00310.impulsevoip.net\",\n        \"6020@00310.impulsevoip.net\",\n        \"6021@00310.impulsevoip.net\",\n        \"6022@00310.impulsevoip.net\",\n        \"6023@00310.impulsevoip.net\",\n        \"6024@00310.impulsevoip.net\",\n        \"6025@00310.impulsevoip.net\",\n        \"6026@00310.impulsevoip.net\",\n        \"6027@00310.impulsevoip.net\",\n        \"6028@00310.impulsevoip.net\",\n        \"6029@00310.impulsevoip.net\",\n        \"6030@00310.impulsevoip.net\",\n        \"6031@00310.impulsevoip.net\",\n        \"6032@00310.impulsevoip.net\",\n        \"6033@00310.impulsevoip.net\",\n        \"6034@00310.impulsevoip.net\",\n        \"6035@00310.impulsevoip.net\",\n        \"6036@00310.impulsevoip.net\",\n        \"6037@00310.impulsevoip.net\",\n        \"6038@00310.impulsevoip.net\",\n        \"6039@00310.impulsevoip.net\",\n        \"6040@00310.impulsevoip.net\",\n        \"6041@00310.impulsevoip.net\",\n        \"6042@00310.impulsevoip.net\",\n        \"6043@00310.impulsevoip.net\",\n        \"6044@00310.impulsevoip.net\",\n        \"6045@00310.impulsevoip.net\",\n        \"6046@00310.impulsevoip.net\",\n        \"6047@00310.impulsevoip.net\",\n        \"6048@00310.impulsevoip.net\",\n        \"6049@00310.impulsevoip.net\",\n        \"6050@00310.impulsevoip.net\",\n        \"6051@00310.impulsevoip.net\",\n        \"6052@00310.impulsevoip.net\",\n        \"6053@00310.impulsevoip.net\",\n        \"6054@00310.impulsevoip.net\",\n        \"6055@00310.impulsevoip.net\",\n        \"6056@00310.impulsevoip.net\",\n        \"6057@00310.impulsevoip.net\",\n        \"6058@00310.impulsevoip.net\",\n        \"6059@00310.impulsevoip.net\",\n        \"6060@00310.impulsevoip.net\",\n        \"6061@00310.impulsevoip.net\",\n        \"6062@00310.impulsevoip.net\",\n        \"6063@00310.impulsevoip.net\",\n        \"6064@00310.impulsevoip.net\",\n        \"6065@00310.impulsevoip.net\",\n        \"6066@00310.impulsevoip.net\",\n        \"6067@00310.impulsevoip.net\",\n        \"6068@00310.impulsevoip.net\",\n        \"6069@00310.impulsevoip.net\",\n        \"6070@00310.impulsevoip.net\",\n        \"6071@00310.impulsevoip.net\",\n        \"6072@00310.impulsevoip.net\",\n        \"6073@00310.impulsevoip.net\",\n        \"6074@00310.impulsevoip.net\",\n        \"6075@00310.impulsevoip.net\",\n        \"6076@00310.impulsevoip.net\",\n        \"6077@00310.impulsevoip.net\",\n        \"6078@00310.impulsevoip.net\",\n        \"6079@00310.impulsevoip.net\",\n        \"6080@00310.impulsevoip.net\",\n        \"6081@00310.impulsevoip.net\",\n        \"6082@00310.impulsevoip.net\",\n        \"6083@00310.impulsevoip.net\",\n        \"6084@00310.impulsevoip.net\",\n        \"6085@00310.impulsevoip.net\",\n        \"6086@00310.impulsevoip.net\",\n        \"6087@00310.impulsevoip.net\",\n        \"6088@00310.impulsevoip.net\",\n        \"6089@00310.impulsevoip.net\",\n        \"6090@00310.impulsevoip.net\",\n        \"6091@00310.impulsevoip.net\",\n        \"6092@00310.impulsevoip.net\",\n        \"6093@00310.impulsevoip.net\",\n        \"6094@00310.impulsevoip.net\",\n        \"6095@00310.impulsevoip.net\",\n        \"6096@00310.impulsevoip.net\",\n        \"6097@00310.impulsevoip.net\",\n        \"6098@00310.impulsevoip.net\",\n        \"6099@00310.impulsevoip.net\",\n        \"6100@00310.impulsevoip.net\",\n        \"6101@00310.impulsevoip.net\",\n        \"6102@00310.impulsevoip.net\",\n        \"6103@00310.impulsevoip.net\",\n        \"6104@00310.impulsevoip.net\",\n        \"6105@00310.impulsevoip.net\",\n        \"6106@00310.impulsevoip.net\",\n        \"6107@00310.impulsevoip.net\",\n        \"6108@00310.impulsevoip.net\",\n        \"6109@00310.impulsevoip.net\",\n        \"6110@00310.impulsevoip.net\",\n        \"6111@00310.impulsevoip.net\",\n        \"6112@00310.impulsevoip.net\",\n        \"6113@00310.impulsevoip.net\",\n        \"6114@00310.impulsevoip.net\",\n        \"6115@00310.impulsevoip.net\",\n        \"6116@00310.impulsevoip.net\",\n        \"6117@00310.impulsevoip.net\",\n        \"6118@00310.impulsevoip.net\",\n        \"6119@00310.impulsevoip.net\",\n        \"6120@00310.impulsevoip.net\",\n        \"6121@00310.impulsevoip.net\",\n        \"6122@00310.impulsevoip.net\",\n        \"6123@00310.impulsevoip.net\",\n        \"6124@00310.impulsevoip.net\",\n        \"6125@00310.impulsevoip.net\",\n        \"6126@00310.impulsevoip.net\",\n        \"6127@00310.impulsevoip.net\",\n        \"6128@00310.impulsevoip.net\",\n        \"6129@00310.impulsevoip.net\",\n        \"6130@00310.impulsevoip.net\",\n        \"6131@00310.impulsevoip.net\",\n        \"6132@00310.impulsevoip.net\",\n        \"6133@00310.impulsevoip.net\",\n        \"6134@00310.impulsevoip.net\",\n        \"6135@00310.impulsevoip.net\",\n        \"6136@00310.impulsevoip.net\",\n        \"6137@00310.impulsevoip.net\",\n        \"6138@00310.impulsevoip.net\",\n        \"6139@00310.impulsevoip.net\",\n        \"6140@00310.impulsevoip.net\",\n        \"6141@00310.impulsevoip.net\",\n        \"6142@00310.impulsevoip.net\",\n        \"6143@00310.impulsevoip.net\",\n        \"6144@00310.impulsevoip.net\",\n        \"6145@00310.impulsevoip.net\",\n        \"6146@00310.impulsevoip.net\",\n        \"6147@00310.impulsevoip.net\",\n        \"6148@00310.impulsevoip.net\",\n        \"6149@00310.impulsevoip.net\",\n        \"6150@00310.impulsevoip.net\",\n        \"6151@00310.impulsevoip.net\",\n        \"6152@00310.impulsevoip.net\",\n        \"6153@00310.impulsevoip.net\",\n        \"6154@00310.impulsevoip.net\",\n        \"6155@00310.impulsevoip.net\",\n        \"6156@00310.impulsevoip.net\",\n        \"6157@00310.impulsevoip.net\",\n        \"6158@00310.impulsevoip.net\",\n        \"6159@00310.impulsevoip.net\",\n        \"6160@00310.impulsevoip.net\",\n        \"6161@00310.impulsevoip.net\",\n        \"6162@00310.impulsevoip.net\",\n        \"6163@00310.impulsevoip.net\",\n        \"6164@00310.impulsevoip.net\",\n        \"6165@00310.impulsevoip.net\",\n        \"6166@00310.impulsevoip.net\",\n        \"6167@00310.impulsevoip.net\",\n        \"6680@00310.impulsevoip.net\",\n        \"6681@00310.impulsevoip.net\",\n        \"6682@00310.impulsevoip.net\",\n        \"6683@00310.impulsevoip.net\",\n        \"6684@00310.impulsevoip.net\",\n        \"6685@00310.impulsevoip.net\",\n        \"6686@00310.impulsevoip.net\",\n        \"6687@00310.impulsevoip.net\",\n        \"6688@00310.impulsevoip.net\",\n        \"6689@00310.impulsevoip.net\",\n        \"6690@00310.impulsevoip.net\",\n        \"6691@00310.impulsevoip.net\",\n        \"6692@00310.impulsevoip.net\",\n        \"6693@00310.impulsevoip.net\",\n        \"6694@00310.impulsevoip.net\",\n        \"6695@00310.impulsevoip.net\",\n        \"6696@00310.impulsevoip.net\",\n        \"6697@00310.impulsevoip.net\",\n        \"6698@00310.impulsevoip.net\",\n        \"6699@00310.impulsevoip.net\",\n        \"6700@00310.impulsevoip.net\",\n        \"6701@00310.impulsevoip.net\",\n        \"6702@00310.impulsevoip.net\",\n        \"6703@00310.impulsevoip.net\",\n        \"6704@00310.impulsevoip.net\",\n        \"6705@00310.impulsevoip.net\",\n        \"6706@00310.impulsevoip.net\",\n        \"6707@00310.impulsevoip.net\",\n        \"6708@00310.impulsevoip.net\",\n        \"6709@00310.impulsevoip.net\",\n        \"6710@00310.impulsevoip.net\",\n        \"6711@00310.impulsevoip.net\",\n        \"6712@00310.impulsevoip.net\",\n        \"6713@00310.impulsevoip.net\",\n        \"6714@00310.impulsevoip.net\",\n        \"6715@00310.impulsevoip.net\",\n        \"6716@00310.impulsevoip.net\",\n        \"6717@00310.impulsevoip.net\",\n        \"6718@00310.impulsevoip.net\",\n        \"6719@00310.impulsevoip.net\",\n        \"6720@00310.impulsevoip.net\",\n        \"6721@00310.impulsevoip.net\",\n        \"6722@00310.impulsevoip.net\",\n        \"6723@00310.impulsevoip.net\",\n        \"6724@00310.impulsevoip.net\",\n        \"6725@00310.impulsevoip.net\",\n        \"6726@00310.impulsevoip.net\",\n        \"6727@00310.impulsevoip.net\",\n        \"6728@00310.impulsevoip.net\",\n        \"6729@00310.impulsevoip.net\",\n        \"6730@00310.impulsevoip.net\",\n        \"6731@00310.impulsevoip.net\",\n        \"6732@00310.impulsevoip.net\",\n        \"6733@00310.impulsevoip.net\",\n        \"6734@00310.impulsevoip.net\",\n        \"6735@00310.impulsevoip.net\",\n        \"6736@00310.impulsevoip.net\",\n        \"6737@00310.impulsevoip.net\",\n        \"6738@00310.impulsevoip.net\",\n        \"6739@00310.impulsevoip.net\",\n        \"6740@00310.impulsevoip.net\",\n        \"6741@00310.impulsevoip.net\",\n        \"6742@00310.impulsevoip.net\",\n        \"6743@00310.impulsevoip.net\",\n        \"6744@00310.impulsevoip.net\",\n        \"6745@00310.impulsevoip.net\",\n        \"6746@00310.impulsevoip.net\",\n        \"6747@00310.impulsevoip.net\",\n        \"6748@00310.impulsevoip.net\",\n        \"6749@00310.impulsevoip.net\",\n        \"6750@00310.impulsevoip.net\",\n        \"6751@00310.impulsevoip.net\",\n        \"6752@00310.impulsevoip.net\",\n        \"6753@00310.impulsevoip.net\",\n        \"6754@00310.impulsevoip.net\",\n        \"6755@00310.impulsevoip.net\",\n        \"6756@00310.impulsevoip.net\",\n        \"6757@00310.impulsevoip.net\",\n        \"6758@00310.impulsevoip.net\",\n        \"6759@00310.impulsevoip.net\",\n        \"6760@00310.impulsevoip.net\",\n        \"6761@00310.impulsevoip.net\",\n        \"6762@00310.impulsevoip.net\",\n        \"6763@00310.impulsevoip.net\",\n        \"6764@00310.impulsevoip.net\",\n        \"6765@00310.impulsevoip.net\",\n        \"6766@00310.impulsevoip.net\",\n        \"6767@00310.impulsevoip.net\",\n        \"6768@00310.impulsevoip.net\",\n        \"6769@00310.impulsevoip.net\",\n        \"6770@00310.impulsevoip.net\",\n        \"6771@00310.impulsevoip.net\",\n        \"6772@00310.impulsevoip.net\",\n        \"6773@00310.impulsevoip.net\",\n        \"6774@00310.impulsevoip.net\",\n        \"6775@00310.impulsevoip.net\",\n        \"6776@00310.impulsevoip.net\",\n        \"6777@00310.impulsevoip.net\",\n        \"6778@00310.impulsevoip.net\",\n        \"6779@00310.impulsevoip.net\",\n        \"6780@00310.impulsevoip.net\",\n        \"6781@00310.impulsevoip.net\",\n        \"6782@00310.impulsevoip.net\",\n        \"6783@00310.impulsevoip.net\",\n        \"6784@00310.impulsevoip.net\",\n        \"6785@00310.impulsevoip.net\",\n        \"6786@00310.impulsevoip.net\",\n        \"6787@00310.impulsevoip.net\",\n        \"6788@00310.impulsevoip.net\",\n        \"6789@00310.impulsevoip.net\",\n        \"6790@00310.impulsevoip.net\",\n        \"6791@00310.impulsevoip.net\",\n        \"6792@00310.impulsevoip.net\",\n        \"6793@00310.impulsevoip.net\",\n        \"6794@00310.impulsevoip.net\",\n        \"6795@00310.impulsevoip.net\",\n        \"6796@00310.impulsevoip.net\",\n        \"6797@00310.impulsevoip.net\",\n        \"6798@00310.impulsevoip.net\",\n        \"6799@00310.impulsevoip.net\",\n        \"6800@00310.impulsevoip.net\",\n        \"6801@00310.impulsevoip.net\",\n        \"6802@00310.impulsevoip.net\",\n        \"6803@00310.impulsevoip.net\",\n        \"6804@00310.impulsevoip.net\",\n        \"6805@00310.impulsevoip.net\",\n        \"6806@00310.impulsevoip.net\",\n        \"6807@00310.impulsevoip.net\",\n        \"6808@00310.impulsevoip.net\",\n        \"6809@00310.impulsevoip.net\",\n        \"6810@00310.impulsevoip.net\",\n        \"6811@00310.impulsevoip.net\",\n        \"6812@00310.impulsevoip.net\",\n        \"6813@00310.impulsevoip.net\",\n        \"6814@00310.impulsevoip.net\",\n        \"6815@00310.impulsevoip.net\",\n        \"6816@00310.impulsevoip.net\",\n        \"6817@00310.impulsevoip.net\",\n        \"6818@00310.impulsevoip.net\",\n        \"6819@00310.impulsevoip.net\",\n        \"6820@00310.impulsevoip.net\",\n        \"6821@00310.impulsevoip.net\",\n        \"6822@00310.impulsevoip.net\",\n        \"6823@00310.impulsevoip.net\",\n        \"6824@00310.impulsevoip.net\",\n        \"6825@00310.impulsevoip.net\",\n        \"6826@00310.impulsevoip.net\",\n        \"6827@00310.impulsevoip.net\",\n        \"6828@00310.impulsevoip.net\",\n        \"6829@00310.impulsevoip.net\",\n        \"6830@00310.impulsevoip.net\",\n        \"6831@00310.impulsevoip.net\",\n        \"6832@00310.impulsevoip.net\",\n        \"6833@00310.impulsevoip.net\",\n        \"6834@00310.impulsevoip.net\",\n        \"6835@00310.impulsevoip.net\",\n        \"6836@00310.impulsevoip.net\",\n        \"6837@00310.impulsevoip.net\",\n        \"6838@00310.impulsevoip.net\",\n        \"6839@00310.impulsevoip.net\",\n        \"6840@00310.impulsevoip.net\",\n        \"6841@00310.impulsevoip.net\",\n        \"6842@00310.impulsevoip.net\",\n        \"6843@00310.impulsevoip.net\",\n        \"6844@00310.impulsevoip.net\",\n        \"6845@00310.impulsevoip.net\",\n        \"6846@00310.impulsevoip.net\",\n        \"6847@00310.impulsevoip.net\",\n        \"6848@00310.impulsevoip.net\",\n        \"6849@00310.impulsevoip.net\",\n        \"6850@00310.impulsevoip.net\",\n        \"6851@00310.impulsevoip.net\",\n        \"6852@00310.impulsevoip.net\",\n        \"6853@00310.impulsevoip.net\",\n        \"6854@00310.impulsevoip.net\",\n        \"6855@00310.impulsevoip.net\",\n        \"6856@00310.impulsevoip.net\",\n        \"6857@00310.impulsevoip.net\",\n        \"6858@00310.impulsevoip.net\",\n        \"6859@00310.impulsevoip.net\",\n        \"6860@00310.impulsevoip.net\",\n        \"6861@00310.impulsevoip.net\",\n        \"6862@00310.impulsevoip.net\",\n        \"6863@00310.impulsevoip.net\",\n        \"6864@00310.impulsevoip.net\",\n        \"6865@00310.impulsevoip.net\",\n        \"6866@00310.impulsevoip.net\",\n        \"6867@00310.impulsevoip.net\",\n        \"6868@00310.impulsevoip.net\",\n        \"6869@00310.impulsevoip.net\",\n        \"6870@00310.impulsevoip.net\",\n        \"6871@00310.impulsevoip.net\",\n        \"6872@00310.impulsevoip.net\",\n        \"6873@00310.impulsevoip.net\",\n        \"6874@00310.impulsevoip.net\",\n        \"6875@00310.impulsevoip.net\",\n        \"6876@00310.impulsevoip.net\",\n        \"6877@00310.impulsevoip.net\",\n        \"6878@00310.impulsevoip.net\",\n        \"6879@00310.impulsevoip.net\",\n        \"6880@00310.impulsevoip.net\",\n        \"6881@00310.impulsevoip.net\",\n        \"6882@00310.impulsevoip.net\",\n        \"6883@00310.impulsevoip.net\",\n        \"6884@00310.impulsevoip.net\",\n        \"6885@00310.impulsevoip.net\",\n        \"6886@00310.impulsevoip.net\",\n        \"6887@00310.impulsevoip.net\",\n        \"6888@00310.impulsevoip.net\",\n        \"6889@00310.impulsevoip.net\",\n        \"6890@00310.impulsevoip.net\",\n        \"6891@00310.impulsevoip.net\",\n        \"6892@00310.impulsevoip.net\",\n        \"6893@00310.impulsevoip.net\",\n        \"6894@00310.impulsevoip.net\",\n        \"6895@00310.impulsevoip.net\",\n        \"6896@00310.impulsevoip.net\",\n        \"6897@00310.impulsevoip.net\",\n        \"6898@00310.impulsevoip.net\",\n        \"6899@00310.impulsevoip.net\",\n        \"6900@00310.impulsevoip.net\",\n        \"6901@00310.impulsevoip.net\",\n        \"6902@00310.impulsevoip.net\",\n        \"6903@00310.impulsevoip.net\",\n        \"6904@00310.impulsevoip.net\",\n        \"6905@00310.impulsevoip.net\",\n        \"6906@00310.impulsevoip.net\",\n        \"6907@00310.impulsevoip.net\",\n        \"6908@00310.impulsevoip.net\",\n        \"6909@00310.impulsevoip.net\",\n        \"6910@00310.impulsevoip.net\",\n        \"6912@00310.impulsevoip.net\",\n        \"6913@00310.impulsevoip.net\",\n        \"6914@00310.impulsevoip.net\",\n        \"6915@00310.impulsevoip.net\",\n        \"6916@00310.impulsevoip.net\",\n        \"6917@00310.impulsevoip.net\",\n        \"6918@00310.impulsevoip.net\",\n        \"6919@00310.impulsevoip.net\",\n        \"6920@00310.impulsevoip.net\",\n        \"6921@00310.impulsevoip.net\",\n        \"6922@00310.impulsevoip.net\",\n        \"6923@00310.impulsevoip.net\",\n        \"6924@00310.impulsevoip.net\",\n        \"6925@00310.impulsevoip.net\",\n        \"6926@00310.impulsevoip.net\",\n        \"6927@00310.impulsevoip.net\",\n        \"6928@00310.impulsevoip.net\",\n        \"6929@00310.impulsevoip.net\",\n        \"6930@00310.impulsevoip.net\",\n        \"6931@00310.impulsevoip.net\",\n        \"6932@00310.impulsevoip.net\",\n        \"6933@00310.impulsevoip.net\",\n        \"6934@00310.impulsevoip.net\",\n        \"6935@00310.impulsevoip.net\",\n        \"6936@00310.impulsevoip.net\",\n        \"6937@00310.impulsevoip.net\",\n        \"6938@00310.impulsevoip.net\",\n        \"6939@00310.impulsevoip.net\",\n        \"6940@00310.impulsevoip.net\",\n        \"6941@00310.impulsevoip.net\",\n        \"6942@00310.impulsevoip.net\",\n        \"6943@00310.impulsevoip.net\",\n        \"6944@00310.impulsevoip.net\",\n        \"6945@00310.impulsevoip.net\",\n        \"6946@00310.impulsevoip.net\",\n        \"6947@00310.impulsevoip.net\",\n        \"6948@00310.impulsevoip.net\",\n        \"6949@00310.impulsevoip.net\",\n        \"6950@00310.impulsevoip.net\",\n        \"6951@00310.impulsevoip.net\",\n        \"6952@00310.impulsevoip.net\",\n        \"6953@00310.impulsevoip.net\",\n        \"6954@00310.impulsevoip.net\",\n        \"6955@00310.impulsevoip.net\",\n        \"6956@00310.impulsevoip.net\",\n        \"6957@00310.impulsevoip.net\",\n        \"6958@00310.impulsevoip.net\",\n        \"6959@00310.impulsevoip.net\",\n        \"6960@00310.impulsevoip.net\",\n        \"6961@00310.impulsevoip.net\",\n        \"6962@00310.impulsevoip.net\",\n        \"6963@00310.impulsevoip.net\",\n        \"6964@00310.impulsevoip.net\",\n        \"6965@00310.impulsevoip.net\",\n        \"6966@00310.impulsevoip.net\",\n        \"6967@00310.impulsevoip.net\",\n        \"6968@00310.impulsevoip.net\",\n        \"6969@00310.impulsevoip.net\",\n        \"6970@00310.impulsevoip.net\",\n        \"6971@00310.impulsevoip.net\",\n        \"6972@00310.impulsevoip.net\",\n        \"6973@00310.impulsevoip.net\",\n        \"6974@00310.impulsevoip.net\",\n        \"6975@00310.impulsevoip.net\",\n        \"6976@00310.impulsevoip.net\",\n        \"6977@00310.impulsevoip.net\",\n        \"6978@00310.impulsevoip.net\",\n        \"6979@00310.impulsevoip.net\",\n        \"6980@00310.impulsevoip.net\",\n        \"6981@00310.impulsevoip.net\",\n        \"6982@00310.impulsevoip.net\",\n        \"6983@00310.impulsevoip.net\",\n        \"6984@00310.impulsevoip.net\",\n        \"6985@00310.impulsevoip.net\",\n        \"6986@00310.impulsevoip.net\",\n        \"6987@00310.impulsevoip.net\",\n        \"6988@00310.impulsevoip.net\",\n        \"6989@00310.impulsevoip.net\",\n        \"6990@00310.impulsevoip.net\",\n        \"6991@00310.impulsevoip.net\",\n        \"6992@00310.impulsevoip.net\",\n        \"6993@00310.impulsevoip.net\",\n        \"6994@00310.impulsevoip.net\",\n        \"6995@00310.impulsevoip.net\",\n        \"6996@00310.impulsevoip.net\",\n        \"6997@00310.impulsevoip.net\",\n        \"6998@00310.impulsevoip.net\",\n        \"6999@00310.impulsevoip.net\",\n        \"7000@00310.impulsevoip.net\",\n        \"7001@00310.impulsevoip.net\",\n        \"7002@00310.impulsevoip.net\",\n        \"7003@00310.impulsevoip.net\",\n        \"7004@00310.impulsevoip.net\",\n        \"7005@00310.impulsevoip.net\",\n        \"7006@00310.impulsevoip.net\",\n        \"7007@00310.impulsevoip.net\",\n        \"7008@00310.impulsevoip.net\",\n        \"7009@00310.impulsevoip.net\",\n        \"7010@00310.impulsevoip.net\",\n        \"7011@00310.impulsevoip.net\",\n        \"7012@00310.impulsevoip.net\",\n        \"7013@00310.impulsevoip.net\",\n        \"7014@00310.impulsevoip.net\",\n        \"7015@00310.impulsevoip.net\",\n        \"7016@00310.impulsevoip.net\",\n        \"7017@00310.impulsevoip.net\",\n        \"7018@00310.impulsevoip.net\",\n        \"7019@00310.impulsevoip.net\",\n        \"7020@00310.impulsevoip.net\",\n        \"7021@00310.impulsevoip.net\",\n        \"7022@00310.impulsevoip.net\",\n        \"7023@00310.impulsevoip.net\",\n        \"7024@00310.impulsevoip.net\",\n        \"7025@00310.impulsevoip.net\",\n        \"7026@00310.impulsevoip.net\",\n        \"7027@00310.impulsevoip.net\",\n        \"7028@00310.impulsevoip.net\",\n        \"7029@00310.impulsevoip.net\",\n        \"7030@00310.impulsevoip.net\",\n        \"7031@00310.impulsevoip.net\",\n        \"7032@00310.impulsevoip.net\",\n        \"7033@00310.impulsevoip.net\",\n        \"7034@00310.impulsevoip.net\",\n        \"7035@00310.impulsevoip.net\",\n        \"7036@00310.impulsevoip.net\",\n        \"7037@00310.impulsevoip.net\",\n        \"7038@00310.impulsevoip.net\",\n        \"7039@00310.impulsevoip.net\",\n        \"7040@00310.impulsevoip.net\",\n        \"7041@00310.impulsevoip.net\",\n        \"7042@00310.impulsevoip.net\",\n        \"7043@00310.impulsevoip.net\",\n        \"7044@00310.impulsevoip.net\",\n        \"7045@00310.impulsevoip.net\",\n        \"7046@00310.impulsevoip.net\",\n        \"7047@00310.impulsevoip.net\",\n        \"7048@00310.impulsevoip.net\",\n        \"7049@00310.impulsevoip.net\",\n        \"7050@00310.impulsevoip.net\",\n        \"7051@00310.impulsevoip.net\",\n        \"7052@00310.impulsevoip.net\",\n        \"7053@00310.impulsevoip.net\",\n        \"7054@00310.impulsevoip.net\",\n        \"7055@00310.impulsevoip.net\",\n        \"7056@00310.impulsevoip.net\",\n        \"7057@00310.impulsevoip.net\",\n        \"7058@00310.impulsevoip.net\",\n        \"7059@00310.impulsevoip.net\",\n        \"7060@00310.impulsevoip.net\",\n        \"7061@00310.impulsevoip.net\",\n        \"7062@00310.impulsevoip.net\",\n        \"7063@00310.impulsevoip.net\",\n        \"7064@00310.impulsevoip.net\",\n        \"7065@00310.impulsevoip.net\",\n        \"7066@00310.impulsevoip.net\",\n        \"7067@00310.impulsevoip.net\",\n        \"7068@00310.impulsevoip.net\",\n        \"7069@00310.impulsevoip.net\",\n        \"7070@00310.impulsevoip.net\",\n        \"7071@00310.impulsevoip.net\",\n        \"7072@00310.impulsevoip.net\",\n        \"7073@00310.impulsevoip.net\",\n        \"7074@00310.impulsevoip.net\",\n        \"7075@00310.impulsevoip.net\",\n        \"7076@00310.impulsevoip.net\",\n        \"7077@00310.impulsevoip.net\",\n        \"7078@00310.impulsevoip.net\",\n        \"7079@00310.impulsevoip.net\",\n        \"7080@00310.impulsevoip.net\",\n        \"7081@00310.impulsevoip.net\",\n        \"7082@00310.impulsevoip.net\",\n        \"7083@00310.impulsevoip.net\",\n        \"7084@00310.impulsevoip.net\",\n        \"7085@00310.impulsevoip.net\",\n        \"7086@00310.impulsevoip.net\",\n        \"7087@00310.impulsevoip.net\",\n        \"7088@00310.impulsevoip.net\",\n        \"7089@00310.impulsevoip.net\",\n        \"7090@00310.impulsevoip.net\",\n        \"7091@00310.impulsevoip.net\",\n        \"7092@00310.impulsevoip.net\",\n        \"7093@00310.impulsevoip.net\",\n        \"7094@00310.impulsevoip.net\",\n        \"7095@00310.impulsevoip.net\",\n        \"7096@00310.impulsevoip.net\",\n        \"7097@00310.impulsevoip.net\",\n        \"7098@00310.impulsevoip.net\",\n        \"7099@00310.impulsevoip.net\",\n        \"7100@00310.impulsevoip.net\",\n        \"7101@00310.impulsevoip.net\",\n        \"7102@00310.impulsevoip.net\",\n        \"7103@00310.impulsevoip.net\",\n        \"7104@00310.impulsevoip.net\",\n        \"7105@00310.impulsevoip.net\",\n        \"7106@00310.impulsevoip.net\",\n        \"7107@00310.impulsevoip.net\",\n        \"7108@00310.impulsevoip.net\",\n        \"7109@00310.impulsevoip.net\",\n        \"7110@00310.impulsevoip.net\",\n        \"7111@00310.impulsevoip.net\",\n        \"7112@00310.impulsevoip.net\",\n        \"7113@00310.impulsevoip.net\",\n        \"7114@00310.impulsevoip.net\",\n        \"7115@00310.impulsevoip.net\",\n        \"7116@00310.impulsevoip.net\",\n        \"7117@00310.impulsevoip.net\",\n        \"7118@00310.impulsevoip.net\",\n        \"7119@00310.impulsevoip.net\",\n        \"7120@00310.impulsevoip.net\",\n        \"7121@00310.impulsevoip.net\",\n        \"7122@00310.impulsevoip.net\",\n        \"7123@00310.impulsevoip.net\",\n        \"7124@00310.impulsevoip.net\",\n        \"7125@00310.impulsevoip.net\",\n        \"7126@00310.impulsevoip.net\",\n        \"7127@00310.impulsevoip.net\",\n        \"7128@00310.impulsevoip.net\",\n        \"7129@00310.impulsevoip.net\",\n        \"7130@00310.impulsevoip.net\",\n        \"7131@00310.impulsevoip.net\",\n        \"7132@00310.impulsevoip.net\",\n        \"7133@00310.impulsevoip.net\",\n        \"7134@00310.impulsevoip.net\",\n        \"7135@00310.impulsevoip.net\",\n        \"7136@00310.impulsevoip.net\",\n        \"7137@00310.impulsevoip.net\",\n        \"7138@00310.impulsevoip.net\",\n        \"7139@00310.impulsevoip.net\",\n        \"7140@00310.impulsevoip.net\",\n        \"7141@00310.impulsevoip.net\",\n        \"7142@00310.impulsevoip.net\",\n        \"7143@00310.impulsevoip.net\",\n        \"7144@00310.impulsevoip.net\",\n        \"7145@00310.impulsevoip.net\",\n        \"7146@00310.impulsevoip.net\",\n        \"7147@00310.impulsevoip.net\",\n        \"7148@00310.impulsevoip.net\",\n        \"7149@00310.impulsevoip.net\",\n        \"7150@00310.impulsevoip.net\",\n        \"7151@00310.impulsevoip.net\",\n        \"7152@00310.impulsevoip.net\",\n        \"7153@00310.impulsevoip.net\",\n        \"7154@00310.impulsevoip.net\",\n        \"7155@00310.impulsevoip.net\",\n        \"7156@00310.impulsevoip.net\",\n        \"7157@00310.impulsevoip.net\",\n        \"7158@00310.impulsevoip.net\",\n        \"7159@00310.impulsevoip.net\",\n        \"7160@00310.impulsevoip.net\",\n        \"7161@00310.impulsevoip.net\",\n        \"7162@00310.impulsevoip.net\",\n        \"7163@00310.impulsevoip.net\",\n        \"7164@00310.impulsevoip.net\",\n        \"7165@00310.impulsevoip.net\",\n        \"7166@00310.impulsevoip.net\",\n        \"7167@00310.impulsevoip.net\",\n        \"7168@00310.impulsevoip.net\",\n        \"7169@00310.impulsevoip.net\",\n        \"7170@00310.impulsevoip.net\",\n        \"7171@00310.impulsevoip.net\",\n        \"7172@00310.impulsevoip.net\",\n        \"7173@00310.impulsevoip.net\",\n        \"7174@00310.impulsevoip.net\",\n        \"7175@00310.impulsevoip.net\",\n        \"7176@00310.impulsevoip.net\",\n        \"7177@00310.impulsevoip.net\",\n        \"7178@00310.impulsevoip.net\",\n        \"7179@00310.impulsevoip.net\",\n        \"7180@00310.impulsevoip.net\",\n        \"7181@00310.impulsevoip.net\",\n        \"7182@00310.impulsevoip.net\",\n        \"7183@00310.impulsevoip.net\",\n        \"7184@00310.impulsevoip.net\",\n        \"7185@00310.impulsevoip.net\",\n        \"7186@00310.impulsevoip.net\",\n        \"7187@00310.impulsevoip.net\",\n        \"7188@00310.impulsevoip.net\",\n        \"7189@00310.impulsevoip.net\",\n        \"7190@00310.impulsevoip.net\",\n        \"7191@00310.impulsevoip.net\",\n        \"7192@00310.impulsevoip.net\",\n        \"7193@00310.impulsevoip.net\",\n        \"7194@00310.impulsevoip.net\",\n        \"7195@00310.impulsevoip.net\",\n        \"7196@00310.impulsevoip.net\",\n        \"7197@00310.impulsevoip.net\",\n        \"7198@00310.impulsevoip.net\",\n        \"7199@00310.impulsevoip.net\",\n        \"7200@00310.impulsevoip.net\",\n        \"7201@00310.impulsevoip.net\",\n        \"7202@00310.impulsevoip.net\",\n        \"7203@00310.impulsevoip.net\",\n        \"7204@00310.impulsevoip.net\",\n        \"7205@00310.impulsevoip.net\",\n        \"7206@00310.impulsevoip.net\",\n        \"7207@00310.impulsevoip.net\",\n        \"7208@00310.impulsevoip.net\",\n        \"7209@00310.impulsevoip.net\",\n        \"7210@00310.impulsevoip.net\",\n        \"7211@00310.impulsevoip.net\",\n        \"7212@00310.impulsevoip.net\",\n        \"7213@00310.impulsevoip.net\",\n        \"7214@00310.impulsevoip.net\",\n        \"7215@00310.impulsevoip.net\",\n        \"7216@00310.impulsevoip.net\",\n        \"7217@00310.impulsevoip.net\",\n        \"7218@00310.impulsevoip.net\",\n        \"7219@00310.impulsevoip.net\",\n        \"7220@00310.impulsevoip.net\",\n        \"7221@00310.impulsevoip.net\",\n        \"7222@00310.impulsevoip.net\",\n        \"7223@00310.impulsevoip.net\",\n        \"7224@00310.impulsevoip.net\",\n        \"7225@00310.impulsevoip.net\",\n        \"7226@00310.impulsevoip.net\",\n        \"7227@00310.impulsevoip.net\",\n        \"7228@00310.impulsevoip.net\",\n        \"7229@00310.impulsevoip.net\",\n        \"7230@00310.impulsevoip.net\",\n        \"7231@00310.impulsevoip.net\",\n        \"7232@00310.impulsevoip.net\",\n        \"7233@00310.impulsevoip.net\",\n        \"7234@00310.impulsevoip.net\",\n        \"7235@00310.impulsevoip.net\",\n        \"7236@00310.impulsevoip.net\",\n        \"7237@00310.impulsevoip.net\",\n        \"7238@00310.impulsevoip.net\",\n        \"7239@00310.impulsevoip.net\",\n        \"7240@00310.impulsevoip.net\",\n        \"7241@00310.impulsevoip.net\",\n        \"7242@00310.impulsevoip.net\",\n        \"7243@00310.impulsevoip.net\",\n        \"7244@00310.impulsevoip.net\",\n        \"7245@00310.impulsevoip.net\",\n        \"7246@00310.impulsevoip.net\",\n        \"7247@00310.impulsevoip.net\",\n        \"7248@00310.impulsevoip.net\",\n        \"7249@00310.impulsevoip.net\",\n        \"7250@00310.impulsevoip.net\",\n        \"7251@00310.impulsevoip.net\",\n        \"7252@00310.impulsevoip.net\",\n        \"7253@00310.impulsevoip.net\",\n        \"7254@00310.impulsevoip.net\",\n        \"7255@00310.impulsevoip.net\",\n        \"7256@00310.impulsevoip.net\",\n        \"7257@00310.impulsevoip.net\",\n        \"7258@00310.impulsevoip.net\",\n        \"7259@00310.impulsevoip.net\",\n        \"7260@00310.impulsevoip.net\",\n        \"7261@00310.impulsevoip.net\",\n        \"7262@00310.impulsevoip.net\",\n        \"7263@00310.impulsevoip.net\",\n        \"7264@00310.impulsevoip.net\",\n        \"7265@00310.impulsevoip.net\",\n        \"7266@00310.impulsevoip.net\",\n        \"7267@00310.impulsevoip.net\",\n        \"7268@00310.impulsevoip.net\",\n        \"7269@00310.impulsevoip.net\",\n        \"7270@00310.impulsevoip.net\",\n        \"7271@00310.impulsevoip.net\",\n        \"7272@00310.impulsevoip.net\",\n        \"7273@00310.impulsevoip.net\",\n        \"7274@00310.impulsevoip.net\",\n        \"7275@00310.impulsevoip.net\",\n        \"7276@00310.impulsevoip.net\",\n        \"7277@00310.impulsevoip.net\",\n        \"7278@00310.impulsevoip.net\",\n        \"7279@00310.impulsevoip.net\",\n        \"7280@00310.impulsevoip.net\",\n        \"7281@00310.impulsevoip.net\",\n        \"7282@00310.impulsevoip.net\",\n        \"7283@00310.impulsevoip.net\",\n        \"7284@00310.impulsevoip.net\",\n        \"7285@00310.impulsevoip.net\",\n        \"7286@00310.impulsevoip.net\",\n        \"7287@00310.impulsevoip.net\",\n        \"7288@00310.impulsevoip.net\",\n        \"7289@00310.impulsevoip.net\",\n        \"7290@00310.impulsevoip.net\",\n        \"7291@00310.impulsevoip.net\",\n        \"7292@00310.impulsevoip.net\",\n        \"7293@00310.impulsevoip.net\",\n        \"7294@00310.impulsevoip.net\",\n        \"7295@00310.impulsevoip.net\",\n        \"7296@00310.impulsevoip.net\",\n        \"7297@00310.impulsevoip.net\",\n        \"7298@00310.impulsevoip.net\",\n        \"7299@00310.impulsevoip.net\",\n        \"7300@00310.impulsevoip.net\",\n        \"7301@00310.impulsevoip.net\",\n        \"7302@00310.impulsevoip.net\",\n        \"7303@00310.impulsevoip.net\",\n        \"7304@00310.impulsevoip.net\",\n        \"7305@00310.impulsevoip.net\",\n        \"7306@00310.impulsevoip.net\",\n        \"7307@00310.impulsevoip.net\",\n        \"7308@00310.impulsevoip.net\",\n        \"7309@00310.impulsevoip.net\",\n        \"7310@00310.impulsevoip.net\",\n        \"7311@00310.impulsevoip.net\",\n        \"7312@00310.impulsevoip.net\",\n        \"7313@00310.impulsevoip.net\",\n        \"7314@00310.impulsevoip.net\",\n        \"7315@00310.impulsevoip.net\",\n        \"7316@00310.impulsevoip.net\",\n        \"7317@00310.impulsevoip.net\",\n        \"7318@00310.impulsevoip.net\",\n        \"7319@00310.impulsevoip.net\",\n        \"7320@00310.impulsevoip.net\",\n        \"7321@00310.impulsevoip.net\",\n        \"7322@00310.impulsevoip.net\",\n        \"7323@00310.impulsevoip.net\",\n        \"7324@00310.impulsevoip.net\",\n        \"7325@00310.impulsevoip.net\",\n        \"7326@00310.impulsevoip.net\",\n        \"7327@00310.impulsevoip.net\",\n        \"7328@00310.impulsevoip.net\",\n        \"7329@00310.impulsevoip.net\",\n        \"7330@00310.impulsevoip.net\",\n        \"7331@00310.impulsevoip.net\",\n        \"7332@00310.impulsevoip.net\",\n        \"7333@00310.impulsevoip.net\",\n        \"7334@00310.impulsevoip.net\",\n        \"7335@00310.impulsevoip.net\",\n        \"7336@00310.impulsevoip.net\",\n        \"7337@00310.impulsevoip.net\",\n        \"7338@00310.impulsevoip.net\",\n        \"7339@00310.impulsevoip.net\",\n        \"7340@00310.impulsevoip.net\",\n        \"7341@00310.impulsevoip.net\",\n        \"7342@00310.impulsevoip.net\",\n        \"7343@00310.impulsevoip.net\",\n        \"7344@00310.impulsevoip.net\",\n        \"7345@00310.impulsevoip.net\",\n        \"7346@00310.impulsevoip.net\",\n        \"7347@00310.impulsevoip.net\",\n        \"7348@00310.impulsevoip.net\",\n        \"7349@00310.impulsevoip.net\",\n        \"7350@00310.impulsevoip.net\",\n        \"7351@00310.impulsevoip.net\",\n        \"7352@00310.impulsevoip.net\",\n        \"7353@00310.impulsevoip.net\",\n        \"7354@00310.impulsevoip.net\",\n        \"7355@00310.impulsevoip.net\",\n        \"7356@00310.impulsevoip.net\",\n        \"7357@00310.impulsevoip.net\",\n        \"7358@00310.impulsevoip.net\",\n        \"7359@00310.impulsevoip.net\",\n        \"7360@00310.impulsevoip.net\",\n        \"7361@00310.impulsevoip.net\",\n        \"7362@00310.impulsevoip.net\",\n        \"7363@00310.impulsevoip.net\",\n        \"7364@00310.impulsevoip.net\",\n        \"7365@00310.impulsevoip.net\",\n        \"7366@00310.impulsevoip.net\",\n        \"7367@00310.impulsevoip.net\",\n        \"7368@00310.impulsevoip.net\",\n        \"7369@00310.impulsevoip.net\",\n        \"7370@00310.impulsevoip.net\",\n        \"7371@00310.impulsevoip.net\",\n        \"7372@00310.impulsevoip.net\",\n        \"7373@00310.impulsevoip.net\",\n        \"7374@00310.impulsevoip.net\",\n        \"7375@00310.impulsevoip.net\",\n        \"7376@00310.impulsevoip.net\",\n        \"7377@00310.impulsevoip.net\",\n        \"7378@00310.impulsevoip.net\",\n        \"7379@00310.impulsevoip.net\",\n        \"7380@00310.impulsevoip.net\",\n        \"7381@00310.impulsevoip.net\",\n        \"7382@00310.impulsevoip.net\",\n        \"7383@00310.impulsevoip.net\",\n        \"7384@00310.impulsevoip.net\",\n        \"7385@00310.impulsevoip.net\",\n        \"7386@00310.impulsevoip.net\",\n        \"7387@00310.impulsevoip.net\",\n        \"7388@00310.impulsevoip.net\",\n        \"7389@00310.impulsevoip.net\",\n        \"7390@00310.impulsevoip.net\",\n        \"7391@00310.impulsevoip.net\",\n        \"7392@00310.impulsevoip.net\",\n        \"7393@00310.impulsevoip.net\",\n        \"7394@00310.impulsevoip.net\",\n        \"7395@00310.impulsevoip.net\",\n        \"7396@00310.impulsevoip.net\",\n        \"7397@00310.impulsevoip.net\",\n        \"7398@00310.impulsevoip.net\",\n        \"7399@00310.impulsevoip.net\",\n        \"7400@00310.impulsevoip.net\",\n        \"7401@00310.impulsevoip.net\",\n        \"7402@00310.impulsevoip.net\",\n        \"7403@00310.impulsevoip.net\",\n        \"7404@00310.impulsevoip.net\",\n        \"7405@00310.impulsevoip.net\",\n        \"7406@00310.impulsevoip.net\",\n        \"7407@00310.impulsevoip.net\",\n        \"7408@00310.impulsevoip.net\",\n        \"7409@00310.impulsevoip.net\",\n        \"7410@00310.impulsevoip.net\",\n        \"7411@00310.impulsevoip.net\",\n        \"7412@00310.impulsevoip.net\",\n        \"7413@00310.impulsevoip.net\",\n        \"7414@00310.impulsevoip.net\",\n        \"7415@00310.impulsevoip.net\",\n        \"7416@00310.impulsevoip.net\",\n        \"7417@00310.impulsevoip.net\",\n        \"7418@00310.impulsevoip.net\",\n        \"7419@00310.impulsevoip.net\",\n        \"7420@00310.impulsevoip.net\",\n        \"7421@00310.impulsevoip.net\",\n        \"7422@00310.impulsevoip.net\",\n        \"7423@00310.impulsevoip.net\",\n        \"7424@00310.impulsevoip.net\",\n        \"7425@00310.impulsevoip.net\",\n        \"7426@00310.impulsevoip.net\",\n        \"7427@00310.impulsevoip.net\",\n        \"7428@00310.impulsevoip.net\",\n        \"7429@00310.impulsevoip.net\",\n        \"7430@00310.impulsevoip.net\",\n        \"7431@00310.impulsevoip.net\",\n        \"7432@00310.impulsevoip.net\",\n        \"7433@00310.impulsevoip.net\",\n        \"7434@00310.impulsevoip.net\",\n        \"7435@00310.impulsevoip.net\",\n        \"7436@00310.impulsevoip.net\",\n        \"7437@00310.impulsevoip.net\",\n        \"7438@00310.impulsevoip.net\",\n        \"7439@00310.impulsevoip.net\",\n        \"7440@00310.impulsevoip.net\",\n        \"7441@00310.impulsevoip.net\",\n        \"7442@00310.impulsevoip.net\",\n        \"7443@00310.impulsevoip.net\",\n        \"7444@00310.impulsevoip.net\",\n        \"7445@00310.impulsevoip.net\",\n        \"7446@00310.impulsevoip.net\",\n        \"7447@00310.impulsevoip.net\",\n        \"7448@00310.impulsevoip.net\",\n        \"7449@00310.impulsevoip.net\",\n        \"7450@00310.impulsevoip.net\",\n        \"7451@00310.impulsevoip.net\",\n        \"7452@00310.impulsevoip.net\",\n        \"7453@00310.impulsevoip.net\",\n        \"7454@00310.impulsevoip.net\",\n        \"7455@00310.impulsevoip.net\",\n        \"7456@00310.impulsevoip.net\",\n        \"7457@00310.impulsevoip.net\",\n        \"7458@00310.impulsevoip.net\",\n        \"7459@00310.impulsevoip.net\",\n        \"7460@00310.impulsevoip.net\",\n        \"7461@00310.impulsevoip.net\",\n        \"7462@00310.impulsevoip.net\",\n        \"7463@00310.impulsevoip.net\",\n        \"7464@00310.impulsevoip.net\",\n        \"7465@00310.impulsevoip.net\",\n        \"7466@00310.impulsevoip.net\",\n        \"7467@00310.impulsevoip.net\",\n        \"7468@00310.impulsevoip.net\",\n        \"7469@00310.impulsevoip.net\",\n        \"7470@00310.impulsevoip.net\",\n        \"7471@00310.impulsevoip.net\",\n        \"7472@00310.impulsevoip.net\",\n        \"7473@00310.impulsevoip.net\",\n        \"7474@00310.impulsevoip.net\",\n        \"7475@00310.impulsevoip.net\",\n        \"7476@00310.impulsevoip.net\",\n        \"7477@00310.impulsevoip.net\",\n        \"7478@00310.impulsevoip.net\",\n        \"7479@00310.impulsevoip.net\",\n        \"7480@00310.impulsevoip.net\",\n        \"7481@00310.impulsevoip.net\",\n        \"7482@00310.impulsevoip.net\",\n        \"7483@00310.impulsevoip.net\",\n        \"7484@00310.impulsevoip.net\",\n        \"7485@00310.impulsevoip.net\",\n        \"7486@00310.impulsevoip.net\",\n        \"7487@00310.impulsevoip.net\",\n        \"7488@00310.impulsevoip.net\",\n        \"7489@00310.impulsevoip.net\",\n        \"7490@00310.impulsevoip.net\",\n        \"7491@00310.impulsevoip.net\",\n        \"7492@00310.impulsevoip.net\",\n        \"7493@00310.impulsevoip.net\",\n        \"7494@00310.impulsevoip.net\",\n        \"7495@00310.impulsevoip.net\",\n        \"7496@00310.impulsevoip.net\",\n        \"7497@00310.impulsevoip.net\",\n        \"7498@00310.impulsevoip.net\",\n        \"7499@00310.impulsevoip.net\",\n        \"7500@00310.impulsevoip.net\",\n        \"7501@00310.impulsevoip.net\",\n        \"7502@00310.impulsevoip.net\",\n        \"7503@00310.impulsevoip.net\",\n        \"7504@00310.impulsevoip.net\",\n        \"7505@00310.impulsevoip.net\",\n        \"7506@00310.impulsevoip.net\",\n        \"7507@00310.impulsevoip.net\",\n        \"7508@00310.impulsevoip.net\",\n        \"7509@00310.impulsevoip.net\",\n        \"7510@00310.impulsevoip.net\",\n        \"7511@00310.impulsevoip.net\",\n        \"7512@00310.impulsevoip.net\",\n        \"7513@00310.impulsevoip.net\",\n        \"7514@00310.impulsevoip.net\",\n        \"7515@00310.impulsevoip.net\",\n        \"7516@00310.impulsevoip.net\",\n        \"7517@00310.impulsevoip.net\",\n        \"7518@00310.impulsevoip.net\",\n        \"7519@00310.impulsevoip.net\",\n        \"7520@00310.impulsevoip.net\",\n        \"7521@00310.impulsevoip.net\",\n        \"7522@00310.impulsevoip.net\",\n        \"7523@00310.impulsevoip.net\",\n        \"7524@00310.impulsevoip.net\",\n        \"7525@00310.impulsevoip.net\",\n        \"7526@00310.impulsevoip.net\",\n        \"7527@00310.impulsevoip.net\",\n        \"7528@00310.impulsevoip.net\",\n        \"7529@00310.impulsevoip.net\",\n        \"7530@00310.impulsevoip.net\",\n        \"7531@00310.impulsevoip.net\",\n        \"7532@00310.impulsevoip.net\",\n        \"7533@00310.impulsevoip.net\",\n        \"7534@00310.impulsevoip.net\",\n        \"7535@00310.impulsevoip.net\",\n        \"7536@00310.impulsevoip.net\",\n        \"7537@00310.impulsevoip.net\",\n        \"7538@00310.impulsevoip.net\",\n        \"7539@00310.impulsevoip.net\",\n        \"7540@00310.impulsevoip.net\",\n        \"7541@00310.impulsevoip.net\",\n        \"7542@00310.impulsevoip.net\",\n        \"7543@00310.impulsevoip.net\",\n        \"7544@00310.impulsevoip.net\",\n        \"7545@00310.impulsevoip.net\",\n        \"7546@00310.impulsevoip.net\",\n        \"7547@00310.impulsevoip.net\",\n        \"7548@00310.impulsevoip.net\",\n        \"7549@00310.impulsevoip.net\",\n        \"7550@00310.impulsevoip.net\",\n        \"7551@00310.impulsevoip.net\",\n        \"7552@00310.impulsevoip.net\",\n        \"7553@00310.impulsevoip.net\",\n        \"7554@00310.impulsevoip.net\",\n        \"7555@00310.impulsevoip.net\",\n        \"7556@00310.impulsevoip.net\",\n        \"7557@00310.impulsevoip.net\",\n        \"7558@00310.impulsevoip.net\",\n        \"7559@00310.impulsevoip.net\",\n        \"7560@00310.impulsevoip.net\",\n        \"7561@00310.impulsevoip.net\",\n        \"7562@00310.impulsevoip.net\",\n        \"7563@00310.impulsevoip.net\",\n        \"7564@00310.impulsevoip.net\",\n        \"7565@00310.impulsevoip.net\",\n        \"7566@00310.impulsevoip.net\",\n        \"7567@00310.impulsevoip.net\",\n        \"7568@00310.impulsevoip.net\",\n        \"7569@00310.impulsevoip.net\",\n        \"7570@00310.impulsevoip.net\",\n        \"7571@00310.impulsevoip.net\",\n        \"7572@00310.impulsevoip.net\",\n        \"7573@00310.impulsevoip.net\",\n        \"7574@00310.impulsevoip.net\",\n        \"7575@00310.impulsevoip.net\",\n        \"7576@00310.impulsevoip.net\",\n        \"7577@00310.impulsevoip.net\",\n        \"7578@00310.impulsevoip.net\",\n        \"7579@00310.impulsevoip.net\",\n        \"7580@00310.impulsevoip.net\",\n        \"7581@00310.impulsevoip.net\",\n        \"7582@00310.impulsevoip.net\",\n        \"7583@00310.impulsevoip.net\",\n        \"7584@00310.impulsevoip.net\",\n        \"7585@00310.impulsevoip.net\",\n        \"7586@00310.impulsevoip.net\",\n        \"7587@00310.impulsevoip.net\",\n        \"7588@00310.impulsevoip.net\",\n        \"7589@00310.impulsevoip.net\",\n        \"7590@00310.impulsevoip.net\",\n        \"7591@00310.impulsevoip.net\",\n        \"7592@00310.impulsevoip.net\",\n        \"7593@00310.impulsevoip.net\",\n        \"7594@00310.impulsevoip.net\",\n        \"7595@00310.impulsevoip.net\",\n        \"7596@00310.impulsevoip.net\",\n        \"7597@00310.impulsevoip.net\",\n        \"7598@00310.impulsevoip.net\",\n        \"7599@00310.impulsevoip.net\",\n        \"7600@00310.impulsevoip.net\",\n        \"7601@00310.impulsevoip.net\",\n        \"7602@00310.impulsevoip.net\",\n        \"7603@00310.impulsevoip.net\",\n        \"7604@00310.impulsevoip.net\",\n        \"7605@00310.impulsevoip.net\",\n        \"7606@00310.impulsevoip.net\",\n        \"7607@00310.impulsevoip.net\",\n        \"7608@00310.impulsevoip.net\",\n        \"7609@00310.impulsevoip.net\",\n        \"7610@00310.impulsevoip.net\",\n        \"7611@00310.impulsevoip.net\",\n        \"7612@00310.impulsevoip.net\",\n        \"7613@00310.impulsevoip.net\",\n        \"7614@00310.impulsevoip.net\",\n        \"7615@00310.impulsevoip.net\",\n        \"7616@00310.impulsevoip.net\",\n        \"7617@00310.impulsevoip.net\",\n        \"7618@00310.impulsevoip.net\",\n        \"7619@00310.impulsevoip.net\",\n        \"7620@00310.impulsevoip.net\",\n        \"7621@00310.impulsevoip.net\",\n        \"7622@00310.impulsevoip.net\",\n        \"7623@00310.impulsevoip.net\",\n        \"7624@00310.impulsevoip.net\",\n        \"7625@00310.impulsevoip.net\",\n        \"7626@00310.impulsevoip.net\",\n        \"7627@00310.impulsevoip.net\",\n        \"7628@00310.impulsevoip.net\",\n        \"7629@00310.impulsevoip.net\",\n        \"7630@00310.impulsevoip.net\",\n        \"7631@00310.impulsevoip.net\",\n        \"7632@00310.impulsevoip.net\",\n        \"7633@00310.impulsevoip.net\",\n        \"7634@00310.impulsevoip.net\",\n        \"7635@00310.impulsevoip.net\",\n        \"7636@00310.impulsevoip.net\",\n        \"7637@00310.impulsevoip.net\",\n        \"7638@00310.impulsevoip.net\",\n        \"7639@00310.impulsevoip.net\",\n        \"7640@00310.impulsevoip.net\",\n        \"7641@00310.impulsevoip.net\",\n        \"7642@00310.impulsevoip.net\",\n        \"7643@00310.impulsevoip.net\",\n        \"7644@00310.impulsevoip.net\",\n        \"7645@00310.impulsevoip.net\",\n        \"7646@00310.impulsevoip.net\",\n        \"7647@00310.impulsevoip.net\",\n        \"7648@00310.impulsevoip.net\",\n        \"7649@00310.impulsevoip.net\",\n        \"7650@00310.impulsevoip.net\",\n        \"7651@00310.impulsevoip.net\",\n        \"7652@00310.impulsevoip.net\",\n        \"7653@00310.impulsevoip.net\",\n        \"7654@00310.impulsevoip.net\",\n        \"7655@00310.impulsevoip.net\",\n        \"7656@00310.impulsevoip.net\",\n        \"7657@00310.impulsevoip.net\",\n        \"7658@00310.impulsevoip.net\",\n        \"7659@00310.impulsevoip.net\",\n        \"7660@00310.impulsevoip.net\",\n        \"7661@00310.impulsevoip.net\",\n        \"7662@00310.impulsevoip.net\",\n        \"7663@00310.impulsevoip.net\",\n        \"7664@00310.impulsevoip.net\",\n        \"7665@00310.impulsevoip.net\",\n        \"7666@00310.impulsevoip.net\",\n        \"7667@00310.impulsevoip.net\",\n        \"7668@00310.impulsevoip.net\",\n        \"7669@00310.impulsevoip.net\",\n        \"7670@00310.impulsevoip.net\",\n        \"7671@00310.impulsevoip.net\",\n        \"7672@00310.impulsevoip.net\",\n        \"7673@00310.impulsevoip.net\",\n        \"7674@00310.impulsevoip.net\",\n        \"7675@00310.impulsevoip.net\",\n        \"7676@00310.impulsevoip.net\",\n        \"7677@00310.impulsevoip.net\",\n        \"7678@00310.impulsevoip.net\",\n        \"7679@00310.impulsevoip.net\",\n        \"7680@00310.impulsevoip.net\",\n        \"7681@00310.impulsevoip.net\",\n        \"7682@00310.impulsevoip.net\",\n        \"7683@00310.impulsevoip.net\",\n        \"7684@00310.impulsevoip.net\",\n        \"7685@00310.impulsevoip.net\",\n        \"7686@00310.impulsevoip.net\",\n        \"7687@00310.impulsevoip.net\",\n        \"7688@00310.impulsevoip.net\",\n        \"7689@00310.impulsevoip.net\",\n        \"7690@00310.impulsevoip.net\",\n        \"7691@00310.impulsevoip.net\",\n        \"7692@00310.impulsevoip.net\",\n        \"7693@00310.impulsevoip.net\",\n        \"7694@00310.impulsevoip.net\",\n        \"7695@00310.impulsevoip.net\",\n        \"7696@00310.impulsevoip.net\",\n        \"7697@00310.impulsevoip.net\",\n        \"7698@00310.impulsevoip.net\",\n        \"7699@00310.impulsevoip.net\",\n        \"7700@00310.impulsevoip.net\",\n        \"7701@00310.impulsevoip.net\",\n        \"7702@00310.impulsevoip.net\",\n        \"7703@00310.impulsevoip.net\",\n        \"7704@00310.impulsevoip.net\",\n        \"7705@00310.impulsevoip.net\",\n        \"7706@00310.impulsevoip.net\",\n        \"7707@00310.impulsevoip.net\",\n        \"7708@00310.impulsevoip.net\",\n        \"7709@00310.impulsevoip.net\",\n        \"7710@00310.impulsevoip.net\",\n        \"7711@00310.impulsevoip.net\",\n        \"7712@00310.impulsevoip.net\",\n        \"7713@00310.impulsevoip.net\",\n        \"7714@00310.impulsevoip.net\",\n        \"7715@00310.impulsevoip.net\",\n        \"7716@00310.impulsevoip.net\",\n        \"7717@00310.impulsevoip.net\",\n        \"7718@00310.impulsevoip.net\",\n        \"7719@00310.impulsevoip.net\",\n        \"7720@00310.impulsevoip.net\",\n        \"7721@00310.impulsevoip.net\",\n        \"7722@00310.impulsevoip.net\",\n        \"7723@00310.impulsevoip.net\",\n        \"7724@00310.impulsevoip.net\",\n        \"7725@00310.impulsevoip.net\",\n        \"7726@00310.impulsevoip.net\",\n        \"7727@00310.impulsevoip.net\",\n        \"7728@00310.impulsevoip.net\",\n        \"7729@00310.impulsevoip.net\",\n        \"7730@00310.impulsevoip.net\",\n        \"7731@00310.impulsevoip.net\",\n        \"7732@00310.impulsevoip.net\",\n        \"7733@00310.impulsevoip.net\",\n        \"7734@00310.impulsevoip.net\",\n        \"7735@00310.impulsevoip.net\",\n        \"7736@00310.impulsevoip.net\",\n        \"7737@00310.impulsevoip.net\",\n        \"7738@00310.impulsevoip.net\",\n        \"7739@00310.impulsevoip.net\",\n        \"7740@00310.impulsevoip.net\",\n        \"7741@00310.impulsevoip.net\",\n        \"7742@00310.impulsevoip.net\",\n        \"7743@00310.impulsevoip.net\",\n        \"7744@00310.impulsevoip.net\",\n        \"7745@00310.impulsevoip.net\",\n        \"7746@00310.impulsevoip.net\",\n        \"7747@00310.impulsevoip.net\",\n        \"7748@00310.impulsevoip.net\",\n        \"7749@00310.impulsevoip.net\",\n        \"7750@00310.impulsevoip.net\",\n        \"7751@00310.impulsevoip.net\",\n        \"7752@00310.impulsevoip.net\",\n        \"7753@00310.impulsevoip.net\",\n        \"7754@00310.impulsevoip.net\",\n        \"7755@00310.impulsevoip.net\",\n        \"7756@00310.impulsevoip.net\",\n        \"7757@00310.impulsevoip.net\",\n        \"7758@00310.impulsevoip.net\",\n        \"7759@00310.impulsevoip.net\",\n        \"7760@00310.impulsevoip.net\",\n        \"7761@00310.impulsevoip.net\",\n        \"7762@00310.impulsevoip.net\",\n        \"7763@00310.impulsevoip.net\",\n        \"7764@00310.impulsevoip.net\",\n        \"7765@00310.impulsevoip.net\",\n        \"7766@00310.impulsevoip.net\",\n        \"7767@00310.impulsevoip.net\",\n        \"7768@00310.impulsevoip.net\",\n        \"7769@00310.impulsevoip.net\",\n        \"7770@00310.impulsevoip.net\",\n        \"7771@00310.impulsevoip.net\",\n        \"7772@00310.impulsevoip.net\",\n        \"7773@00310.impulsevoip.net\",\n        \"7774@00310.impulsevoip.net\",\n        \"7775@00310.impulsevoip.net\",\n        \"7776@00310.impulsevoip.net\",\n        \"7777@00310.impulsevoip.net\",\n        \"7778@00310.impulsevoip.net\",\n        \"7779@00310.impulsevoip.net\",\n        \"7780@00310.impulsevoip.net\",\n        \"7781@00310.impulsevoip.net\",\n        \"7782@00310.impulsevoip.net\",\n        \"7783@00310.impulsevoip.net\",\n        \"7784@00310.impulsevoip.net\",\n        \"7785@00310.impulsevoip.net\",\n        \"7786@00310.impulsevoip.net\",\n        \"7787@00310.impulsevoip.net\",\n        \"7788@00310.impulsevoip.net\",\n        \"7789@00310.impulsevoip.net\",\n        \"7790@00310.impulsevoip.net\",\n        \"7791@00310.impulsevoip.net\",\n        \"7792@00310.impulsevoip.net\",\n        \"7793@00310.impulsevoip.net\",\n        \"7794@00310.impulsevoip.net\",\n        \"7795@00310.impulsevoip.net\",\n        \"7796@00310.impulsevoip.net\",\n        \"7797@00310.impulsevoip.net\",\n        \"7798@00310.impulsevoip.net\",\n        \"7799@00310.impulsevoip.net\",\n        \"7800@00310.impulsevoip.net\",\n        \"7801@00310.impulsevoip.net\",\n        \"7802@00310.impulsevoip.net\",\n        \"7803@00310.impulsevoip.net\",\n        \"7804@00310.impulsevoip.net\",\n        \"7805@00310.impulsevoip.net\",\n        \"7806@00310.impulsevoip.net\",\n        \"7807@00310.impulsevoip.net\",\n        \"7808@00310.impulsevoip.net\",\n        \"7809@00310.impulsevoip.net\",\n        \"7810@00310.impulsevoip.net\",\n        \"7811@00310.impulsevoip.net\",\n        \"7812@00310.impulsevoip.net\",\n        \"7813@00310.impulsevoip.net\",\n        \"7814@00310.impulsevoip.net\",\n        \"7815@00310.impulsevoip.net\",\n        \"7816@00310.impulsevoip.net\",\n        \"7817@00310.impulsevoip.net\",\n        \"7818@00310.impulsevoip.net\",\n        \"7819@00310.impulsevoip.net\",\n        \"7820@00310.impulsevoip.net\",\n        \"7821@00310.impulsevoip.net\",\n        \"7822@00310.impulsevoip.net\",\n        \"7823@00310.impulsevoip.net\",\n        \"7824@00310.impulsevoip.net\",\n        \"7825@00310.impulsevoip.net\",\n        \"7826@00310.impulsevoip.net\",\n        \"7827@00310.impulsevoip.net\",\n        \"7828@00310.impulsevoip.net\",\n        \"7829@00310.impulsevoip.net\",\n        \"7830@00310.impulsevoip.net\",\n        \"7831@00310.impulsevoip.net\",\n        \"7832@00310.impulsevoip.net\",\n        \"7833@00310.impulsevoip.net\",\n        \"7834@00310.impulsevoip.net\",\n        \"7835@00310.impulsevoip.net\",\n        \"7836@00310.impulsevoip.net\",\n        \"7837@00310.impulsevoip.net\",\n        \"7838@00310.impulsevoip.net\",\n        \"7839@00310.impulsevoip.net\",\n        \"7840@00310.impulsevoip.net\",\n        \"7841@00310.impulsevoip.net\",\n        \"7842@00310.impulsevoip.net\",\n        \"7843@00310.impulsevoip.net\",\n        \"7844@00310.impulsevoip.net\",\n        \"7845@00310.impulsevoip.net\",\n        \"7846@00310.impulsevoip.net\",\n        \"7847@00310.impulsevoip.net\",\n        \"7848@00310.impulsevoip.net\",\n        \"7849@00310.impulsevoip.net\",\n        \"7850@00310.impulsevoip.net\",\n        \"7851@00310.impulsevoip.net\",\n        \"7852@00310.impulsevoip.net\",\n        \"7853@00310.impulsevoip.net\",\n        \"7854@00310.impulsevoip.net\",\n        \"7855@00310.impulsevoip.net\",\n        \"7856@00310.impulsevoip.net\",\n        \"7857@00310.impulsevoip.net\",\n        \"7858@00310.impulsevoip.net\",\n        \"7859@00310.impulsevoip.net\",\n        \"7860@00310.impulsevoip.net\",\n        \"7861@00310.impulsevoip.net\",\n        \"7862@00310.impulsevoip.net\",\n        \"7863@00310.impulsevoip.net\",\n        \"7864@00310.impulsevoip.net\",\n        \"7865@00310.impulsevoip.net\",\n        \"7866@00310.impulsevoip.net\",\n        \"7867@00310.impulsevoip.net\",\n        \"7868@00310.impulsevoip.net\",\n        \"7869@00310.impulsevoip.net\",\n        \"7870@00310.impulsevoip.net\",\n        \"7871@00310.impulsevoip.net\",\n        \"7872@00310.impulsevoip.net\",\n        \"7873@00310.impulsevoip.net\",\n        \"7874@00310.impulsevoip.net\",\n        \"7875@00310.impulsevoip.net\",\n        \"7876@00310.impulsevoip.net\",\n        \"7877@00310.impulsevoip.net\",\n        \"7878@00310.impulsevoip.net\",\n        \"7879@00310.impulsevoip.net\",\n        \"7880@00310.impulsevoip.net\",\n        \"7881@00310.impulsevoip.net\",\n        \"7882@00310.impulsevoip.net\",\n        \"7883@00310.impulsevoip.net\",\n        \"7884@00310.impulsevoip.net\",\n        \"7885@00310.impulsevoip.net\",\n        \"7886@00310.impulsevoip.net\",\n        \"7887@00310.impulsevoip.net\",\n        \"7888@00310.impulsevoip.net\",\n        \"7889@00310.impulsevoip.net\",\n        \"7890@00310.impulsevoip.net\",\n        \"7891@00310.impulsevoip.net\",\n        \"7892@00310.impulsevoip.net\",\n        \"7893@00310.impulsevoip.net\",\n        \"7894@00310.impulsevoip.net\",\n        \"7895@00310.impulsevoip.net\",\n        \"7896@00310.impulsevoip.net\",\n        \"7897@00310.impulsevoip.net\",\n        \"7898@00310.impulsevoip.net\",\n        \"7899@00310.impulsevoip.net\",\n        \"7900@00310.impulsevoip.net\",\n        \"7901@00310.impulsevoip.net\",\n        \"7902@00310.impulsevoip.net\",\n        \"7903@00310.impulsevoip.net\",\n        \"7904@00310.impulsevoip.net\",\n        \"7905@00310.impulsevoip.net\",\n        \"7906@00310.impulsevoip.net\",\n        \"7907@00310.impulsevoip.net\",\n        \"7908@00310.impulsevoip.net\",\n        \"7909@00310.impulsevoip.net\",\n        \"7910@00310.impulsevoip.net\",\n        \"8168@00310.impulsevoip.net\",\n        \"8169@00310.impulsevoip.net\",\n        \"8170@00310.impulsevoip.net\",\n        \"8171@00310.impulsevoip.net\",\n        \"8172@00310.impulsevoip.net\",\n        \"8173@00310.impulsevoip.net\",\n        \"8174@00310.impulsevoip.net\",\n        \"8175@00310.impulsevoip.net\",\n        \"8176@00310.impulsevoip.net\",\n        \"8177@00310.impulsevoip.net\",\n        \"8178@00310.impulsevoip.net\",\n        \"8179@00310.impulsevoip.net\",\n        \"8180@00310.impulsevoip.net\",\n        \"8181@00310.impulsevoip.net\",\n        \"8182@00310.impulsevoip.net\",\n        \"8183@00310.impulsevoip.net\",\n        \"8184@00310.impulsevoip.net\",\n        \"8185@00310.impulsevoip.net\",\n        \"8186@00310.impulsevoip.net\",\n        \"8187@00310.impulsevoip.net\",\n        \"8188@00310.impulsevoip.net\",\n        \"8189@00310.impulsevoip.net\",\n        \"8190@00310.impulsevoip.net\",\n        \"8191@00310.impulsevoip.net\",\n        \"8192@00310.impulsevoip.net\",\n        \"8193@00310.impulsevoip.net\",\n        \"8194@00310.impulsevoip.net\",\n        \"8195@00310.impulsevoip.net\",\n        \"8196@00310.impulsevoip.net\",\n        \"8197@00310.impulsevoip.net\",\n        \"8198@00310.impulsevoip.net\",\n        \"8199@00310.impulsevoip.net\",\n        \"8200@00310.impulsevoip.net\",\n        \"8201@00310.impulsevoip.net\",\n        \"8202@00310.impulsevoip.net\",\n        \"8203@00310.impulsevoip.net\",\n        \"8204@00310.impulsevoip.net\",\n        \"8205@00310.impulsevoip.net\",\n        \"8206@00310.impulsevoip.net\",\n        \"8207@00310.impulsevoip.net\",\n        \"8208@00310.impulsevoip.net\",\n        \"8209@00310.impulsevoip.net\",\n        \"8210@00310.impulsevoip.net\",\n        \"8211@00310.impulsevoip.net\",\n        \"8212@00310.impulsevoip.net\",\n        \"8213@00310.impulsevoip.net\",\n        \"8214@00310.impulsevoip.net\",\n        \"8215@00310.impulsevoip.net\",\n        \"8216@00310.impulsevoip.net\",\n        \"8217@00310.impulsevoip.net\",\n        \"8218@00310.impulsevoip.net\",\n        \"8219@00310.impulsevoip.net\",\n        \"8220@00310.impulsevoip.net\",\n        \"8221@00310.impulsevoip.net\",\n        \"8222@00310.impulsevoip.net\",\n        \"8223@00310.impulsevoip.net\",\n        \"8224@00310.impulsevoip.net\",\n        \"8225@00310.impulsevoip.net\",\n        \"8226@00310.impulsevoip.net\",\n        \"8227@00310.impulsevoip.net\",\n        \"8228@00310.impulsevoip.net\",\n        \"8229@00310.impulsevoip.net\",\n        \"8230@00310.impulsevoip.net\",\n        \"8231@00310.impulsevoip.net\",\n        \"8232@00310.impulsevoip.net\",\n        \"8233@00310.impulsevoip.net\",\n        \"8234@00310.impulsevoip.net\",\n        \"8235@00310.impulsevoip.net\",\n        \"8236@00310.impulsevoip.net\",\n        \"8237@00310.impulsevoip.net\",\n        \"8238@00310.impulsevoip.net\",\n        \"8239@00310.impulsevoip.net\",\n        \"8240@00310.impulsevoip.net\",\n        \"8241@00310.impulsevoip.net\",\n        \"8242@00310.impulsevoip.net\",\n        \"8243@00310.impulsevoip.net\",\n        \"8244@00310.impulsevoip.net\",\n        \"8245@00310.impulsevoip.net\",\n        \"8246@00310.impulsevoip.net\",\n        \"8247@00310.impulsevoip.net\",\n        \"8248@00310.impulsevoip.net\",\n        \"8249@00310.impulsevoip.net\",\n        \"8250@00310.impulsevoip.net\",\n        \"8251@00310.impulsevoip.net\",\n        \"8252@00310.impulsevoip.net\",\n        \"8253@00310.impulsevoip.net\",\n        \"8254@00310.impulsevoip.net\",\n        \"8255@00310.impulsevoip.net\",\n        \"8256@00310.impulsevoip.net\",\n        \"8257@00310.impulsevoip.net\",\n        \"8258@00310.impulsevoip.net\",\n        \"8259@00310.impulsevoip.net\",\n        \"8260@00310.impulsevoip.net\",\n        \"8261@00310.impulsevoip.net\",\n        \"8262@00310.impulsevoip.net\",\n        \"8263@00310.impulsevoip.net\",\n        \"8264@00310.impulsevoip.net\",\n        \"8265@00310.impulsevoip.net\",\n        \"8266@00310.impulsevoip.net\",\n        \"8267@00310.impulsevoip.net\",\n        \"8268@00310.impulsevoip.net\",\n        \"8269@00310.impulsevoip.net\",\n        \"8270@00310.impulsevoip.net\",\n        \"8271@00310.impulsevoip.net\",\n        \"8272@00310.impulsevoip.net\",\n        \"8273@00310.impulsevoip.net\",\n        \"8274@00310.impulsevoip.net\",\n        \"8275@00310.impulsevoip.net\",\n        \"8276@00310.impulsevoip.net\",\n        \"8277@00310.impulsevoip.net\",\n        \"8278@00310.impulsevoip.net\",\n        \"8279@00310.impulsevoip.net\",\n        \"8280@00310.impulsevoip.net\",\n        \"8281@00310.impulsevoip.net\",\n        \"8282@00310.impulsevoip.net\",\n        \"8283@00310.impulsevoip.net\",\n        \"8284@00310.impulsevoip.net\",\n        \"8285@00310.impulsevoip.net\",\n        \"8286@00310.impulsevoip.net\",\n        \"8287@00310.impulsevoip.net\",\n        \"8288@00310.impulsevoip.net\",\n        \"8289@00310.impulsevoip.net\",\n        \"8290@00310.impulsevoip.net\",\n        \"8291@00310.impulsevoip.net\",\n        \"8292@00310.impulsevoip.net\",\n        \"8293@00310.impulsevoip.net\",\n        \"8294@00310.impulsevoip.net\",\n        \"8295@00310.impulsevoip.net\",\n        \"8296@00310.impulsevoip.net\",\n        \"8297@00310.impulsevoip.net\",\n        \"8298@00310.impulsevoip.net\",\n        \"8299@00310.impulsevoip.net\",\n        \"8300@00310.impulsevoip.net\",\n        \"8301@00310.impulsevoip.net\",\n        \"8302@00310.impulsevoip.net\",\n        \"8303@00310.impulsevoip.net\",\n        \"8304@00310.impulsevoip.net\",\n        \"8305@00310.impulsevoip.net\",\n        \"8306@00310.impulsevoip.net\",\n        \"8307@00310.impulsevoip.net\",\n        \"8308@00310.impulsevoip.net\",\n        \"8309@00310.impulsevoip.net\",\n        \"8310@00310.impulsevoip.net\",\n        \"8311@00310.impulsevoip.net\",\n        \"8312@00310.impulsevoip.net\",\n        \"8313@00310.impulsevoip.net\",\n        \"8314@00310.impulsevoip.net\",\n        \"8315@00310.impulsevoip.net\",\n        \"8316@00310.impulsevoip.net\",\n        \"8317@00310.impulsevoip.net\",\n        \"8318@00310.impulsevoip.net\",\n        \"8319@00310.impulsevoip.net\",\n        \"8320@00310.impulsevoip.net\",\n        \"8321@00310.impulsevoip.net\",\n        \"8322@00310.impulsevoip.net\",\n        \"8323@00310.impulsevoip.net\",\n        \"8324@00310.impulsevoip.net\",\n        \"8325@00310.impulsevoip.net\",\n        \"8326@00310.impulsevoip.net\",\n        \"8327@00310.impulsevoip.net\",\n        \"8328@00310.impulsevoip.net\",\n        \"8329@00310.impulsevoip.net\",\n        \"8330@00310.impulsevoip.net\",\n        \"8331@00310.impulsevoip.net\",\n        \"8332@00310.impulsevoip.net\",\n        \"8333@00310.impulsevoip.net\",\n        \"8334@00310.impulsevoip.net\",\n        \"8335@00310.impulsevoip.net\",\n        \"8336@00310.impulsevoip.net\",\n        \"8337@00310.impulsevoip.net\",\n        \"8338@00310.impulsevoip.net\",\n        \"8339@00310.impulsevoip.net\",\n        \"8340@00310.impulsevoip.net\",\n        \"8341@00310.impulsevoip.net\",\n        \"8342@00310.impulsevoip.net\",\n        \"8343@00310.impulsevoip.net\",\n        \"8344@00310.impulsevoip.net\",\n        \"8345@00310.impulsevoip.net\",\n        \"8346@00310.impulsevoip.net\",\n        \"8347@00310.impulsevoip.net\",\n        \"8348@00310.impulsevoip.net\",\n        \"8349@00310.impulsevoip.net\",\n        \"8350@00310.impulsevoip.net\",\n        \"8351@00310.impulsevoip.net\",\n        \"8352@00310.impulsevoip.net\",\n        \"8353@00310.impulsevoip.net\",\n        \"8354@00310.impulsevoip.net\",\n        \"8355@00310.impulsevoip.net\",\n        \"8356@00310.impulsevoip.net\",\n        \"8357@00310.impulsevoip.net\",\n        \"8358@00310.impulsevoip.net\",\n        \"8359@00310.impulsevoip.net\",\n        \"8360@00310.impulsevoip.net\",\n        \"8361@00310.impulsevoip.net\",\n        \"8362@00310.impulsevoip.net\",\n        \"8363@00310.impulsevoip.net\",\n        \"8364@00310.impulsevoip.net\",\n        \"8365@00310.impulsevoip.net\",\n        \"8366@00310.impulsevoip.net\",\n        \"8367@00310.impulsevoip.net\",\n        \"8368@00310.impulsevoip.net\",\n        \"8369@00310.impulsevoip.net\",\n        \"8370@00310.impulsevoip.net\",\n        \"8371@00310.impulsevoip.net\",\n        \"8372@00310.impulsevoip.net\",\n        \"8373@00310.impulsevoip.net\",\n        \"8374@00310.impulsevoip.net\",\n        \"8375@00310.impulsevoip.net\",\n        \"8376@00310.impulsevoip.net\",\n        \"8377@00310.impulsevoip.net\",\n        \"8378@00310.impulsevoip.net\",\n        \"8379@00310.impulsevoip.net\",\n        \"8380@00310.impulsevoip.net\",\n        \"8381@00310.impulsevoip.net\",\n        \"8382@00310.impulsevoip.net\",\n        \"8383@00310.impulsevoip.net\",\n        \"8384@00310.impulsevoip.net\",\n        \"8385@00310.impulsevoip.net\",\n        \"8386@00310.impulsevoip.net\",\n        \"8387@00310.impulsevoip.net\",\n        \"8388@00310.impulsevoip.net\",\n        \"8389@00310.impulsevoip.net\",\n        \"8390@00310.impulsevoip.net\",\n        \"8391@00310.impulsevoip.net\",\n        \"8392@00310.impulsevoip.net\",\n        \"8393@00310.impulsevoip.net\",\n        \"8394@00310.impulsevoip.net\",\n        \"8395@00310.impulsevoip.net\",\n        \"8396@00310.impulsevoip.net\",\n        \"8397@00310.impulsevoip.net\",\n        \"8398@00310.impulsevoip.net\",\n        \"8399@00310.impulsevoip.net\",\n        \"8400@00310.impulsevoip.net\",\n        \"8401@00310.impulsevoip.net\",\n        \"8402@00310.impulsevoip.net\",\n        \"8403@00310.impulsevoip.net\",\n        \"8404@00310.impulsevoip.net\",\n        \"8405@00310.impulsevoip.net\",\n        \"8406@00310.impulsevoip.net\",\n        \"8407@00310.impulsevoip.net\",\n        \"8408@00310.impulsevoip.net\",\n        \"8409@00310.impulsevoip.net\",\n        \"8410@00310.impulsevoip.net\",\n        \"8411@00310.impulsevoip.net\",\n        \"8412@00310.impulsevoip.net\",\n        \"8413@00310.impulsevoip.net\",\n        \"8414@00310.impulsevoip.net\",\n        \"8415@00310.impulsevoip.net\",\n        \"8416@00310.impulsevoip.net\",\n        \"8417@00310.impulsevoip.net\",\n        \"8418@00310.impulsevoip.net\",\n        \"8419@00310.impulsevoip.net\",\n        \"8420@00310.impulsevoip.net\",\n        \"8421@00310.impulsevoip.net\",\n        \"8422@00310.impulsevoip.net\",\n        \"8423@00310.impulsevoip.net\",\n        \"8424@00310.impulsevoip.net\",\n        \"8425@00310.impulsevoip.net\",\n        \"8426@00310.impulsevoip.net\",\n        \"8427@00310.impulsevoip.net\",\n        \"8428@00310.impulsevoip.net\",\n        \"8429@00310.impulsevoip.net\",\n        \"8430@00310.impulsevoip.net\",\n        \"8431@00310.impulsevoip.net\",\n        \"8432@00310.impulsevoip.net\",\n        \"8433@00310.impulsevoip.net\",\n        \"8434@00310.impulsevoip.net\",\n        \"8435@00310.impulsevoip.net\",\n        \"8436@00310.impulsevoip.net\",\n        \"8437@00310.impulsevoip.net\",\n        \"8438@00310.impulsevoip.net\",\n        \"8439@00310.impulsevoip.net\",\n        \"8440@00310.impulsevoip.net\",\n        \"8441@00310.impulsevoip.net\",\n        \"8442@00310.impulsevoip.net\",\n        \"8443@00310.impulsevoip.net\",\n        \"8444@00310.impulsevoip.net\",\n        \"8445@00310.impulsevoip.net\",\n        \"8446@00310.impulsevoip.net\",\n        \"8447@00310.impulsevoip.net\",\n        \"8448@00310.impulsevoip.net\",\n        \"8449@00310.impulsevoip.net\",\n        \"8450@00310.impulsevoip.net\",\n        \"8451@00310.impulsevoip.net\",\n        \"8452@00310.impulsevoip.net\",\n        \"8453@00310.impulsevoip.net\",\n        \"8454@00310.impulsevoip.net\",\n        \"8455@00310.impulsevoip.net\",\n        \"8456@00310.impulsevoip.net\",\n        \"8457@00310.impulsevoip.net\",\n        \"8458@00310.impulsevoip.net\",\n        \"8459@00310.impulsevoip.net\",\n        \"8460@00310.impulsevoip.net\",\n        \"8461@00310.impulsevoip.net\",\n        \"8462@00310.impulsevoip.net\",\n        \"8463@00310.impulsevoip.net\",\n        \"8464@00310.impulsevoip.net\",\n        \"8465@00310.impulsevoip.net\",\n        \"8466@00310.impulsevoip.net\",\n        \"8467@00310.impulsevoip.net\",\n        \"8468@00310.impulsevoip.net\",\n        \"8469@00310.impulsevoip.net\",\n        \"8470@00310.impulsevoip.net\",\n        \"8471@00310.impulsevoip.net\",\n        \"8472@00310.impulsevoip.net\",\n        \"8473@00310.impulsevoip.net\",\n        \"8474@00310.impulsevoip.net\",\n        \"8475@00310.impulsevoip.net\",\n        \"8476@00310.impulsevoip.net\",\n        \"8477@00310.impulsevoip.net\",\n        \"8478@00310.impulsevoip.net\",\n        \"8479@00310.impulsevoip.net\",\n        \"8480@00310.impulsevoip.net\",\n        \"8481@00310.impulsevoip.net\",\n        \"8482@00310.impulsevoip.net\",\n        \"8483@00310.impulsevoip.net\",\n        \"8484@00310.impulsevoip.net\",\n        \"8485@00310.impulsevoip.net\",\n        \"8486@00310.impulsevoip.net\",\n        \"8487@00310.impulsevoip.net\",\n        \"8488@00310.impulsevoip.net\",\n        \"8489@00310.impulsevoip.net\",\n        \"8490@00310.impulsevoip.net\",\n        \"8491@00310.impulsevoip.net\",\n        \"8492@00310.impulsevoip.net\",\n        \"8493@00310.impulsevoip.net\",\n        \"8494@00310.impulsevoip.net\",\n        \"8495@00310.impulsevoip.net\",\n        \"8496@00310.impulsevoip.net\",\n        \"8497@00310.impulsevoip.net\",\n        \"8498@00310.impulsevoip.net\",\n        \"8499@00310.impulsevoip.net\",\n        \"8500@00310.impulsevoip.net\",\n        \"8501@00310.impulsevoip.net\",\n        \"8502@00310.impulsevoip.net\",\n        \"8503@00310.impulsevoip.net\",\n        \"8504@00310.impulsevoip.net\",\n        \"8505@00310.impulsevoip.net\",\n        \"8506@00310.impulsevoip.net\",\n        \"8507@00310.impulsevoip.net\",\n        \"8508@00310.impulsevoip.net\",\n        \"8509@00310.impulsevoip.net\",\n        \"8510@00310.impulsevoip.net\",\n        \"8511@00310.impulsevoip.net\",\n        \"8512@00310.impulsevoip.net\",\n        \"8513@00310.impulsevoip.net\",\n        \"8514@00310.impulsevoip.net\",\n        \"8515@00310.impulsevoip.net\",\n        \"8516@00310.impulsevoip.net\",\n        \"8517@00310.impulsevoip.net\",\n        \"8518@00310.impulsevoip.net\",\n        \"8519@00310.impulsevoip.net\",\n        \"8520@00310.impulsevoip.net\",\n        \"8521@00310.impulsevoip.net\",\n        \"8522@00310.impulsevoip.net\",\n        \"8523@00310.impulsevoip.net\",\n        \"8524@00310.impulsevoip.net\",\n        \"8525@00310.impulsevoip.net\",\n        \"8526@00310.impulsevoip.net\",\n        \"8527@00310.impulsevoip.net\",\n        \"8528@00310.impulsevoip.net\",\n        \"8529@00310.impulsevoip.net\",\n        \"8530@00310.impulsevoip.net\",\n        \"8531@00310.impulsevoip.net\",\n        \"8532@00310.impulsevoip.net\",\n        \"8533@00310.impulsevoip.net\",\n        \"8534@00310.impulsevoip.net\",\n        \"8535@00310.impulsevoip.net\",\n        \"8536@00310.impulsevoip.net\",\n        \"8537@00310.impulsevoip.net\",\n        \"8538@00310.impulsevoip.net\",\n        \"8539@00310.impulsevoip.net\",\n        \"8540@00310.impulsevoip.net\",\n        \"8541@00310.impulsevoip.net\",\n        \"8542@00310.impulsevoip.net\",\n        \"8543@00310.impulsevoip.net\",\n        \"8544@00310.impulsevoip.net\",\n        \"8545@00310.impulsevoip.net\",\n        \"8546@00310.impulsevoip.net\",\n        \"8547@00310.impulsevoip.net\",\n        \"8548@00310.impulsevoip.net\",\n        \"8549@00310.impulsevoip.net\",\n        \"8550@00310.impulsevoip.net\",\n        \"8551@00310.impulsevoip.net\",\n        \"8552@00310.impulsevoip.net\",\n        \"8553@00310.impulsevoip.net\",\n        \"8554@00310.impulsevoip.net\",\n        \"8555@00310.impulsevoip.net\",\n        \"8556@00310.impulsevoip.net\",\n        \"8557@00310.impulsevoip.net\",\n        \"8558@00310.impulsevoip.net\",\n        \"8559@00310.impulsevoip.net\",\n        \"8560@00310.impulsevoip.net\",\n        \"8561@00310.impulsevoip.net\",\n        \"8562@00310.impulsevoip.net\",\n        \"8563@00310.impulsevoip.net\",\n        \"8564@00310.impulsevoip.net\",\n        \"8565@00310.impulsevoip.net\",\n        \"8566@00310.impulsevoip.net\",\n        \"8567@00310.impulsevoip.net\",\n        \"8568@00310.impulsevoip.net\",\n        \"8569@00310.impulsevoip.net\",\n        \"8570@00310.impulsevoip.net\",\n        \"8571@00310.impulsevoip.net\",\n        \"8572@00310.impulsevoip.net\",\n        \"8573@00310.impulsevoip.net\",\n        \"8574@00310.impulsevoip.net\",\n        \"8575@00310.impulsevoip.net\",\n        \"8576@00310.impulsevoip.net\",\n        \"8577@00310.impulsevoip.net\",\n        \"8578@00310.impulsevoip.net\",\n        \"8579@00310.impulsevoip.net\",\n        \"8580@00310.impulsevoip.net\",\n        \"8581@00310.impulsevoip.net\",\n        \"8582@00310.impulsevoip.net\",\n        \"8583@00310.impulsevoip.net\",\n        \"8584@00310.impulsevoip.net\",\n        \"8585@00310.impulsevoip.net\",\n        \"8586@00310.impulsevoip.net\",\n        \"8587@00310.impulsevoip.net\",\n        \"8588@00310.impulsevoip.net\",\n        \"8589@00310.impulsevoip.net\",\n        \"8590@00310.impulsevoip.net\",\n        \"8591@00310.impulsevoip.net\",\n        \"8592@00310.impulsevoip.net\",\n        \"8593@00310.impulsevoip.net\",\n        \"8594@00310.impulsevoip.net\",\n        \"8595@00310.impulsevoip.net\",\n        \"8596@00310.impulsevoip.net\",\n        \"8597@00310.impulsevoip.net\",\n        \"8598@00310.impulsevoip.net\",\n        \"8599@00310.impulsevoip.net\",\n        \"8600@00310.impulsevoip.net\",\n        \"8601@00310.impulsevoip.net\",\n        \"8602@00310.impulsevoip.net\",\n        \"8603@00310.impulsevoip.net\",\n        \"8604@00310.impulsevoip.net\",\n        \"8605@00310.impulsevoip.net\",\n        \"8606@00310.impulsevoip.net\",\n        \"8607@00310.impulsevoip.net\",\n        \"8608@00310.impulsevoip.net\",\n        \"8609@00310.impulsevoip.net\",\n        \"8610@00310.impulsevoip.net\",\n        \"8611@00310.impulsevoip.net\",\n        \"8612@00310.impulsevoip.net\",\n        \"8613@00310.impulsevoip.net\",\n        \"8614@00310.impulsevoip.net\",\n        \"8615@00310.impulsevoip.net\",\n        \"8616@00310.impulsevoip.net\",\n        \"8617@00310.impulsevoip.net\",\n        \"8618@00310.impulsevoip.net\",\n        \"8619@00310.impulsevoip.net\",\n        \"8620@00310.impulsevoip.net\",\n        \"8621@00310.impulsevoip.net\",\n        \"8622@00310.impulsevoip.net\",\n        \"8623@00310.impulsevoip.net\",\n        \"8624@00310.impulsevoip.net\",\n        \"8625@00310.impulsevoip.net\",\n        \"8626@00310.impulsevoip.net\",\n        \"8627@00310.impulsevoip.net\",\n        \"8628@00310.impulsevoip.net\",\n        \"8629@00310.impulsevoip.net\",\n        \"8630@00310.impulsevoip.net\",\n        \"8631@00310.impulsevoip.net\",\n        \"8632@00310.impulsevoip.net\",\n        \"8633@00310.impulsevoip.net\",\n        \"8634@00310.impulsevoip.net\",\n        \"8635@00310.impulsevoip.net\",\n        \"8636@00310.impulsevoip.net\",\n        \"8637@00310.impulsevoip.net\",\n        \"8638@00310.impulsevoip.net\",\n        \"8639@00310.impulsevoip.net\",\n        \"8640@00310.impulsevoip.net\",\n        \"8641@00310.impulsevoip.net\",\n        \"8642@00310.impulsevoip.net\",\n        \"8643@00310.impulsevoip.net\",\n        \"8644@00310.impulsevoip.net\",\n        \"8645@00310.impulsevoip.net\",\n        \"8646@00310.impulsevoip.net\",\n        \"8647@00310.impulsevoip.net\",\n        \"8648@00310.impulsevoip.net\",\n        \"8649@00310.impulsevoip.net\",\n        \"8650@00310.impulsevoip.net\",\n        \"8651@00310.impulsevoip.net\",\n        \"8652@00310.impulsevoip.net\",\n        \"8653@00310.impulsevoip.net\",\n        \"8654@00310.impulsevoip.net\",\n        \"8655@00310.impulsevoip.net\",\n        \"8656@00310.impulsevoip.net\",\n        \"8657@00310.impulsevoip.net\",\n        \"8658@00310.impulsevoip.net\",\n        \"8659@00310.impulsevoip.net\",\n        \"8660@00310.impulsevoip.net\",\n        \"8661@00310.impulsevoip.net\",\n        \"8662@00310.impulsevoip.net\",\n        \"8663@00310.impulsevoip.net\",\n        \"8664@00310.impulsevoip.net\",\n        \"8665@00310.impulsevoip.net\",\n        \"8666@00310.impulsevoip.net\",\n        \"8667@00310.impulsevoip.net\",\n        \"8668@00310.impulsevoip.net\",\n        \"8669@00310.impulsevoip.net\",\n        \"8670@00310.impulsevoip.net\",\n        \"8671@00310.impulsevoip.net\",\n        \"8672@00310.impulsevoip.net\",\n        \"8673@00310.impulsevoip.net\",\n        \"8674@00310.impulsevoip.net\",\n        \"8675@00310.impulsevoip.net\",\n        \"8676@00310.impulsevoip.net\",\n        \"8677@00310.impulsevoip.net\",\n        \"8678@00310.impulsevoip.net\",\n        \"8679@00310.impulsevoip.net\",\n        \"8680@00310.impulsevoip.net\",\n        \"8681@00310.impulsevoip.net\",\n        \"8682@00310.impulsevoip.net\",\n        \"8683@00310.impulsevoip.net\",\n        \"8684@00310.impulsevoip.net\",\n        \"8685@00310.impulsevoip.net\",\n        \"8686@00310.impulsevoip.net\",\n        \"8687@00310.impulsevoip.net\",\n        \"8688@00310.impulsevoip.net\",\n        \"8689@00310.impulsevoip.net\",\n        \"8690@00310.impulsevoip.net\",\n        \"8691@00310.impulsevoip.net\",\n        \"8692@00310.impulsevoip.net\",\n        \"8693@00310.impulsevoip.net\",\n        \"8694@00310.impulsevoip.net\",\n        \"8695@00310.impulsevoip.net\",\n        \"8696@00310.impulsevoip.net\",\n        \"8697@00310.impulsevoip.net\",\n        \"8698@00310.impulsevoip.net\",\n        \"8699@00310.impulsevoip.net\",\n        \"8700@00310.impulsevoip.net\",\n        \"8701@00310.impulsevoip.net\",\n        \"8702@00310.impulsevoip.net\",\n        \"8703@00310.impulsevoip.net\",\n        \"8704@00310.impulsevoip.net\",\n        \"8705@00310.impulsevoip.net\",\n        \"8706@00310.impulsevoip.net\",\n        \"8707@00310.impulsevoip.net\",\n        \"8708@00310.impulsevoip.net\",\n        \"8709@00310.impulsevoip.net\",\n        \"8710@00310.impulsevoip.net\",\n        \"8711@00310.impulsevoip.net\",\n        \"8712@00310.impulsevoip.net\",\n        \"8713@00310.impulsevoip.net\",\n        \"8714@00310.impulsevoip.net\",\n        \"8715@00310.impulsevoip.net\",\n        \"8716@00310.impulsevoip.net\",\n        \"8717@00310.impulsevoip.net\",\n        \"8718@00310.impulsevoip.net\",\n        \"8719@00310.impulsevoip.net\",\n        \"8720@00310.impulsevoip.net\",\n        \"8721@00310.impulsevoip.net\",\n        \"8722@00310.impulsevoip.net\",\n        \"8723@00310.impulsevoip.net\",\n        \"8724@00310.impulsevoip.net\",\n        \"8725@00310.impulsevoip.net\",\n        \"8726@00310.impulsevoip.net\",\n        \"8727@00310.impulsevoip.net\",\n        \"8728@00310.impulsevoip.net\",\n        \"8729@00310.impulsevoip.net\",\n        \"8730@00310.impulsevoip.net\",\n        \"8731@00310.impulsevoip.net\",\n        \"8732@00310.impulsevoip.net\",\n        \"8733@00310.impulsevoip.net\",\n        \"8734@00310.impulsevoip.net\",\n        \"8735@00310.impulsevoip.net\",\n        \"8736@00310.impulsevoip.net\",\n        \"8737@00310.impulsevoip.net\",\n        \"8738@00310.impulsevoip.net\",\n        \"8739@00310.impulsevoip.net\",\n        \"8740@00310.impulsevoip.net\",\n        \"8741@00310.impulsevoip.net\",\n        \"8742@00310.impulsevoip.net\",\n        \"8743@00310.impulsevoip.net\",\n        \"8744@00310.impulsevoip.net\",\n        \"8745@00310.impulsevoip.net\",\n        \"8746@00310.impulsevoip.net\",\n        \"8747@00310.impulsevoip.net\",\n        \"8748@00310.impulsevoip.net\",\n        \"8749@00310.impulsevoip.net\",\n        \"8750@00310.impulsevoip.net\",\n        \"8751@00310.impulsevoip.net\",\n        \"8752@00310.impulsevoip.net\",\n        \"8753@00310.impulsevoip.net\",\n        \"8754@00310.impulsevoip.net\",\n        \"8755@00310.impulsevoip.net\",\n        \"8756@00310.impulsevoip.net\",\n        \"8757@00310.impulsevoip.net\",\n        \"8758@00310.impulsevoip.net\",\n        \"8759@00310.impulsevoip.net\",\n        \"8760@00310.impulsevoip.net\",\n        \"8761@00310.impulsevoip.net\",\n        \"8762@00310.impulsevoip.net\",\n        \"8763@00310.impulsevoip.net\",\n        \"8764@00310.impulsevoip.net\",\n        \"8765@00310.impulsevoip.net\",\n        \"8766@00310.impulsevoip.net\",\n        \"8767@00310.impulsevoip.net\",\n        \"8768@00310.impulsevoip.net\",\n        \"8769@00310.impulsevoip.net\",\n        \"8770@00310.impulsevoip.net\",\n        \"8771@00310.impulsevoip.net\",\n        \"8772@00310.impulsevoip.net\",\n        \"8773@00310.impulsevoip.net\",\n        \"8774@00310.impulsevoip.net\",\n        \"8775@00310.impulsevoip.net\",\n        \"8776@00310.impulsevoip.net\",\n        \"8777@00310.impulsevoip.net\",\n        \"8778@00310.impulsevoip.net\",\n        \"8779@00310.impulsevoip.net\",\n        \"8780@00310.impulsevoip.net\",\n        \"8781@00310.impulsevoip.net\",\n        \"8782@00310.impulsevoip.net\",\n        \"8783@00310.impulsevoip.net\",\n        \"8784@00310.impulsevoip.net\",\n        \"8785@00310.impulsevoip.net\",\n        \"8786@00310.impulsevoip.net\",\n        \"8787@00310.impulsevoip.net\",\n        \"8788@00310.impulsevoip.net\",\n        \"8789@00310.impulsevoip.net\",\n        \"8790@00310.impulsevoip.net\",\n        \"8791@00310.impulsevoip.net\",\n        \"8792@00310.impulsevoip.net\",\n        \"8793@00310.impulsevoip.net\",\n        \"8794@00310.impulsevoip.net\",\n        \"8795@00310.impulsevoip.net\",\n        \"8796@00310.impulsevoip.net\",\n        \"8797@00310.impulsevoip.net\",\n        \"8798@00310.impulsevoip.net\",\n        \"8799@00310.impulsevoip.net\",\n        \"8800@00310.impulsevoip.net\",\n        \"8801@00310.impulsevoip.net\",\n        \"8802@00310.impulsevoip.net\",\n        \"8803@00310.impulsevoip.net\",\n        \"8804@00310.impulsevoip.net\",\n        \"8805@00310.impulsevoip.net\",\n        \"8806@00310.impulsevoip.net\",\n        \"8807@00310.impulsevoip.net\",\n        \"8808@00310.impulsevoip.net\",\n        \"8809@00310.impulsevoip.net\",\n        \"8810@00310.impulsevoip.net\",\n        \"8811@00310.impulsevoip.net\",\n        \"8812@00310.impulsevoip.net\",\n        \"8813@00310.impulsevoip.net\",\n        \"8814@00310.impulsevoip.net\",\n        \"8815@00310.impulsevoip.net\",\n        \"8816@00310.impulsevoip.net\",\n        \"8817@00310.impulsevoip.net\",\n        \"8818@00310.impulsevoip.net\",\n        \"8819@00310.impulsevoip.net\",\n        \"8820@00310.impulsevoip.net\",\n        \"8821@00310.impulsevoip.net\",\n        \"8822@00310.impulsevoip.net\",\n        \"8823@00310.impulsevoip.net\",\n        \"8824@00310.impulsevoip.net\",\n        \"8825@00310.impulsevoip.net\",\n        \"8826@00310.impulsevoip.net\",\n        \"8827@00310.impulsevoip.net\",\n        \"8828@00310.impulsevoip.net\",\n        \"8829@00310.impulsevoip.net\",\n        \"8830@00310.impulsevoip.net\",\n        \"8831@00310.impulsevoip.net\",\n        \"8832@00310.impulsevoip.net\",\n        \"8833@00310.impulsevoip.net\",\n        \"8834@00310.impulsevoip.net\",\n        \"8835@00310.impulsevoip.net\",\n        \"8836@00310.impulsevoip.net\",\n        \"8837@00310.impulsevoip.net\",\n        \"8838@00310.impulsevoip.net\",\n        \"8839@00310.impulsevoip.net\",\n        \"8840@00310.impulsevoip.net\",\n        \"8841@00310.impulsevoip.net\",\n        \"8842@00310.impulsevoip.net\",\n        \"8843@00310.impulsevoip.net\",\n        \"8844@00310.impulsevoip.net\",\n        \"8845@00310.impulsevoip.net\",\n        \"8846@00310.impulsevoip.net\",\n        \"8847@00310.impulsevoip.net\",\n        \"8848@00310.impulsevoip.net\",\n        \"8849@00310.impulsevoip.net\",\n        \"8850@00310.impulsevoip.net\",\n        \"8851@00310.impulsevoip.net\",\n        \"8852@00310.impulsevoip.net\",\n        \"8853@00310.impulsevoip.net\",\n        \"8854@00310.impulsevoip.net\",\n        \"8855@00310.impulsevoip.net\",\n        \"8856@00310.impulsevoip.net\",\n        \"8857@00310.impulsevoip.net\",\n        \"8858@00310.impulsevoip.net\",\n        \"8859@00310.impulsevoip.net\",\n        \"8860@00310.impulsevoip.net\",\n        \"8861@00310.impulsevoip.net\",\n        \"8862@00310.impulsevoip.net\",\n        \"8863@00310.impulsevoip.net\",\n        \"8864@00310.impulsevoip.net\",\n        \"8865@00310.impulsevoip.net\",\n        \"8866@00310.impulsevoip.net\",\n        \"8867@00310.impulsevoip.net\",\n        \"8868@00310.impulsevoip.net\",\n        \"8869@00310.impulsevoip.net\",\n        \"8870@00310.impulsevoip.net\",\n        \"8871@00310.impulsevoip.net\",\n        \"8872@00310.impulsevoip.net\",\n        \"8873@00310.impulsevoip.net\",\n        \"8874@00310.impulsevoip.net\",\n        \"8875@00310.impulsevoip.net\",\n        \"8876@00310.impulsevoip.net\",\n        \"8877@00310.impulsevoip.net\",\n        \"8878@00310.impulsevoip.net\",\n        \"8879@00310.impulsevoip.net\",\n        \"8880@00310.impulsevoip.net\",\n        \"8881@00310.impulsevoip.net\",\n        \"8882@00310.impulsevoip.net\",\n        \"8883@00310.impulsevoip.net\",\n        \"8884@00310.impulsevoip.net\",\n        \"8885@00310.impulsevoip.net\",\n        \"8886@00310.impulsevoip.net\",\n        \"8887@00310.impulsevoip.net\",\n        \"8888@00310.impulsevoip.net\",\n        \"8889@00310.impulsevoip.net\",\n        \"8890@00310.impulsevoip.net\",\n        \"8891@00310.impulsevoip.net\",\n        \"8892@00310.impulsevoip.net\",\n        \"8893@00310.impulsevoip.net\",\n        \"8894@00310.impulsevoip.net\",\n        \"8895@00310.impulsevoip.net\",\n        \"8896@00310.impulsevoip.net\",\n        \"8897@00310.impulsevoip.net\",\n        \"8898@00310.impulsevoip.net\",\n        \"8899@00310.impulsevoip.net\",\n        \"8900@00310.impulsevoip.net\",\n        \"8901@00310.impulsevoip.net\",\n        \"8902@00310.impulsevoip.net\",\n        \"8903@00310.impulsevoip.net\",\n        \"8904@00310.impulsevoip.net\",\n        \"8905@00310.impulsevoip.net\",\n        \"8906@00310.impulsevoip.net\",\n        \"8907@00310.impulsevoip.net\",\n        \"8908@00310.impulsevoip.net\",\n        \"8909@00310.impulsevoip.net\",\n        \"8910@00310.impulsevoip.net\",\n        \"7912@00310.impulsevoip.net\",\n        \"7913@00310.impulsevoip.net\",\n        \"7914@00310.impulsevoip.net\",\n        \"7915@00310.impulsevoip.net\",\n        \"7916@00310.impulsevoip.net\",\n        \"7917@00310.impulsevoip.net\",\n        \"7918@00310.impulsevoip.net\",\n        \"7919@00310.impulsevoip.net\",\n        \"7920@00310.impulsevoip.net\",\n        \"7921@00310.impulsevoip.net\",\n        \"7922@00310.impulsevoip.net\",\n        \"7923@00310.impulsevoip.net\",\n        \"7924@00310.impulsevoip.net\",\n        \"7925@00310.impulsevoip.net\",\n        \"7926@00310.impulsevoip.net\",\n        \"7927@00310.impulsevoip.net\",\n        \"7928@00310.impulsevoip.net\",\n        \"7929@00310.impulsevoip.net\",\n        \"7930@00310.impulsevoip.net\",\n        \"7931@00310.impulsevoip.net\",\n        \"7932@00310.impulsevoip.net\",\n        \"7933@00310.impulsevoip.net\",\n        \"7934@00310.impulsevoip.net\",\n        \"7935@00310.impulsevoip.net\",\n        \"7936@00310.impulsevoip.net\",\n        \"7937@00310.impulsevoip.net\",\n        \"7938@00310.impulsevoip.net\",\n        \"7939@00310.impulsevoip.net\",\n        \"7940@00310.impulsevoip.net\",\n        \"7941@00310.impulsevoip.net\",\n        \"7942@00310.impulsevoip.net\",\n        \"7943@00310.impulsevoip.net\",\n        \"7944@00310.impulsevoip.net\",\n        \"7945@00310.impulsevoip.net\",\n        \"7946@00310.impulsevoip.net\",\n        \"7947@00310.impulsevoip.net\",\n        \"7948@00310.impulsevoip.net\",\n        \"7949@00310.impulsevoip.net\",\n        \"7950@00310.impulsevoip.net\",\n        \"7951@00310.impulsevoip.net\",\n        \"7952@00310.impulsevoip.net\",\n        \"7953@00310.impulsevoip.net\",\n        \"7954@00310.impulsevoip.net\",\n        \"7955@00310.impulsevoip.net\",\n        \"7956@00310.impulsevoip.net\",\n        \"7957@00310.impulsevoip.net\",\n        \"7958@00310.impulsevoip.net\",\n        \"7959@00310.impulsevoip.net\",\n        \"7960@00310.impulsevoip.net\",\n        \"7961@00310.impulsevoip.net\",\n        \"7962@00310.impulsevoip.net\",\n        \"7963@00310.impulsevoip.net\",\n        \"7964@00310.impulsevoip.net\",\n        \"7965@00310.impulsevoip.net\",\n        \"7966@00310.impulsevoip.net\",\n        \"7967@00310.impulsevoip.net\",\n        \"7968@00310.impulsevoip.net\",\n        \"7969@00310.impulsevoip.net\",\n        \"7970@00310.impulsevoip.net\",\n        \"7971@00310.impulsevoip.net\",\n        \"7972@00310.impulsevoip.net\",\n        \"7973@00310.impulsevoip.net\",\n        \"7974@00310.impulsevoip.net\",\n        \"7975@00310.impulsevoip.net\",\n        \"7976@00310.impulsevoip.net\",\n        \"7977@00310.impulsevoip.net\",\n        \"7978@00310.impulsevoip.net\",\n        \"7979@00310.impulsevoip.net\",\n        \"7980@00310.impulsevoip.net\",\n        \"7981@00310.impulsevoip.net\",\n        \"7982@00310.impulsevoip.net\",\n        \"7983@00310.impulsevoip.net\",\n        \"7984@00310.impulsevoip.net\",\n        \"7985@00310.impulsevoip.net\",\n        \"7986@00310.impulsevoip.net\",\n        \"7987@00310.impulsevoip.net\",\n        \"7988@00310.impulsevoip.net\",\n        \"7989@00310.impulsevoip.net\",\n        \"7990@00310.impulsevoip.net\",\n        \"7991@00310.impulsevoip.net\",\n        \"7992@00310.impulsevoip.net\",\n        \"7993@00310.impulsevoip.net\",\n        \"7994@00310.impulsevoip.net\",\n        \"7995@00310.impulsevoip.net\",\n        \"7996@00310.impulsevoip.net\",\n        \"7997@00310.impulsevoip.net\",\n        \"7998@00310.impulsevoip.net\",\n        \"7999@00310.impulsevoip.net\",\n        \"8000@00310.impulsevoip.net\",\n        \"8001@00310.impulsevoip.net\",\n        \"8002@00310.impulsevoip.net\",\n        \"8003@00310.impulsevoip.net\",\n        \"8004@00310.impulsevoip.net\",\n        \"8005@00310.impulsevoip.net\",\n        \"8006@00310.impulsevoip.net\",\n        \"8007@00310.impulsevoip.net\",\n        \"8008@00310.impulsevoip.net\",\n        \"8009@00310.impulsevoip.net\",\n        \"8010@00310.impulsevoip.net\",\n        \"8011@00310.impulsevoip.net\",\n        \"8012@00310.impulsevoip.net\",\n        \"8013@00310.impulsevoip.net\",\n        \"8014@00310.impulsevoip.net\",\n        \"8015@00310.impulsevoip.net\",\n        \"8016@00310.impulsevoip.net\",\n        \"8017@00310.impulsevoip.net\",\n        \"8018@00310.impulsevoip.net\",\n        \"8019@00310.impulsevoip.net\",\n        \"8020@00310.impulsevoip.net\",\n        \"8021@00310.impulsevoip.net\",\n        \"8022@00310.impulsevoip.net\",\n        \"8023@00310.impulsevoip.net\",\n        \"8024@00310.impulsevoip.net\",\n        \"8025@00310.impulsevoip.net\",\n        \"8026@00310.impulsevoip.net\",\n        \"8027@00310.impulsevoip.net\",\n        \"8028@00310.impulsevoip.net\",\n        \"8029@00310.impulsevoip.net\",\n        \"8030@00310.impulsevoip.net\",\n        \"8031@00310.impulsevoip.net\",\n        \"8032@00310.impulsevoip.net\",\n        \"8033@00310.impulsevoip.net\",\n        \"8034@00310.impulsevoip.net\",\n        \"8035@00310.impulsevoip.net\",\n        \"8036@00310.impulsevoip.net\",\n        \"8037@00310.impulsevoip.net\",\n        \"8038@00310.impulsevoip.net\",\n        \"8039@00310.impulsevoip.net\",\n        \"8040@00310.impulsevoip.net\",\n        \"8041@00310.impulsevoip.net\",\n        \"8042@00310.impulsevoip.net\",\n        \"8043@00310.impulsevoip.net\",\n        \"8044@00310.impulsevoip.net\",\n        \"8045@00310.impulsevoip.net\",\n        \"8046@00310.impulsevoip.net\",\n        \"8047@00310.impulsevoip.net\",\n        \"8048@00310.impulsevoip.net\",\n        \"8049@00310.impulsevoip.net\",\n        \"8050@00310.impulsevoip.net\",\n        \"8051@00310.impulsevoip.net\",\n        \"8052@00310.impulsevoip.net\",\n        \"8053@00310.impulsevoip.net\",\n        \"8054@00310.impulsevoip.net\",\n        \"8055@00310.impulsevoip.net\",\n        \"8056@00310.impulsevoip.net\",\n        \"8057@00310.impulsevoip.net\",\n        \"8058@00310.impulsevoip.net\",\n        \"8059@00310.impulsevoip.net\",\n        \"8060@00310.impulsevoip.net\",\n        \"8061@00310.impulsevoip.net\",\n        \"8062@00310.impulsevoip.net\",\n        \"8063@00310.impulsevoip.net\",\n        \"8064@00310.impulsevoip.net\",\n        \"8065@00310.impulsevoip.net\",\n        \"8066@00310.impulsevoip.net\",\n        \"8067@00310.impulsevoip.net\",\n        \"8068@00310.impulsevoip.net\",\n        \"8069@00310.impulsevoip.net\",\n        \"8070@00310.impulsevoip.net\",\n        \"8071@00310.impulsevoip.net\",\n        \"8072@00310.impulsevoip.net\",\n        \"8073@00310.impulsevoip.net\",\n        \"8074@00310.impulsevoip.net\",\n        \"8075@00310.impulsevoip.net\",\n        \"8076@00310.impulsevoip.net\",\n        \"8077@00310.impulsevoip.net\",\n        \"8078@00310.impulsevoip.net\",\n        \"8079@00310.impulsevoip.net\",\n        \"8080@00310.impulsevoip.net\",\n        \"8081@00310.impulsevoip.net\",\n        \"8082@00310.impulsevoip.net\",\n        \"8083@00310.impulsevoip.net\",\n        \"8084@00310.impulsevoip.net\",\n        \"8085@00310.impulsevoip.net\",\n        \"8086@00310.impulsevoip.net\",\n        \"8087@00310.impulsevoip.net\",\n        \"8088@00310.impulsevoip.net\",\n        \"8089@00310.impulsevoip.net\",\n        \"8090@00310.impulsevoip.net\",\n        \"8091@00310.impulsevoip.net\",\n        \"8092@00310.impulsevoip.net\",\n        \"8093@00310.impulsevoip.net\",\n        \"8094@00310.impulsevoip.net\",\n        \"8095@00310.impulsevoip.net\",\n        \"8096@00310.impulsevoip.net\",\n        \"8097@00310.impulsevoip.net\",\n        \"8098@00310.impulsevoip.net\",\n        \"8099@00310.impulsevoip.net\",\n        \"8100@00310.impulsevoip.net\",\n        \"8101@00310.impulsevoip.net\",\n        \"8102@00310.impulsevoip.net\",\n        \"8103@00310.impulsevoip.net\",\n        \"8104@00310.impulsevoip.net\",\n        \"8105@00310.impulsevoip.net\",\n        \"8106@00310.impulsevoip.net\",\n        \"8107@00310.impulsevoip.net\",\n        \"8108@00310.impulsevoip.net\",\n        \"8109@00310.impulsevoip.net\",\n        \"8110@00310.impulsevoip.net\",\n        \"8111@00310.impulsevoip.net\",\n        \"8112@00310.impulsevoip.net\",\n        \"8113@00310.impulsevoip.net\",\n        \"8114@00310.impulsevoip.net\",\n        \"8115@00310.impulsevoip.net\",\n        \"8116@00310.impulsevoip.net\",\n        \"8117@00310.impulsevoip.net\",\n        \"8118@00310.impulsevoip.net\",\n        \"8119@00310.impulsevoip.net\",\n        \"8120@00310.impulsevoip.net\",\n        \"8121@00310.impulsevoip.net\",\n        \"8122@00310.impulsevoip.net\",\n        \"8123@00310.impulsevoip.net\",\n        \"8124@00310.impulsevoip.net\",\n        \"8125@00310.impulsevoip.net\",\n        \"8126@00310.impulsevoip.net\",\n        \"8127@00310.impulsevoip.net\",\n        \"8128@00310.impulsevoip.net\",\n        \"8129@00310.impulsevoip.net\",\n        \"8130@00310.impulsevoip.net\",\n        \"8131@00310.impulsevoip.net\",\n        \"8132@00310.impulsevoip.net\",\n        \"8133@00310.impulsevoip.net\",\n        \"8134@00310.impulsevoip.net\",\n        \"8135@00310.impulsevoip.net\",\n        \"8136@00310.impulsevoip.net\",\n        \"8137@00310.impulsevoip.net\",\n        \"8138@00310.impulsevoip.net\",\n        \"8139@00310.impulsevoip.net\",\n        \"8140@00310.impulsevoip.net\",\n        \"8141@00310.impulsevoip.net\",\n        \"8142@00310.impulsevoip.net\",\n        \"8143@00310.impulsevoip.net\",\n        \"8144@00310.impulsevoip.net\",\n        \"8145@00310.impulsevoip.net\",\n        \"8146@00310.impulsevoip.net\",\n        \"8147@00310.impulsevoip.net\",\n        \"8148@00310.impulsevoip.net\",\n        \"8149@00310.impulsevoip.net\",\n        \"8150@00310.impulsevoip.net\",\n        \"8151@00310.impulsevoip.net\",\n        \"8152@00310.impulsevoip.net\",\n        \"8153@00310.impulsevoip.net\",\n        \"8154@00310.impulsevoip.net\",\n        \"8155@00310.impulsevoip.net\",\n        \"8156@00310.impulsevoip.net\",\n        \"8157@00310.impulsevoip.net\",\n        \"8158@00310.impulsevoip.net\",\n        \"8159@00310.impulsevoip.net\",\n        \"8160@00310.impulsevoip.net\",\n        \"8161@00310.impulsevoip.net\",\n        \"8162@00310.impulsevoip.net\",\n        \"8163@00310.impulsevoip.net\",\n        \"8164@00310.impulsevoip.net\",\n        \"8165@00310.impulsevoip.net\",\n        \"8166@00310.impulsevoip.net\",\n        \"8167@00310.impulsevoip.net\",\n        \"8912@00310.impulsevoip.net\",\n        \"8913@00310.impulsevoip.net\",\n        \"8914@00310.impulsevoip.net\",\n        \"8915@00310.impulsevoip.net\",\n        \"8916@00310.impulsevoip.net\",\n        \"8917@00310.impulsevoip.net\",\n        \"8918@00310.impulsevoip.net\",\n        \"8919@00310.impulsevoip.net\",\n        \"8920@00310.impulsevoip.net\",\n        \"8921@00310.impulsevoip.net\",\n        \"8922@00310.impulsevoip.net\",\n        \"8923@00310.impulsevoip.net\",\n        \"8924@00310.impulsevoip.net\",\n        \"8925@00310.impulsevoip.net\",\n        \"8926@00310.impulsevoip.net\",\n        \"8927@00310.impulsevoip.net\",\n        \"8928@00310.impulsevoip.net\",\n        \"8929@00310.impulsevoip.net\",\n        \"8930@00310.impulsevoip.net\",\n        \"8931@00310.impulsevoip.net\",\n        \"8932@00310.impulsevoip.net\",\n        \"8933@00310.impulsevoip.net\",\n        \"8934@00310.impulsevoip.net\",\n        \"8935@00310.impulsevoip.net\",\n        \"8936@00310.impulsevoip.net\",\n        \"8937@00310.impulsevoip.net\",\n        \"8938@00310.impulsevoip.net\",\n        \"8939@00310.impulsevoip.net\",\n        \"8940@00310.impulsevoip.net\",\n        \"8941@00310.impulsevoip.net\",\n        \"8942@00310.impulsevoip.net\",\n        \"8943@00310.impulsevoip.net\",\n        \"8944@00310.impulsevoip.net\",\n        \"8945@00310.impulsevoip.net\",\n        \"8946@00310.impulsevoip.net\",\n        \"8947@00310.impulsevoip.net\",\n        \"8948@00310.impulsevoip.net\",\n        \"8949@00310.impulsevoip.net\",\n        \"8950@00310.impulsevoip.net\",\n        \"8951@00310.impulsevoip.net\",\n        \"8952@00310.impulsevoip.net\",\n        \"8953@00310.impulsevoip.net\",\n        \"8954@00310.impulsevoip.net\",\n        \"8955@00310.impulsevoip.net\",\n        \"8956@00310.impulsevoip.net\",\n        \"8957@00310.impulsevoip.net\",\n        \"8958@00310.impulsevoip.net\",\n        \"8959@00310.impulsevoip.net\",\n        \"8960@00310.impulsevoip.net\",\n        \"8961@00310.impulsevoip.net\",\n        \"8962@00310.impulsevoip.net\",\n        \"8963@00310.impulsevoip.net\",\n        \"8964@00310.impulsevoip.net\",\n        \"8965@00310.impulsevoip.net\",\n        \"8966@00310.impulsevoip.net\",\n        \"8967@00310.impulsevoip.net\",\n        \"8968@00310.impulsevoip.net\",\n        \"8969@00310.impulsevoip.net\",\n        \"8970@00310.impulsevoip.net\",\n        \"8971@00310.impulsevoip.net\",\n        \"8972@00310.impulsevoip.net\",\n        \"8973@00310.impulsevoip.net\",\n        \"8974@00310.impulsevoip.net\",\n        \"8975@00310.impulsevoip.net\",\n        \"8976@00310.impulsevoip.net\",\n        \"8977@00310.impulsevoip.net\",\n        \"8978@00310.impulsevoip.net\",\n        \"8979@00310.impulsevoip.net\",\n        \"8980@00310.impulsevoip.net\",\n        \"8981@00310.impulsevoip.net\",\n        \"8982@00310.impulsevoip.net\",\n        \"8983@00310.impulsevoip.net\",\n        \"8984@00310.impulsevoip.net\",\n        \"8985@00310.impulsevoip.net\",\n        \"8986@00310.impulsevoip.net\",\n        \"8987@00310.impulsevoip.net\",\n        \"8988@00310.impulsevoip.net\",\n        \"8989@00310.impulsevoip.net\",\n        \"8990@00310.impulsevoip.net\",\n        \"8991@00310.impulsevoip.net\",\n        \"8992@00310.impulsevoip.net\",\n        \"8993@00310.impulsevoip.net\",\n        \"8994@00310.impulsevoip.net\",\n        \"8995@00310.impulsevoip.net\",\n        \"8996@00310.impulsevoip.net\",\n        \"8997@00310.impulsevoip.net\",\n        \"8998@00310.impulsevoip.net\",\n        \"8999@00310.impulsevoip.net\",\n        \"9001@00310.impulsevoip.net\",\n        \"9002@00310.impulsevoip.net\",\n        \"9003@00310.impulsevoip.net\",\n        \"9004@00310.impulsevoip.net\",\n        \"9005@00310.impulsevoip.net\",\n        \"9006@00310.impulsevoip.net\",\n        \"9007@00310.impulsevoip.net\",\n        \"9008@00310.impulsevoip.net\",\n        \"9009@00310.impulsevoip.net\",\n        \"9010@00310.impulsevoip.net\",\n        \"9011@00310.impulsevoip.net\",\n        \"9012@00310.impulsevoip.net\",\n        \"9013@00310.impulsevoip.net\",\n        \"9014@00310.impulsevoip.net\",\n        \"9015@00310.impulsevoip.net\",\n        \"9016@00310.impulsevoip.net\",\n        \"9017@00310.impulsevoip.net\",\n        \"9018@00310.impulsevoip.net\",\n        \"9019@00310.impulsevoip.net\",\n        \"9020@00310.impulsevoip.net\",\n        \"9021@00310.impulsevoip.net\",\n        \"9022@00310.impulsevoip.net\",\n        \"9023@00310.impulsevoip.net\",\n        \"9024@00310.impulsevoip.net\",\n        \"9025@00310.impulsevoip.net\",\n        \"9026@00310.impulsevoip.net\",\n        \"9027@00310.impulsevoip.net\",\n        \"9028@00310.impulsevoip.net\",\n        \"9029@00310.impulsevoip.net\",\n        \"9030@00310.impulsevoip.net\",\n        \"9031@00310.impulsevoip.net\",\n        \"9032@00310.impulsevoip.net\",\n        \"9033@00310.impulsevoip.net\",\n        \"9034@00310.impulsevoip.net\",\n        \"9035@00310.impulsevoip.net\",\n        \"9036@00310.impulsevoip.net\",\n        \"9037@00310.impulsevoip.net\",\n        \"9038@00310.impulsevoip.net\",\n        \"9039@00310.impulsevoip.net\",\n        \"9040@00310.impulsevoip.net\",\n        \"9041@00310.impulsevoip.net\",\n        \"9042@00310.impulsevoip.net\",\n        \"9043@00310.impulsevoip.net\",\n        \"9044@00310.impulsevoip.net\",\n        \"9045@00310.impulsevoip.net\",\n        \"9046@00310.impulsevoip.net\",\n        \"9047@00310.impulsevoip.net\",\n        \"9048@00310.impulsevoip.net\",\n        \"9049@00310.impulsevoip.net\",\n        \"9050@00310.impulsevoip.net\",\n        \"9051@00310.impulsevoip.net\",\n        \"9052@00310.impulsevoip.net\",\n        \"9053@00310.impulsevoip.net\",\n        \"9054@00310.impulsevoip.net\",\n        \"9055@00310.impulsevoip.net\",\n        \"9056@00310.impulsevoip.net\",\n        \"9057@00310.impulsevoip.net\",\n        \"9058@00310.impulsevoip.net\",\n        \"9059@00310.impulsevoip.net\",\n        \"9060@00310.impulsevoip.net\",\n        \"9061@00310.impulsevoip.net\",\n        \"9062@00310.impulsevoip.net\",\n        \"9063@00310.impulsevoip.net\",\n        \"9064@00310.impulsevoip.net\",\n        \"9065@00310.impulsevoip.net\",\n        \"9066@00310.impulsevoip.net\",\n        \"9067@00310.impulsevoip.net\",\n        \"9068@00310.impulsevoip.net\",\n        \"9069@00310.impulsevoip.net\",\n        \"9070@00310.impulsevoip.net\",\n        \"9071@00310.impulsevoip.net\",\n        \"9072@00310.impulsevoip.net\",\n        \"9073@00310.impulsevoip.net\",\n        \"9074@00310.impulsevoip.net\",\n        \"9075@00310.impulsevoip.net\",\n        \"9076@00310.impulsevoip.net\",\n        \"9077@00310.impulsevoip.net\",\n        \"9078@00310.impulsevoip.net\",\n        \"9079@00310.impulsevoip.net\",\n        \"9080@00310.impulsevoip.net\",\n        \"9081@00310.impulsevoip.net\",\n        \"9082@00310.impulsevoip.net\",\n        \"9083@00310.impulsevoip.net\",\n        \"9084@00310.impulsevoip.net\",\n        \"9085@00310.impulsevoip.net\",\n        \"9086@00310.impulsevoip.net\",\n        \"9087@00310.impulsevoip.net\",\n        \"9088@00310.impulsevoip.net\",\n        \"9089@00310.impulsevoip.net\",\n        \"9090@00310.impulsevoip.net\",\n        \"9091@00310.impulsevoip.net\",\n        \"9092@00310.impulsevoip.net\",\n        \"9093@00310.impulsevoip.net\",\n        \"9094@00310.impulsevoip.net\",\n        \"9095@00310.impulsevoip.net\",\n        \"9096@00310.impulsevoip.net\",\n        \"9097@00310.impulsevoip.net\",\n        \"9098@00310.impulsevoip.net\",\n        \"9099@00310.impulsevoip.net\",\n        \"9100@00310.impulsevoip.net\",\n        \"9101@00310.impulsevoip.net\",\n        \"9102@00310.impulsevoip.net\",\n        \"9103@00310.impulsevoip.net\",\n        \"9104@00310.impulsevoip.net\",\n        \"9105@00310.impulsevoip.net\",\n        \"9106@00310.impulsevoip.net\",\n        \"9107@00310.impulsevoip.net\",\n        \"9108@00310.impulsevoip.net\",\n        \"9109@00310.impulsevoip.net\",\n        \"9110@00310.impulsevoip.net\",\n        \"9111@00310.impulsevoip.net\",\n        \"9112@00310.impulsevoip.net\",\n        \"9113@00310.impulsevoip.net\",\n        \"9114@00310.impulsevoip.net\",\n        \"9115@00310.impulsevoip.net\",\n        \"9116@00310.impulsevoip.net\",\n        \"9117@00310.impulsevoip.net\",\n        \"9118@00310.impulsevoip.net\",\n        \"9119@00310.impulsevoip.net\",\n        \"9120@00310.impulsevoip.net\",\n        \"9121@00310.impulsevoip.net\",\n        \"9122@00310.impulsevoip.net\",\n        \"9123@00310.impulsevoip.net\",\n        \"9124@00310.impulsevoip.net\",\n        \"9125@00310.impulsevoip.net\",\n        \"9126@00310.impulsevoip.net\",\n        \"9127@00310.impulsevoip.net\",\n        \"9128@00310.impulsevoip.net\",\n        \"9129@00310.impulsevoip.net\",\n        \"9130@00310.impulsevoip.net\",\n        \"9131@00310.impulsevoip.net\",\n        \"9132@00310.impulsevoip.net\",\n        \"9133@00310.impulsevoip.net\",\n        \"9134@00310.impulsevoip.net\",\n        \"9135@00310.impulsevoip.net\",\n        \"9136@00310.impulsevoip.net\",\n        \"9137@00310.impulsevoip.net\",\n        \"9138@00310.impulsevoip.net\",\n        \"9139@00310.impulsevoip.net\",\n        \"9140@00310.impulsevoip.net\",\n        \"9141@00310.impulsevoip.net\",\n        \"9142@00310.impulsevoip.net\",\n        \"9143@00310.impulsevoip.net\",\n        \"9144@00310.impulsevoip.net\",\n        \"9145@00310.impulsevoip.net\",\n        \"9146@00310.impulsevoip.net\",\n        \"9147@00310.impulsevoip.net\",\n        \"9148@00310.impulsevoip.net\",\n        \"9149@00310.impulsevoip.net\",\n        \"9150@00310.impulsevoip.net\",\n        \"9151@00310.impulsevoip.net\",\n        \"9152@00310.impulsevoip.net\",\n        \"9153@00310.impulsevoip.net\",\n        \"9154@00310.impulsevoip.net\",\n        \"9155@00310.impulsevoip.net\",\n        \"9156@00310.impulsevoip.net\",\n        \"9157@00310.impulsevoip.net\",\n        \"9158@00310.impulsevoip.net\",\n        \"9159@00310.impulsevoip.net\",\n        \"9160@00310.impulsevoip.net\",\n        \"9161@00310.impulsevoip.net\",\n        \"9162@00310.impulsevoip.net\",\n        \"9163@00310.impulsevoip.net\",\n        \"9164@00310.impulsevoip.net\",\n        \"9165@00310.impulsevoip.net\",\n        \"9166@00310.impulsevoip.net\",\n        \"9167@00310.impulsevoip.net\",\n        \"9424@00310.impulsevoip.net\",\n        \"9425@00310.impulsevoip.net\",\n        \"9426@00310.impulsevoip.net\",\n        \"9427@00310.impulsevoip.net\",\n        \"9428@00310.impulsevoip.net\",\n        \"9429@00310.impulsevoip.net\",\n        \"9430@00310.impulsevoip.net\",\n        \"9431@00310.impulsevoip.net\",\n        \"9432@00310.impulsevoip.net\",\n        \"9433@00310.impulsevoip.net\",\n        \"9434@00310.impulsevoip.net\",\n        \"9435@00310.impulsevoip.net\",\n        \"9436@00310.impulsevoip.net\",\n        \"9437@00310.impulsevoip.net\",\n        \"9438@00310.impulsevoip.net\",\n        \"9439@00310.impulsevoip.net\",\n        \"9440@00310.impulsevoip.net\",\n        \"9441@00310.impulsevoip.net\",\n        \"9442@00310.impulsevoip.net\",\n        \"9443@00310.impulsevoip.net\",\n        \"9444@00310.impulsevoip.net\",\n        \"9445@00310.impulsevoip.net\",\n        \"9446@00310.impulsevoip.net\",\n        \"9447@00310.impulsevoip.net\",\n        \"9448@00310.impulsevoip.net\",\n        \"9449@00310.impulsevoip.net\",\n        \"9450@00310.impulsevoip.net\",\n        \"9451@00310.impulsevoip.net\",\n        \"9452@00310.impulsevoip.net\",\n        \"9453@00310.impulsevoip.net\",\n        \"9454@00310.impulsevoip.net\",\n        \"9455@00310.impulsevoip.net\",\n        \"9456@00310.impulsevoip.net\",\n        \"9457@00310.impulsevoip.net\",\n        \"9458@00310.impulsevoip.net\",\n        \"9459@00310.impulsevoip.net\",\n        \"9460@00310.impulsevoip.net\",\n        \"9461@00310.impulsevoip.net\",\n        \"9462@00310.impulsevoip.net\",\n        \"9463@00310.impulsevoip.net\",\n        \"9464@00310.impulsevoip.net\",\n        \"9465@00310.impulsevoip.net\",\n        \"9466@00310.impulsevoip.net\",\n        \"9467@00310.impulsevoip.net\",\n        \"9468@00310.impulsevoip.net\",\n        \"9469@00310.impulsevoip.net\",\n        \"9470@00310.impulsevoip.net\",\n        \"9471@00310.impulsevoip.net\",\n        \"9472@00310.impulsevoip.net\",\n        \"9473@00310.impulsevoip.net\",\n        \"9474@00310.impulsevoip.net\",\n        \"9475@00310.impulsevoip.net\",\n        \"9476@00310.impulsevoip.net\",\n        \"9477@00310.impulsevoip.net\",\n        \"9478@00310.impulsevoip.net\",\n        \"9479@00310.impulsevoip.net\",\n        \"9480@00310.impulsevoip.net\",\n        \"9481@00310.impulsevoip.net\",\n        \"9482@00310.impulsevoip.net\",\n        \"9483@00310.impulsevoip.net\",\n        \"9484@00310.impulsevoip.net\",\n        \"9485@00310.impulsevoip.net\",\n        \"9486@00310.impulsevoip.net\",\n        \"9487@00310.impulsevoip.net\",\n        \"9488@00310.impulsevoip.net\",\n        \"9489@00310.impulsevoip.net\",\n        \"9490@00310.impulsevoip.net\",\n        \"9491@00310.impulsevoip.net\",\n        \"9492@00310.impulsevoip.net\",\n        \"9493@00310.impulsevoip.net\",\n        \"9494@00310.impulsevoip.net\",\n        \"9495@00310.impulsevoip.net\",\n        \"9496@00310.impulsevoip.net\",\n        \"9497@00310.impulsevoip.net\",\n        \"9498@00310.impulsevoip.net\",\n        \"9499@00310.impulsevoip.net\",\n        \"9500@00310.impulsevoip.net\",\n        \"9501@00310.impulsevoip.net\",\n        \"9502@00310.impulsevoip.net\",\n        \"9503@00310.impulsevoip.net\",\n        \"9504@00310.impulsevoip.net\",\n        \"9505@00310.impulsevoip.net\",\n        \"9506@00310.impulsevoip.net\",\n        \"9507@00310.impulsevoip.net\",\n        \"9508@00310.impulsevoip.net\",\n        \"9509@00310.impulsevoip.net\",\n        \"9510@00310.impulsevoip.net\",\n        \"9511@00310.impulsevoip.net\",\n        \"9512@00310.impulsevoip.net\",\n        \"9513@00310.impulsevoip.net\",\n        \"9514@00310.impulsevoip.net\",\n        \"9515@00310.impulsevoip.net\",\n        \"9516@00310.impulsevoip.net\",\n        \"9517@00310.impulsevoip.net\",\n        \"9518@00310.impulsevoip.net\",\n        \"9519@00310.impulsevoip.net\",\n        \"9520@00310.impulsevoip.net\",\n        \"9521@00310.impulsevoip.net\",\n        \"9522@00310.impulsevoip.net\",\n        \"9523@00310.impulsevoip.net\",\n        \"9524@00310.impulsevoip.net\",\n        \"9525@00310.impulsevoip.net\",\n        \"9526@00310.impulsevoip.net\",\n        \"9527@00310.impulsevoip.net\",\n        \"9528@00310.impulsevoip.net\",\n        \"9529@00310.impulsevoip.net\",\n        \"9530@00310.impulsevoip.net\",\n        \"9531@00310.impulsevoip.net\",\n        \"9532@00310.impulsevoip.net\",\n        \"9533@00310.impulsevoip.net\",\n        \"9534@00310.impulsevoip.net\",\n        \"9535@00310.impulsevoip.net\",\n        \"9536@00310.impulsevoip.net\",\n        \"9537@00310.impulsevoip.net\",\n        \"9538@00310.impulsevoip.net\",\n        \"9539@00310.impulsevoip.net\",\n        \"9540@00310.impulsevoip.net\",\n        \"9541@00310.impulsevoip.net\",\n        \"9542@00310.impulsevoip.net\",\n        \"9543@00310.impulsevoip.net\",\n        \"9544@00310.impulsevoip.net\",\n        \"9545@00310.impulsevoip.net\",\n        \"9546@00310.impulsevoip.net\",\n        \"9547@00310.impulsevoip.net\",\n        \"9548@00310.impulsevoip.net\",\n        \"9549@00310.impulsevoip.net\",\n        \"9550@00310.impulsevoip.net\",\n        \"9551@00310.impulsevoip.net\",\n        \"9552@00310.impulsevoip.net\",\n        \"9553@00310.impulsevoip.net\",\n        \"9554@00310.impulsevoip.net\",\n        \"9555@00310.impulsevoip.net\",\n        \"9556@00310.impulsevoip.net\",\n        \"9557@00310.impulsevoip.net\",\n        \"9558@00310.impulsevoip.net\",\n        \"9559@00310.impulsevoip.net\",\n        \"9560@00310.impulsevoip.net\",\n        \"9561@00310.impulsevoip.net\",\n        \"9562@00310.impulsevoip.net\",\n        \"9563@00310.impulsevoip.net\",\n        \"9564@00310.impulsevoip.net\",\n        \"9565@00310.impulsevoip.net\",\n        \"9566@00310.impulsevoip.net\",\n        \"9567@00310.impulsevoip.net\",\n        \"9568@00310.impulsevoip.net\",\n        \"9569@00310.impulsevoip.net\",\n        \"9570@00310.impulsevoip.net\",\n        \"9571@00310.impulsevoip.net\",\n        \"9572@00310.impulsevoip.net\",\n        \"9573@00310.impulsevoip.net\",\n        \"9574@00310.impulsevoip.net\",\n        \"9575@00310.impulsevoip.net\",\n        \"9576@00310.impulsevoip.net\",\n        \"9577@00310.impulsevoip.net\",\n        \"9578@00310.impulsevoip.net\",\n        \"9579@00310.impulsevoip.net\",\n        \"9580@00310.impulsevoip.net\",\n        \"9581@00310.impulsevoip.net\",\n        \"9582@00310.impulsevoip.net\",\n        \"9583@00310.impulsevoip.net\",\n        \"9584@00310.impulsevoip.net\",\n        \"9585@00310.impulsevoip.net\",\n        \"9586@00310.impulsevoip.net\",\n        \"9587@00310.impulsevoip.net\",\n        \"9588@00310.impulsevoip.net\",\n        \"9589@00310.impulsevoip.net\",\n        \"9590@00310.impulsevoip.net\",\n        \"9591@00310.impulsevoip.net\",\n        \"9592@00310.impulsevoip.net\",\n        \"9593@00310.impulsevoip.net\",\n        \"9594@00310.impulsevoip.net\",\n        \"9595@00310.impulsevoip.net\",\n        \"9596@00310.impulsevoip.net\",\n        \"9597@00310.impulsevoip.net\",\n        \"9598@00310.impulsevoip.net\",\n        \"9599@00310.impulsevoip.net\",\n        \"9600@00310.impulsevoip.net\",\n        \"9601@00310.impulsevoip.net\",\n        \"9602@00310.impulsevoip.net\",\n        \"9603@00310.impulsevoip.net\",\n        \"9604@00310.impulsevoip.net\",\n        \"9605@00310.impulsevoip.net\",\n        \"9606@00310.impulsevoip.net\",\n        \"9607@00310.impulsevoip.net\",\n        \"9608@00310.impulsevoip.net\",\n        \"9609@00310.impulsevoip.net\",\n        \"9610@00310.impulsevoip.net\",\n        \"9611@00310.impulsevoip.net\",\n        \"9612@00310.impulsevoip.net\",\n        \"9613@00310.impulsevoip.net\",\n        \"9614@00310.impulsevoip.net\",\n        \"9615@00310.impulsevoip.net\",\n        \"9616@00310.impulsevoip.net\",\n        \"9617@00310.impulsevoip.net\",\n        \"9618@00310.impulsevoip.net\",\n        \"9619@00310.impulsevoip.net\",\n        \"9620@00310.impulsevoip.net\",\n        \"9621@00310.impulsevoip.net\",\n        \"9622@00310.impulsevoip.net\",\n        \"9623@00310.impulsevoip.net\",\n        \"9624@00310.impulsevoip.net\",\n        \"9625@00310.impulsevoip.net\",\n        \"9626@00310.impulsevoip.net\",\n        \"9627@00310.impulsevoip.net\",\n        \"9628@00310.impulsevoip.net\",\n        \"9629@00310.impulsevoip.net\",\n        \"9630@00310.impulsevoip.net\",\n        \"9631@00310.impulsevoip.net\",\n        \"9632@00310.impulsevoip.net\",\n        \"9633@00310.impulsevoip.net\",\n        \"9634@00310.impulsevoip.net\",\n        \"9635@00310.impulsevoip.net\",\n        \"9636@00310.impulsevoip.net\",\n        \"9637@00310.impulsevoip.net\",\n        \"9638@00310.impulsevoip.net\",\n        \"9639@00310.impulsevoip.net\",\n        \"9640@00310.impulsevoip.net\",\n        \"9641@00310.impulsevoip.net\",\n        \"9642@00310.impulsevoip.net\",\n        \"9643@00310.impulsevoip.net\",\n        \"9644@00310.impulsevoip.net\",\n        \"9645@00310.impulsevoip.net\",\n        \"9646@00310.impulsevoip.net\",\n        \"9647@00310.impulsevoip.net\",\n        \"9648@00310.impulsevoip.net\",\n        \"9649@00310.impulsevoip.net\",\n        \"9650@00310.impulsevoip.net\",\n        \"9651@00310.impulsevoip.net\",\n        \"9652@00310.impulsevoip.net\",\n        \"9653@00310.impulsevoip.net\",\n        \"9654@00310.impulsevoip.net\",\n        \"9655@00310.impulsevoip.net\",\n        \"9656@00310.impulsevoip.net\",\n        \"9657@00310.impulsevoip.net\",\n        \"9658@00310.impulsevoip.net\",\n        \"9659@00310.impulsevoip.net\",\n        \"9660@00310.impulsevoip.net\",\n        \"9661@00310.impulsevoip.net\",\n        \"9662@00310.impulsevoip.net\",\n        \"9663@00310.impulsevoip.net\",\n        \"9664@00310.impulsevoip.net\",\n        \"9665@00310.impulsevoip.net\",\n        \"9666@00310.impulsevoip.net\",\n        \"9667@00310.impulsevoip.net\",\n        \"9668@00310.impulsevoip.net\",\n        \"9669@00310.impulsevoip.net\",\n        \"9670@00310.impulsevoip.net\",\n        \"9671@00310.impulsevoip.net\",\n        \"9672@00310.impulsevoip.net\",\n        \"9673@00310.impulsevoip.net\",\n        \"9674@00310.impulsevoip.net\",\n        \"9675@00310.impulsevoip.net\",\n        \"9676@00310.impulsevoip.net\",\n        \"9677@00310.impulsevoip.net\",\n        \"9678@00310.impulsevoip.net\",\n        \"9679@00310.impulsevoip.net\",\n        \"9168@00310.impulsevoip.net\",\n        \"9169@00310.impulsevoip.net\",\n        \"9170@00310.impulsevoip.net\",\n        \"9171@00310.impulsevoip.net\",\n        \"9172@00310.impulsevoip.net\",\n        \"9173@00310.impulsevoip.net\",\n        \"9174@00310.impulsevoip.net\",\n        \"9175@00310.impulsevoip.net\",\n        \"9176@00310.impulsevoip.net\",\n        \"9177@00310.impulsevoip.net\",\n        \"9178@00310.impulsevoip.net\",\n        \"9179@00310.impulsevoip.net\",\n        \"9180@00310.impulsevoip.net\",\n        \"9181@00310.impulsevoip.net\",\n        \"9182@00310.impulsevoip.net\",\n        \"9183@00310.impulsevoip.net\",\n        \"9184@00310.impulsevoip.net\",\n        \"9185@00310.impulsevoip.net\",\n        \"9186@00310.impulsevoip.net\",\n        \"9187@00310.impulsevoip.net\",\n        \"9188@00310.impulsevoip.net\",\n        \"9189@00310.impulsevoip.net\",\n        \"9190@00310.impulsevoip.net\",\n        \"9191@00310.impulsevoip.net\",\n        \"9192@00310.impulsevoip.net\",\n        \"9193@00310.impulsevoip.net\",\n        \"9194@00310.impulsevoip.net\",\n        \"9195@00310.impulsevoip.net\",\n        \"9196@00310.impulsevoip.net\",\n        \"9197@00310.impulsevoip.net\",\n        \"9198@00310.impulsevoip.net\",\n        \"9199@00310.impulsevoip.net\",\n        \"9200@00310.impulsevoip.net\",\n        \"9201@00310.impulsevoip.net\",\n        \"9202@00310.impulsevoip.net\",\n        \"9203@00310.impulsevoip.net\",\n        \"9204@00310.impulsevoip.net\",\n        \"9205@00310.impulsevoip.net\",\n        \"9206@00310.impulsevoip.net\",\n        \"9207@00310.impulsevoip.net\",\n        \"9208@00310.impulsevoip.net\",\n        \"9209@00310.impulsevoip.net\",\n        \"9210@00310.impulsevoip.net\",\n        \"9211@00310.impulsevoip.net\",\n        \"9212@00310.impulsevoip.net\",\n        \"9213@00310.impulsevoip.net\",\n        \"9214@00310.impulsevoip.net\",\n        \"9215@00310.impulsevoip.net\",\n        \"9216@00310.impulsevoip.net\",\n        \"9217@00310.impulsevoip.net\",\n        \"9218@00310.impulsevoip.net\",\n        \"9219@00310.impulsevoip.net\",\n        \"9220@00310.impulsevoip.net\",\n        \"9221@00310.impulsevoip.net\",\n        \"9222@00310.impulsevoip.net\",\n        \"9223@00310.impulsevoip.net\",\n        \"9224@00310.impulsevoip.net\",\n        \"9225@00310.impulsevoip.net\",\n        \"9226@00310.impulsevoip.net\",\n        \"9227@00310.impulsevoip.net\",\n        \"9228@00310.impulsevoip.net\",\n        \"9229@00310.impulsevoip.net\",\n        \"9230@00310.impulsevoip.net\",\n        \"9231@00310.impulsevoip.net\",\n        \"9232@00310.impulsevoip.net\",\n        \"9233@00310.impulsevoip.net\",\n        \"9234@00310.impulsevoip.net\",\n        \"9235@00310.impulsevoip.net\",\n        \"9236@00310.impulsevoip.net\",\n        \"9237@00310.impulsevoip.net\",\n        \"9238@00310.impulsevoip.net\",\n        \"9239@00310.impulsevoip.net\",\n        \"9240@00310.impulsevoip.net\",\n        \"9241@00310.impulsevoip.net\",\n        \"9242@00310.impulsevoip.net\",\n        \"9243@00310.impulsevoip.net\",\n        \"9244@00310.impulsevoip.net\",\n        \"9245@00310.impulsevoip.net\",\n        \"9246@00310.impulsevoip.net\",\n        \"9247@00310.impulsevoip.net\",\n        \"9248@00310.impulsevoip.net\",\n        \"9249@00310.impulsevoip.net\",\n        \"9250@00310.impulsevoip.net\",\n        \"9251@00310.impulsevoip.net\",\n        \"9252@00310.impulsevoip.net\",\n        \"9253@00310.impulsevoip.net\",\n        \"9254@00310.impulsevoip.net\",\n        \"9255@00310.impulsevoip.net\",\n        \"9256@00310.impulsevoip.net\",\n        \"9257@00310.impulsevoip.net\",\n        \"9258@00310.impulsevoip.net\",\n        \"9259@00310.impulsevoip.net\",\n        \"9260@00310.impulsevoip.net\",\n        \"9261@00310.impulsevoip.net\",\n        \"9262@00310.impulsevoip.net\",\n        \"9263@00310.impulsevoip.net\",\n        \"9264@00310.impulsevoip.net\",\n        \"9265@00310.impulsevoip.net\",\n        \"9266@00310.impulsevoip.net\",\n        \"9267@00310.impulsevoip.net\",\n        \"9268@00310.impulsevoip.net\",\n        \"9269@00310.impulsevoip.net\",\n        \"9270@00310.impulsevoip.net\",\n        \"9271@00310.impulsevoip.net\",\n        \"9272@00310.impulsevoip.net\",\n        \"9273@00310.impulsevoip.net\",\n        \"9274@00310.impulsevoip.net\",\n        \"9275@00310.impulsevoip.net\",\n        \"9276@00310.impulsevoip.net\",\n        \"9277@00310.impulsevoip.net\",\n        \"9278@00310.impulsevoip.net\",\n        \"9279@00310.impulsevoip.net\",\n        \"9280@00310.impulsevoip.net\",\n        \"9281@00310.impulsevoip.net\",\n        \"9282@00310.impulsevoip.net\",\n        \"9283@00310.impulsevoip.net\",\n        \"9284@00310.impulsevoip.net\",\n        \"9285@00310.impulsevoip.net\",\n        \"9286@00310.impulsevoip.net\",\n        \"9287@00310.impulsevoip.net\",\n        \"9288@00310.impulsevoip.net\",\n        \"9289@00310.impulsevoip.net\",\n        \"9290@00310.impulsevoip.net\",\n        \"9291@00310.impulsevoip.net\",\n        \"9292@00310.impulsevoip.net\",\n        \"9293@00310.impulsevoip.net\",\n        \"9294@00310.impulsevoip.net\",\n        \"9295@00310.impulsevoip.net\",\n        \"9296@00310.impulsevoip.net\",\n        \"9297@00310.impulsevoip.net\",\n        \"9298@00310.impulsevoip.net\",\n        \"9299@00310.impulsevoip.net\",\n        \"9300@00310.impulsevoip.net\",\n        \"9301@00310.impulsevoip.net\",\n        \"9302@00310.impulsevoip.net\",\n        \"9303@00310.impulsevoip.net\",\n        \"9304@00310.impulsevoip.net\",\n        \"9305@00310.impulsevoip.net\",\n        \"9306@00310.impulsevoip.net\",\n        \"9307@00310.impulsevoip.net\",\n        \"9308@00310.impulsevoip.net\",\n        \"9309@00310.impulsevoip.net\",\n        \"9310@00310.impulsevoip.net\",\n        \"9311@00310.impulsevoip.net\",\n        \"9312@00310.impulsevoip.net\",\n        \"9313@00310.impulsevoip.net\",\n        \"9314@00310.impulsevoip.net\",\n        \"9315@00310.impulsevoip.net\",\n        \"9316@00310.impulsevoip.net\",\n        \"9317@00310.impulsevoip.net\",\n        \"9318@00310.impulsevoip.net\",\n        \"9319@00310.impulsevoip.net\",\n        \"9320@00310.impulsevoip.net\",\n        \"9321@00310.impulsevoip.net\",\n        \"9322@00310.impulsevoip.net\",\n        \"9323@00310.impulsevoip.net\",\n        \"9324@00310.impulsevoip.net\",\n        \"9325@00310.impulsevoip.net\",\n        \"9326@00310.impulsevoip.net\",\n        \"9327@00310.impulsevoip.net\",\n        \"9328@00310.impulsevoip.net\",\n        \"9329@00310.impulsevoip.net\",\n        \"9330@00310.impulsevoip.net\",\n        \"9331@00310.impulsevoip.net\",\n        \"9332@00310.impulsevoip.net\",\n        \"9333@00310.impulsevoip.net\",\n        \"9334@00310.impulsevoip.net\",\n        \"9335@00310.impulsevoip.net\",\n        \"9336@00310.impulsevoip.net\",\n        \"9337@00310.impulsevoip.net\",\n        \"9338@00310.impulsevoip.net\",\n        \"9339@00310.impulsevoip.net\",\n        \"9340@00310.impulsevoip.net\",\n        \"9341@00310.impulsevoip.net\",\n        \"9342@00310.impulsevoip.net\",\n        \"9343@00310.impulsevoip.net\",\n        \"9344@00310.impulsevoip.net\",\n        \"9345@00310.impulsevoip.net\",\n        \"9346@00310.impulsevoip.net\",\n        \"9347@00310.impulsevoip.net\",\n        \"9348@00310.impulsevoip.net\",\n        \"9349@00310.impulsevoip.net\",\n        \"9350@00310.impulsevoip.net\",\n        \"9351@00310.impulsevoip.net\",\n        \"9352@00310.impulsevoip.net\",\n        \"9353@00310.impulsevoip.net\",\n        \"9354@00310.impulsevoip.net\",\n        \"9355@00310.impulsevoip.net\",\n        \"9356@00310.impulsevoip.net\",\n        \"9357@00310.impulsevoip.net\",\n        \"9358@00310.impulsevoip.net\",\n        \"9359@00310.impulsevoip.net\",\n        \"9360@00310.impulsevoip.net\",\n        \"9361@00310.impulsevoip.net\",\n        \"9362@00310.impulsevoip.net\",\n        \"9363@00310.impulsevoip.net\",\n        \"9364@00310.impulsevoip.net\",\n        \"9365@00310.impulsevoip.net\",\n        \"9366@00310.impulsevoip.net\",\n        \"9367@00310.impulsevoip.net\",\n        \"9368@00310.impulsevoip.net\",\n        \"9369@00310.impulsevoip.net\",\n        \"9370@00310.impulsevoip.net\",\n        \"9371@00310.impulsevoip.net\",\n        \"9372@00310.impulsevoip.net\",\n        \"9373@00310.impulsevoip.net\",\n        \"9374@00310.impulsevoip.net\",\n        \"9375@00310.impulsevoip.net\",\n        \"9376@00310.impulsevoip.net\",\n        \"9377@00310.impulsevoip.net\",\n        \"9378@00310.impulsevoip.net\",\n        \"9379@00310.impulsevoip.net\",\n        \"9380@00310.impulsevoip.net\",\n        \"9381@00310.impulsevoip.net\",\n        \"9382@00310.impulsevoip.net\",\n        \"9383@00310.impulsevoip.net\",\n        \"9384@00310.impulsevoip.net\",\n        \"9385@00310.impulsevoip.net\",\n        \"9386@00310.impulsevoip.net\",\n        \"9387@00310.impulsevoip.net\",\n        \"9388@00310.impulsevoip.net\",\n        \"9389@00310.impulsevoip.net\",\n        \"9390@00310.impulsevoip.net\",\n        \"9391@00310.impulsevoip.net\",\n        \"9392@00310.impulsevoip.net\",\n        \"9393@00310.impulsevoip.net\",\n        \"9394@00310.impulsevoip.net\",\n        \"9395@00310.impulsevoip.net\",\n        \"9396@00310.impulsevoip.net\",\n        \"9397@00310.impulsevoip.net\",\n        \"9398@00310.impulsevoip.net\",\n        \"9399@00310.impulsevoip.net\",\n        \"9400@00310.impulsevoip.net\",\n        \"9401@00310.impulsevoip.net\",\n        \"9402@00310.impulsevoip.net\",\n        \"9403@00310.impulsevoip.net\",\n        \"9404@00310.impulsevoip.net\",\n        \"9405@00310.impulsevoip.net\",\n        \"9406@00310.impulsevoip.net\",\n        \"9407@00310.impulsevoip.net\",\n        \"9408@00310.impulsevoip.net\",\n        \"9409@00310.impulsevoip.net\",\n        \"9410@00310.impulsevoip.net\",\n        \"9411@00310.impulsevoip.net\",\n        \"9412@00310.impulsevoip.net\",\n        \"9413@00310.impulsevoip.net\",\n        \"9414@00310.impulsevoip.net\",\n        \"9415@00310.impulsevoip.net\",\n        \"9416@00310.impulsevoip.net\",\n        \"9417@00310.impulsevoip.net\",\n        \"9418@00310.impulsevoip.net\",\n        \"9419@00310.impulsevoip.net\",\n        \"9420@00310.impulsevoip.net\",\n        \"9421@00310.impulsevoip.net\",\n        \"9422@00310.impulsevoip.net\",\n        \"9423@00310.impulsevoip.net\",\n        \"9680@00310.impulsevoip.net\",\n        \"9681@00310.impulsevoip.net\",\n        \"9682@00310.impulsevoip.net\",\n        \"9683@00310.impulsevoip.net\",\n        \"9684@00310.impulsevoip.net\",\n        \"9685@00310.impulsevoip.net\",\n        \"9686@00310.impulsevoip.net\",\n        \"9687@00310.impulsevoip.net\",\n        \"9688@00310.impulsevoip.net\",\n        \"9689@00310.impulsevoip.net\",\n        \"9690@00310.impulsevoip.net\",\n        \"9691@00310.impulsevoip.net\",\n        \"9692@00310.impulsevoip.net\",\n        \"9693@00310.impulsevoip.net\",\n        \"9694@00310.impulsevoip.net\",\n        \"9695@00310.impulsevoip.net\",\n        \"9696@00310.impulsevoip.net\",\n        \"9697@00310.impulsevoip.net\",\n        \"9698@00310.impulsevoip.net\",\n        \"9699@00310.impulsevoip.net\",\n        \"9700@00310.impulsevoip.net\",\n        \"9701@00310.impulsevoip.net\",\n        \"9702@00310.impulsevoip.net\",\n        \"9703@00310.impulsevoip.net\",\n        \"9704@00310.impulsevoip.net\",\n        \"9705@00310.impulsevoip.net\",\n        \"9706@00310.impulsevoip.net\",\n        \"9707@00310.impulsevoip.net\",\n        \"9708@00310.impulsevoip.net\",\n        \"9709@00310.impulsevoip.net\",\n        \"9710@00310.impulsevoip.net\",\n        \"9711@00310.impulsevoip.net\",\n        \"9712@00310.impulsevoip.net\",\n        \"9713@00310.impulsevoip.net\",\n        \"9714@00310.impulsevoip.net\",\n        \"9715@00310.impulsevoip.net\",\n        \"9716@00310.impulsevoip.net\",\n        \"9717@00310.impulsevoip.net\",\n        \"9718@00310.impulsevoip.net\",\n        \"9719@00310.impulsevoip.net\",\n        \"9720@00310.impulsevoip.net\",\n        \"9721@00310.impulsevoip.net\",\n        \"9722@00310.impulsevoip.net\",\n        \"9723@00310.impulsevoip.net\",\n        \"9724@00310.impulsevoip.net\",\n        \"9725@00310.impulsevoip.net\",\n        \"9726@00310.impulsevoip.net\",\n        \"9727@00310.impulsevoip.net\",\n        \"9728@00310.impulsevoip.net\",\n        \"9729@00310.impulsevoip.net\",\n        \"9730@00310.impulsevoip.net\",\n        \"9731@00310.impulsevoip.net\",\n        \"9732@00310.impulsevoip.net\",\n        \"9733@00310.impulsevoip.net\",\n        \"9734@00310.impulsevoip.net\",\n        \"9735@00310.impulsevoip.net\",\n        \"9736@00310.impulsevoip.net\",\n        \"9737@00310.impulsevoip.net\",\n        \"9738@00310.impulsevoip.net\",\n        \"9739@00310.impulsevoip.net\",\n        \"9740@00310.impulsevoip.net\",\n        \"9741@00310.impulsevoip.net\",\n        \"9742@00310.impulsevoip.net\",\n        \"9743@00310.impulsevoip.net\",\n        \"9744@00310.impulsevoip.net\",\n        \"9745@00310.impulsevoip.net\",\n        \"9746@00310.impulsevoip.net\",\n        \"9747@00310.impulsevoip.net\",\n        \"9748@00310.impulsevoip.net\",\n        \"9749@00310.impulsevoip.net\",\n        \"9750@00310.impulsevoip.net\",\n        \"9751@00310.impulsevoip.net\",\n        \"9752@00310.impulsevoip.net\",\n        \"9753@00310.impulsevoip.net\",\n        \"9754@00310.impulsevoip.net\",\n        \"9755@00310.impulsevoip.net\",\n        \"9756@00310.impulsevoip.net\",\n        \"9757@00310.impulsevoip.net\",\n        \"9758@00310.impulsevoip.net\",\n        \"9759@00310.impulsevoip.net\",\n        \"9760@00310.impulsevoip.net\",\n        \"9761@00310.impulsevoip.net\",\n        \"9762@00310.impulsevoip.net\",\n        \"9763@00310.impulsevoip.net\",\n        \"9764@00310.impulsevoip.net\",\n        \"9765@00310.impulsevoip.net\",\n        \"9766@00310.impulsevoip.net\",\n        \"9767@00310.impulsevoip.net\",\n        \"9768@00310.impulsevoip.net\",\n        \"9769@00310.impulsevoip.net\",\n        \"9770@00310.impulsevoip.net\",\n        \"9771@00310.impulsevoip.net\",\n        \"9772@00310.impulsevoip.net\",\n        \"9773@00310.impulsevoip.net\",\n        \"9774@00310.impulsevoip.net\",\n        \"9775@00310.impulsevoip.net\",\n        \"9776@00310.impulsevoip.net\",\n        \"9777@00310.impulsevoip.net\",\n        \"9778@00310.impulsevoip.net\",\n        \"9779@00310.impulsevoip.net\",\n        \"9780@00310.impulsevoip.net\",\n        \"9781@00310.impulsevoip.net\",\n        \"9782@00310.impulsevoip.net\",\n        \"9783@00310.impulsevoip.net\",\n        \"9784@00310.impulsevoip.net\",\n        \"9785@00310.impulsevoip.net\",\n        \"9786@00310.impulsevoip.net\",\n        \"9787@00310.impulsevoip.net\",\n        \"9788@00310.impulsevoip.net\",\n        \"9789@00310.impulsevoip.net\",\n        \"9790@00310.impulsevoip.net\",\n        \"9791@00310.impulsevoip.net\",\n        \"9792@00310.impulsevoip.net\",\n        \"9793@00310.impulsevoip.net\",\n        \"9794@00310.impulsevoip.net\",\n        \"9795@00310.impulsevoip.net\",\n        \"9796@00310.impulsevoip.net\",\n        \"9797@00310.impulsevoip.net\",\n        \"9798@00310.impulsevoip.net\",\n        \"9799@00310.impulsevoip.net\",\n        \"9800@00310.impulsevoip.net\",\n        \"9801@00310.impulsevoip.net\",\n        \"9802@00310.impulsevoip.net\",\n        \"9803@00310.impulsevoip.net\",\n        \"9804@00310.impulsevoip.net\",\n        \"9805@00310.impulsevoip.net\",\n        \"9806@00310.impulsevoip.net\",\n        \"9807@00310.impulsevoip.net\",\n        \"9808@00310.impulsevoip.net\",\n        \"9809@00310.impulsevoip.net\",\n        \"9810@00310.impulsevoip.net\",\n        \"9811@00310.impulsevoip.net\",\n        \"9812@00310.impulsevoip.net\",\n        \"9813@00310.impulsevoip.net\",\n        \"9814@00310.impulsevoip.net\",\n        \"9815@00310.impulsevoip.net\",\n        \"9816@00310.impulsevoip.net\",\n        \"9817@00310.impulsevoip.net\",\n        \"9818@00310.impulsevoip.net\",\n        \"9819@00310.impulsevoip.net\",\n        \"9820@00310.impulsevoip.net\",\n        \"9821@00310.impulsevoip.net\",\n        \"9822@00310.impulsevoip.net\",\n        \"9823@00310.impulsevoip.net\",\n        \"9824@00310.impulsevoip.net\",\n        \"9825@00310.impulsevoip.net\",\n        \"9826@00310.impulsevoip.net\",\n        \"9827@00310.impulsevoip.net\",\n        \"9828@00310.impulsevoip.net\",\n        \"9829@00310.impulsevoip.net\",\n        \"9830@00310.impulsevoip.net\",\n        \"9831@00310.impulsevoip.net\",\n        \"9832@00310.impulsevoip.net\",\n        \"9833@00310.impulsevoip.net\",\n        \"9834@00310.impulsevoip.net\",\n        \"9835@00310.impulsevoip.net\",\n        \"9836@00310.impulsevoip.net\",\n        \"9837@00310.impulsevoip.net\",\n        \"9838@00310.impulsevoip.net\",\n        \"9839@00310.impulsevoip.net\",\n        \"9840@00310.impulsevoip.net\",\n        \"9841@00310.impulsevoip.net\",\n        \"9842@00310.impulsevoip.net\",\n        \"9843@00310.impulsevoip.net\",\n        \"9844@00310.impulsevoip.net\",\n        \"9845@00310.impulsevoip.net\",\n        \"9846@00310.impulsevoip.net\",\n        \"9847@00310.impulsevoip.net\",\n        \"9848@00310.impulsevoip.net\",\n        \"9849@00310.impulsevoip.net\",\n        \"9850@00310.impulsevoip.net\",\n        \"9851@00310.impulsevoip.net\",\n        \"9852@00310.impulsevoip.net\",\n        \"9853@00310.impulsevoip.net\",\n        \"9854@00310.impulsevoip.net\",\n        \"9855@00310.impulsevoip.net\",\n        \"9856@00310.impulsevoip.net\",\n        \"9857@00310.impulsevoip.net\",\n        \"9858@00310.impulsevoip.net\",\n        \"9859@00310.impulsevoip.net\",\n        \"9860@00310.impulsevoip.net\",\n        \"9861@00310.impulsevoip.net\",\n        \"9862@00310.impulsevoip.net\",\n        \"9863@00310.impulsevoip.net\",\n        \"9864@00310.impulsevoip.net\",\n        \"9865@00310.impulsevoip.net\",\n        \"9866@00310.impulsevoip.net\",\n        \"9867@00310.impulsevoip.net\",\n        \"9868@00310.impulsevoip.net\",\n        \"9869@00310.impulsevoip.net\",\n        \"9870@00310.impulsevoip.net\",\n        \"9871@00310.impulsevoip.net\",\n        \"9872@00310.impulsevoip.net\",\n        \"9873@00310.impulsevoip.net\",\n        \"9874@00310.impulsevoip.net\",\n        \"9875@00310.impulsevoip.net\",\n        \"9876@00310.impulsevoip.net\",\n        \"9877@00310.impulsevoip.net\",\n        \"9878@00310.impulsevoip.net\",\n        \"9879@00310.impulsevoip.net\",\n        \"9880@00310.impulsevoip.net\",\n        \"9881@00310.impulsevoip.net\",\n        \"9882@00310.impulsevoip.net\",\n        \"9883@00310.impulsevoip.net\",\n        \"9884@00310.impulsevoip.net\",\n        \"9885@00310.impulsevoip.net\",\n        \"9886@00310.impulsevoip.net\",\n        \"9887@00310.impulsevoip.net\",\n        \"9888@00310.impulsevoip.net\",\n        \"9889@00310.impulsevoip.net\",\n        \"9890@00310.impulsevoip.net\",\n        \"9891@00310.impulsevoip.net\",\n        \"9892@00310.impulsevoip.net\",\n        \"9893@00310.impulsevoip.net\",\n        \"9894@00310.impulsevoip.net\",\n        \"9895@00310.impulsevoip.net\",\n        \"9896@00310.impulsevoip.net\",\n        \"9897@00310.impulsevoip.net\",\n        \"9898@00310.impulsevoip.net\",\n        \"9899@00310.impulsevoip.net\",\n        \"9900@00310.impulsevoip.net\",\n        \"9901@00310.impulsevoip.net\",\n        \"9902@00310.impulsevoip.net\",\n        \"9903@00310.impulsevoip.net\",\n        \"9904@00310.impulsevoip.net\",\n        \"9905@00310.impulsevoip.net\",\n        \"9906@00310.impulsevoip.net\",\n        \"9907@00310.impulsevoip.net\",\n        \"9908@00310.impulsevoip.net\",\n        \"9909@00310.impulsevoip.net\",\n        \"9910@00310.impulsevoip.net\",\n        \"imp8057554412\",\n        \"imp8057554416\",\n        \"imp8057554449\",\n        \"imp8057554401\",\n        \"imp8057554475\",\n        \"imp8057554417\",\n        \"imp8057554432\",\n        \"imp8057554405\",\n        \"imp8057554477\",\n        \"imp8057554444\",\n        \"imp8058803406\",\n        \"imp8057554446\",\n        \"imp8057554442\",\n        \"imp8057554431\",\n        \"imp8057554447\",\n        \"imp8057554414\",\n        \"imp8057554455\",\n        \"imp8057554476\",\n        \"imp8057554438\",\n        \"imp8057554448\",\n        \"imp8057554400\",\n        \"imp8057554441\",\n        \"imp8057554413\",\n        \"imp8057554451\",\n        \"imp8057554408\",\n        \"imp8057554443\",\n        \"imp8058803409\",\n        \"imp8058803402\",\n        \"imp8057554430\",\n        \"imp8057554403\",\n        \"imp00310-02555\",\n        \"imp00310-02519\",\n        \"imp00310-02450\",\n        \"imp8057554404\",\n        \"imp8057554422\",\n        \"imp8058803415\",\n        \"imp8057554445\",\n        \"imp8057554418\",\n        \"imp8057554407\",\n        \"imp8057554410\",\n        \"imp8057554458\",\n        \"imp8057554466\",\n        \"imp6307627347\",\n        \"imp6306862980\",\n        \"imp00311-024367\",\n        \"imp00311-024368\",\n        \"imp6306862959\",\n        \"imp00311-024369\",\n        \"imp6307627351\",\n        \"imp00311-024308\",\n        \"imp00311-024342\",\n        \"imp00311-024370\",\n        \"imp00311-024371\",\n        \"imp00311-024394\",\n        \"imp6306862982\",\n        \"imp6307974159\",\n        \"imp6306862967\",\n        \"imp00311-024372\",\n        \"imp00311-024373\",\n        \"imp00311-024374\",\n        \"imp00311-024375\",\n        \"imp00311-024376\",\n        \"imp00311-024377\",\n        \"imp00311-024378\",\n        \"imp00311-024379\",\n        \"imp00311-024380\",\n        \"imp00311-024381\",\n        \"imp00311-024382\",\n        \"imp00311-024313\",\n        \"imp00311-024348\",\n        \"imp00311-024383\",\n        \"imp00311-024384\",\n        \"imp6307974157\",\n        \"imp00311-024385\",\n        \"imp6307627363\",\n        \"imp00311-024386\",\n        \"imp00311-024387\",\n        \"imp6307627358\",\n        \"imp00311-024388\",\n        \"imp6306862954\",\n        \"imp00311-024389\",\n        \"imp00311-024390\",\n        \"imp00311-024391\",\n        \"imp00311-024392\",\n        \"imp00311-024393\",\n        \"imp00311-024349\",\n        \"imp00311-024350\",\n        \"imp6306862970\",\n        \"imp00311-024395\",\n        \"imp00311-024351\",\n        \"imp00311-024352\",\n        \"imp6306862971\",\n        \"imp00311-022717\",\n        \"imp00311-024353\",\n        \"imp00311-024354\",\n        \"imp00311-024355\",\n        \"imp00311-024356\",\n        \"imp6307627344\",\n        \"imp00311-024357\",\n        \"imp00311-024358\",\n        \"imp00311-024359\",\n        \"imp00311-024360\",\n        \"imp00311-024361\",\n        \"imp6306862978\",\n        \"imp00311-024362\",\n        \"imp00311-024363\",\n        \"imp00311-024364\",\n        \"imp6306862944\",\n        \"imp6306862977\",\n        \"imp00311-024334\",\n        \"imp00311-024281\",\n        \"imp00311-024254\",\n        \"imp6306862950\",\n        \"imp6307974152\",\n        \"imp6307974174\",\n        \"imp6307974172\",\n        \"imp00311-024202\",\n        \"imp00311-024000\",\n        \"imp6307974165\",\n        \"imp8053170417\",\n        \"imp8053170418\",\n        \"imp6306862949\",\n        \"imp00311-027475\",\n        \"imp00311-022613\",\n        \"imp6307627369\",\n        \"imp00311-022120\",\n        \"imp6303771193\",\n        \"imp6306862953\",\n        \"imp6307627365\",\n        \"imp6307627368\",\n        \"imp6306862951\",\n        \"imp00311-024365\",\n        \"imp6306862969\",\n        \"imp00311-024366\",\n        \"imp6306862962\",\n        \"imp6305242870\",\n        \"imp00311-023144\",\n        \"imp00311-024406\",\n        \"imp00311-022664\",\n        \"imp00311-024234\",\n        \"imp00311-024407\",\n        \"imp00311-024408\",\n        \"imp00311-024409\",\n        \"imp00311-024318\",\n        \"imp00311-024344\",\n        \"imp00311-024021\",\n        \"imp00311-024319\",\n        \"imp00311-024025\",\n        \"imp00311-024071\",\n        \"imp00311-024297\",\n        \"imp6307627366\",\n        \"imp00311-024322\",\n        \"imp00311-024256\",\n        \"imp00311-024346\",\n        \"imp00311-024347\",\n        \"imp00311-028997\",\n        \"imp00311-022682\",\n        \"imp00311-024293\",\n        \"imp00311-022698\",\n        \"imp00311-024325\",\n        \"imp00311-024264\",\n        \"imp00311-024314\",\n        \"imp00311-024182\",\n        \"imp00311-022626\",\n        \"imp00311-024286\",\n        \"imp00311-027509\",\n        \"imp00311-024316\",\n        \"imp00311-024189\",\n        \"imp00311-022294\",\n        \"imp00311-022617\",\n        \"imp8053170415\",\n        \"imp00311-024274\",\n        \"imp00311-024396\",\n        \"imp00311-024397\",\n        \"imp00311-024398\",\n        \"imp00311-024399\",\n        \"imp00311-024400\",\n        \"imp00311-022248\",\n        \"imp00311-024401\",\n        \"imp00311-024402\",\n        \"imp8053170414\",\n        \"imp00311-024403\",\n        \"imp00311-024404\",\n        \"imp00311-024341\",\n        \"imp00311-024405\",\n        \"imp8053170412\",\n        \"imp8053170413\",\n        \"imp6307974163\",\n        \"imp00311-024280\",\n        \"imp00311-024209\",\n        \"imp00311-024195\",\n        \"imp00311-022285\",\n        \"imp00311-029901\",\n        \"imp6307974135\",\n        \"imp00311-029902\",\n        \"imp00311-029903\",\n        \"imp00311-029904\",\n        \"imp00311-024336\",\n        \"imp00311-028999\",\n        \"imp00311-024339\",\n        \"imp00311-028998\",\n        \"imp00311-021374\",\n        \"imp00311-021217\",\n        \"00311-027468\",\n        \"imp00311-029900\",\n        \"imp6307974161\",\n        \"imp6307627348\",\n        \"imp00311-024301\",\n        \"imp00311-029905\",\n        \"imp6307974147\",\n        \"imp00311-029906\",\n        \"imp00311-029907\",\n        \"imp6307627345\",\n        \"imp00311-029908\",\n        \"imp00311-029909\",\n        \"imp6307974154\",\n        \"imp00311-024331\",\n        \"imp6306862955\",\n        \"imp00311-024298\",\n        \"imp00311-024002\",\n        \"imp6307974182\",\n        \"imp00311-024299\",\n        \"imp00311-024332\",\n        \"imp6307627354\",\n        \"imp6306862960\",\n        \"imp6307627362\",\n        \"imp6307627356\",\n        \"imp00311-029956\",\n        \"imp6307974167\",\n        \"imp6307627370\",\n        \"imp00311-029957\",\n        \"imp00311-029958\",\n        \"imp00311-024246\",\n        \"imp00311-029950\",\n        \"imp00311-029951\",\n        \"imp00311-029952\",\n        \"imp6307974186\",\n        \"imp00311-024001\",\n        \"imp6307974164\",\n        \"imp6307974156\",\n        \"imp6307974149\",\n        \"imp6307974146\",\n        \"imp6307974166\",\n        \"imp00311-022819\",\n        \"imp6306862958\",\n        \"imp6307627346\",\n        \"imp6307974162\",\n        \"imp6306862979\",\n        \"imp00311-029497\",\n        \"imp6307974145\",\n        \"imp6307974143\",\n        \"imp6307627371\",\n        \"imp6307974137\",\n        \"imp6307974188\",\n        \"imp6307627340\",\n        \"imp6306862941\",\n        \"imp6306862942\",\n        \"imp6306862943\",\n        \"imp6306862945\",\n        \"imp6306862947\",\n        \"imp6306862948\",\n        \"imp6306862940\",\n        \"imp6306862952\",\n        \"imp6306862956\",\n        \"imp6306862957\",\n        \"imp6307627341\",\n        \"imp6307974144\",\n        \"imp6307627360\",\n        \"imp6306862965\",\n        \"imp6306862966\",\n        \"imp00311-027508\",\n        \"imp6306862968\",\n        \"imp6307974175\",\n        \"imp6306862972\",\n        \"imp6306862974\",\n        \"imp6306862975\",\n        \"imp6306862976\",\n        \"imp00311-027267\",\n        \"imp00311-027281\",\n        \"imp00311-027409\",\n        \"imp00311-027541\",\n        \"imp00311-027548\",\n        \"imp00311-027567\",\n        \"imp00311-027837\",\n        \"imp00311-027899\",\n        \"imp00311-021237\",\n        \"imp00311-021387\",\n        \"imp00311-021469\",\n        \"imp00311-021489\",\n        \"imp00311-021498\",\n        \"imp00311-021626\",\n        \"imp00311-021662\",\n        \"imp00311-021690\",\n        \"imp00311-021723\",\n        \"imp00311-022016\",\n        \"imp00311-022026\",\n        \"imp00311-022032\",\n        \"imp00311-022121\",\n        \"imp00311-022129\",\n        \"imp00311-022515\",\n        \"imp00311-022517\",\n        \"imp00311-022558\",\n        \"imp00311-022614\",\n        \"imp00311-022973\",\n        \"imp00311-024066\",\n        \"imp00311-024126\",\n        \"imp00311-024338\",\n        \"imp00311-024456\",\n        \"imp00311-024479\",\n        \"imp00311-024480\",\n        \"imp00311-024674\",\n        \"imp00311-024944\",\n        \"imp00311-025144\",\n        \"imp00311-025662\",\n        \"imp00311-026380\",\n        \"imp00311-026555\",\n        \"imp00311-026599\",\n        \"imp00311-026714\",\n        \"imp00311-026814\",\n        \"imp00311-026831\",\n        \"imp00311-026839\",\n        \"imp00311-026982\",\n        \"imp6307627364\",\n        \"imp00311-027401\",\n        \"imp00311-027427\",\n        \"imp00311-027527\",\n        \"imp00311-027565\",\n        \"imp00311-029044\",\n        \"imp00311-029178\",\n        \"imp00311-029330\",\n        \"imp00311-029351\",\n        \"imp00311-029757\",\n        \"imp00311-029850\",\n        \"imp6307627350\",\n        \"imp6307974151\",\n        \"imp00311-029953\",\n        \"imp00311-029954\",\n        \"imp00311-029955\",\n        \"imp6307974136\",\n        \"imp8053170416\",\n        \"imp6307974140\",\n        \"imp6307974132\",\n        \"imp00311-022044\",\n        \"imp00311-024080\",\n        \"imp6306862973\",\n        \"imp00311-022094\",\n        \"imp6307974155\",\n        \"imp00311-024307\",\n        \"imp00311-022160\",\n        \"imp00311-022164\",\n        \"imp6307974134\",\n        \"imp6307627349\",\n        \"imp00311-022202\",\n        \"imp00311-024333\",\n        \"imp6307974142\",\n        \"imp6307974131\",\n        \"imp6307974153\",\n        \"imp6307627355\",\n        \"imp6307974189\",\n        \"imp00311-025500\",\n        \"imp00311-022411\",\n        \"imp00311-022470\",\n        \"imp6306862964\",\n        \"imp6305242936\",\n        \"imp6307974181\",\n        \"imp00311-022536\",\n        \"imp00311-022564\",\n        \"imp00311-022565\",\n        \"imp6307974138\",\n        \"imp6307974170\",\n        \"imp00311-022758\",\n        \"imp00311-022759\",\n        \"imp00311-022760\",\n        \"imp00311-022761\",\n        \"imp00311-022762\",\n        \"imp6306862963\",\n        \"imp00311-024159\",\n        \"imp00311-024199\",\n        \"imp00311-024329\",\n        \"imp00311-024142\",\n        \"imp4707857606\",\n        \"imp4707857604\",\n        \"imp4707857602\",\n        \"imp4707857601\",\n        \"imp4707857607\",\n        \"imp4707857621\",\n        \"imp4707857617\",\n        \"imp4707857611\",\n        \"imp4707857605\",\n        \"imp4707857608\",\n        \"imp00311-011111\",\n        \"imp7736383929\",\n        \"imp8476358160\",\n        \"imp6063029560\",\n        \"imp7736385597\",\n        \"imp7736383827\",\n        \"imp4707857603\",\n        \"imp4707857620\",\n        \"imp6304437137\",\n        \"imp6305872820\",\n        \"imp6614275020\",\n        \"imp6614275021\",\n        \"imp6614275022\",\n        \"imp6614275023\",\n        \"imp6614275024\",\n        \"imp00319-02502\",\n        \"imp00319-02500\",\n        \"imp00319-02501\",\n        \"imp8057554513\",\n        \"imp8057554514\",\n        \"imp00324-02602\",\n        \"imp8057554512\",\n        \"imp8057554516\",\n        \"imp8057554515\",\n        \"imp8057554590\",\n        \"imp8057554517\",\n        \"imp8058803327\",\n        \"imp8053221604\",\n        \"imp8052611100\",\n        \"imp8053221606\",\n        \"imp8053221607\",\n        \"imp8053221608\",\n        \"imp8053221609\",\n        \"imp8053221610\",\n        \"imp8053221611\",\n        \"imp8053221612\",\n        \"imp8053221613\",\n        \"imp8053221614\",\n        \"imp00330-026543\",\n        \"imp8059262205\",\n        \"imp8059262206\",\n        \"imp8053221603\",\n        \"imp8052611121\",\n        \"imp5594495939\",\n        \"imp5594495927\",\n        \"imp5594495840\",\n        \"imp5594495978\",\n        \"imp5594495944\",\n        \"imp5594495890\",\n        \"imp5594495864\",\n        \"imp5594495938\",\n        \"imp5594495802\",\n        \"imp5594495803\",\n        \"imp5594495887\",\n        \"imp5594495856\",\n        \"imp5594495934\",\n        \"imp5594495940\",\n        \"imp5594495877\",\n        \"imp5594495860\",\n        \"imp5594495898\",\n        \"imp5594495917\",\n        \"imp5594495838\",\n        \"imp5594495813\",\n        \"imp5594495925\",\n        \"imp5594495920\",\n        \"imp5594495936\",\n        \"imp5594495899\",\n        \"imp5594495853\",\n        \"imp5594495831\",\n        \"imp5594495880\",\n        \"imp5594495835\",\n        \"imp5594495836\",\n        \"imp9497165101\",\n        \"imp5594495929\",\n        \"imp5594495893\",\n        \"imp5594495916\",\n        \"imp5594495824\",\n        \"imp00334-027006\",\n        \"imp5594495806\",\n        \"imp5594495964\",\n        \"imp5594495967\",\n        \"imp5594495968\",\n        \"imp5594495866\",\n        \"imp5594495969\",\n        \"imp5594495847\",\n        \"imp5594495977\",\n        \"imp5594495862\",\n        \"imp5594495849\",\n        \"imp5594495970\",\n        \"imp00334-029000\",\n        \"imp5594495971\",\n        \"imp5594495822\",\n        \"imp5594495955\",\n        \"imp5594495975\",\n        \"imp5594495829\",\n        \"imp5594495980\",\n        \"imp5594495962\",\n        \"imp5594495828\",\n        \"imp5594495888\",\n        \"imp5594495919\",\n        \"imp5594495952\",\n        \"imp5594495833\",\n        \"imp5594495825\",\n        \"imp5594312010\",\n        \"imp5594495842\",\n        \"imp5594495848\",\n        \"imp5594495872\",\n        \"imp5594495821\",\n        \"imp5594495979\",\n        \"5594324371\",\n        \"imp5594495809\",\n        \"5594764026\",\n        \"imp5594495875\",\n        \"imp5594495981\",\n        \"imp5594495846\",\n        \"imp5594495827\",\n        \"imp5594495943\",\n        \"imp5594495816\",\n        \"imp5594495937\",\n        \"imp5594495889\",\n        \"imp5594495863\",\n        \"imp5594495819\",\n        \"imp5594495820\",\n        \"imp5594495947\",\n        \"imp5594495812\",\n        \"imp5594495951\",\n        \"imp5594495858\",\n        \"imp5594495895\",\n        \"imp5594495963\",\n        \"imp5594495801\",\n        \"imp5594495894\",\n        \"imp5594495966\",\n        \"imp5594495807\",\n        \"imp5594495841\",\n        \"imp5594495959\",\n        \"imp5594495815\",\n        \"imp5594495960\",\n        \"imp5594495851\",\n        \"imp5594495818\",\n        \"imp5594495823\",\n        \"imp5594495843\",\n        \"imp5594495884\",\n        \"imp5594495870\",\n        \"imp5594495839\",\n        \"imp5594495933\",\n        \"imp5594495928\",\n        \"imp5594495926\",\n        \"imp5594495879\",\n        \"imp5594495883\",\n        \"imp5594495885\",\n        \"imp5594495914\",\n        \"imp5594495915\",\n        \"imp5594495909\",\n        \"imp5594495881\",\n        \"imp5594495923\",\n        \"imp5594495924\",\n        \"imp5594495850\",\n        \"imp5594495935\",\n        \"imp00334-027001\",\n        \"imp00334-027003\",\n        \"imp00334-027004\",\n        \"imp00334-027005\",\n        \"imp5594495956\",\n        \"imp5594495957\",\n        \"imp5594495804\",\n        \"imp5594495810\",\n        \"imp5594495941\",\n        \"imp5594495942\",\n        \"imp5594495945\",\n        \"imp5594495948\",\n        \"imp5594495949\",\n        \"imp5594495855\",\n        \"imp5594495826\",\n        \"imp5594495958\",\n        \"imp5594495845\",\n        \"imp5594495878\",\n        \"imp5594495953\",\n        \"imp5594495857\",\n        \"imp5594495886\",\n        \"imp00334-026505\",\n        \"imp5594495861\",\n        \"imp5594495965\",\n        \"imp5594495921\",\n        \"imp5594495871\",\n        \"imp5594495865\",\n        \"imp5594495946\",\n        \"imp5594495976\",\n        \"imp5594495817\",\n        \"imp5594495811\",\n        \"imp5594495832\",\n        \"imp5594495974\",\n        \"imp5594495961\",\n        \"imp5594495844\",\n        \"imp5594495830\",\n        \"imp5594495814\",\n        \"imp5594495837\",\n        \"imp5594495808\",\n        \"imp5594495972\",\n        \"imp5594495973\",\n        \"imp00334-directory\",\n        \"imp00334-013000\",\n        \"imp8058809441\",\n        \"imp8058803391\",\n        \"imp2674574492\",\n        \"imp2674574479\",\n        \"imp2674574478\",\n        \"imp2674574457\",\n        \"imp9253645500\",\n        \"imp8138886330\",\n        \"imp3462987931\",\n        \"imp6615233511\",\n        \"imp9092431037\",\n        \"imp8058803378\",\n        \"imp8058803379\",\n        \"imp-2-00345-02-trunk@pilot.impulsevoip.net\",\n        \"imp-1-00345-02-trunk@pilot.impulsevoip.net\",\n        \"8052212633@pilot.impulsevoip.net\",\n        \"8059627014@pilot.impulsevoip.net\",\n        \"8059620186@pilot.impulsevoip.net\",\n        \"8059622118@pilot.impulsevoip.net\",\n        \"8059622225@pilot.impulsevoip.net\",\n        \"8052840346@pilot.impulsevoip.net\",\n        \"8059627101@pilot.impulsevoip.net\",\n        \"8059627179@pilot.impulsevoip.net\",\n        \"8059627181@pilot.impulsevoip.net\",\n        \"8059627185@pilot.impulsevoip.net\",\n        \"8059627197@pilot.impulsevoip.net\",\n        \"00349-02-directory\",\n        \"imp8058880397\",\n        \"imp8058880399\",\n        \"imp8058880398\",\n        \"imp00351-01100\",\n        \"00351-directory\",\n        \"imp8058880326\",\n        \"imp8058880378\",\n        \"imp8058880348\",\n        \"imp8058880344\",\n        \"imp8058880374\",\n        \"imp8058880304\",\n        \"imp8058880370\",\n        \"imp8058880346\",\n        \"imp8058880396\",\n        \"imp8058880331\",\n        \"imp8058880362\",\n        \"imp8058880330\",\n        \"imp8058880392\",\n        \"imp8058880356\",\n        \"imp8058880389\",\n        \"imp8058880371\",\n        \"imp8058880365\",\n        \"imp8058880384\",\n        \"imp8058880366\",\n        \"imp8058880317\",\n        \"imp8058880306\",\n        \"imp8058880327\",\n        \"imp8058880364\",\n        \"imp8058880386\",\n        \"imp8058880382\",\n        \"imp8058880308\",\n        \"imp8058880335\",\n        \"imp8058880338\",\n        \"imp8058880318\",\n        \"imp8058880363\",\n        \"imp8058880305\",\n        \"imp8058880341\",\n        \"imp8058880360\",\n        \"imp8058880307\",\n        \"imp8058880354\",\n        \"imp8058880312\",\n        \"imp8058880394\",\n        \"imp8058880395\",\n        \"imp8058880347\",\n        \"imp8058880379\",\n        \"imp8058880325\",\n        \"imp8058880314\",\n        \"imp8058880313\",\n        \"imp8058880369\",\n        \"imp8058880380\",\n        \"imp8058880381\",\n        \"imp8058880339\",\n        \"imp8058880358\",\n        \"imp8058880372\",\n        \"imp8058880302\",\n        \"imp8058880328\",\n        \"imp8058880349\",\n        \"imp8058880359\",\n        \"imp8058880303\",\n        \"imp8058880333\",\n        \"imp00351-02660\",\n        \"imp8058880353\",\n        \"imp8058880321\",\n        \"imp8058880329\",\n        \"imp8058880391\",\n        \"imp8058880343\",\n        \"imp8058880332\",\n        \"imp8058880300\",\n        \"imp8058880367\",\n        \"imp8058880361\",\n        \"imp8058880320\",\n        \"imp8058880324\",\n        \"imp8058880393\",\n        \"imp8058880316\",\n        \"imp8058880322\",\n        \"imp8058880373\",\n        \"imp8058880375\",\n        \"imp8058880355\",\n        \"imp8058880310\",\n        \"imp8058880315\",\n        \"imp8058880337\",\n        \"imp8058880336\",\n        \"imp8058880368\",\n        \"imp8058880390\",\n        \"imp8058880319\",\n        \"imp8058880340\",\n        \"imp8058880387\",\n        \"imp8058880352\",\n        \"imp8058880309\",\n        \"imp8058880351\",\n        \"imp8058880376\",\n        \"imp8058880323\",\n        \"imp8058880334\",\n        \"imp8058880345\",\n        \"imp8058880301\",\n        \"imp8058880385\",\n        \"imp8058880342\",\n        \"imp8058880357\",\n        \"imp8058880377\",\n        \"imp8058880383\",\n        \"imp8058880350\",\n        \"imp9514070558\",\n        \"imp9514070554\",\n        \"imp9514070562\",\n        \"imp9514070551\",\n        \"imp9514070555\",\n        \"imp9514070550\",\n        \"imp9514070553\",\n        \"imp00353-02151\",\n        \"imp9514070561\",\n        \"imp9514070556\",\n        \"imp9514070552\",\n        \"imp00353-02252\",\n        \"imp00353-02353\",\n        \"imp7608487011\",\n        \"imp7608487012\",\n        \"imp7608487013\",\n        \"imp00353-03454\",\n        \"imp8059644791\",\n        \"imp8059678199\",\n        \"imp00355-directory\",\n        \"imp00355-01200\",\n        \"imp8059667277\",\n        \"imp8059667599\",\n        \"imp8059667715\",\n        \"imp8058803356\",\n        \"imp8058803351\",\n        \"imp8058803353\",\n        \"imp8058803354\",\n        \"imp8059667199\",\n        \"imp8058803352\",\n        \"imp8058803360\",\n        \"imp8059667511\",\n        \"imp8059667716\",\n        \"imp8059669071\",\n        \"imp00355-02309\",\n        \"imp00355-02310\",\n        \"imp8059667575\",\n        \"imp8059664225\",\n        \"imp8059667499\",\n        \"imp8059667757\",\n        \"imp8058803350\",\n        \"imp8058803359\",\n        \"imp8058803357\",\n        \"imp00356-directory\",\n        \"imp00356-01101\",\n        \"imp8054567294\",\n        \"imp8054566968\",\n        \"imp8054566979\",\n        \"imp8054567296\",\n        \"imp8054567298\",\n        \"imp8056837758\",\n        \"sip8054566971\",\n        \"imp8054566980\",\n        \"imp8054567293\",\n        \"imp8054566977\",\n        \"imp8054566970\",\n        \"imp8054567295\",\n        \"imp8054566975\",\n        \"imp8054566966\",\n        \"imp8054566976\",\n        \"imp8054566967\",\n        \"imp8054566978\",\n        \"imp8054567235\",\n        \"imp8054566969\",\n        \"imp8056837746\",\n        \"imp8054566972\",\n        \"imp8056837750\",\n        \"imp8054566974\",\n        \"imp8054567291\",\n        \"imp8054566973\",\n        \"imp00294-3301\",\n        \"imp00294-3303\",\n        \"imp00294-3306\",\n        \"imp00294-3307\",\n        \"imp00294-3319\",\n        \"imp00294-3320\",\n        \"imp00294-3321\",\n        \"imp00294-3323\",\n        \"imp00294-3336\",\n        \"imp00294-3343\",\n        \"00294-01-directory\",\n        \"imp8059692300\",\n        \"imp8055658010\",\n        \"imp00294-02802\",\n        \"imp8059694173\",\n        \"imp8055658018\",\n        \"imp8059694332\",\n        \"imp00294-02801\",\n        \"imp8059692983\",\n        \"imp8055658024\",\n        \"imp8055658011\",\n        \"imp8055658022\",\n        \"imp8059697763\",\n        \"imp8055658013\",\n        \"imp8055658023\",\n        \"imp8055658012\",\n        \"imp8055658015\",\n        \"imp8055658016\",\n        \"imp8055658021\",\n        \"imp8055658007\",\n        \"imp8059691445\",\n        \"imp8055658020\",\n        \"imp8059692242\",\n        \"imp8059697764\",\n        \"imp8055658017\",\n        \"imp8055658014\",\n        \"imp8055658009\",\n        \"imp8059692537\",\n        \"imp8059697762\",\n        \"imp8055658032\",\n        \"imp8055658029\",\n        \"imp8055658030\",\n        \"imp8055658028\",\n        \"imp8055658031\",\n        \"imp8055658034\",\n        \"imp8055658027\",\n        \"imp8055658036\",\n        \"imp8055658033\",\n        \"imp8055658035\",\n        \"imp00360-08695\",\n        \"imp00360-08602\",\n        \"imp00360-089979\",\n        \"imp00360-089951\",\n        \"imp00360-089980\",\n        \"imp00360-089933\",\n        \"imp00360-08694\",\n        \"imp00360-089955\",\n        \"imp00360-08612\",\n        \"imp8056460885\",\n        \"imp00360-08604\",\n        \"imp00360-08603\",\n        \"imp00360-089973\",\n        \"imp00360-089934\",\n        \"imp00360-089939\",\n        \"imp00360-08610\",\n        \"imp00360-08601\",\n        \"imp00360-08619\",\n        \"imp00360-089932\",\n        \"imp00360-08691\",\n        \"imp00360-08692\",\n        \"imp00360-08693\",\n        \"imp00360-01111\",\n        \"imp00360-05410\",\n        \"imp8056796201\",\n        \"imp8056796203\",\n        \"imp8056796209\",\n        \"imp8056796202\",\n        \"imp00360-05408\",\n        \"imp8056796208\",\n        \"imp8056796204\",\n        \"imp00360-05407\",\n        \"imp00360-05491\",\n        \"imp00360-05492\",\n        \"imp00360-05493\",\n        \"imp00360-05494\",\n        \"imp00360-05495\",\n        \"imp3108736988\",\n        \"imp3108736984\",\n        \"imp00360-041009\",\n        \"imp3108736981\",\n        \"imp3108736985\",\n        \"imp3108736982\",\n        \"imp3103153895\",\n        \"imp00360-049938\",\n        \"imp3108736987\",\n        \"imp3108736983\",\n        \"imp00360-041010\",\n        \"imp00360-049975\",\n        \"imp00360-049976\",\n        \"imp00360-041019\",\n        \"imp00360-041091\",\n        \"imp00360-041092\",\n        \"imp00360-041093\",\n        \"imp00360-041094\",\n        \"imp00360-041095\",\n        \"imp00360-10704\",\n        \"imp00360-109977\",\n        \"imp00360-10710\",\n        \"imp00360-10702\",\n        \"imp00360-10706\",\n        \"imp00360-10719\",\n        \"imp00360-10705\",\n        \"imp00360-10703\",\n        \"imp00360-10791\",\n        \"imp00360-10792\",\n        \"imp00360-10701\",\n        \"imp00360-10793\",\n        \"imp6612583014\",\n        \"imp6612572017\",\n        \"imp6612572323\",\n        \"imp6612583013\",\n        \"imp00360-09553\",\n        \"imp00360-09552\",\n        \"imp6617051762\",\n        \"imp6612583012\",\n        \"imp6612571762\",\n        \"imp6612572954\",\n        \"imp00360-09551\",\n        \"imp6617051763\",\n        \"imp7472423805\",\n        \"imp7472423806\",\n        \"imp00360-02981\",\n        \"imp7472423803\",\n        \"imp00360-02901\",\n        \"imp00360-02905\",\n        \"imp7472423804\",\n        \"imp00360-029936\",\n        \"imp7472423802\",\n        \"imp00360-02982\",\n        \"imp00360-02983\",\n        \"imp00360-02984\",\n        \"imp8057072714\",\n        \"imp00360-06204\",\n        \"imp8056467245\",\n        \"imp00360-06291\",\n        \"imp00360-06205\",\n        \"imp8056467254\",\n        \"imp8056469030\",\n        \"imp00360-06292\",\n        \"imp00360-06293\",\n        \"imp00360-06294\",\n        \"imp00360-039961\",\n        \"imp8052981895\",\n        \"imp8052981893\",\n        \"imp8052981891\",\n        \"imp8052981894\",\n        \"imp8052981892\",\n        \"imp00360-03806\",\n        \"imp00360-03881\",\n        \"imp00360-03882\",\n        \"imp00360-03883\",\n        \"imp00360-03884\",\n        \"imp00360-03810\",\n        \"imp00360-03805\",\n        \"imp00360-07106\",\n        \"imp00360-079999\",\n        \"imp00360-07105\",\n        \"imp00360-07102\",\n        \"imp00360-079907\",\n        \"imp00360-079903\",\n        \"imp00360-079905\",\n        \"imp8059678670\",\n        \"imp00360-079942\",\n        \"imp00360-07182\",\n        \"imp00360-07122\",\n        \"imp00360-079978\",\n        \"imp00360-07181\",\n        \"imp00360-07104\",\n        \"imp00360-079952\",\n        \"imp00360-07183\",\n        \"imp00360-07119\",\n        \"imp00360-079941\",\n        \"imp8056796206\",\n        \"imp00360-079906\",\n        \"imp00360-07121\",\n        \"imp00360-07123\",\n        \"imp00360-079901\",\n        \"imp00360-079943\",\n        \"imp003660-079971\",\n        \"imp00360-079902\",\n        \"imp00360-079963\",\n        \"imp00360-07124\",\n        \"imp00360-07101\",\n        \"imp00360-07103\",\n        \"imp8057244664\",\n        \"imp00360-079904\",\n        \"imp00360-111101\",\n        \"imp00360-111104\",\n        \"imp00360-111105\",\n        \"imp00360-111106\",\n        \"imp00360-111110\",\n        \"imp00360-111103\",\n        \"imp00360-111102\",\n        \"imp00360-111191\",\n        \"imp00360-111192\",\n        \"imp00360-111193\",\n        \"imp2039262772\",\n        \"imp2039257926\",\n        \"imp2039262720\",\n        \"imp2039262715\",\n        \"imp2034561189\",\n        \"imp2039262719\",\n        \"imp2034561206\",\n        \"imp2039262730\",\n        \"imp2039262711\",\n        \"imp2039262751\",\n        \"imp2039262708\",\n        \"imp2039262748\",\n        \"imp2039262756\",\n        \"imp2039263063\",\n        \"imp2039262717\",\n        \"imp2039262718\",\n        \"imp2039262724\",\n        \"imp2039262742\",\n        \"imp2034561187\",\n        \"imp2039262795\",\n        \"imp2039262798\",\n        \"imp2039262705\",\n        \"imp2039262773\",\n        \"imp2039262776\",\n        \"imp2039262777\",\n        \"imp2039262761\",\n        \"imp2039262765\",\n        \"imp2034561190\",\n        \"imp2039262713\",\n        \"imp2039262738\",\n        \"imp2039262774\",\n        \"imp2039262789\",\n        \"imp2039262797\",\n        \"imp2039262741\",\n        \"imp2039262770\",\n        \"imp2039262775\",\n        \"imp2039257947\",\n        \"imp2039263062\",\n        \"imp2039262740\",\n        \"imp2039257930\",\n        \"imp2039262726\",\n        \"imp2039262716\",\n        \"imp2039262754\",\n        \"imp2039257939\",\n        \"imp2039262752\",\n        \"imp2039262749\",\n        \"imp2039263068\",\n        \"imp2034561188\",\n        \"imp2039262703\",\n        \"imp7654645549\",\n        \"imp7654645594\",\n        \"imp7654645577\",\n        \"imp7654645755\",\n        \"imp7654645568\",\n        \"imp7654645538\",\n        \"imp7654645526\",\n        \"imp7654645772\",\n        \"imp7654645589\",\n        \"imp7654645714\",\n        \"imp7654645743\",\n        \"imp7654645599\",\n        \"imp7654645550\",\n        \"imp7654645756\",\n        \"imp7654645791\",\n        \"imp7654645799\",\n        \"imp7654645742\",\n        \"imp7654645543\",\n        \"imp7654645716\",\n        \"imp7654645724\",\n        \"imp7654645706\",\n        \"imp7654645769\",\n        \"imp7654645753\",\n        \"imp00362-075445\",\n        \"imp7654645705\",\n        \"imp7654645741\",\n        \"imp7654645787\",\n        \"imp7654645529\",\n        \"imp7654645776\",\n        \"imp7654645796\",\n        \"imp7654645507\",\n        \"imp7654645759\",\n        \"imp7654645511\",\n        \"imp7654645719\",\n        \"imp00362-075447\",\n        \"imp7654645751\",\n        \"imp7654645728\",\n        \"imp7654645781\",\n        \"imp7654645567\",\n        \"imp7654645555\",\n        \"imp7654645581\",\n        \"imp7654645757\",\n        \"imp7654645521\",\n        \"imp7654645541\",\n        \"imp7654645536\",\n        \"imp7654645519\",\n        \"imp7654645569\",\n        \"imp7654645561\",\n        \"imp7654645777\",\n        \"imp7654645738\",\n        \"imp7654645748\",\n        \"imp7654645513\",\n        \"imp7654645548\",\n        \"imp7654645503\",\n        \"imp7654645713\",\n        \"imp7654645557\",\n        \"imp7654645704\",\n        \"imp7654645546\",\n        \"imp7654645790\",\n        \"imp7654645765\",\n        \"imp7654645558\",\n        \"imp7654645531\",\n        \"imp7654645734\",\n        \"imp7654645544\",\n        \"imp7654645782\",\n        \"imp7654645551\",\n        \"imp7654645767\",\n        \"imp7654645727\",\n        \"imp7654645540\",\n        \"imp7654645525\",\n        \"imp7654645545\",\n        \"imp7654645571\",\n        \"imp7654645583\",\n        \"imp7654645737\",\n        \"imp7654645731\",\n        \"imp4697069040\",\n        \"imp7654645701\",\n        \"imp7654645764\",\n        \"imp7654645510\",\n        \"imp7654645573\",\n        \"imp7654645702\",\n        \"imp7654645730\",\n        \"imp7654645750\",\n        \"imp7654645736\",\n        \"imp7654645537\",\n        \"imp7654645575\",\n        \"imp7654645520\",\n        \"imp7654645591\",\n        \"imp7654645542\",\n        \"imp7654645595\",\n        \"imp7654645508\",\n        \"imp7654645707\",\n        \"imp7654645518\",\n        \"imp7654645515\",\n        \"imp00362-071230\",\n        \"imp4697069018\",\n        \"imp4697069046\",\n        \"imp4697069022\",\n        \"imp4697069023\",\n        \"imp4697069027\",\n        \"imp4697069036\",\n        \"imp00362-029051\",\n        \"imp4697069019\",\n        \"imp4697069048\",\n        \"imp4697069016\",\n        \"imp4697069038\",\n        \"imp4697069053\",\n        \"imp2567014034\",\n        \"imp8435369162\",\n        \"imp2039262794\",\n        \"imp2039262747\",\n        \"imp2039262769\",\n        \"imp9499426770\",\n        \"imp6304397249\",\n        \"imp2567014033\",\n        \"imp2563448918\",\n        \"imp6365911985\",\n        \"imp7869238776\",\n        \"imp2034561198\",\n        \"imp2039257943\",\n        \"imp2034561203\",\n        \"imp2567014018\",\n        \"imp2566848868\",\n        \"imp2039262707\",\n        \"imp2167706191\",\n        \"imp2034561213\",\n        \"imp2039262732\",\n        \"imp2039262736\",\n        \"imp9496297507\",\n        \"imp2034561216\",\n        \"imp8186981763\",\n        \"imp7869238779\",\n        \"imp8028708119\",\n        \"imp2034561208\",\n        \"imp2039262702\",\n        \"imp2034561210\",\n        \"imp5618671552\",\n        \"imp4697069015\",\n        \"imp2034561201\",\n        \"imp8644791934\",\n        \"imp8644791933\",\n        \"imp2568868844\",\n        \"imp9713454286\",\n        \"imp4697069041\",\n        \"imp9494327514\",\n        \"imp4697069049\",\n        \"imp2674153621\",\n        \"imp2039257954\",\n        \"imp2034561207\",\n        \"imp2522891942\",\n        \"imp2034561214\",\n        \"imp7046844203\",\n        \"imp2034561202\",\n        \"imp2034561205\",\n        \"imp2039257941\",\n        \"imp9494327516\",\n        \"imp4697069017\",\n        \"imp3152808986\",\n        \"imp9849837004\",\n        \"imp2566848877\",\n        \"imp4697069025\",\n        \"imp00362-047077\",\n        \"imp4697069021\",\n        \"imp4697069020\",\n        \"imp2566938898\",\n        \"imp2568868824\",\n        \"imp9496297501\",\n        \"imp3152808985\",\n        \"imp2674153620\",\n        \"imp9494327511\",\n        \"imp9494327517\",\n        \"imp9494327518\",\n        \"imp2564958389\",\n        \"imp9496297567\",\n        \"imp6195351282\",\n        \"imp9494327515\",\n        \"imp9713454287\",\n        \"imp6198161622\",\n        \"imp7869238771\",\n        \"imp5618671553\",\n        \"imp4704813151\",\n        \"imp7654645763\",\n        \"imp7654645774\",\n        \"imp8435369161\",\n        \"imp2034561209\",\n        \"imp7654645758\",\n        \"imp9494327513\",\n        \"imp2039262779\",\n        \"imp9013167013\",\n        \"imp9417774745\",\n        \"imp9494327512\",\n        \"imp8186981764\",\n        \"imp2568868778\",\n        \"imp8056839440\",\n        \"imp8058804247\",\n        \"imp8057244273\",\n        \"imp8057244274\",\n        \"imp8057244275\",\n        \"imp8054561299\",\n        \"imp8056867361\",\n        \"imp8056867344\",\n        \"imp8056867322\",\n        \"imp8056867369\",\n        \"imp8056867367\",\n        \"imp8056867347\",\n        \"imp8056867349\",\n        \"imp8056867351\",\n        \"8807\",\n        \"8808\",\n        \"imp8056867353\",\n        \"8809\",\n        \"8810\",\n        \"8811\",\n        \"8812\",\n        \"8813\",\n        \"8814\",\n        \"8815\",\n        \"8802\",\n        \"8803\",\n        \"imp8056867350\",\n        \"imp8056867302\",\n        \"8804\",\n        \"8805\",\n        \"8806\",\n        \"imp8056867362\",\n        \"imp8056867356\",\n        \"imp8056867371\",\n        \"imp8056867373\",\n        \"imp8056867338\",\n        \"imp8056867395\",\n        \"imp8056867318\",\n        \"imp8056867336\",\n        \"imp00373-028800\",\n        \"8801\",\n        \"imp8056867386\",\n        \"imp8056867366\",\n        \"imp8056867319\",\n        \"imp8056867331\",\n        \"imp8056867335\",\n        \"imp8056867325\",\n        \"imp8056867396\",\n        \"imp8056867355\",\n        \"imp8056867365\",\n        \"imp8056867397\",\n        \"imp8056867333\",\n        \"imp8056867327\",\n        \"imp8056867379\",\n        \"imp8056867346\",\n        \"imp8056867364\",\n        \"imp8056867368\",\n        \"imp8056867358\",\n        \"imp8056867375\",\n        \"imp8056867341\",\n        \"imp8056867394\",\n        \"imp8056867337\",\n        \"imp8056867345\",\n        \"imp8056867380\",\n        \"imp8056867343\",\n        \"imp00373-027299\",\n        \"imp8056867308\",\n        \"imp8056867393\",\n        \"imp8056867301\",\n        \"imp8056867332\",\n        \"imp8056867303\",\n        \"imp8056867329\",\n        \"imp8056867339\",\n        \"imp8056867316\",\n        \"imp8056867374\",\n        \"imp8056867328\",\n        \"imp8056867317\",\n        \"imp8056867315\",\n        \"imp8056867324\",\n        \"imp00373-02-trunk\",\n        \"imp00373-027297\",\n        \"imp8056867326\",\n        \"imp8056867311\",\n        \"imp8056867348\",\n        \"imp8056867320\",\n        \"imp8056867342\",\n        \"imp8056867359\",\n        \"imp8056867334\",\n        \"imp8056867330\",\n        \"imp8056867312\",\n        \"imp8056867309\",\n        \"imp8056867306\",\n        \"imp8056867363\",\n        \"imp00373-011000\",\n        \"00373-01-directory\",\n        \"00377-01-directory\",\n        \"imp8059615378\",\n        \"imp8059615367\",\n        \"imp8059615379\",\n        \"imp8059615376\",\n        \"imp8059615374\",\n        \"imp8059666961\",\n        \"imp8059615360\",\n        \"imp8059622101\",\n        \"imp8059615368\",\n        \"imp8059665073\",\n        \"imp8059615362\",\n        \"imp8059615365\",\n        \"imp8059615369\",\n        \"imp8059615377\",\n        \"imp9516146313\",\n        \"imp9516146314\",\n        \"imp9516146315\",\n        \"imp8054570377\",\n        \"imp7738315521\",\n        \"imp7738315307\",\n        \"imp7738315649\",\n        \"imp7738315519\",\n        \"00386-02500\",\n        \"imp7738315542\",\n        \"imp8058563445\",\n        \"imp7738315513\",\n        \"imp8056997312\",\n        \"imp8056997307\",\n        \"imp8056997304\",\n        \"imp8056997309\",\n        \"imp8056975202\",\n        \"imp00389-02501\",\n        \"imp00389-02502\",\n        \"imp8056975201\",\n        \"imp8056997313\",\n        \"imp8056997311\",\n        \"imp8056997303\",\n        \"imp8056997301\",\n        \"imp8056997305\",\n        \"imp8056997310\",\n        \"imp00389-02320\",\n        \"imp8056997306\",\n        \"imp8056997308\",\n        \"imp8056997302\",\n        \"imp8056903653\",\n        \"imp8056903652\",\n        \"imp8054374899\",\n        \"z-dir-00393-01\",\n        \"imp2065043645\",\n        \"imp8057414200\",\n        \"imp8057414203\",\n        \"imp8057414202\",\n        \"imp8057414201\",\n        \"imp8057414204\",\n        \"imp8057414206\",\n        \"imp8057414205\",\n        \"imp8056864707\",\n        \"imp8056864706\",\n        \"imp8059674568\",\n        \"imp8059674569\",\n        \"imp8059675399\",\n        \"imp8057300953\",\n        \"imp8057300950\",\n        \"imp8057300954\",\n        \"imp8057300959\",\n        \"imp8057300951\",\n        \"imp8057300958\",\n        \"imp8057300952\",\n        \"imp8057300955\",\n        \"imp8057300956\",\n        \"imp8057300963\",\n        \"imp8057300961\",\n        \"imp8057300960\",\n        \"imp8057300962\",\n        \"imp8057554626\",\n        \"imp8057554624\",\n        \"imp8057554621\",\n        \"imp8057554620\",\n        \"imp8057554622\",\n        \"imp8057554625\",\n        \"imp8057300965\",\n        \"imp8057300966\",\n        \"imp00282-02-trunk\",\n        \"8005137455\",\n        \"8055629120\",\n        \"8054567151@00282.impulsevoip.net\",\n        \"8054567152@00282.impulsevoip.net\",\n        \"8054567153@00282.impulsevoip.net\",\n        \"8054567154@00282.impulsevoip.net\",\n        \"8054567155@00282.impulsevoip.net\",\n        \"8054567156@00282.impulsevoip.net\",\n        \"8054567157@00282.impulsevoip.net\",\n        \"8054567158@00282.impulsevoip.net\",\n        \"8054567159@00282.impulsevoip.net\",\n        \"8054567160@00282.impulsevoip.net\",\n        \"8054567161@00282.impulsevoip.net\",\n        \"8054567162@00282.impulsevoip.net\",\n        \"8054567163@00282.impulsevoip.net\",\n        \"8054567164@00282.impulsevoip.net\",\n        \"8054567165@00282.impulsevoip.net\",\n        \"8054567166@00282.impulsevoip.net\",\n        \"8054567187@00282.impulsevoip.net\",\n        \"8054567188@00282.impulsevoip.net\",\n        \"8054567189@00282.impulsevoip.net\",\n        \"8054567194@00282.impulsevoip.net\",\n        \"8055629860@00282.impulsevoip.net\",\n        \"8056173453@00282.impulsevoip.net\",\n        \"8056181482@00282.impulsevoip.net\",\n        \"8058807550@00282.impulsevoip.net\",\n        \"8058807551@00282.impulsevoip.net\",\n        \"8058807552@00282.impulsevoip.net\",\n        \"8058807553@00282.impulsevoip.net\",\n        \"8058807554@00282.impulsevoip.net\",\n        \"8058807555@00282.impulsevoip.net\",\n        \"8058807556@00282.impulsevoip.net\",\n        \"8058807557@00282.impulsevoip.net\",\n        \"8058807558@00282.impulsevoip.net\",\n        \"8058807559@00282.impulsevoip.net\",\n        \"8058807560@00282.impulsevoip.net\",\n        \"8058807561@00282.impulsevoip.net\",\n        \"8058807562@00282.impulsevoip.net\",\n        \"8058807563@00282.impulsevoip.net\",\n        \"8058807564@00282.impulsevoip.net\",\n        \"8058807565@00282.impulsevoip.net\",\n        \"8058807566@00282.impulsevoip.net\",\n        \"8058807567@00282.impulsevoip.net\",\n        \"8058807568@00282.impulsevoip.net\",\n        \"8058807569@00282.impulsevoip.net\",\n        \"8058807570@00282.impulsevoip.net\",\n        \"8058807571@00282.impulsevoip.net\",\n        \"8058807572@00282.impulsevoip.net\",\n        \"8058807573@00282.impulsevoip.net\",\n        \"8058807574@00282.impulsevoip.net\",\n        \"8058807575@00282.impulsevoip.net\",\n        \"8058807576@00282.impulsevoip.net\",\n        \"8058807577@00282.impulsevoip.net\",\n        \"8058807578@00282.impulsevoip.net\",\n        \"8058807579@00282.impulsevoip.net\",\n        \"8058807580@00282.impulsevoip.net\",\n        \"8058807581@00282.impulsevoip.net\",\n        \"8058807582@00282.impulsevoip.net\",\n        \"8058807583@00282.impulsevoip.net\",\n        \"8058807584@00282.impulsevoip.net\",\n        \"8058807585@00282.impulsevoip.net\",\n        \"8058807586@00282.impulsevoip.net\",\n        \"8058807587@00282.impulsevoip.net\",\n        \"8058807588@00282.impulsevoip.net\",\n        \"8058807589@00282.impulsevoip.net\",\n        \"8058807590@00282.impulsevoip.net\",\n        \"8058807591@00282.impulsevoip.net\",\n        \"8058807592@00282.impulsevoip.net\",\n        \"8058807593@00282.impulsevoip.net\",\n        \"8058807594@00282.impulsevoip.net\",\n        \"8058807595@00282.impulsevoip.net\",\n        \"8058807596@00282.impulsevoip.net\",\n        \"8058807597@00282.impulsevoip.net\",\n        \"8058807598@00282.impulsevoip.net\",\n        \"8058807599@00282.impulsevoip.net\",\n        \"8059611612@00282.impulsevoip.net\",\n        \"8059611613@00282.impulsevoip.net\",\n        \"8059611614@00282.impulsevoip.net\",\n        \"8059611615@00282.impulsevoip.net\",\n        \"8059611621@00282.impulsevoip.net\",\n        \"8059611622@00282.impulsevoip.net\",\n        \"8059611623@00282.impulsevoip.net\",\n        \"8059611641@00282.impulsevoip.net\",\n        \"8059611642@00282.impulsevoip.net\",\n        \"8059611643@00282.impulsevoip.net\",\n        \"8059611651@00282.impulsevoip.net\",\n        \"8059611652@00282.impulsevoip.net\",\n        \"8059611654@00282.impulsevoip.net\",\n        \"8059611655@00282.impulsevoip.net\",\n        \"8059611661@00282.impulsevoip.net\",\n        \"8059611662@00282.impulsevoip.net\",\n        \"8059611681@00282.impulsevoip.net\",\n        \"8059611682@00282.impulsevoip.net\",\n        \"8182493290@00282.impulsevoip.net\",\n        \"8442206217@00282.impulsevoip.net\",\n        \"8442206502@00282.impulsevoip.net\",\n        \"8442206503@00282.impulsevoip.net\",\n        \"8442206504@00282.impulsevoip.net\",\n        \"8442206505@00282.impulsevoip.net\",\n        \"8442206506@00282.impulsevoip.net\",\n        \"8442206507@00282.impulsevoip.net\",\n        \"8442206508@00282.impulsevoip.net\",\n        \"8442206509@00282.impulsevoip.net\",\n        \"8442206510@00282.impulsevoip.net\",\n        \"8775060946@00282.impulsevoip.net\",\n        \"8775964340@00282.impulsevoip.net\",\n        \"8059611611@00282.impulsevoip.net\",\n        \"8773407911@00282.impulsevoip.net\",\n        \"imp4242013773\",\n        \"imp4242013748\",\n        \"imp4242013740\",\n        \"imp4242013743\",\n        \"imp4242013777\",\n        \"imp4242013749\",\n        \"imp4242013759\",\n        \"imp4242013766\",\n        \"imp4242013769\",\n        \"imp4242013771\",\n        \"imp4242013751\",\n        \"imp4242013758\",\n        \"imp4242013750\",\n        \"imp4242013761\",\n        \"imp4242013745\",\n        \"imp4242013757\",\n        \"imp00404-01100\",\n        \"imp4242013760\",\n        \"imp4242013767\",\n        \"imp4242013763\",\n        \"imp4242013741\",\n        \"imp4242013746\",\n        \"imp4242013752\",\n        \"imp4242013742\",\n        \"imp4242013675\",\n        \"imp4242013747\",\n        \"imp4242013755\",\n        \"imp4242013772\",\n        \"imp4242013768\",\n        \"imp4242013774\",\n        \"imp4242013765\",\n        \"imp4242013762\",\n        \"imp4242013770\",\n        \"imp4242013764\",\n        \"imp4242013744\",\n        \"imp4242013676\",\n        \"imp8055660483\",\n        \"imp8055662454\",\n        \"imp8055662456\",\n        \"imp8057452426\",\n        \"imp8055662457\",\n        \"imp8055662450\",\n        \"imp8055662451\",\n        \"imp8057452425\",\n        \"imp00406-02595\",\n        \"imp00406-02596\",\n        \"imp8055662458\",\n        \"imp8055660582\",\n        \"imp8055662455\",\n        \"imp8055662453\",\n        \"imp8057452434\",\n        \"imp8057451368\",\n        \"imp8057452437\",\n        \"imp8057452436\",\n        \"imp8057452435\",\n        \"imp8057452438\",\n        \"imp8052730440\",\n        \"imp8057452439\",\n        \"imp8059802901\",\n        \"imp8059802903\",\n        \"imp00408-02987\",\n        \"imp8059802906\",\n        \"imp8059802908\",\n        \"imp8059802907\",\n        \"imp8059802904\",\n        \"imp8059802902\",\n        \"imp8055685206\",\n        \"imp8055685227\",\n        \"imp8055685223\",\n        \"imp8055660271\",\n        \"imp8055685243\",\n        \"imp8055660268\",\n        \"imp8055685256\",\n        \"imp00413-02403\",\n        \"imp8055685216\",\n        \"imp8055660266\",\n        \"imp8055685217\",\n        \"imp8055685274\",\n        \"imp8055685232\",\n        \"imp8055685202\",\n        \"imp8055685224\",\n        \"imp8055685262\",\n        \"imp00413-02ext209\",\n        \"imp8055685239\",\n        \"imp8055685226\",\n        \"imp8055600441\",\n        \"imp8055685225\",\n        \"imp8055661173\",\n        \"imp8055685238\",\n        \"imp8055685234\",\n        \"imp8055685263\",\n        \"imp8055685277\",\n        \"imp8055685233\",\n        \"imp8055685241\",\n        \"imp8055685214\",\n        \"imp8055660267\",\n        \"imp8055685254\",\n        \"imp00413-02402\",\n        \"imp8055660272\",\n        \"imp8055685231\",\n        \"imp8055685222\",\n        \"imp8055685240\",\n        \"imp8055685210\",\n        \"imp8055685212\",\n        \"imp8056031323\",\n        \"imp00413-01100\",\n        \"imp8056901294\",\n        \"imp8056901292\",\n        \"imp8056901293\",\n        \"imp8056901291\",\n        \"imp00417-112000\",\n        \"imp00417-112002\",\n        \"imp00417-112001\",\n        \"imp00417-011000\",\n        \"imp00417-092201\",\n        \"imp00417-092205\",\n        \"imp00417-091811\",\n        \"imp00417-091844\",\n        \"imp00417-092200\",\n        \"imp00417-092203\",\n        \"imp00417-092204\",\n        \"imp00417-082114\",\n        \"imp00417-082117\",\n        \"imp00417-082100\",\n        \"imp00417-082134\",\n        \"imp00417-082115\",\n        \"00417-041862\",\n        \"imp00417-041815\",\n        \"imp00417-041810\",\n        \"imp00417-041864\",\n        \"imp00417-041812\",\n        \"imp00417-041865\",\n        \"imp00417-041819\",\n        \"imp00417-041806\",\n        \"imp00417-041875\",\n        \"imp00417-041816\",\n        \"imp00417-041801\",\n        \"imp00417-041854\",\n        \"imp00417-041831\",\n        \"imp00417-041880\",\n        \"imp00417-041840\",\n        \"imp00417-041846\",\n        \"imp00417-041852\",\n        \"imp00417-041858\",\n        \"imp00417-041874\",\n        \"imp00417-041843\",\n        \"imp00417-041866\",\n        \"imp00417-041827\",\n        \"imp00417-041842\",\n        \"imp00417-041837\",\n        \"imp00417-041814\",\n        \"imp00417-041867\",\n        \"imp00417-041861\",\n        \"imp00417-041855\",\n        \"imp00417-041859\",\n        \"imp00417-041808\",\n        \"imp00417-041890\",\n        \"imp00417-041813\",\n        \"imp00417-041853\",\n        \"imp00417-041125\",\n        \"imp00417-041845\",\n        \"imp00417-041863\",\n        \"imp00417-041873\",\n        \"imp00417-041821\",\n        \"imp00417-041856\",\n        \"imp00417-041805\",\n        \"imp00417-041817\",\n        \"imp00417-041825\",\n        \"imp00417-041802\",\n        \"imp00417-041851\",\n        \"imp00417-041836\",\n        \"imp00417-041833\",\n        \"imp00417-041826\",\n        \"imp00417-041824\",\n        \"imp00417-041822\",\n        \"imp00417-041876\",\n        \"imp00417-041860\",\n        \"imp00417-041807\",\n        \"imp00417-041877\",\n        \"imp00417-041828\",\n        \"imp00417-041820\",\n        \"00417-041835\",\n        \"imp00417-041803\",\n        \"imp00417-041847\",\n        \"imp00417-041849\",\n        \"imp00417-041834\",\n        \"imp00417-041841\",\n        \"imp00417-041857\",\n        \"imp00417-041872\",\n        \"imp00417-041823\",\n        \"imp00417-041804\",\n        \"imp00417-041809\",\n        \"imp00417-041800\",\n        \"imp00417-041848\",\n        \"imp00417-041881\",\n        \"imp00417-021161\",\n        \"imp00417-021134\",\n        \"imp00417-021135\",\n        \"imp00417-021114\",\n        \"imp00417-021122\",\n        \"imp00417-021138\",\n        \"imp00417-021117\",\n        \"imp00417-021130\",\n        \"imp00417-021119\",\n        \"imp00417-021113\",\n        \"imp00417-021112\",\n        \"imp00417-032300\",\n        \"imp00417-032301\",\n        \"imp00417-032302\",\n        \"imp00417-032304\",\n        \"imp00417-032306\",\n        \"imp00417-032305\",\n        \"imp00417-032307\",\n        \"imp00417-032303\",\n        \"imp8056905185\",\n        \"imp8053352556\",\n        \"imp8053352553\",\n        \"imp8053352555\",\n        \"imp00420-02566\",\n        \"imp8053352557\",\n        \"imp8053352550\",\n        \"imp00420-02567\",\n        \"imp8053352554\",\n        \"imp8053352551\",\n        \"imp8058804234\",\n        \"imp8058804230\",\n        \"imp8058804232\",\n        \"imp8058804233\",\n        \"imp8058804231\",\n        \"imp8058451814\",\n        \"imp8058456797\",\n        \"imp8058456877\",\n        \"imp8058456825\",\n        \"imp8058456831\",\n        \"imp8057708156\",\n        \"imp8058456863\",\n        \"imp8058456806\",\n        \"imp8057825212\",\n        \"imp8329152857\",\n        \"imp8329152853\",\n        \"imp8329152851\",\n        \"imp7135749526\",\n        \"imp7135749528\",\n        \"imp7135749525\",\n        \"imp7135749529\",\n        \"imp3614330718\",\n        \"imp3614330815\",\n        \"imp3614330929\",\n        \"imp3614334552\",\n        \"imp3615414111\",\n        \"imp00432-01200\",\n        \"imp8054368411\",\n        \"imp8054368410\",\n        \"imp8054368407\",\n        \"imp8054368403\",\n        \"imp8054368416\",\n        \"imp8054368404\",\n        \"imp8054368406\",\n        \"imp8054368415\",\n        \"imp8054368420\",\n        \"imp8054368413\",\n        \"imp8054368409\",\n        \"imp8054368408\",\n        \"imp8054368405\",\n        \"imp8054368418\",\n        \"imp8054368417\",\n        \"imp00432-02302\",\n        \"imp00432-02303\",\n        \"imp00432-02300\",\n        \"imp00432-02301\",\n        \"imp8054368401\",\n        \"imp8054368402\",\n        \"imp8054368414\",\n        \"imp00432-02304\",\n        \"imp8053089751\",\n        \"imp8053089752\",\n        \"imp8053089753\",\n        \"imp8053089750\",\n        \"imp00431-011111\",\n        \"imp8052612604\",\n        \"imp8055392734\",\n        \"imp8052612520\",\n        \"imp8055392739\",\n        \"imp8055392731\",\n        \"imp8052612526\",\n        \"imp8052612484\",\n        \"imp8052612522\",\n        \"imp8052612475\",\n        \"imp8055392730\",\n        \"imp8052612481\",\n        \"imp8052612490\",\n        \"imp8052612534\",\n        \"imp8052612602\",\n        \"imp8052612486\",\n        \"imp8052612487\",\n        \"imp8052612540\",\n        \"imp8055392741\",\n        \"imp8052612476\",\n        \"imp8055392745\",\n        \"imp8052612480\",\n        \"imp8052612539\",\n        \"imp8052612532\",\n        \"imp8055392740\",\n        \"imp8055392725\",\n        \"imp8058801692\",\n        \"imp8052612491\",\n        \"imp8052612492\",\n        \"imp8052612538\",\n        \"imp8052612477\",\n        \"imp8052612536\",\n        \"imp8052612478\",\n        \"imp8055392789\",\n        \"imp8052612541\",\n        \"imp8055392735\",\n        \"imp8055392738\",\n        \"imp8053089756\",\n        \"imp8052612485\",\n        \"imp8055392736\",\n        \"imp8052612529\",\n        \"imp8052612525\",\n        \"imp8052612489\",\n        \"imp8052612530\",\n        \"imp8058880296\",\n        \"imp8058880297\",\n        \"imp8052612605\",\n        \"imp8052612528\",\n        \"imp8052612603\",\n        \"imp8052612488\",\n        \"imp8052612527\",\n        \"imp8052612482\",\n        \"imp8055392732\",\n        \"imp8052612521\",\n        \"imp8052612524\",\n        \"imp8052612533\",\n        \"imp8052612479\",\n        \"imp8055392747\",\n        \"imp8055392216\",\n        \"imp8055392737\",\n        \"imp8055392729\",\n        \"imp00431-021001\",\n        \"imp8052612523\",\n        \"imp8055392728\",\n        \"imp8052612537\",\n        \"imp8052612542\",\n        \"imp8053089708\",\n        \"imp8053089709\",\n        \"imp8055392726\",\n        \"imp8055392727\",\n        \"imp8058801696\",\n        \"imp8058801693\",\n        \"imp8058801694\",\n        \"imp8058803580\",\n        \"imp8052612483\",\n        \"imp8052612495\",\n        \"imp8052612493\",\n        \"imp8055392733\",\n        \"imp8052612535\",\n        \"imp8052612497\",\n        \"imp8055392744\",\n        \"imp8052612531\",\n        \"imp8052612498\",\n        \"imp8055392742\",\n        \"imp8052612494\",\n        \"imp8052612499\",\n        \"imp8055392748\",\n        \"imp00431-031022\",\n        \"imp8052612496\",\n        \"imp8055392743\",\n        \"imp8055392756\",\n        \"imp8058809452\",\n        \"imp8058809395\",\n        \"imp8058809399\",\n        \"imp8058809394\",\n        \"imp8058809396\",\n        \"imp8058809398\",\n        \"imp8058809397\",\n        \"imp8058809351\",\n        \"imp8058809350\",\n        \"imp8058809390\",\n        \"imp8058809387\",\n        \"imp8058809352\",\n        \"imp8058809391\",\n        \"imp8058809374\",\n        \"imp8058809356\",\n        \"imp8058809370\",\n        \"imp8058809373\",\n        \"imp8058809388\",\n        \"imp8058809382\",\n        \"imp8058809372\",\n        \"imp8058809354\",\n        \"imp8058809377\",\n        \"imp8058809392\",\n        \"imp8058809383\",\n        \"imp8058809386\",\n        \"imp8058809357\",\n        \"imp8058809368\",\n        \"imp8058809369\",\n        \"imp8058809365\",\n        \"imp8058809375\",\n        \"imp8058809378\",\n        \"imp8058809385\",\n        \"imp8058809380\",\n        \"imp8058809358\",\n        \"imp8058809355\",\n        \"imp8058809384\",\n        \"imp8058809353\",\n        \"imp8058809362\",\n        \"imp8058809371\",\n        \"imp8058809450\",\n        \"imp8058809389\",\n        \"imp8058809360\",\n        \"imp8058809367\",\n        \"imp8058809366\",\n        \"imp8058809364\",\n        \"imp8058809359\",\n        \"imp8058809381\",\n        \"imp8058809361\",\n        \"imp8058809363\",\n        \"imp8058809376\",\n        \"imp8058809379\",\n        \"imp8053575764\",\n        \"imp8053575763\",\n        \"imp8053575745\",\n        \"imp8053575767\",\n        \"imp8053575766\",\n        \"imp8053575770\",\n        \"imp8053575773\",\n        \"imp8053575769\",\n        \"imp8053575762\",\n        \"imp8053575772\",\n        \"imp8053575765\",\n        \"imp00434-03299\",\n        \"imp8053575775\",\n        \"imp8053575761\",\n        \"imp8053575771\",\n        \"imp00434-03200\",\n        \"imp8053575731\",\n        \"imp8053575734\",\n        \"imp8053575739\",\n        \"imp8053575732\",\n        \"imp8053575740\",\n        \"imp8053575733\",\n        \"imp8053575735\",\n        \"imp8053575751\",\n        \"imp00434-04399\",\n        \"imp8053575738\",\n        \"imp8053575736\",\n        \"imp8053575746\",\n        \"imp8053575741\",\n        \"imp8053575744\",\n        \"imp8053575742\",\n        \"imp8053575743\",\n        \"imp8053575753\",\n        \"imp8053575755\",\n        \"imp8053575749\",\n        \"imp8053575757\",\n        \"imp8053575758\",\n        \"imp8053575759\",\n        \"imp8053575747\",\n        \"imp8053575756\",\n        \"imp8053575737\",\n        \"imp8053575774\",\n        \"imp8053575754\",\n        \"imp8053575760\",\n        \"imp8053575750\",\n        \"imp8053575752\",\n        \"imp8056833507\",\n        \"imp00434-01300\",\n        \"imp8059667441\",\n        \"imp8054565918\",\n        \"imp8054565904\",\n        \"imp8054565903\",\n        \"imp8054565925\",\n        \"imp8054565990\",\n        \"imp8054565909\",\n        \"imp8054565924\",\n        \"imp8054565902\",\n        \"imp8054565922\",\n        \"imp8054565921\",\n        \"imp8054565989\",\n        \"imp8054565910\",\n        \"imp8058804107\",\n        \"imp8058804106\",\n        \"imp8058804105\",\n        \"imp8058804109\",\n        \"imp8058804108\",\n        \"imp8056905407\",\n        \"imp8056905408\",\n        \"imp8056905409\",\n        \"imp8056181420\",\n        \"imp8056905401\",\n        \"imp8056905422\",\n        \"imp8056905420\",\n        \"imp8056905418\",\n        \"imp8056905419\",\n        \"imp8054763415\",\n        \"imp8054763417\",\n        \"imp8054763416\",\n        \"imp8054763420\",\n        \"imp8056904601\",\n        \"imp8056904603\",\n        \"imp8056904602\",\n        \"imp8056904604\",\n        \"imp8056905300\",\n        \"imp8057414265\",\n        \"imp8057414244\",\n        \"imp8057414267\",\n        \"imp8053575779\",\n        \"imp8057414266\",\n        \"imp8057414260\",\n        \"imp8057414262\",\n        \"imp8057414263\",\n        \"imp8057414250\",\n        \"imp8057414255\",\n        \"imp8057414256\",\n        \"imp8057414257\",\n        \"imp8057414264\",\n        \"imp8057414245\",\n        \"imp8057414268\",\n        \"imp8057414246\",\n        \"imp8057414269\",\n        \"imp8057414254\",\n        \"imp8053575787\",\n        \"imp8053575776\",\n        \"imp8053575777\",\n        \"imp8053575788\",\n        \"imp8059631435\",\n        \"imp8053575782\",\n        \"imp8053575781\",\n        \"imp8057221330\",\n        \"imp8053575786\",\n        \"imp8059631434\",\n        \"imp8053575785\",\n        \"imp8057414270\",\n        \"imp8053575778\",\n        \"imp8053575780\",\n        \"imp8053575789\",\n        \"imp8057221335\",\n        \"imp8053575784\",\n        \"imp8057221317\",\n        \"imp8057221318\",\n        \"imp8059626195\",\n        \"imp8053088546\",\n        \"imp8053088543\",\n        \"imp8053088550\",\n        \"imp8053088542\",\n        \"imp8053088544\",\n        \"imp8053088552\",\n        \"imp8053088549\",\n        \"imp8059637221\",\n        \"imp8053088545\",\n        \"imp8053088548\",\n        \"imp00450-03213\",\n        \"imp8053088547\",\n        \"imp8053088551\",\n        \"imp8053088541\",\n        \"imp8054561220\",\n        \"imp8054565079\",\n        \"imp8054561222\",\n        \"imp8054562732\",\n        \"imp8054561215\",\n        \"imp8054561213\",\n        \"imp8054561238\",\n        \"imp8054561237\",\n        \"imp8054565078\",\n        \"imp8054561234\",\n        \"imp8054561230\",\n        \"imp8054565077\",\n        \"imp8054561218\",\n        \"imp8054561233\",\n        \"imp8054561229\",\n        \"imp8054561217\",\n        \"imp8054561216\",\n        \"imp8054561240\",\n        \"imp8054562731\",\n        \"imp8054561223\",\n        \"imp8054562730\",\n        \"imp8054561236\",\n        \"imp8054561221\",\n        \"imp8054561219\",\n        \"imp00450-04555\",\n        \"imp00450-04510\",\n        \"imp8057221307\",\n        \"imp8057221305\",\n        \"imp8057221339\",\n        \"imp8055680089\",\n        \"imp8057221321\",\n        \"imp8057221327\",\n        \"imp8057221301\",\n        \"imp8057221303\",\n        \"imp8057221313\",\n        \"imp8057221320\",\n        \"imp8057221311\",\n        \"imp8057221329\",\n        \"imp8057221306\",\n        \"imp8057221322\",\n        \"imp8057221315\",\n        \"imp8057221325\",\n        \"TESTTEST\",\n        \"imp8057221336\",\n        \"imp8057221312\",\n        \"imp8057221316\",\n        \"imp8057221310\",\n        \"imp8057221304\",\n        \"imp8057221308\",\n        \"imp8059625387\",\n        \"imp8057221309\",\n        \"imp8057221334\",\n        \"imp8057221328\",\n        \"imp8057221302\",\n        \"imp8057221333\",\n        \"imp8057221331\",\n        \"imp8057221324\",\n        \"imp8057221314\",\n        \"imp00451-02108\",\n        \"imp00451-02107\",\n        \"imp00451-02103\",\n        \"imp00451-02106\",\n        \"imp00451-02102\",\n        \"imp00451-02101\",\n        \"imp00451-02104\",\n        \"imp00451-02109\",\n        \"imp00451-02222\",\n        \"imp00451-02333\",\n        \"imp00451-02444\",\n        \"imp00451-02105\",\n        \"imp8058804283\",\n        \"imp8058804286\",\n        \"imp8058804248\",\n        \"imp8058804249\",\n        \"imp8058807153\",\n        \"imp8058807151\",\n        \"imp8058807152\",\n        \"imp8058807154\",\n        \"imp8056905271\",\n        \"imp8056905272\",\n        \"imp8057825273\",\n        \"imp8057825274\",\n        \"imp8056905277\",\n        \"imp5598255275\",\n        \"imp5598255276\",\n        \"imp8312963321\",\n        \"imp8312963357\",\n        \"imp8312963345\",\n        \"imp8054565114\",\n        \"imp8054565116\",\n        \"imp8054565113\",\n        \"imp8054565115\",\n        \"imp8058803582\",\n        \"imp8058971168\",\n        \"imp8058971167\",\n        \"imp8058971133\",\n        \"imp8058971144\",\n        \"imp00463-01200\",\n        \"imp8058691151\",\n        \"imp8058691131\",\n        \"imp8058691154\",\n        \"imp8058691132\",\n        \"imp8058691157\",\n        \"imp8058691128\",\n        \"imp8058691129\",\n        \"imp8058691138\",\n        \"imp8058691155\",\n        \"imp8058691104\",\n        \"imp8058691116\",\n        \"imp8058691125\",\n        \"imp8058691109\",\n        \"imp8058691122\",\n        \"imp8058691107\",\n        \"imp8058691115\",\n        \"imp8058691140\",\n        \"imp8058691123\",\n        \"imp8058691112\",\n        \"imp8058691139\",\n        \"imp8058691108\",\n        \"imp8058691100\",\n        \"imp8058691127\",\n        \"imp8058691110\",\n        \"imp8058691101\",\n        \"imp8058691102\",\n        \"imp8056902738\",\n        \"imp8056902737\",\n        \"imp8056905342\",\n        \"imp8056905386\",\n        \"imp8056905381\",\n        \"imp8056905353\",\n        \"imp8056905332\",\n        \"imp8056905365\",\n        \"imp8056905354\",\n        \"imp8056905387\",\n        \"imp8056905328\",\n        \"imp8056905361\",\n        \"imp8056905358\",\n        \"imp8056905331\",\n        \"imp8056905334\",\n        \"imp8056905357\",\n        \"imp8056905345\",\n        \"imp8056905372\",\n        \"imp8056905383\",\n        \"imp8056905348\",\n        \"imp8056905341\",\n        \"imp8056905340\",\n        \"imp8056905336\",\n        \"imp8056905347\",\n        \"imp8056905352\",\n        \"imp8056905377\",\n        \"imp8056905320\",\n        \"imp8056905376\",\n        \"imp8056905380\",\n        \"imp8056905379\",\n        \"imp8056905382\",\n        \"imp8056905351\",\n        \"imp8056905366\",\n        \"imp8056905344\",\n        \"imp8056905356\",\n        \"imp8056905368\",\n        \"imp8056905350\",\n        \"imp8056905355\",\n        \"imp8056905330\",\n        \"imp8056905360\",\n        \"imp8056905335\",\n        \"imp8056905367\",\n        \"imp8056905343\",\n        \"imp8056905375\",\n        \"imp8056905349\",\n        \"imp8056905338\",\n        \"imp8056905362\",\n        \"imp8056905363\",\n        \"imp8056905329\",\n        \"imp8056905337\",\n        \"imp8056905359\",\n        \"imp8056905385\",\n        \"imp8056905373\",\n        \"imp8056905369\",\n        \"imp8056905346\",\n        \"imp8056905399\",\n        \"imp8056905396\",\n        \"imp8052433890\",\n        \"imp8052433892\",\n        \"imp8052433891\",\n        \"imp8056905161\",\n        \"imp8056905165\",\n        \"imp8056905157\",\n        \"imp8059635111\",\n        \"imp8059635117\",\n        \"imp8059799769\",\n        \"imp8059799384\",\n        \"imp8056905175\",\n        \"imp8059793368\",\n        \"imp8056905168\",\n        \"imp8059635114\",\n        \"imp8059799391\",\n        \"imp8059793378\",\n        \"imp8059799381\",\n        \"imp8059635116\",\n        \"imp8056905178\",\n        \"imp8056905162\",\n        \"imp8059799390\",\n        \"imp8056905179\",\n        \"imp8059799536\",\n        \"imp8056905177\",\n        \"imp8056905164\",\n        \"imp8059635103\",\n        \"imp8056905167\",\n        \"imp8059793380\",\n        \"imp8056905176\",\n        \"imp8056905155\",\n        \"imp8059793363\",\n        \"imp8059799766\",\n        \"imp8059793373\",\n        \"imp8059793362\",\n        \"imp8059799387\",\n        \"imp8056905166\",\n        \"imp8059793364\",\n        \"imp8059799382\",\n        \"imp8056905170\",\n        \"imp8056905156\",\n        \"imp8059799539\",\n        \"imp8059635106\",\n        \"imp8059635101\",\n        \"imp8059793369\",\n        \"imp8059799385\",\n        \"imp8059793371\",\n        \"imp8056905154\",\n        \"imp8059635115\",\n        \"imp8059799537\",\n        \"imp8059635102\",\n        \"imp8059793365\",\n        \"imp8056905163\",\n        \"imp8059793376\",\n        \"imp8059799386\",\n        \"imp8059793372\",\n        \"imp8059799538\",\n        \"imp8059793379\",\n        \"imp8059799383\",\n        \"imp8059799768\",\n        \"imp8059793374\",\n        \"imp8059793375\",\n        \"imp8056905152\",\n        \"imp8059799767\",\n        \"imp8059793367\",\n        \"imp8059799389\",\n        \"imp8059635118\",\n        \"imp8059635109\",\n        \"imp8059793370\",\n        \"imp8059635108\",\n        \"imp8056905172\",\n        \"imp8056905173\",\n        \"imp8059799380\",\n        \"imp8056905174\",\n        \"imp8059635112\",\n        \"imp8056905153\",\n        \"imp8059635119\",\n        \"imp8059793366\",\n        \"imp8059635100\",\n        \"imp8059799388\",\n        \"imp8056905160\",\n        \"imp8059635110\",\n        \"imp8056905151\",\n        \"imp8056905150\",\n        \"imp8056905171\",\n        \"imp8056905158\",\n        \"imp8059635104\",\n        \"imp8059635113\",\n        \"imp8059635105\",\n        \"imp8056905159\",\n        \"imp8059793381\",\n        \"imp00470-01300\",\n        \"imp8054567056\",\n        \"imp8054567051\",\n        \"imp8054567057\",\n        \"imp8054567055\",\n        \"imp8054567075\",\n        \"imp8054567054\",\n        \"imp8055675406\",\n        \"imp8054567052\",\n        \"imp8054567050\",\n        \"imp8054567039\",\n        \"imp8059798851\",\n        \"imp8059798852\",\n        \"imp8057702652\",\n        \"imp00474-02300\",\n        \"imp8057702572\",\n        \"imp8057702629\",\n        \"imp8058809492\",\n        \"imp8058809491\",\n        \"imp8058804119\",\n        \"imp8058804125\",\n        \"imp8058804121\",\n        \"imp8058804117\",\n        \"imp8058804118\",\n        \"imp8058804122\",\n        \"imp8058804126\",\n        \"imp8058804113\",\n        \"imp8058804111\",\n        \"imp8058804110\",\n        \"imp8058804112\",\n        \"8052433827@00480.impulsevoip.net\",\n        \"imp00480-02-trunk\",\n        \"8052849145@00480.impulsevoip.net\",\n        \"8055699864@00480.impulsevoip.net\",\n        \"8056172322@00480.impulsevoip.net\",\n        \"8056172323@00480.impulsevoip.net\",\n        \"8056172324@00480.impulsevoip.net\",\n        \"8056172325@00480.impulsevoip.net\",\n        \"8056172326@00480.impulsevoip.net\",\n        \"8056172327@00480.impulsevoip.net\",\n        \"8056172328@00480.impulsevoip.net\",\n        \"8056172329@00480.impulsevoip.net\",\n        \"8056172330@00480.impulsevoip.net\",\n        \"8056172331@00480.impulsevoip.net\",\n        \"8056172332@00480.impulsevoip.net\",\n        \"8056172333@00480.impulsevoip.net\",\n        \"8056172334@00480.impulsevoip.net\",\n        \"8056172335@00480.impulsevoip.net\",\n        \"8056172336@00480.impulsevoip.net\",\n        \"8056172337@00480.impulsevoip.net\",\n        \"8056172338@00480.impulsevoip.net\",\n        \"8056172339@00480.impulsevoip.net\",\n        \"8056172340@00480.impulsevoip.net\",\n        \"8056172341@00480.impulsevoip.net\",\n        \"8056172342@00480.impulsevoip.net\",\n        \"8056172343@00480.impulsevoip.net\",\n        \"8056172344@00480.impulsevoip.net\",\n        \"8056172345@00480.impulsevoip.net\",\n        \"8056172346@00480.impulsevoip.net\",\n        \"8056172347@00480.impulsevoip.net\",\n        \"8056172348@00480.impulsevoip.net\",\n        \"8056172349@00480.impulsevoip.net\",\n        \"8056172350@00480.impulsevoip.net\",\n        \"8056172351@00480.impulsevoip.net\",\n        \"8056172352@00480.impulsevoip.net\",\n        \"8056172353@00480.impulsevoip.net\",\n        \"8056172354@00480.impulsevoip.net\",\n        \"8056172355@00480.impulsevoip.net\",\n        \"8056172356@00480.impulsevoip.net\",\n        \"8056172357@00480.impulsevoip.net\",\n        \"8056172358@00480.impulsevoip.net\",\n        \"8056172359@00480.impulsevoip.net\",\n        \"8056172360@00480.impulsevoip.net\",\n        \"8056172361@00480.impulsevoip.net\",\n        \"8056172362@00480.impulsevoip.net\",\n        \"8056172363@00480.impulsevoip.net\",\n        \"8056172364@00480.impulsevoip.net\",\n        \"8056172365@00480.impulsevoip.net\",\n        \"8058456587@00480.impulsevoip.net\",\n        \"8058456781@00480.impulsevoip.net\",\n        \"8058456782@00480.impulsevoip.net\",\n        \"8058457535@00480.impulsevoip.net\",\n        \"8058458276@00480.impulsevoip.net\",\n        \"8058458981@00480.impulsevoip.net\",\n        \"imp8053575720\",\n        \"imp8053575714\",\n        \"imp8053575713\",\n        \"imp8053575706\",\n        \"imp8053575719\",\n        \"imp8053575710\",\n        \"imp8053575721\",\n        \"imp8053575722\",\n        \"imp8053575715\",\n        \"imp8053575708\",\n        \"imp8053575712\",\n        \"imp8053575716\",\n        \"imp8053575707\",\n        \"imp8053575704\",\n        \"imp8053575705\",\n        \"imp8053575703\",\n        \"imp8053575702\",\n        \"imp8053575701\",\n        \"imp8058799705\",\n        \"imp8058799720\",\n        \"imp8058799703\",\n        \"imp8058799719\",\n        \"imp8058799723\",\n        \"imp8058799710\",\n        \"imp8058799711\",\n        \"imp8058799709\",\n        \"imp8058799708\",\n        \"imp8058799712\",\n        \"imp8058799706\",\n        \"imp8058799715\",\n        \"imp8058799725\",\n        \"imp8058799718\",\n        \"imp8058799721\",\n        \"imp8058799726\",\n        \"imp8058799701\",\n        \"imp8058799702\",\n        \"imp8058799716\",\n        \"imp8058799707\",\n        \"imp8058799717\",\n        \"imp8058799722\",\n        \"imp8056216386\",\n        \"imp8056216393\",\n        \"imp8056216383\",\n        \"imp8056216387\",\n        \"imp8056216392\",\n        \"imp8056216384\",\n        \"imp8056216391\",\n        \"imp8056216389\",\n        \"imp8056216385\",\n        \"imp8056216382\",\n        \"imp8056216388\",\n        \"imp8052961769\",\n        \"imp8052961686\",\n        \"imp8052961773\",\n        \"imp8052961782\",\n        \"imp8052961685\",\n        \"imp8052961776\",\n        \"imp8052961777\",\n        \"imp8052961779\",\n        \"imp8052961681\",\n        \"imp8052961774\",\n        \"imp8052961780\",\n        \"imp8052961783\",\n        \"imp8052961770\",\n        \"imp8052961778\",\n        \"imp8052961761\",\n        \"imp8052961771\",\n        \"imp8052961772\",\n        \"imp8052961775\",\n        \"imp00484-010001\",\n        \"imp8057307882\",\n        \"imp8053358142\",\n        \"imp8057701325\",\n        \"imp8057307877\",\n        \"imp00484-028910\",\n        \"imp8057701343\",\n        \"imp8053358118\",\n        \"imp8057701306\",\n        \"imp8057307878\",\n        \"imp8053358144\",\n        \"imp8057304992\",\n        \"imp8059793846\",\n        \"imp8053358168\",\n        \"imp8057304979\",\n        \"imp8057307881\",\n        \"imp8057307898\",\n        \"imp8059793439\",\n        \"imp8057307867\",\n        \"imp8057307896\",\n        \"imp8057701328\",\n        \"imp8057307879\",\n        \"imp8057304995\",\n        \"imp8057307861\",\n        \"imp00484-024970\",\n        \"imp8053358119\",\n        \"imp8053358125\",\n        \"imp8057701324\",\n        \"imp8053358148\",\n        \"imp8057304993\",\n        \"imp8053358135\",\n        \"imp8057304983\",\n        \"imp8053358141\",\n        \"imp8057304994\",\n        \"imp8057701329\",\n        \"imp8053358160\",\n        \"imp8057304984\",\n        \"imp8057701304\",\n        \"imp8053358162\",\n        \"imp8057701321\",\n        \"imp8053358133\",\n        \"imp8059793845\",\n        \"imp8059793546\",\n        \"imp8057307887\",\n        \"imp8057304987\",\n        \"imp8057304997\",\n        \"imp8057701303\",\n        \"imp8057304990\",\n        \"imp8053358161\",\n        \"imp8057307869\",\n        \"imp8059793851\",\n        \"imp8059793853\",\n        \"imp8057307891\",\n        \"imp8057307876\",\n        \"imp8057307863\",\n        \"imp8053358120\",\n        \"imp8057307875\",\n        \"imp8053358121\",\n        \"imp8053358149\",\n        \"imp8057304977\",\n        \"imp8053358111\",\n        \"imp8057307883\",\n        \"imp8057307894\",\n        \"imp8057307862\",\n        \"imp8053358124\",\n        \"imp8053358140\",\n        \"imp8057307864\",\n        \"imp8057307872\",\n        \"imp8053358143\",\n        \"imp8057304976\",\n        \"imp8057307885\",\n        \"imp8057701301\",\n        \"imp8057307874\",\n        \"imp8057307893\",\n        \"imp8053358131\",\n        \"imp8053358132\",\n        \"imp8057304978\",\n        \"imp8057304998\",\n        \"imp8057304985\",\n        \"imp8057307870\",\n        \"imp00484-024971\",\n        \"imp8057307871\",\n        \"imp8057304989\",\n        \"imp8057307868\",\n        \"imp8057307895\",\n        \"imp8053358128\",\n        \"imp8057307866\",\n        \"imp8059793852\",\n        \"imp8057304975\",\n        \"imp8053358114\",\n        \"imp8057307890\",\n        \"imp8053358134\",\n        \"imp00484-038164\",\n        \"imp8057701312\",\n        \"imp8053358115\",\n        \"imp8053358117\",\n        \"imp8053358113\",\n        \"imp8057304996\",\n        \"imp8053358112\",\n        \"imp8055406241\",\n        \"imp8055406249\",\n        \"imp8055406245\",\n        \"imp8055406236\",\n        \"imp8055406250\",\n        \"imp8055406244\",\n        \"imp8055406246\",\n        \"imp8055406231\",\n        \"imp8055406251\",\n        \"imp8055406237\",\n        \"imp8053358169\",\n        \"imp8055406252\",\n        \"imp8055406233\",\n        \"imp8055406239\",\n        \"imp8055406261\",\n        \"imp8055406238\",\n        \"imp8055406234\",\n        \"imp8055406232\",\n        \"imp8055406243\",\n        \"imp8055406242\",\n        \"imp8055406235\",\n        \"imp8055406248\",\n        \"imp8055406230\",\n        \"imp8057701345\",\n        \"imp8055406259\",\n        \"imp8057307873\",\n        \"imp8057701323\",\n        \"imp8057701334\",\n        \"imp8057307884\",\n        \"imp8057304986\",\n        \"imp8057701344\",\n        \"imp8059793847\",\n        \"imp8057701309\",\n        \"imp8057701317\",\n        \"imp8057304982\",\n        \"imp8057701335\",\n        \"imp8057701308\",\n        \"imp8057701319\",\n        \"imp8057701305\",\n        \"imp8058595103\",\n        \"imp8058595106\",\n        \"imp8058595107\",\n        \"imp8058595110\",\n        \"imp8058595111\",\n        \"imp8058595112\",\n        \"imp8058595101\",\n        \"imp00485-021001\",\n        \"imp00485-021002\",\n        \"imp00485-021003\",\n        \"imp8059799680\",\n        \"imp8059799676\",\n        \"imp8059799679\",\n        \"imp8059799681\",\n        \"imp8059799682\",\n        \"imp8056263150\",\n        \"imp8059799678\",\n        \"imp00485-011000\",\n        \"imp8055554445\",\n        \"imp8052593226\",\n        \"imp8052220350\",\n        \"imp7029569536\",\n        \"imp7029569535\",\n        \"imp6027674372\",\n        \"imp6618577230\",\n        \"imp6618577237\",\n        \"imp6618577233\",\n        \"imp7149846044\",\n        \"imp8006730034\",\n        \"imp6618577234\",\n        \"imp6618577235\",\n        \"imp7252181462\",\n        \"imp7252181461\",\n        \"imp7252181464\",\n        \"imp7252181463\",\n        \"imp8055652557\",\n        \"imp8055652555\",\n        \"imp8055652558\",\n        \"imp8055652561\",\n        \"imp8055652556\",\n        \"imp8055652563\",\n        \"imp8055652551\",\n        \"imp8055652565\",\n        \"imp8055652562\",\n        \"imp8055652570\",\n        \"imp8055652553\",\n        \"imp8055652571\",\n        \"imp8055652572\",\n        \"imp8055652568\",\n        \"imp8055652554\",\n        \"imp8055652552\",\n        \"imp2097207473\",\n        \"imp2097207472\",\n        \"imp2097207471\",\n        \"imp8057413316\",\n        \"imp8057413324\",\n        \"imp8057413321\",\n        \"imp8057413315\",\n        \"imp8057413312\",\n        \"imp8057413320\",\n        \"imp8057413318\",\n        \"imp8057413319\",\n        \"imp8057413322\",\n        \"imp8057413314\",\n        \"imp8058991543\",\n        \"imp8058991541\",\n        \"imp00493-02151\",\n        \"imp00493-02252\",\n        \"imp00493-02353\",\n        \"imp8058991544\",\n        \"imp8058991542\",\n        \"imp8053358580\",\n        \"imp8053358633\",\n        \"imp8053358581\",\n        \"imp8053358659\",\n        \"imp8053358631\",\n        \"imp8053358642\",\n        \"imp8053358667\",\n        \"imp00497-02123\",\n        \"imp8053358527\",\n        \"imp8053358635\",\n        \"imp8053358526\",\n        \"imp8053358639\",\n        \"imp8053358670\",\n        \"imp8059678851\",\n        \"imp8056832960\",\n        \"imp8055655704\",\n        \"imp8056905141\",\n        \"imp8056915109\",\n        \"imp8056905145\",\n        \"imp8056915125\",\n        \"imp8056905149\",\n        \"imp8056915150\",\n        \"imp8056915106\",\n        \"imp8053089116\",\n        \"imp8056905187\",\n        \"imp8056905144\",\n        \"imp8056905147\",\n        \"imp8056915102\",\n        \"imp8056905146\",\n        \"imp8056905199\",\n        \"imp8056905143\",\n        \"imp8053089125\",\n        \"imp8056905140\",\n        \"imp8056915111\",\n        \"imp8056915105\",\n        \"imp8056905186\",\n        \"imp8056905142\",\n        \"imp8056915104\",\n        \"imp8056938352\",\n        \"imp8056938362\",\n        \"imp8059798847\",\n        \"imp8059798845\",\n        \"imp8059798843\",\n        \"imp8059798841\",\n        \"imp8059798842\",\n        \"imp8059798846\",\n        \"imp8059798844\",\n        \"imp8059798848\",\n        \"imp8059798849\",\n        \"imp8059798825\",\n        \"imp8059798826\",\n        \"imp8059798827\",\n        \"imp8059798823\",\n        \"imp8059798824\",\n        \"imp8055671417\",\n        \"imp8323976942\",\n        \"imp8059798767\",\n        \"imp8059798717\",\n        \"imp8059798789\",\n        \"imp8059798781\",\n        \"imp8059798786\",\n        \"imp8059798727\",\n        \"imp8059798723\",\n        \"imp8059798739\",\n        \"imp8059798725\",\n        \"imp8059798736\",\n        \"imp8059798737\",\n        \"imp8059798721\",\n        \"imp8059798726\",\n        \"imp8059798722\",\n        \"imp8059798704\",\n        \"imp8059798731\",\n        \"imp8059798734\",\n        \"imp8059798733\",\n        \"imp8059798716\",\n        \"imp8059798735\",\n        \"imp8059798703\",\n        \"imp8059798732\",\n        \"imp8059798738\",\n        \"imp8055652595\",\n        \"imp8055652589\",\n        \"imp8055652584\",\n        \"imp8055652582\",\n        \"imp8055652591\",\n        \"imp8053572562\",\n        \"imp8055652590\",\n        \"imp8055652588\",\n        \"imp8055652594\",\n        \"imp8055652592\",\n        \"imp8055652597\",\n        \"imp8055652587\",\n        \"imp8055652596\",\n        \"imp8055652583\",\n        \"imp8053572561\",\n        \"imp8055652585\",\n        \"imp8055652593\",\n        \"imp8056796233\",\n        \"imp8056796244\",\n        \"imp8059262219\",\n        \"imp8059262218\",\n        \"imp00513-02456\",\n        \"imp8059262216\",\n        \"imp8059262217\",\n        \"imp00514-02379\",\n        \"imp00514-02326\",\n        \"imp00514-02410\",\n        \"imp00514-02416\",\n        \"imp00514-02670\",\n        \"imp00514-02515\",\n        \"imp00514-02626\",\n        \"imp00514-02226\",\n        \"imp00514-02607\",\n        \"imp00514-02415\",\n        \"imp00514-02424\",\n        \"imp00514-02419\",\n        \"imp00514-02442\",\n        \"imp00514-02409\",\n        \"imp00514-02650\",\n        \"imp00514-02519\",\n        \"imp00514-02405\",\n        \"imp00514-02222\",\n        \"imp00514-02506\",\n        \"imp00514-02298\",\n        \"imp00514-02428\",\n        \"imp00514-02412\",\n        \"imp00514-02612\",\n        \"imp00514-02407\",\n        \"imp00514-02441\",\n        \"imp00514-02420\",\n        \"imp00514-02502\",\n        \"imp00514-02625\",\n        \"imp00514-02613\",\n        \"imp00514-01100\",\n        \"imp00516-02123\",\n        \"imp00516-02213\",\n        \"imp00516-02131\",\n        \"imp00516-02216\",\n        \"imp00516-02226\",\n        \"imp00516-02234\",\n        \"imp00516-02136\",\n        \"imp00516-02225\",\n        \"imp00516-02240\",\n        \"imp00516-02236\",\n        \"imp00516-02228\",\n        \"imp00516-02167\",\n        \"imp00516-02154\",\n        \"imp00516-02140\",\n        \"imp00516-02210\",\n        \"imp00516-02147\",\n        \"imp00516-02141\",\n        \"imp00516-02135\",\n        \"imp00516-02117\",\n        \"imp00516-02115\",\n        \"imp00516-02238\",\n        \"imp00516-02275\",\n        \"imp00516-02116\",\n        \"imp00516-02125\",\n        \"imp00516-02211\",\n        \"imp00516-02139\",\n        \"imp00516-02124\",\n        \"imp00516-02130\",\n        \"imp00516-02272\",\n        \"imp00516-02112\",\n        \"imp00516-02109\",\n        \"imp00516-02110\",\n        \"imp00516-02218\",\n        \"imp00516-02273\",\n        \"imp00516-02205\",\n        \"imp00516-02232\",\n        \"imp00516-02274\",\n        \"imp00516-02206\",\n        \"imp00516-02260\",\n        \"imp00516-02156\",\n        \"imp00516-02113\",\n        \"imp00516-02230\",\n        \"imp00516-02253\",\n        \"imp00516-02118\",\n        \"imp00516-02119\",\n        \"imp00516-02120\",\n        \"imp00516-02121\",\n        \"imp00518-02760\",\n        \"imp8058677766x\",\n        \"imp8058677767x\",\n        \"imp8058677765\",\n        \"imp8054573698\",\n        \"imp8054573718\",\n        \"imp8054573693\",\n        \"imp8054214095\",\n        \"imp8054382268\",\n        \"imp8054382269\",\n        \"imp8054290871\",\n        \"imp8054572612\",\n        \"imp8054572410\",\n        \"imp8054214094\",\n        \"imp8054573752\",\n        \"imp8054573753\",\n        \"imp8054094804\",\n        \"imp8054094867\",\n        \"imp8054214089\",\n        \"imp8054214090\",\n        \"imp8054094938\",\n        \"imp8054214091\",\n        \"imp8054572473\",\n        \"imp8054573756\",\n        \"imp8054572585\",\n        \"imp8054573845\",\n        \"imp8054572475\",\n        \"imp8054572502\",\n        \"imp8054572538\",\n        \"imp8054572532\",\n        \"imp8054572923\",\n        \"imp8054290853\",\n        \"imp8054377580\",\n        \"imp8054290844\",\n        \"imp8054572621\",\n        \"imp8054090795\",\n        \"imp8054572931\",\n        \"imp8054090822\",\n        \"imp8054290843\",\n        \"imp8054573755\",\n        \"imp8054090906\",\n        \"imp8054572623\",\n        \"imp8054572482\",\n        \"imp8054572487\",\n        \"imp8054572925\",\n        \"imp8054572620\",\n        \"imp8054572599\",\n        \"imp8054377599\",\n        \"imp8054573832\",\n        \"imp8054290839\",\n        \"imp8054377587\",\n        \"imp8054290841\",\n        \"imp8054573847\",\n        \"imp8054572922\",\n        \"imp8054572631\",\n        \"imp8054290848\",\n        \"imp8054572506\",\n        \"imp8054290865\",\n        \"imp8054290864\",\n        \"imp8054094475\",\n        \"imp8054572391\",\n        \"imp8054377596\",\n        \"imp8054377461\",\n        \"imp8054573742\",\n        \"imp8054290866\",\n        \"imp8054572928\",\n        \"imp8054572617\",\n        \"imp8054572625\",\n        \"imp8054572509\",\n        \"imp8054290861\",\n        \"imp8054573836\",\n        \"imp8054572750\",\n        \"imp8054572465\",\n        \"imp8054377586\",\n        \"imp8054572624\",\n        \"imp8054377597\",\n        \"imp8054290862\",\n        \"imp8054572930\",\n        \"imp8054377460\",\n        \"imp8054572464\",\n        \"imp8054377592\",\n        \"imp8054377589\",\n        \"imp8054090690\",\n        \"imp8054572652\",\n        \"imp8054090814\",\n        \"imp8054573762\",\n        \"imp8054090804\",\n        \"imp8054573841\",\n        \"imp8054094933\",\n        \"imp8054090685\",\n        \"imp8054377593\",\n        \"imp8054090806\",\n        \"imp8054572751\",\n        \"imp8053645315\",\n        \"imp8054377591\",\n        \"imp8054290870\",\n        \"imp8059878154\",\n        \"imp8054290867\",\n        \"imp8054572583\",\n        \"imp8054573745\",\n        \"imp8054573835\",\n        \"imp8054090724\",\n        \"imp8054572472\",\n        \"imp8054090812\",\n        \"imp8054090758\",\n        \"imp8054573749\",\n        \"imp8054573840\",\n        \"imp8054290852\",\n        \"imp8054377598\",\n        \"imp8054572529\",\n        \"imp8054573848\",\n        \"imp8054572762\",\n        \"imp8054573849\",\n        \"imp8054290840\",\n        \"imp8054573692\",\n        \"imp8054573982\",\n        \"imp8054572486\",\n        \"imp8054573830\",\n        \"imp8054572540\",\n        \"imp8054572619\",\n        \"imp8054377590\",\n        \"imp8054572794\",\n        \"imp8054572685\",\n        \"imp8054573687\",\n        \"imp8054823093\",\n        \"imp8054377462\",\n        \"imp8054572921\",\n        \"imp8054290837\",\n        \"imp8054573694\",\n        \"imp8054290842\",\n        \"imp8054823063\",\n        \"imp00521-02771\",\n        \"imp00521-02772\",\n        \"imp8054290829\",\n        \"imp8058794601\",\n        \"imp00522-03166\",\n        \"imp8058794611\",\n        \"imp8058794613\",\n        \"imp8058794688\",\n        \"imp00522-03101\",\n        \"imp8058794606\",\n        \"imp8058794612\",\n        \"imp8058794690\",\n        \"imp8058794661\",\n        \"imp8058794618\",\n        \"imp8058794631\",\n        \"imp8058794633\",\n        \"imp8058794626\",\n        \"imp8058794648\",\n        \"imp8058794616\",\n        \"imp8058794621\",\n        \"imp8058794619\",\n        \"imp00522-03177\",\n        \"imp8058794614\",\n        \"imp8058794642\",\n        \"imp8058794652\",\n        \"imp8058794659\",\n        \"imp8058794643\",\n        \"imp8058794627\",\n        \"imp8058794623\",\n        \"imp8058794651\",\n        \"imp8058794635\",\n        \"imp8058794665\",\n        \"imp8058794646\",\n        \"imp00522-03999\",\n        \"imp00522-03179\",\n        \"imp8058794610\",\n        \"imp8058794604\",\n        \"imp8058794608\",\n        \"imp8058794636\",\n        \"imp8058794681\",\n        \"imp8058794620\",\n        \"imp8058794653\",\n        \"imp8058794641\",\n        \"imp8058794625\",\n        \"imp8058794663\",\n        \"imp8058794630\",\n        \"imp8058794647\",\n        \"imp8058794640\",\n        \"imp8058794634\",\n        \"imp8058794658\",\n        \"imp8058794689\",\n        \"imp8058794662\",\n        \"imp8058794660\",\n        \"imp8058794615\",\n        \"imp8058794667\",\n        \"imp8058794632\",\n        \"imp8058794624\",\n        \"imp8058794691\",\n        \"imp8058794693\",\n        \"imp8058794678\",\n        \"imp8058794676\",\n        \"imp8058794671\",\n        \"imp8058794605\",\n        \"imp8058794677\",\n        \"imp8058794692\",\n        \"imp8058794638\",\n        \"imp8058794694\",\n        \"imp8058794673\",\n        \"imp8058794674\",\n        \"imp00522-01111\",\n        \"imp00523-02101\",\n        \"imp00523-02102\",\n        \"imp00523-02103\",\n        \"imp00523-02104\",\n        \"8059621279@00523.impulsevoip.net\",\n        \"00523-01-trunk\",\n        \"8059622527@00523.impulsevoip.net\",\n        \"8059622542@00523.impulsevoip.net\",\n        \"8059630899@00523.impulsevoip.net\",\n        \"8059633709@00523.impulsevoip.net\",\n        \"8059634269@00523.impulsevoip.net\",\n        \"8059638845@00523.impulsevoip.net\",\n        \"8059638846@00523.impulsevoip.net\",\n        \"8059638847@00523.impulsevoip.net\",\n        \"8059639822@00523.impulsevoip.net\",\n        \"8006635288@00523.impulsevoip.net\",\n        \"imp00524-02101\",\n        \"imp00524-02102\",\n        \"imp00524-02104\",\n        \"imp00524-02222\",\n        \"imp00524-02333\",\n        \"imp00524-02444\",\n        \"imp00524-02103\",\n        \"imp00525-01171\",\n        \"imp8059794053\",\n        \"imp8059794042\",\n        \"imp8059794040\",\n        \"imp8059794041\",\n        \"imp8059794050\",\n        \"imp00532-02107\",\n        \"imp00532-02115\",\n        \"imp00532-02116\",\n        \"imp00532-02100\",\n        \"imp00532-02127\",\n        \"imp00532-02126\",\n        \"imp00532-02119\",\n        \"imp00532-02104\",\n        \"imp00532-02103\",\n        \"imp00532-02149\",\n        \"imp00532-02125\",\n        \"imp00532-02106\",\n        \"imp00532-02105\",\n        \"imp00532-02101\",\n        \"imp00532-02113\",\n        \"imp00532-02133\",\n        \"imp00532-02130\",\n        \"imp00532-02150\",\n        \"imp00532-02109\",\n        \"imp00532-02123\",\n        \"imp00532-02120\",\n        \"imp00532-02108\",\n        \"imp00532-02128\",\n        \"imp00532-02124\",\n        \"imp00532-02110\",\n        \"imp00532-02112\",\n        \"imp00532-02999\",\n        \"imp00532-02143\",\n        \"imp8059634501\",\n        \"imp00532-01111\",\n        \"imp00533-03218\",\n        \"imp00533-03210\",\n        \"imp00533-03215\",\n        \"imp00533-03216\",\n        \"imp00533-03208\",\n        \"imp5127746340\",\n        \"imp00533-03214\",\n        \"imp00533-03209\",\n        \"imp00533-03211\",\n        \"imp00533-03217\",\n        \"imp00533-03212\",\n        \"imp00533-03206\",\n        \"imp00533-03201\",\n        \"imp00533-03202\",\n        \"imp00533-03203\",\n        \"imp00533-03204\",\n        \"imp00533-03205\",\n        \"imp00533-03207\",\n        \"imp5127746308\",\n        \"imp5127746358\",\n        \"imp00533-02120\",\n        \"imp00533-02111\",\n        \"imp00533-02116\",\n        \"imp00533-02105\",\n        \"imp00533-02102\",\n        \"imp00533-02103\",\n        \"imp00533-02118\",\n        \"imp00533-02127\",\n        \"imp00533-02117\",\n        \"imp00533-02106\",\n        \"imp00533-02130\",\n        \"imp00533-02113\",\n        \"imp00533-02121\",\n        \"imp00533-02104\",\n        \"imp00533-02129\",\n        \"imp00533-02110\",\n        \"imp00533-02109\",\n        \"imp00533-02126\",\n        \"imp00533-02112\",\n        \"imp00533-02108\",\n        \"imp00533-02125\",\n        \"imp00533-02107\",\n        \"imp00533-02114\",\n        \"imp00533-02131\",\n        \"imp00533-02115\",\n        \"imp00533-02101\",\n        \"imp00533-02119\",\n        \"imp00534-01200\",\n        \"imp8056798429\",\n        \"imp8056798430\",\n        \"imp8056798447\",\n        \"imp8056798505\",\n        \"imp8056796259\",\n        \"imp8056798449\",\n        \"imp8056798468\",\n        \"imp8056798465\",\n        \"imp8056798440\",\n        \"imp8056798492\",\n        \"imp8056798486\",\n        \"imp8056796217\",\n        \"imp8056796247\",\n        \"imp8056798439\",\n        \"imp8056796256\",\n        \"imp8056798458\",\n        \"imp8056798508\",\n        \"imp8056798436\",\n        \"imp8056798442\",\n        \"imp8056798444\",\n        \"imp8056798445\",\n        \"imp8056798448\",\n        \"imp8056798450\",\n        \"imp8056798477\",\n        \"imp8056798483\",\n        \"imp8056798484\",\n        \"imp8056798496\",\n        \"imp8056798499\",\n        \"imp8056798500\",\n        \"imp8056798461\",\n        \"imp8056798454\",\n        \"imp8056796238\",\n        \"imp8056798438\",\n        \"imp8056798434\",\n        \"imp8056798455\",\n        \"imp8056798482\",\n        \"imp8056796242\",\n        \"imp8056798501\",\n        \"imp8056798432\",\n        \"imp8056796232\",\n        \"imp8056798459\",\n        \"imp8056796219\",\n        \"imp8056798446\",\n        \"imp8056798462\",\n        \"imp8056798480\",\n        \"imp8056798506\",\n        \"imp8056796234\",\n        \"imp8056798453\",\n        \"imp8056798441\",\n        \"imp8056798487\",\n        \"imp8056798481\",\n        \"imp8056796251\",\n        \"imp8056798478\",\n        \"imp8056798460\",\n        \"imp8056796254\",\n        \"imp8056798502\",\n        \"imp8056798456\",\n        \"imp8056798464\",\n        \"imp8059635695\",\n        \"imp8056798510\",\n        \"imp8056798488\",\n        \"imp8056798452\",\n        \"imp8059630694\",\n        \"imp8056798509\",\n        \"imp8056796248\",\n        \"imp8056796250\",\n        \"imp8056798443\",\n        \"imp8056798463\",\n        \"imp8056798433\",\n        \"imp8056798466\",\n        \"imp8056798467\",\n        \"imp8056798507\",\n        \"imp8056798457\",\n        \"imp8056798437\",\n        \"imp8056798435\",\n        \"imp8056796240\",\n        \"imp8056798485\",\n        \"imp8056798431\",\n        \"imp8056798503\",\n        \"imp8056798504\",\n        \"imp8056798451\",\n        \"imp8058801974\",\n        \"imp8058801958\",\n        \"imp8058801942\",\n        \"imp8058801298\",\n        \"imp8058801294\",\n        \"imp8058801297\",\n        \"imp8058801972\",\n        \"imp8058801973\",\n        \"imp00536-02264\",\n        \"imp00536-02111\",\n        \"imp8058801957\",\n        \"imp8058801955\",\n        \"imp8055661600\",\n        \"imp8055661602\",\n        \"imp8055661603\",\n        \"imp8055661621\",\n        \"imp8055661629\",\n        \"imp8055661611\",\n        \"imp8055661619\",\n        \"imp8055661626\",\n        \"imp8055661613\",\n        \"imp8055661617\",\n        \"imp8055661627\",\n        \"imp8055661628\",\n        \"imp8055661607\",\n        \"imp8055661606\",\n        \"imp8055661605\",\n        \"imp8055661618\",\n        \"imp3025580007\",\n        \"imp8058799917\",\n        \"imp8058799918\",\n        \"imp8058799930\",\n        \"impB8053352592\",\n        \"imp8057413313\",\n        \"imp4695966750\",\n        \"imp00546-01132\",\n        \"imp8058803595\",\n        \"imp8058803596\",\n        \"imp00547-01100\",\n        \"imp8186657361\",\n        \"imp5597526414\",\n        \"imp8186657351\",\n        \"imp5597524941\",\n        \"imp8186657369\",\n        \"imp8186657352\",\n        \"imp8186657360\",\n        \"imp8186657350\",\n        \"imp8186657354\",\n        \"imp8186657355\",\n        \"imp8186657356\",\n        \"imp8186657357\",\n        \"imp8186657364\",\n        \"imp8186657366\",\n        \"imp8186657371\",\n        \"imp8186657367\",\n        \"imp8186657372\",\n        \"imp8186657370\",\n        \"imp8186657368\",\n        \"imp8186657353\",\n        \"imp8186657362\",\n        \"imp8186657365\",\n        \"imp8186657359\",\n        \"imp8186657358\",\n        \"imp8186657363\",\n        \"imp00547-02200\",\n        \"imp8056939238\",\n        \"imp8057414289\",\n        \"imp8057414281\",\n        \"imp8057021894\",\n        \"imp8057414282\",\n        \"imp8057414283\",\n        \"imp8057023010\",\n        \"imp8057414284\",\n        \"imp8057021810\",\n        \"imp8057414280\",\n        \"imp8057021879\",\n        \"imp8057021878\",\n        \"imp8057023168\",\n        \"imp8057414292\",\n        \"imp8057021994\",\n        \"imp8057020838\",\n        \"imp8057020342\",\n        \"imp8057021960\",\n        \"imp8057021999\",\n        \"imp8057021913\",\n        \"imp8057414287\",\n        \"imp8057414288\",\n        \"imp8057414286\",\n        \"imp8057021826\",\n        \"imp8057021915\",\n        \"imp8057414285\",\n        \"imp00549-011001\",\n        \"imp00550-025502\",\n        \"imp00550-025503\",\n        \"imp00550-025504\",\n        \"imp00550-025505\",\n        \"imp00550-025501\",\n        \"imp00550-033802\",\n        \"imp00550-033803\",\n        \"imp00550-033801\",\n        \"imp00551-02101\",\n        \"imp00551-02102\",\n        \"imp00551-02106\",\n        \"imp00551-02107\",\n        \"imp00551-02108\",\n        \"imp00551-02109\",\n        \"imp00551-02110\",\n        \"imp00551-02100\",\n        \"imp00551-02104\",\n        \"imp00551-02105\",\n        \"imp8478548464\",\n        \"imp8055661631\",\n        \"imp8055661635\",\n        \"imp8055661632\",\n        \"imp8056972832\",\n        \"imp8056972831\",\n        \"imp8056972833\",\n        \"imp8056972834\",\n        \"imp8056972835\",\n        \"imp8056972836\",\n        \"imp8056972837\",\n        \"imp8056924027\",\n        \"imp8056921424\",\n        \"imp8053306825\",\n        \"imp8053306826\",\n        \"imp8053306824\",\n        \"imp8053306823\",\n        \"imp5028057238\",\n        \"imp5028057239\",\n        \"imp5028057240\",\n        \"imp5028057241\",\n        \"imp5028057230\",\n        \"imp5028057299\",\n        \"imp5028057231\",\n        \"imp5028057232\",\n        \"imp5028057233\",\n        \"imp5028057234\",\n        \"imp5028057235\",\n        \"imp5028057236\",\n        \"imp5028057237\",\n        \"imp00557-01200\",\n        \"imp00558-028838\",\n        \"imp8057221804\",\n        \"imp8057221817\",\n        \"imp8057221818\",\n        \"imp8057221802\",\n        \"imp8057221806\",\n        \"imp8057221815\",\n        \"imp8057221805\",\n        \"imp8057221809\",\n        \"imp8057221803\",\n        \"imp8057221810\",\n        \"imp8057221812\",\n        \"imp8057221819\",\n        \"imp8057221813\",\n        \"imp8057221807\",\n        \"imp00558-022222\",\n        \"imp8057221801\",\n        \"imp8056796399\",\n        \"imp8056796382\",\n        \"imp8056796397\",\n        \"imp8056796391\",\n        \"imp8056796393\",\n        \"imp8056796394\",\n        \"imp8056796395\",\n        \"imp8056796396\",\n        \"imp8056796392\",\n        \"imp8053089728\",\n        \"imp8056905545\",\n        \"imp8056905544\",\n        \"imp8056905550\",\n        \"imp8056905546\",\n        \"imp8056905547\",\n        \"imp8058807912\",\n        \"imp8058807913\",\n        \"imp8058807914\",\n        \"imp8058807911\",\n        \"imp6616645201\",\n        \"imp6616645202\",\n        \"imp6616645217\",\n        \"imp6616645204\",\n        \"imp6616645206\",\n        \"imp6616645221\",\n        \"imp6617886321\",\n        \"imp6617886322\",\n        \"imp6617886323\",\n        \"imp6617886324\",\n        \"imp6617886301\",\n        \"imp6617886302\",\n        \"imp6617886304\",\n        \"imp6617886305\",\n        \"imp6617886303\",\n        \"imp8059615318\",\n        \"imp8059615319\",\n        \"imp3865971563\",\n        \"imp3865971564\",\n        \"imp3865971566\",\n        \"imp8054566853\",\n        \"imp8058803579\",\n        \"imp00569-02444\",\n        \"imp8058170880\",\n        \"imp8055868328\",\n        \"imp8053352928\",\n        \"imp8056031489\",\n        \"imp8053352077\",\n        \"imp8057273039\",\n        \"imp8055868319\",\n        \"imp8052779474\",\n        \"imp8059145335\",\n        \"imp8057385294\"\n    ],\n    \"standard\": [\n        \"imp8054561297\",\n        \"imp8054561298\",\n        \"imp8054561295\",\n        \"imp8054561296\",\n        \"imp8056174313\",\n        \"impdemo_0002\",\n        \"imp8058805670\",\n        \"imp8052840779\",\n        \"imp8056174672\",\n        \"imp8052840785\",\n        \"imp8052840788\",\n        \"imp8056174182\",\n        \"imp8052840783\",\n        \"imp8058805673\",\n        \"impdemo_00027777\",\n        \"imp8058805674\",\n        \"imp8058805672\",\n        \"impcobra-pilot\",\n        \"imp8056174385\",\n        \"imp8058805671\",\n        \"impdemo_0002-trunk\",\n        \"imp8052840784\",\n        \"imp8052840782\",\n        \"imp8052840781\",\n        \"imp8052840780\",\n        \"imp8057300606\",\n        \"imp8053352593\",\n        \"imp8053352594\",\n        \"imp8052849977\",\n        \"imp8052901435\",\n        \"imp8054564201\",\n        \"imp00002-022301\",\n        \"imp00002-022309\",\n        \"imp8053352591\",\n        \"imp00002-022305\",\n        \"imp00002-022302\",\n        \"imp00002-053213\",\n        \"imp8053514123\",\n        \"imp8058846326\",\n        \"imp8058846355\",\n        \"imp8058846372\",\n        \"imp8058846361\",\n        \"imp8058846392\",\n        \"imp8058846373\",\n        \"imp8058846357\",\n        \"imp8058846364\",\n        \"imp8054564281\",\n        \"imp00002-019973\",\n        \"imp8058846363\",\n        \"imp8058846370\",\n        \"imp8058846324\",\n        \"imp8058846394\",\n        \"imp8058846386\",\n        \"imp8058846391\",\n        \"imp8058846378\",\n        \"imp8058846332\",\n        \"imp8058846375\",\n        \"imp8058846393\",\n        \"imp8054565833\",\n        \"imp8058846318\",\n        \"imp8058846317\",\n        \"imp8058846396\",\n        \"imp8887776543\",\n        \"imp8058846368\",\n        \"imp8057554546\",\n        \"imp8055621909\",\n        \"imp8054763406\",\n        \"imptestbuild\",\n        \"imp00002-01-trunk@00002.impulsevoip.net\",\n        \"imp8059802095\",\n        \"imp8059802094\",\n        \"imp8058805658\",\n        \"imp8058846352\",\n        \"imp8058846334\",\n        \"sip8053514126\",\n        \"imp8058846316\",\n        \"imp8052901402\",\n        \"imp8057361678\",\n        \"imp8058805656\",\n        \"imp8058846315\",\n        \"imp00002-016006\",\n        \"imp8059802096\",\n        \"imp00002-014308\",\n        \"imp8058846353\",\n        \"imp00002-017887\",\n        \"imp8058846339\",\n        \"imp8058846362\",\n        \"imp8058846308\",\n        \"imp8058846371\",\n        \"ImpulseHQNOCVM\",\n        \"imp8053352597\",\n        \"imp8058846395\",\n        \"imp8058846360\",\n        \"imp8056174307\",\n        \"imp00002-directory\",\n        \"imp8058846382\",\n        \"imp8052594574\",\n        \"imp8058846397\",\n        \"imp8058846327\",\n        \"imp8058846359\",\n        \"imp8058846314\",\n        \"imp8058846369\",\n        \"imp00002-011234\",\n        \"imp00002-016502\",\n        \"imp8058846388\",\n        \"imp8053514102\",\n        \"imp8053514125\",\n        \"imp8058846312\",\n        \"imp8058846376\",\n        \"imp8058846399\",\n        \"imp8058846367\",\n        \"imp8059802093\",\n        \"imp00002-016501\",\n        \"imp00002-011888\",\n        \"imp3108736994\",\n        \"imp8058846305\",\n        \"imp8058805652\",\n        \"imp8054760300\",\n        \"imp00002-017326\",\n        \"imp8058846321\",\n        \"imp8058846337\",\n        \"imp8058846322\",\n        \"imp8052901694\",\n        \"imp8052901401\",\n        \"imp8052840348\",\n        \"imp8059802092\",\n        \"imp8058846320\",\n        \"imp8058846306\",\n        \"imp8058846313\",\n        \"imp00002-016004\",\n        \"imp00002-016245\",\n        \"imp8058805654\",\n        \"8058846325@00002.impulsevoip.net\",\n        \"imp8059802091\",\n        \"imp8058806969\",\n        \"imp00002-011403\",\n        \"imp8054760301\",\n        \"imp5038978575\",\n        \"imp8059802090\",\n        \"imp00002-013603\",\n        \"imp00002-016489\",\n        \"imp00002-016406\",\n        \"imp8058846387\",\n        \"imp8058846356\",\n        \"imp8058846323\",\n        \"imp8058846379\",\n        \"imp8058846329\",\n        \"imp8058846335\",\n        \"imp8058846381\",\n        \"imp8058846354\",\n        \"imp8058846336\",\n        \"imp8052849072\",\n        \"imp8056922712\",\n        \"imp8054565875\",\n        \"imp8053086869\",\n        \"imp8058846380\",\n        \"imp8058846338\",\n        \"imp00002-019971\",\n        \"imp00002-019972\",\n        \"imp8053514100\",\n        \"mreverman\",\n        \"slatsa\",\n        \"imp8058846351\",\n        \"imp8052433813\",\n        \"imp8058846304\",\n        \"imp8058846310\",\n        \"imp00002-013501\",\n        \"imp00002-013502\",\n        \"imp00002-013503\",\n        \"imp00002-013504\",\n        \"imp00002-013505\",\n        \"imp8058846331\",\n        \"imp5038978550\",\n        \"imp00002-012543\",\n        \"8888@00002.impulsevoip.net\",\n        \"imp8054563637\",\n        \"imp8052849523\",\n        \"imp8058803530\",\n        \"imp8054565689\",\n        \"imp00002-061501\",\n        \"imp8056833976\",\n        \"tsptsp\",\n        \"imp00002-022321\",\n        \"imp00002-022323\",\n        \"imp8058846307\",\n        \"imp00002-022308\",\n        \"imp8053352592\",\n        \"imp8052611125\",\n        \"imp8053507901\",\n        \"imp8052840426\",\n        \"00002-02Key2\",\n        \"00002-02Key3\",\n        \"00002-02Key4\",\n        \"imp8059621575\",\n        \"imp00002-024447\",\n        \"imp8052904278\",\n        \"imp00002-021999\",\n        \"imp00002-02RMA\",\n        \"Key1test\",\n        \"imp00002-053214\",\n        \"imp00002-01VMTEST9927\",\n        \"imp00002-025659\",\n        \"imp00002-022322\",\n        \"imp8052904279\",\n        \"imp8053763404\",\n        \"imp8053571362\",\n        \"imp8053571363\",\n        \"imp00002-026543\",\n        \"imp00002-022306\",\n        \"imp00002-053215\",\n        \"imp00002-022304\",\n        \"imp8052901884\",\n        \"imp00002-022303\",\n        \"imp00002-02-trunk\",\n        \"8058805650@00002.impulsevoip.net\",\n        \"imp8057701606\",\n        \"imp00090-02352\",\n        \"imp8057701609\",\n        \"imp8057701602\",\n        \"imp8057701607\",\n        \"00090-02133\",\n        \"imp8057701604\",\n        \"imp00090-02888\",\n        \"imp8057701610\",\n        \"imp8057701611\",\n        \"imp8057701605\",\n        \"imp8057701613\",\n        \"imp8057701614\",\n        \"imp8057701601\",\n        \"imp8057701612\",\n        \"imp8057701608\",\n        \"imp8057701603\",\n        \"imp00090-01100\",\n        \"imp8054760312\",\n        \"imp8052840397\",\n        \"imp8054760373\",\n        \"imp8054760374\",\n        \"imp8054760377\",\n        \"imp8054760375\",\n        \"imp8054760313\",\n        \"imp8054760379\",\n        \"imp00090-03ext226\",\n        \"imp8054760378\",\n        \"imp8054760376\",\n        \"imp8054368474\",\n        \"imp8054368478\",\n        \"imp8054368476\",\n        \"imp8054368475\",\n        \"imp8054368471\",\n        \"imp8054368472\",\n        \"imp8054368473\",\n        \"imp8058971177\",\n        \"imp8053197970\",\n        \"imp8053197977\",\n        \"imp8053197966\",\n        \"imp8053197972\",\n        \"imp8053197973\",\n        \"imp8053197965\",\n        \"imp8053197978\",\n        \"imp8053358061\",\n        \"imp8053358040\",\n        \"imp8053358056\",\n        \"imp8053358052\",\n        \"imp8053358010\",\n        \"imp8053358001\",\n        \"imp8053358051\",\n        \"imp8053358027\",\n        \"imp8053358064\",\n        \"imp8053358008\",\n        \"imp8053358013\",\n        \"imp8053358069\",\n        \"imp8053358050\",\n        \"imp8053358054\",\n        \"imp8053358007\",\n        \"imp8053358009\",\n        \"imp8053358023\",\n        \"imp8053358021\",\n        \"imp8053358004\",\n        \"imp8053358025\",\n        \"imp8053358005\",\n        \"imp8053358033\",\n        \"imp8053358002\",\n        \"imp8053358028\",\n        \"imp8053358072\",\n        \"imp8053358014\",\n        \"imp8053358057\",\n        \"imp8053358045\",\n        \"imp8053358022\",\n        \"imp8053358070\",\n        \"imp8053358044\",\n        \"imp8053358012\",\n        \"imp8053358018\",\n        \"imp8053358066\",\n        \"imp8053358019\",\n        \"imp8053358011\",\n        \"imp8053358020\",\n        \"imp8053358030\",\n        \"imp8053358059\",\n        \"imp8053358032\",\n        \"imp8053358026\",\n        \"imp8053358068\",\n        \"imp8053358042\",\n        \"imp8053358043\",\n        \"imp8053358031\",\n        \"imp8053358067\",\n        \"imp8053358062\",\n        \"imp8053358039\",\n        \"imp8053358003\",\n        \"imp8053358017\",\n        \"imp8053358029\",\n        \"imp8053358038\",\n        \"imp8053358073\",\n        \"imp8053358036\",\n        \"imp8053358065\",\n        \"imp8053358016\",\n        \"imp8053358034\",\n        \"imp8053358055\",\n        \"imp8056399459\",\n        \"imp8056399470\",\n        \"imp8056399461\",\n        \"imp8052051326\",\n        \"imp8052051314\",\n        \"imp8052051349\",\n        \"imp8052051368\",\n        \"imp8052051341\",\n        \"imp8052051358\",\n        \"imp8052051361\",\n        \"imp8052051347\",\n        \"imp8052051362\",\n        \"imp8052051338\",\n        \"imp8052051308\",\n        \"imp8052051346\",\n        \"imp8052051348\",\n        \"imp8052051343\",\n        \"imp8052051309\",\n        \"imp8058459758\",\n        \"imp8058459764\",\n        \"imp8056837594\",\n        \"imp8053358528\",\n        \"imp8056181837\",\n        \"imp00005-010\",\n        \"imp8056835374\",\n        \"imp8059645256\",\n        \"imp8056824779\",\n        \"imp8057702403\",\n        \"imp8053089201\",\n        \"imp8053089206\",\n        \"imp8053089203\",\n        \"imp8053089202\",\n        \"imp8058804250\",\n        \"imp8054566918\",\n        \"imp8054566907\",\n        \"imp8054566909\",\n        \"imp8054566915\",\n        \"imp00012-016103\",\n        \"imp8058804275\",\n        \"imp8054566908\",\n        \"imp8054566912\",\n        \"imp8054566900\",\n        \"imp00012-016101\",\n        \"imp8052901419\",\n        \"imp8058804216\",\n        \"imp8058804276\",\n        \"imp8054566901\",\n        \"imp8054566914\",\n        \"imp8054566913\",\n        \"imp8054566902\",\n        \"imp00012-016102\",\n        \"imp8054566905\",\n        \"imp8058804279\",\n        \"imp8054566904\",\n        \"imp8054566916\",\n        \"imp8054566906\",\n        \"imp8054566903\",\n        \"imp8054566910\",\n        \"imp8054566911\",\n        \"imp8054566917\",\n        \"imp8054566999\",\n        \"imp8057414368\",\n        \"imp8057414385\",\n        \"imp8057414352\",\n        \"imp8057414380\",\n        \"imp8057414357\",\n        \"imp8057414384\",\n        \"imp8057414365\",\n        \"imp8057414356\",\n        \"imp8057414379\",\n        \"imp8057365608\",\n        \"imp8057414372\",\n        \"imp8057414374\",\n        \"imp8057414367\",\n        \"imp8057414364\",\n        \"imp8057414386\",\n        \"imp8057414388\",\n        \"imp8057414377\",\n        \"imp00019-01100\",\n        \"imp3108736906\",\n        \"imp3108736917\",\n        \"imp3108736907\",\n        \"imp8054564877\",\n        \"imp3108736914\",\n        \"imp3108736903\",\n        \"imp8054564878\",\n        \"imp3108736912\",\n        \"imp8054564887\",\n        \"imp8054564882\",\n        \"imp8054566882\",\n        \"imp8056846518\",\n        \"imp8054566886\",\n        \"imp8056846519\",\n        \"imp8056846516\",\n        \"imp8054566884\",\n        \"imp8054566890\",\n        \"imp8054566889\",\n        \"imp8054566888\",\n        \"imp8054566885\",\n        \"imp8054566883\",\n        \"imp8054566881\",\n        \"imp8054566887\",\n        \"imp8056846517\",\n        \"imp8056972801\",\n        \"imp8056972803\",\n        \"imp8056972804\",\n        \"imp8056972802\",\n        \"imp8054568110\",\n        \"imp8054568114\",\n        \"imp8054568108\",\n        \"imp8054568116\",\n        \"imp8054568111\",\n        \"imp8054568112\",\n        \"imp8054568113\",\n        \"imp8054568109\",\n        \"imp8054568117\",\n        \"imp8056971451\",\n        \"imp8056971459\",\n        \"imp8056971454\",\n        \"imp8056971468\",\n        \"imp8056971458\",\n        \"imp8056971460\",\n        \"imp8056971455\",\n        \"imp8056971461\",\n        \"imp8056971467\",\n        \"imp8056971462\",\n        \"imp8056971452\",\n        \"imp8056971457\",\n        \"imp8056971453\",\n        \"imp8056971466\",\n        \"imp8058809325\",\n        \"imp8058809324\",\n        \"imp8056822989\",\n        \"imp00035-02249\",\n        \"imp00035-02238\",\n        \"imp8058809323\",\n        \"imp00035-02246\",\n        \"imp8058809317\",\n        \"imp8055639781\",\n        \"imp00035-02117\",\n        \"imp8058809319\",\n        \"imp8058809320\",\n        \"imp00035-02265\",\n        \"imp00035-02244\",\n        \"imp00035-02222\",\n        \"imp00035-02236\",\n        \"imp00035-02234\",\n        \"imp00035-02269\",\n        \"imp00035-02231\",\n        \"imp8058809321\",\n        \"imp8058809322\",\n        \"imp8058809327\",\n        \"imp8058809318\",\n        \"imp8058809315\",\n        \"imp8054621220\",\n        \"imp8055392794\",\n        \"imp8059798742\",\n        \"imp8059798746\",\n        \"imp8059798744\",\n        \"imp8059798758\",\n        \"imp8059798753\",\n        \"imp8059798776\",\n        \"imp8059798743\",\n        \"imp00052-02306\",\n        \"imp8059798752\",\n        \"imp8059798766\",\n        \"imp8059798761\",\n        \"imp8059798782\",\n        \"imp8059798784\",\n        \"imp8059798785\",\n        \"imp8059798771\",\n        \"imp8059798762\",\n        \"imp8059798788\",\n        \"imp8059798772\",\n        \"imp8059798777\",\n        \"imp8059798764\",\n        \"imp8059798770\",\n        \"imp8059798750\",\n        \"imp8059798760\",\n        \"imp8059798783\",\n        \"imp8059798741\",\n        \"imp8059798798\",\n        \"imp7086655882\",\n        \"imp7086655881\",\n        \"imp7086655884\",\n        \"imp7086655885\",\n        \"imp7087620976\",\n        \"imp7087620977\",\n        \"imp7087620978\",\n        \"imp7086655886\",\n        \"imp7086655883\",\n        \"imp8185320225\",\n        \"imp8185320227\",\n        \"imp8185320230\",\n        \"00060-02235\",\n        \"imp8185320229\",\n        \"imp8185320234\",\n        \"imp8185320228\",\n        \"imp00060-02109\",\n        \"imp8058803554\",\n        \"imp8058803553\",\n        \"imp00110-12118\",\n        \"imp00110-12117\",\n        \"imp00110-12119\",\n        \"imp8058563452\",\n        \"imp00110-08163\",\n        \"imp8058806982\",\n        \"imp00110-08161\",\n        \"imp00110-08160\",\n        \"imp00110-08162\",\n        \"imp00110-01333\",\n        \"imp8058806987\",\n        \"imp8058806986\",\n        \"imp00110-03138\",\n        \"imp00110-03139\",\n        \"imp00110-03137\",\n        \"imp8058806988\",\n        \"imp8058806989\",\n        \"imp00110-05109\",\n        \"imp00110-05113\",\n        \"imp00110-05112\",\n        \"imp8058803581\",\n        \"imp00110-05168\",\n        \"imp8053572551\",\n        \"imp8053572553\",\n        \"imp8053572554\",\n        \"imp8053572552\",\n        \"imp8058803591\",\n        \"imp8058803593\",\n        \"imp00110-09127\",\n        \"imp00110-09128\",\n        \"imp00110-09126\",\n        \"imp8058803592\",\n        \"imp8058844239\",\n        \"imp00110-10105\",\n        \"imp00110-10106\",\n        \"imp00110-10107\",\n        \"imp8058844238\",\n        \"imp8058563454\",\n        \"imp00110-11164\",\n        \"imp8058563457\",\n        \"imp8058563455\",\n        \"imp8058563453\",\n        \"imp8058806972\",\n        \"imp00110-15152\",\n        \"imp00110-15124\",\n        \"imp00110-15151\",\n        \"imp8058806975\",\n        \"imp8058806973\",\n        \"imp8058806974\",\n        \"imp8058803588\",\n        \"imp8058803589\",\n        \"imp8058803590\",\n        \"imp8058803587\",\n        \"imp00110-17111\",\n        \"imp00110-17114\",\n        \"imp00110-17115\",\n        \"imp8058803555\",\n        \"imp8059262213\",\n        \"imp8059262211\",\n        \"imp8059262214\",\n        \"imp00110-19210\",\n        \"imp8059262212\",\n        \"imp8058806985\",\n        \"imp8058806984\",\n        \"imp00110-02144\",\n        \"imp00110-02143\",\n        \"imp00110-02142\",\n        \"imp8059262203\",\n        \"imp8058803597\",\n        \"imp8058803598\",\n        \"imp00110-04148\",\n        \"imp00110-04149\",\n        \"imp00110-04147\",\n        \"imp8058803599\",\n        \"imp8058844240\",\n        \"imp8058844236\",\n        \"imp8058844257\",\n        \"imp8058844224\",\n        \"imp8058844249\",\n        \"imp8058844253\",\n        \"imp8058844258\",\n        \"imp8058844235\",\n        \"imp8058806976\",\n        \"imp8058844244\",\n        \"imp8058844243\",\n        \"imp8058844254\",\n        \"imp8058844255\",\n        \"imp8058844250\",\n        \"imp8058844259\",\n        \"imp8058844241\",\n        \"imp8058844233\",\n        \"imp8058844251\",\n        \"imp8058844227\",\n        \"imp8058844230\",\n        \"imp8058844222\",\n        \"imp8058844237\",\n        \"imp8058844225\",\n        \"imp8058844248\",\n        \"imp8058844245\",\n        \"imp8058844256\",\n        \"imp00110-13530\",\n        \"imp8056796268\",\n        \"imp8058844229\",\n        \"imp00110-13520\",\n        \"imp8058844221\",\n        \"imp8059622121\",\n        \"imp8058844232\",\n        \"imp8058844242\",\n        \"imp8058844226\",\n        \"imp8058844228\",\n        \"imp8058844220\",\n        \"imp8058844234\",\n        \"imp8058844231\",\n        \"imp8058844246\",\n        \"imp8058844223\",\n        \"imp8058844252\",\n        \"imp8058844247\",\n        \"imp8054568777\",\n        \"imp8054568771\",\n        \"imp8054568774\",\n        \"imp8054568775\",\n        \"imp8054568773\",\n        \"imp8054568770\",\n        \"imp8054568772\",\n        \"imp00064-02155\",\n        \"imp00064-02158\",\n        \"imp00064-02152\",\n        \"imp00064-02151\",\n        \"imp00064-02157\",\n        \"imp00064-02159\",\n        \"imp00064-02153\",\n        \"imp00064-02154\",\n        \"imp8054568776\",\n        \"imp00064-02160\",\n        \"imp00064-02156\",\n        \"imp8054568779\",\n        \"imp8054568778\",\n        \"imp8284331686\",\n        \"imp8053089780\",\n        \"imp8053089705\",\n        \"imp8053089759\",\n        \"imp8053089781\",\n        \"imp8053089763\",\n        \"imp8053089776\",\n        \"imp8053089783\",\n        \"imp8053089775\",\n        \"imp00072-02710\",\n        \"imp8053089818\",\n        \"imp00072-02711\",\n        \"imp8053089777\",\n        \"imp8053089787\",\n        \"imp8053089778\",\n        \"imp8053089779\",\n        \"imp8053089782\",\n        \"imp00074-01200\",\n        \"imp8058801113\",\n        \"imp8058801192\",\n        \"imp8058801158\",\n        \"imp8058801110\",\n        \"imp8058801130\",\n        \"imp8058801105\",\n        \"imp8058801149\",\n        \"imp8058801140\",\n        \"imp8058801150\",\n        \"imp8058801116\",\n        \"imp8058801146\",\n        \"imp8058801119\",\n        \"imp8058801155\",\n        \"imp8058801133\",\n        \"imp8058801134\",\n        \"imp8058801143\",\n        \"imp8058801118\",\n        \"imp8058801111\",\n        \"imp8058801142\",\n        \"imp8058801123\",\n        \"imp8058801114\",\n        \"imp8058801122\",\n        \"imp8058801154\",\n        \"imp8058801128\",\n        \"imp8058801132\",\n        \"imp8058801153\",\n        \"imp8058801152\",\n        \"imp8058801137\",\n        \"imp8058801157\",\n        \"imp8058801124\",\n        \"imp8058801136\",\n        \"imp8058801144\",\n        \"imp8058801102\",\n        \"imp8058801120\",\n        \"imp8058801147\",\n        \"imp8058801103\",\n        \"imp8058801156\",\n        \"imp8058801106\",\n        \"imp8058801107\",\n        \"imp8058801127\",\n        \"imp8058801177\",\n        \"imp8058801135\",\n        \"imp8058801151\",\n        \"imp8058801138\",\n        \"imp8058801141\",\n        \"imp8058801109\",\n        \"imp8058801126\",\n        \"imp8058801115\",\n        \"imp8058801108\",\n        \"imp8058801145\",\n        \"imp8058801148\",\n        \"imp8058801121\",\n        \"imp8058801139\",\n        \"imp8058801104\",\n        \"imp8054568745\",\n        \"imp8054568740\",\n        \"imp8054568746\",\n        \"imp8054568748\",\n        \"imp8054568743\",\n        \"imp8054568744\",\n        \"imp8054568751\",\n        \"imp8054568747\",\n        \"imp00202-02130\",\n        \"imp8054568742\",\n        \"imp8054570303\",\n        \"imp8054568750\",\n        \"imp8054568741\",\n        \"imp8054565865\",\n        \"imp8054568752\",\n        \"imp8052840298\",\n        \"imp8052840299\",\n        \"imp8057300930\",\n        \"imp8057701393\",\n        \"imp8058801552\",\n        \"imp8058801553\",\n        \"imp8057701395\",\n        \"imp8058801554\",\n        \"imp8054363430\",\n        \"imp8057701394\",\n        \"imp8057701638\",\n        \"imp8057701389\",\n        \"imp8057300915\",\n        \"imp8057701649\",\n        \"imp8052840261\",\n        \"imp8057701643\",\n        \"imp8057701398\",\n        \"imp8052840263\",\n        \"imp8053572589\",\n        \"imp8057701388\",\n        \"imp8057701359\",\n        \"imp8058801547\",\n        \"imp8057300906\",\n        \"imp8057701631\",\n        \"imp8058801556\",\n        \"imp8057701390\",\n        \"imp8055607805\",\n        \"00076-02VM550\",\n        \"imp8058801546\",\n        \"imp8057701647\",\n        \"imp8057701644\",\n        \"imp8057701633\",\n        \"imp8057701391\",\n        \"imp8058801548\",\n        \"imp8057701621\",\n        \"imp8057701632\",\n        \"imp8057701387\",\n        \"imp8053306603\",\n        \"imp8057701636\",\n        \"imp8057300907\",\n        \"imp8057701397\",\n        \"imp8057701385\",\n        \"imp8057701392\",\n        \"imp8058801544\",\n        \"imp8058801545\",\n        \"imp8057300909\",\n        \"imp8057300922\",\n        \"imp8057701635\",\n        \"imp8054564287\",\n        \"imp8058801543\",\n        \"imp8057701386\",\n        \"imp8053579517\",\n        \"imp8057701396\",\n        \"imp8057701628\",\n        \"imp8057701629\",\n        \"imp8057701630\",\n        \"imp8052840260\",\n        \"imp00076-01200\",\n        \"imp8058801615\",\n        \"imp8058801642\",\n        \"imp8058801651\",\n        \"imp8058801647\",\n        \"imp8058801602\",\n        \"imp8058801604\",\n        \"imp8058801603\",\n        \"imp8058801639\",\n        \"imp8058801648\",\n        \"imp8058801626\",\n        \"imp8058803551\",\n        \"imp8058801653\",\n        \"imp8058801608\",\n        \"imp8058801616\",\n        \"imp8058804201\",\n        \"imp8059662152\",\n        \"00208-029293\",\n        \"imp8058846301\",\n        \"8058801690x\",\n        \"imp8053572520\",\n        \"imp8053572524\",\n        \"imp8053572501\",\n        \"imp8053572512\",\n        \"imp8053572503\",\n        \"imp8053572515\",\n        \"imp00084-02555\",\n        \"imp00084-02556\",\n        \"imp8053572504\",\n        \"imp8053572513\",\n        \"imp8053572516\",\n        \"imp8053572514\",\n        \"imp8053572522\",\n        \"imp00084-02540\",\n        \"imp8056140060\",\n        \"imp8053572521\",\n        \"imp8053572500\",\n        \"imp8053572509\",\n        \"imp8053572508\",\n        \"imp8053572523\",\n        \"imp8053572507\",\n        \"imp8053572506\",\n        \"imp8053572505\",\n        \"imp4085122678\",\n        \"imp8053572517\",\n        \"imp8053572511\",\n        \"imp4085122682\",\n        \"imp8053572510\",\n        \"imp4085122667\",\n        \"imp4085122663\",\n        \"imp4085122674\",\n        \"imp4085122664\",\n        \"imp3238002637\",\n        \"imp3238002635\",\n        \"imp3238002638\",\n        \"imp3238002636\",\n        \"imp3238002641\",\n        \"imp8056173414\",\n        \"imp8056173415\",\n        \"imp8056173412\",\n        \"imp8056173410\",\n        \"imp8056173413\",\n        \"imp8056173411\",\n        \"imp8053924263\",\n        \"imp8059330274\",\n        \"imp8059330275\",\n        \"imp8053924265\",\n        \"imp8059330276\",\n        \"imp8059330251\",\n        \"imp8059330354\",\n        \"imp8059330235\",\n        \"imp8059330321\",\n        \"imp8059330308\",\n        \"imp8053924266\",\n        \"imp8053924264\",\n        \"imp8056042697\",\n        \"imp8056042648\",\n        \"imp8056042642\",\n        \"imp8056042652\",\n        \"imp8056042643\",\n        \"imp8056174614\",\n        \"imp8056174910\",\n        \"imp8056174997\",\n        \"imp8056174619\",\n        \"imp6618406708\",\n        \"imp6613714483\",\n        \"imp6613714487\",\n        \"imp6613714420\",\n        \"imp6613714517\",\n        \"imp6613714433\",\n        \"imp6613714524\",\n        \"imp6618406798\",\n        \"imp6613714505\",\n        \"imp6613714494\",\n        \"imp6613714469\",\n        \"imp6618406707\",\n        \"imp6613714518\",\n        \"imp6613714453\",\n        \"imp6613714416\",\n        \"imp6613714527\",\n        \"imp6618406709\",\n        \"imp6613714493\",\n        \"imp6613714439\",\n        \"imp6613714508\",\n        \"imp6613714394\",\n        \"imp6613714481\",\n        \"imp6613714484\",\n        \"imp6613714468\",\n        \"imp6613714448\",\n        \"imp6613714373\",\n        \"imp6613714456\",\n        \"imp6613714525\",\n        \"imp6613714466\",\n        \"imp6613714460\",\n        \"imp6613714536\",\n        \"imp6613714375\",\n        \"imp00118-044499\",\n        \"imp6613714371\",\n        \"imp6613714479\",\n        \"imp6613714391\",\n        \"imp6613714519\",\n        \"imp6613714467\",\n        \"imp6613714461\",\n        \"imp6613714503\",\n        \"imp6613714482\",\n        \"imp6618406795\",\n        \"imp6618406704\",\n        \"imp6613714478\",\n        \"imp6613714431\",\n        \"imp6613714476\",\n        \"imp6613714395\",\n        \"imp6618406796\",\n        \"imp6613714450\",\n        \"imp8055661169\",\n        \"imp6613714451\",\n        \"imp6618406797\",\n        \"imp6613714465\",\n        \"imp6613714378\",\n        \"imp6613714471\",\n        \"imp6618406702\",\n        \"imp6613714458\",\n        \"imp6618406706\",\n        \"imp6613714374\",\n        \"imp6613714521\",\n        \"imp6613714377\",\n        \"imp6613714480\",\n        \"imp6613714389\",\n        \"imp6613714455\",\n        \"imp6613714438\",\n        \"imp6613714384\",\n        \"imp6613714504\",\n        \"imp00118-044404\",\n        \"imp6615253428\",\n        \"imp6615253429\",\n        \"imp6613714404\",\n        \"imp6613714499\",\n        \"imp6613714470\",\n        \"imp6613714408\",\n        \"imp6613714421\",\n        \"imp8055661170\",\n        \"imp6613714427\",\n        \"imp6618406701\",\n        \"imp6613714396\",\n        \"imp6613714440\",\n        \"imp6613714419\",\n        \"imp6613714522\",\n        \"imp6613714463\",\n        \"imp6613714501\",\n        \"imp6613714496\",\n        \"imp6613714442\",\n        \"imp6613714474\",\n        \"imp6618406703\",\n        \"imp6613714509\",\n        \"imp6613714502\",\n        \"imp6613714462\",\n        \"imp6613714454\",\n        \"imp6613714441\",\n        \"imp6613714382\",\n        \"imp6613714507\",\n        \"imp6613714516\",\n        \"imp6613714520\",\n        \"imp6613714492\",\n        \"imp6613714385\",\n        \"imp6613714393\",\n        \"imp6613714388\",\n        \"imp6615253427\",\n        \"imp6613714449\",\n        \"imp6613714383\",\n        \"imp6613714464\",\n        \"imp6613714497\",\n        \"imp6613714526\",\n        \"imp6613714475\",\n        \"imp6613714457\",\n        \"imp6613714506\",\n        \"imp6613714390\",\n        \"imp6613714436\",\n        \"imp00118-directory\",\n        \"imp00118-013000\",\n        \"imp8056952126\",\n        \"imp8058807673\",\n        \"imp8058804671\",\n        \"imp8055662869\",\n        \"imp8055664111\",\n        \"imp6618406705\",\n        \"imp8055664116\",\n        \"imp8055662876\",\n        \"imp8058807459\",\n        \"imp8054561253\",\n        \"imp8054561287\",\n        \"imp8058804617\",\n        \"imp8055664121\",\n        \"imp8058804628\",\n        \"imp8055662870\",\n        \"imp8058804626\",\n        \"imp8054561268\",\n        \"imp8058804624\",\n        \"imp8058804675\",\n        \"imp5593722432\",\n        \"imp8055662863\",\n        \"imp8058804653\",\n        \"imp8054561275\",\n        \"imp8054561255\",\n        \"imp8055662894\",\n        \"imp8056952109\",\n        \"imp8055664102\",\n        \"imp8054561289\",\n        \"imp8056173081\",\n        \"imp8054561261\",\n        \"imp8055664104\",\n        \"imp8058804650\",\n        \"imp8054561271\",\n        \"imp8054561286\",\n        \"imp8058804638\",\n        \"imp8055661447\",\n        \"imp8058804687\",\n        \"imp8055662862\",\n        \"imp8058804666\",\n        \"imp8058804680\",\n        \"imp8058804604\",\n        \"imp8055662891\",\n        \"imp8058804645\",\n        \"imp8055662884\",\n        \"imp8055662897\",\n        \"imp8058801698\",\n        \"imp8054561249\",\n        \"imp8058804649\",\n        \"imp8055662845\",\n        \"imp8054561288\",\n        \"imp8058804652\",\n        \"imp8058804619\",\n        \"imp8056952140\",\n        \"imp8055664105\",\n        \"imp8058804600\",\n        \"imp8055664120\",\n        \"imp8055662880\",\n        \"imp8056952129\",\n        \"imp8055662887\",\n        \"imp8054561247\",\n        \"imp8058804689\",\n        \"imp8058804694\",\n        \"imp8055664136\",\n        \"imp8053086904\",\n        \"imp8058804639\",\n        \"imp8058804664\",\n        \"imp8055662893\",\n        \"imp8058804630\",\n        \"imp8058804684\",\n        \"imp8058804692\",\n        \"imp8055661175\",\n        \"imp8058807442\",\n        \"imp8055662865\",\n        \"imp8058804655\",\n        \"imp8058804672\",\n        \"imp8055662871\",\n        \"imp8058807455\",\n        \"imp8058804663\",\n        \"imp8058804603\",\n        \"imp8058804607\",\n        \"imp8055662881\",\n        \"imp8058804695\",\n        \"imp8054561258\",\n        \"imp8055662879\",\n        \"imp8058804676\",\n        \"imp8056952114\",\n        \"imp8058804697\",\n        \"imp8058804627\",\n        \"imp8055662892\",\n        \"imp8058804659\",\n        \"imp8056952124\",\n        \"imp8055662882\",\n        \"imp8055662840\",\n        \"imp8058804696\",\n        \"imp8055662888\",\n        \"imp8055662850\",\n        \"imp8055664101\",\n        \"imp8058804634\",\n        \"imp8055662873\",\n        \"imp8058804677\",\n        \"imp8058804613\",\n        \"imp8054561285\",\n        \"imp8054561272\",\n        \"imp8058804678\",\n        \"imp8054561256\",\n        \"imp8055662886\",\n        \"imp8055662855\",\n        \"imp8058804636\",\n        \"imp8054561265\",\n        \"imp8055662856\",\n        \"imp8055662843\",\n        \"imp8058807447\",\n        \"imp8058807674\",\n        \"imp8058804688\",\n        \"imp8055662866\",\n        \"imp8058804631\",\n        \"imp8055662898\",\n        \"imp8058801699\",\n        \"imp8058804632\",\n        \"imp8058804682\",\n        \"imp8055664135\",\n        \"imp8055664112\",\n        \"imp8058804670\",\n        \"imp8055664110\",\n        \"imp8055664138\",\n        \"imp8058804651\",\n        \"imp8058804225\",\n        \"imp8053572559\",\n        \"imp8055662896\",\n        \"imp8058804640\",\n        \"imp8058804601\",\n        \"imp8054561269\",\n        \"imp8058804633\",\n        \"imp8056952113\",\n        \"imp8058804646\",\n        \"imp8058804620\",\n        \"imp8058804637\",\n        \"imp8054561276\",\n        \"imp8055662851\",\n        \"imp8058804616\",\n        \"imp8058807439\",\n        \"imp8054561263\",\n        \"imp8058807457\",\n        \"imp8053089227\",\n        \"imp8055662878\",\n        \"imp8058801659\",\n        \"imp8058807909\",\n        \"imp8058807454\",\n        \"imp8054561264\",\n        \"imp8055664128\",\n        \"imp8055662846\",\n        \"imp8055662861\",\n        \"imp8058804665\",\n        \"imp8058807441\",\n        \"imp8055664109\",\n        \"imp8055662883\",\n        \"imp8055664113\",\n        \"imp8056173080\",\n        \"imp8054561280\",\n        \"imp8054561262\",\n        \"imp8054561246\",\n        \"imp8055664134\",\n        \"imp8058804647\",\n        \"imp00118-021010\",\n        \"imp8058804654\",\n        \"imp8058807452\",\n        \"imp8058804662\",\n        \"imp8058804621\",\n        \"imp8054561243\",\n        \"imp8055664132\",\n        \"imp8058804679\",\n        \"imp8055662875\",\n        \"imp8055662877\",\n        \"imp8058807910\",\n        \"imp00118-022010\",\n        \"imp8054561250\",\n        \"imp8058804608\",\n        \"imp8058804673\",\n        \"imp8058807456\",\n        \"imp8058807458\",\n        \"imp8055662864\",\n        \"imp8058804685\",\n        \"imp8055664114\",\n        \"imp8055664115\",\n        \"imp8058804642\",\n        \"imp8052433849\",\n        \"imp8054565846\",\n        \"imp8055662874\",\n        \"imp8058807450\",\n        \"imp8058804280\",\n        \"imp8054561266\",\n        \"imp8055662841\",\n        \"imp8058804629\",\n        \"imp8055664133\",\n        \"imp8055662895\",\n        \"imp8058804658\",\n        \"imp8058804667\",\n        \"imp8054561254\",\n        \"imp8058804625\",\n        \"imp8058804610\",\n        \"imp8054561284\",\n        \"imp8055662885\",\n        \"imp8055662867\",\n        \"imp8055664124\",\n        \"imp8058807446\",\n        \"imp8055662844\",\n        \"imp8058804691\",\n        \"imp8058804618\",\n        \"imp8056173082\",\n        \"imp8058804644\",\n        \"imp8058804686\",\n        \"imp8058804693\",\n        \"imp8056952139\",\n        \"imp8054561273\",\n        \"imp8054561251\",\n        \"imp8055664131\",\n        \"imp8058804635\",\n        \"imp8055662848\",\n        \"imp8058804606\",\n        \"imp8055662164\",\n        \"imp8058804609\",\n        \"imp8055664137\",\n        \"imp8058804614\",\n        \"imp8055662857\",\n        \"imp8056952117\",\n        \"imp8054561270\",\n        \"imp8058804643\",\n        \"imp8055662842\",\n        \"imp8055662853\",\n        \"imp8058804602\",\n        \"imp8058804674\",\n        \"imp00118-024140\",\n        \"imp8058807449\",\n        \"imp8055664125\",\n        \"imp8055664127\",\n        \"imp8055662899\",\n        \"imp8055662860\",\n        \"imp8058807445\",\n        \"imp9723491665\",\n        \"imp8055664126\",\n        \"imp8055662847\",\n        \"imp8055664108\",\n        \"imp8058804660\",\n        \"imp8056952107\",\n        \"imp8058804648\",\n        \"imp8055662859\",\n        \"imp8058804669\",\n        \"imp8055661441\",\n        \"imp8058807448\",\n        \"imp8055664118\",\n        \"imp8055664122\",\n        \"imp8058804605\",\n        \"imp8053572556\",\n        \"imp8055662858\",\n        \"imp8055662852\",\n        \"imp8055664106\",\n        \"imp8058804612\",\n        \"imp8054561274\",\n        \"imp8058804656\",\n        \"imp8054561283\",\n        \"imp8058804615\",\n        \"imp8055664103\",\n        \"imp8058804699\",\n        \"imp8052593132\",\n        \"imp8055664139\",\n        \"imp8058807451\",\n        \"imp8058804683\",\n        \"imp8055664119\",\n        \"imp8058804668\",\n        \"imp8055661176\",\n        \"imp8056952119\",\n        \"imp8058807440\",\n        \"imp8055664129\",\n        \"imp8058807443\",\n        \"imp8058804622\",\n        \"imp8058804223\",\n        \"imp8056173075\",\n        \"imp8055662889\",\n        \"imp00118-029999\",\n        \"imp8055664117\",\n        \"imp8054561259\",\n        \"imp8058804698\",\n        \"imp8058804623\",\n        \"imp8058804641\",\n        \"imp8054561260\",\n        \"imp8054561241\",\n        \"imp8055662872\",\n        \"imp8055662854\",\n        \"imp00118-028181\",\n        \"imp9723491548\",\n        \"imp9723491562\",\n        \"imp9723491657\",\n        \"imp9723491649\",\n        \"imp9723491627\",\n        \"imp9723491640\",\n        \"imp9723491535\",\n        \"imp9723491587\",\n        \"imp9723491639\",\n        \"imp9723491658\",\n        \"imp9723491536\",\n        \"imp9723491647\",\n        \"imp9723491537\",\n        \"imp00118058888\",\n        \"imp9723491574\",\n        \"imp9723491576\",\n        \"imp9723491656\",\n        \"imp9723491659\",\n        \"imp9723491563\",\n        \"imp9723491549\",\n        \"imp9723491561\",\n        \"imp9723491661\",\n        \"imp8056906283\",\n        \"imp8056906281\",\n        \"imp8056177775\",\n        \"imp8056906240\",\n        \"imp8056177789\",\n        \"imp8056971494\",\n        \"imp8056906203\",\n        \"imp8056906294\",\n        \"imp8056971483\",\n        \"imp8056971484\",\n        \"imp8056971481\",\n        \"imp8056971482\",\n        \"imp8056971472\",\n        \"imp8058809477\",\n        \"imp8056971471\",\n        \"imp8056906266\",\n        \"imp8056906295\",\n        \"imp8056906291\",\n        \"imp8056906211\",\n        \"imp8056906229\",\n        \"imp8056906293\",\n        \"imp8056906222\",\n        \"imp8056906261\",\n        \"imp8056177768\",\n        \"imp8056177765\",\n        \"imp8056906206\",\n        \"imp8056906244\",\n        \"imp8056906265\",\n        \"imp8056906267\",\n        \"imp8056906257\",\n        \"imp8056177763\",\n        \"imp8056906287\",\n        \"imp8056906292\",\n        \"imp8056906290\",\n        \"imp8056971476\",\n        \"imp8056906209\",\n        \"imp8056906289\",\n        \"imp8056906204\",\n        \"imp8056906260\",\n        \"imp8056177836\",\n        \"imp8056177829\",\n        \"imp8056177786\",\n        \"imp8056177804\",\n        \"imp8056177845\",\n        \"imp8056177803\",\n        \"imp8056177837\",\n        \"imp8056177801\",\n        \"imp8056177844\",\n        \"imp8056177846\",\n        \"imp8056177822\",\n        \"imp8056177812\",\n        \"imp8056177821\",\n        \"imp8056177849\",\n        \"imp8053089723\",\n        \"imp8056177805\",\n        \"imp8056177847\",\n        \"imp8056177820\",\n        \"imp8056177815\",\n        \"imp8053089722\",\n        \"imp8056177809\",\n        \"imp8056177835\",\n        \"imp8056177828\",\n        \"imp8056177808\",\n        \"imp8056177841\",\n        \"imp8056177806\",\n        \"imp8056177810\",\n        \"imp8056177842\",\n        \"imp8056177814\",\n        \"imp8053089724\",\n        \"imp8056177816\",\n        \"imp8056177777\",\n        \"imp8056177848\",\n        \"imp8056177839\",\n        \"imp8056177827\",\n        \"imp8056177819\",\n        \"imp8056177807\",\n        \"imp8056177811\",\n        \"imp8056177802\",\n        \"imp8056177817\",\n        \"imp8056177813\",\n        \"imp8056177840\",\n        \"imp8056177843\",\n        \"imp8056177838\",\n        \"imp8056177818\",\n        \"imp8053089720\",\n        \"imp8058809403\",\n        \"imp8056906242\",\n        \"imp8058809459\",\n        \"imp8056906218\",\n        \"imp8056906298\",\n        \"imp8058809427\",\n        \"00126-08230\",\n        \"imp8058809462\",\n        \"imp8056177794\",\n        \"imp8058809433\",\n        \"imp8056906224\",\n        \"imp8056906263\",\n        \"imp8056906252\",\n        \"imp8056906232\",\n        \"imp8056906233\",\n        \"imp8056177758\",\n        \"imp8056906268\",\n        \"imp8056177755\",\n        \"imp8056177774\",\n        \"imp8056177762\",\n        \"imp8056906256\",\n        \"imp8056906277\",\n        \"imp8056906276\",\n        \"imp8056906225\",\n        \"imp8056906243\",\n        \"imp00126-02451\",\n        \"imp8056177759\",\n        \"imp8056906282\",\n        \"imp8056906216\",\n        \"imp8056906223\",\n        \"imp8056906214\",\n        \"imp00126-02452\",\n        \"imp8058809465\",\n        \"imp8056971477\",\n        \"imp8056177791\",\n        \"imp8056906245\",\n        \"imp8056906238\",\n        \"imp8056906254\",\n        \"imp8056906239\",\n        \"imp8056906212\",\n        \"imp8056906250\",\n        \"imp8056906234\",\n        \"imp8056906286\",\n        \"imp8056971479\",\n        \"imp8056906251\",\n        \"imp8056906248\",\n        \"imp8056906226\",\n        \"imp8056906285\",\n        \"imp8056177771\",\n        \"imp8053089702\",\n        \"imp8056906237\",\n        \"imp8056177764\",\n        \"imp8056906241\",\n        \"imp8056906213\",\n        \"imp8056177772\",\n        \"imp8056906231\",\n        \"imp8056906236\",\n        \"imp8056177761\",\n        \"imp8056177757\",\n        \"imp8056906274\",\n        \"imp8056906221\",\n        \"imp8056971478\",\n        \"imp8056177780\",\n        \"imp8056971473\",\n        \"imp8056177766\",\n        \"imp8056906217\",\n        \"imp8056906249\",\n        \"imp8056906273\",\n        \"imp8056906296\",\n        \"imp8056906201\",\n        \"imp8056906219\",\n        \"imp8056935555\",\n        \"imp8059655555\",\n        \"imp00126-01100\",\n        \"imp8056971480\",\n        \"imp8056182797\",\n        \"imp8054566080\",\n        \"imp8056182823\",\n        \"imp8054566082\",\n        \"imp8473488849\",\n        \"imp8473488850\",\n        \"imp8473488844\",\n        \"imp8473544171\",\n        \"imp8473507581\",\n        \"imp00146-062299\",\n        \"imp00146-062321\",\n        \"imp00146-062322\",\n        \"imp00146-012000\",\n        \"imp4125453955\",\n        \"imp4123763904\",\n        \"imp4125453948\",\n        \"imp4125453928\",\n        \"imp4123763905\",\n        \"imp4125453921\",\n        \"imp4123763961\",\n        \"imp4125453945\",\n        \"imp4125453918\",\n        \"imp4125453942\",\n        \"imp4123763960\",\n        \"imp4125453958\",\n        \"imp4126313868\",\n        \"imp8473544647\",\n        \"imp8473544646\",\n        \"imp8473544650\",\n        \"imp8473544661\",\n        \"imp8473544655\",\n        \"imp00146-024640\",\n        \"imp8473544649\",\n        \"imp8054565854\",\n        \"imp8054565851\",\n        \"imp8054568141\",\n        \"imp8056181416\",\n        \"imp8054565853\",\n        \"imp8054568145\",\n        \"imp00148-02211\",\n        \"imp8054565869\",\n        \"imp8054564247\",\n        \"imp8054564249\",\n        \"imp8054564248\",\n        \"imp8054568142\",\n        \"imp8054568144\",\n        \"imp8054568143\",\n        \"imp8054760305\",\n        \"imp8054760306\",\n        \"imp8058809343\",\n        \"imp8058809342\",\n        \"imp00150-02301\",\n        \"imp8053571397\",\n        \"imp8058807105\",\n        \"imp8058807127\",\n        \"imp8058807123\",\n        \"imp8058807136\",\n        \"imp8058807125\",\n        \"imp8058807126\",\n        \"imp8058807124\",\n        \"00163-04SIP6949\",\n        \"imp8058807537\",\n        \"00163-04SIP7108\",\n        \"00163-04SIP7230\",\n        \"imp8058807114\",\n        \"00163-04SIP7116\",\n        \"00163-04SIP7118\",\n        \"00163-04SIP6952\",\n        \"00163-04SIP6954\",\n        \"00163-04SIP6950\",\n        \"00163-04SIP7232\",\n        \"001636-04SIP6969\",\n        \"00163-04SIP7115\",\n        \"00163-04SIP7284\",\n        \"00163-04SIP7120\",\n        \"00163-04SIP6960\",\n        \"00163-04SIP6959\",\n        \"00163-04SIP6961\",\n        \"00163-04-trunk\",\n        \"00163-04SIP7231\",\n        \"00163-04SIP7206\",\n        \"00163-04SIP7203\",\n        \"00163-04SIP7201\",\n        \"00163-04SIP6955\",\n        \"00163-04SIP6971\",\n        \"00163-04SIP6967\",\n        \"00163-04SIP6962\",\n        \"00163-04SIP6970\",\n        \"00163-04SIP7460\",\n        \"00163-04SIP7213\",\n        \"00163-04SIP6940\",\n        \"00163-04SIP6956\",\n        \"00163-04SIP6968\",\n        \"00163-04SIP7112\",\n        \"00163-04SIP6951\",\n        \"00163-04SIP6963\",\n        \"00163-04SIP6965\",\n        \"00163-04SIP7119\",\n        \"00163-04SIP7202\",\n        \"00163-04SIP7117\",\n        \"00163-04SIP6957\",\n        \"00163-04SIP7205\",\n        \"00163-04SIP7204\",\n        \"00163-04SIP6964\",\n        \"00163-04SIP6948\",\n        \"00163-04SIP6972\",\n        \"imp8058806966\",\n        \"imp8054567234\",\n        \"imp8054567195\",\n        \"imp8054567237\",\n        \"imp8054567229\",\n        \"imp8054567197\",\n        \"imp8054567267\",\n        \"imp8054567198\",\n        \"imp8054567269\",\n        \"imp8054567268\",\n        \"imp8054567196\",\n        \"imp8054567199\",\n        \"imp8058791701\",\n        \"imp8053089711\",\n        \"imp8053089713\",\n        \"imp8053089715\",\n        \"imp8053089714\",\n        \"imp8053089717\",\n        \"imp8053089716\",\n        \"imp8054568147\",\n        \"imp8054566252\",\n        \"imp8054566251\",\n        \"imp00179-02201\",\n        \"imp8054566256\",\n        \"imp00179-02203\",\n        \"imp00179-02202\",\n        \"imp8054567009\",\n        \"imp8054566255\",\n        \"imp8054568148\",\n        \"imp8054566254\",\n        \"imp8054566253\",\n        \"imp000182-02200\",\n        \"imp8053089239\",\n        \"imp8053089238\",\n        \"imp8054565971\",\n        \"imp8054565969\",\n        \"imp8054565972\",\n        \"imp00186-025000\",\n        \"imp00192-714892\",\n        \"imp00192-714891\",\n        \"imp00192-714893\",\n        \"imp00192-714894\",\n        \"imp00192-01100509\",\n        \"imp00192-01100519\",\n        \"imp00192-01104979\",\n        \"imp00192-01150029\",\n        \"imp00192-01150079\",\n        \"imp00192-01100529\",\n        \"imp00192-01100499\",\n        \"imp00192-01100539\",\n        \"imp00192-01100549\",\n        \"imp00192-01100559\",\n        \"imp00192-01100569\",\n        \"imp00192-01100579\",\n        \"imp00192-01100629\",\n        \"imp00192-01100639\",\n        \"imp00192-01109999\",\n        \"imp00192-01100009\",\n        \"imp00192-01100019\",\n        \"imp00192-01100029\",\n        \"imp00192-01100039\",\n        \"imp00192-01100049\",\n        \"imp00192-01100059\",\n        \"imp00192-01100099\",\n        \"imp00192-01100109\",\n        \"imp00192-01100399\",\n        \"imp00192-01100409\",\n        \"imp00192-01100419\",\n        \"imp00192-01100439\",\n        \"imp00192-01100449\",\n        \"imp00192-01100459\",\n        \"imp00192-01100469\",\n        \"imp00192-01100479\",\n        \"imp00192-01100489\",\n        \"imp00192-01150039\",\n        \"imp00192-01150049\",\n        \"imp00192-01100649\",\n        \"imp00192-01104829\",\n        \"imp00192-01104899\",\n        \"imp00192-01105029\",\n        \"imp00192-01100119\",\n        \"imp00192-01100129\",\n        \"imp00192-01100149\",\n        \"imp00192-01100159\",\n        \"imp00192-01100179\",\n        \"imp00192-01100189\",\n        \"imp00192-01100219\",\n        \"imp00192-01100229\",\n        \"imp00192-01100239\",\n        \"imp00192-01100269\",\n        \"imp00192-01100279\",\n        \"imp00192-01100289\",\n        \"imp00192-01100299\",\n        \"imp00192-01100309\",\n        \"imp00192-01100319\",\n        \"imp00192-01100329\",\n        \"imp00192-01100339\",\n        \"imp00192-01100349\",\n        \"imp00192-01100369\",\n        \"imp00192-01100379\",\n        \"imp00192-735301\",\n        \"imp00192-735304\",\n        \"imp00192-735303\",\n        \"imp00192-735302\",\n        \"imp00192-664823\",\n        \"imp00192-664822\",\n        \"imp00192-664821\",\n        \"imp00192-664824\",\n        \"8054353163\",\n        \"8054353164\",\n        \"8054353162\",\n        \"8054353167\",\n        \"8056926205\",\n        \"8054353158\",\n        \"8053089952\",\n        \"8054353165\",\n        \"8054353166\",\n        \"8054353168\",\n        \"8056926203\",\n        \"8054353169\",\n        \"8054353170\",\n        \"8059798821\",\n        \"8054353151\",\n        \"8054353171\",\n        \"8054353172\",\n        \"8053089965\",\n        \"8054353173\",\n        \"8054353174\",\n        \"8053089967\",\n        \"8053089968\",\n        \"8054353159\",\n        \"8054353160\",\n        \"8054353161\",\n        \"8054353155\",\n        \"8054353156\",\n        \"8053089981\",\n        \"8054353150\",\n        \"8054353157\",\n        \"8059798814\",\n        \"8054353153\",\n        \"8054353154\",\n        \"8054561043\",\n        \"8054561044\",\n        \"8053089999\",\n        \"8054561045\",\n        \"8054353152\",\n        \"8053089995\",\n        \"imp00192-02-trunk\",\n        \"8054353183\",\n        \"8059798820\",\n        \"8054353184\",\n        \"8054353185\",\n        \"8054353186\",\n        \"8054353187\",\n        \"8054561018\",\n        \"8053089977\",\n        \"8054561019\",\n        \"8054353177\",\n        \"8059679722\",\n        \"8053089979\",\n        \"8053089972\",\n        \"8053089973\",\n        \"8054561032\",\n        \"8054561041\",\n        \"8059798818\",\n        \"8053089951\",\n        \"8056810461\",\n        \"8054353188\",\n        \"8056810932\",\n        \"8054353189\",\n        \"8054353190\",\n        \"8056810602\",\n        \"8056810611\",\n        \"8059798813\",\n        \"8059798815\",\n        \"8053089986\",\n        \"8056926218\",\n        \"8056926216\",\n        \"8054353176\",\n        \"8053089958\",\n        \"8053089997\",\n        \"8056819520\",\n        \"8053089989\",\n        \"8056819039\",\n        \"8056819840\",\n        \"8056819721\",\n        \"8056819886\",\n        \"8053089985\",\n        \"8053089991\",\n        \"8056926204\",\n        \"8056926206\",\n        \"8056926207\",\n        \"8053089990\",\n        \"8056926202\",\n        \"8056926212\",\n        \"8056926215\",\n        \"8056926209\",\n        \"8056926214\",\n        \"8053089955\",\n        \"8056926213\",\n        \"8059798816\",\n        \"8056926210\",\n        \"8053089954\",\n        \"8056926211\",\n        \"8059798817\",\n        \"8054353175\",\n        \"8053089962\",\n        \"8053089960\",\n        \"8053089961\",\n        \"8053089956\",\n        \"8059798819\",\n        \"8053089966\",\n        \"8053089963\",\n        \"8053089978\",\n        \"8053089959\",\n        \"8053089957\",\n        \"8053089974\",\n        \"8053089975\",\n        \"8053089970\",\n        \"8056926208\",\n        \"8056926219\",\n        \"8056926217\",\n        \"8053089983\",\n        \"8053089971\",\n        \"8053089982\",\n        \"8053089969\",\n        \"8053089984\",\n        \"8053089980\",\n        \"8053089992\",\n        \"8053089987\",\n        \"8053089988\",\n        \"8056810731\",\n        \"8053089993\",\n        \"8053089998\",\n        \"8053089996\",\n        \"8054353178\",\n        \"8056810376\",\n        \"8056810061\",\n        \"8054353179\",\n        \"8053089976\",\n        \"8059798822\",\n        \"8054353196\",\n        \"8054353197\",\n        \"8054353180\",\n        \"8053089964\",\n        \"8054353181\",\n        \"8054353182\",\n        \"imp00192-02-trunk2\",\n        \"8053089953\",\n        \"8054353191\",\n        \"8054353192\",\n        \"8054353193\",\n        \"8054353194\",\n        \"8054353195\",\n        \"8054353199\",\n        \"imp00192-02-trunk3\",\n        \"8054353198\",\n        \"8053089950\",\n        \"8053089994\",\n        \"5102333164\",\n        \"5102333189\",\n        \"8054561042\",\n        \"8059677611\",\n        \"imp8059798808\",\n        \"imp8059798810\",\n        \"imp00192-077104\",\n        \"imp00192-077101\",\n        \"imp00192-077102\",\n        \"imp00192-077103\",\n        \"imp00192-077105\",\n        \"imp00192-077106\",\n        \"imp00196-054444\",\n        \"imp00196-054019\",\n        \"imp00196-054014\",\n        \"imp00196-054020\",\n        \"imp00196-054016\",\n        \"imp00196-054073\",\n        \"imp00196-054053\",\n        \"imp00196-054013\",\n        \"imp00196-054011\",\n        \"imp00196-054010\",\n        \"imp00196-054063\",\n        \"imp00196-054018\",\n        \"imp00196-054015\",\n        \"imp00196-054083\",\n        \"imp00196-054017\",\n        \"imp00196-054012\",\n        \"imp00196-044304\",\n        \"imp00196-044303\",\n        \"imp00196-044309\",\n        \"imp00196-045401\",\n        \"imp00196-044317\",\n        \"imp00196-044302\",\n        \"imp8054568180\",\n        \"imp00196-045408\",\n        \"imp00196-044318\",\n        \"imp00196-044320\",\n        \"imp00196-044305\",\n        \"imp00196-044311\",\n        \"imp00196-044312\",\n        \"imp00196-045402\",\n        \"imp00196-045403\",\n        \"imp00196-045404\",\n        \"imp00196-045405\",\n        \"imp00196-045406\",\n        \"imp00196-045407\",\n        \"imp00196-045409\",\n        \"imp00196-044315\",\n        \"imp00196-013000\",\n        \"00196-01-directory\",\n        \"imp00196-032567\",\n        \"imp00196-032337\",\n        \"imp00196-032410\",\n        \"imp00196-032599\",\n        \"imp00196-032281\",\n        \"imp8054568193\",\n        \"imp00196-034330\",\n        \"imp00196-022268\",\n        \"imp8054568162\",\n        \"imp00196-022503\",\n        \"imp00196-022333\",\n        \"imp00196-024360\",\n        \"imp00196-022325\",\n        \"imp00196-022221\",\n        \"imp00196-022231\",\n        \"imp00196-022214\",\n        \"imp00196-022326\",\n        \"imp00196-022556\",\n        \"imp00196-022562\",\n        \"imp8055768218\",\n        \"imp8055768219\",\n        \"imp00196-022510\",\n        \"imp00196-022408\",\n        \"imp00196-024308\",\n        \"imp8055664352\",\n        \"imp00196-022330\",\n        \"imp00196-022541\",\n        \"imp00196-024036\",\n        \"imp00196-023286\",\n        \"imp00196-022312\",\n        \"imp00196-022339\",\n        \"imp8054568178\",\n        \"imp00196-022264\",\n        \"imp00196-022218\",\n        \"imp8054568151\",\n        \"imp00196-022400\",\n        \"imp00196-022200\",\n        \"imp00196-022347\",\n        \"imp00196-022451\",\n        \"imp00196-022545\",\n        \"imp00196-022336\",\n        \"imp8055768207\",\n        \"imp00196-022458\",\n        \"imp8055664337\",\n        \"imp00196-022560\",\n        \"imp8054568176\",\n        \"imp00196-022580\",\n        \"imp00196-022577\",\n        \"imp00196-022306\",\n        \"imp00196-022429\",\n        \"imp00196-022575\",\n        \"imp8055768152\",\n        \"imp00196-022529\",\n        \"imp00196-022307\",\n        \"imp00196-022600\",\n        \"imp8055664333\",\n        \"imp00196-022331\",\n        \"imp00196-022539\",\n        \"imp00196-022261\",\n        \"imp8055768214\",\n        \"imp00196-022585\",\n        \"imp00196-022423\",\n        \"imp00196-022589\",\n        \"imp00196-022354\",\n        \"imp00196-022601\",\n        \"imp00196-028100\",\n        \"imp00196-022363\",\n        \"imp8054568170\",\n        \"imp00196-022911\",\n        \"imp00196-022731\",\n        \"imp00196-022321\",\n        \"imp00196-022534\",\n        \"imp00196-022215\",\n        \"imp8055664353\",\n        \"imp00196-022442\",\n        \"imp00196-022278\",\n        \"imp00196-022544\",\n        \"imp00196-022317\",\n        \"imp00196-022405\",\n        \"imp00196-022540\",\n        \"imp00196-022315\",\n        \"imp8054568150\",\n        \"imp00196-022509\",\n        \"imp00196-022338\",\n        \"imp00196-022605\",\n        \"imp00196-022324\",\n        \"imp00196-022553\",\n        \"imp00196-022227\",\n        \"imp8056840733\",\n        \"imp00196-024000\",\n        \"imp00196-022445\",\n        \"imp00196-022008\",\n        \"imp00196-022350\",\n        \"imp00196-022209\",\n        \"imp00196-022327\",\n        \"imp8055664348\",\n        \"imp00196-022966\",\n        \"imp00196-022587\",\n        \"imp00196-022001\",\n        \"imp00196-022625\",\n        \"imp00196-028183\",\n        \"imp00196-022322\",\n        \"imp00196-022265\",\n        \"imp00196-022742\",\n        \"imp00196-022456\",\n        \"imp00196-022725\",\n        \"imp00196-022319\",\n        \"imp00196-022546\",\n        \"imp00196-022595\",\n        \"imp00196-022620\",\n        \"imp00196-022361\",\n        \"imp8055664340\",\n        \"imp00196-022343\",\n        \"imp00196-022570\",\n        \"imp00196-022411\",\n        \"imp00196-022308\",\n        \"imp00196-022213\",\n        \"imp00196-022535\",\n        \"imp00196-026767\",\n        \"imp00196-022565\",\n        \"imp00196-022203\",\n        \"imp00196-022314\",\n        \"imp00196-022550\",\n        \"imp00196-022267\",\n        \"imp00196-022502\",\n        \"imp00196-022504\",\n        \"imp00196-022328\",\n        \"imp00196-022735\",\n        \"imp00196-022590\",\n        \"imp00196-026209\",\n        \"imp00196-022217\",\n        \"imp00196-022438\",\n        \"imp00196-022276\",\n        \"imp00196-022335\",\n        \"imp00196-022318\",\n        \"imp00196-022311\",\n        \"imp00196-022358\",\n        \"imp8055664336\",\n        \"imp00196-022263\",\n        \"imp00196-022912\",\n        \"imp00196-022219\",\n        \"imp00196-022576\",\n        \"imp00196-022313\",\n        \"imp00196-022272\",\n        \"imp00196-022323\",\n        \"imp00196-022334\",\n        \"imp00196-022370\",\n        \"imp00196-024700\",\n        \"imp00196-022310\",\n        \"imp8059686758\",\n        \"imp8059686752\",\n        \"imp8059686843\",\n        \"imp8059686769\",\n        \"imp8059686860\",\n        \"imp8059686909\",\n        \"imp8059617533\",\n        \"imp8059617521\",\n        \"imp8059617565\",\n        \"imp8059617503\",\n        \"imp8059617576\",\n        \"imp8059617530\",\n        \"imp8059617525\",\n        \"imp8059617569\",\n        \"imp8055620363\",\n        \"imp8059617509\",\n        \"imp8059617510\",\n        \"imp8055625507\",\n        \"imp8059617547\",\n        \"imp8059617519\",\n        \"imp8059617528\",\n        \"imp8056905124\",\n        \"imp8059617512\",\n        \"imp8059617554\",\n        \"imp8059617507\",\n        \"imp8056905122\",\n        \"imp8055625505\",\n        \"imp8059617555\",\n        \"imp8059617534\",\n        \"imp8055625583\",\n        \"imp8059617506\",\n        \"imp8059617543\",\n        \"imp8059617572\",\n        \"imp8059617538\",\n        \"imp8059617516\",\n        \"imp8059617560\",\n        \"imp8059617550\",\n        \"imp8056905130\",\n        \"imp8059617574\",\n        \"imp8059617522\",\n        \"imp8056905125\",\n        \"imp8059617532\",\n        \"imp8056905126\",\n        \"imp8056905139\",\n        \"imp8055625504\",\n        \"imp8059617577\",\n        \"imp8055620361\",\n        \"imp8059617545\",\n        \"imp8059617563\",\n        \"imp8059617505\",\n        \"imp8055625500\",\n        \"imp8059617559\",\n        \"imp00198-025503\",\n        \"00198-02VM1007\",\n        \"imp8059617546\",\n        \"imp8059617540\",\n        \"imp8059617571\",\n        \"imp8059617508\",\n        \"imp8056905121\",\n        \"imp8055625510\",\n        \"imp8055625528\",\n        \"imp8055625530\",\n        \"imp8059617529\",\n        \"imp8059617537\",\n        \"imp8059617542\",\n        \"imp8059617561\",\n        \"imp8055620362\",\n        \"imp8055625502\",\n        \"imp8059617526\",\n        \"imp8059617518\",\n        \"imp8059617558\",\n        \"imp8059617564\",\n        \"imp8059617556\",\n        \"imp8059617502\",\n        \"imp8059617541\",\n        \"imp8059617549\",\n        \"imp8055620366\",\n        \"imp8056905123\",\n        \"imp8055625549\",\n        \"imp8055625523\",\n        \"imp8059617531\",\n        \"imp8059617562\",\n        \"imp8055625501\",\n        \"imp8059617523\",\n        \"imp8059617535\",\n        \"imp8055625512\",\n        \"imp8059617548\",\n        \"imp8059617501\",\n        \"imp8059617552\",\n        \"imp8055625508\",\n        \"imp8059617568\",\n        \"imp8059617524\",\n        \"imp8056905120\",\n        \"imp8059617573\",\n        \"imp8059686851\",\n        \"imp8059617527\",\n        \"imp8059617539\",\n        \"imp8059617578\",\n        \"imp8055625565\",\n        \"imp8056905119\",\n        \"imp8056905113\",\n        \"imp8059617536\",\n        \"imp8059617566\",\n        \"imp8056905128\",\n        \"imp8059617575\",\n        \"imp8055625533\",\n        \"imp8055625534\",\n        \"imp8055625537\",\n        \"imp8056905127\",\n        \"imp8054566961\",\n        \"imp8055625509\",\n        \"imp8055625548\",\n        \"imp8056905116\",\n        \"imp8059617557\",\n        \"imp8059617567\",\n        \"imp8059617553\",\n        \"imp8059617514\",\n        \"imp8054566962\",\n        \"imp8059617544\",\n        \"imp8054566963\",\n        \"imp8054566964\",\n        \"imp8055625506\",\n        \"imp8055625552\",\n        \"imp8055625553\",\n        \"imp8055625554\",\n        \"imp8055625557\",\n        \"imp8059617579\",\n        \"imp00198-011111\",\n        \"imp8052840335\",\n        \"imp8052840338\",\n        \"imp8052840336\",\n        \"imp8052840337\",\n        \"imp8058300218\",\n        \"imp8058300215\",\n        \"imp8058300228\",\n        \"imp8058300217\",\n        \"imp8058300220\",\n        \"imp8058300223\",\n        \"imp8059630358\",\n        \"imp8058300213\",\n        \"imp8058300210\",\n        \"imp8058300214\",\n        \"imp8058300221\",\n        \"imp8058300219\",\n        \"imp8055644850\",\n        \"imp8058300227\",\n        \"imp8058300222\",\n        \"imp8058300216\",\n        \"imp8058300225\",\n        \"imp8058300224\",\n        \"imp8058300226\",\n        \"imp8058300212\",\n        \"imp8058300229\",\n        \"imp8059653404\",\n        \"imp8055692848\",\n        \"imp8055699558\",\n        \"imp8052840358\",\n        \"imp8052840355\",\n        \"imp8052840356\",\n        \"imp8052840380\",\n        \"imp8054566805\",\n        \"imp8054564295\",\n        \"imp8052840371\",\n        \"imp8054566878\",\n        \"imp8052840376\",\n        \"imp8054566803\",\n        \"imp8054564291\",\n        \"imp8054566877\",\n        \"imp8054564294\",\n        \"imp8058804228\",\n        \"imp8054566875\",\n        \"imp8052840378\",\n        \"imp8054566876\",\n        \"imp8054566879\",\n        \"imp8054564292\",\n        \"imp8054564293\",\n        \"imp8058803383\",\n        \"imp8054562700\",\n        \"imp8058806928\",\n        \"imp8058809485\",\n        \"imp8058807489\",\n        \"imp8058807488\",\n        \"imp8058807499\",\n        \"imp8058803414\",\n        \"imp8058807495\",\n        \"imp8058807494\",\n        \"imp8058807497\",\n        \"imp8058807493\",\n        \"imp8052593782\",\n        \"imp8058809341\",\n        \"imp8053358729\",\n        \"imp8053358734\",\n        \"imp8053358721\",\n        \"imp8054564946\",\n        \"imp8053358732\",\n        \"imp8053358725\",\n        \"imp8053170403\",\n        \"imp8054565890\",\n        \"imp8053358730\",\n        \"imp8053358722\",\n        \"imp8052849639\",\n        \"imp8053358726\",\n        \"imp8053358731\",\n        \"imp8053358727\",\n        \"imp8054565876\",\n        \"imp8053358724\",\n        \"imp8058809340\",\n        \"imp8054565889\",\n        \"imp8058803407\",\n        \"imp8053358720\",\n        \"imp8053358735\",\n        \"imp8053358728\",\n        \"imp8052849701\",\n        \"imp8058807466\",\n        \"imp8058807468\",\n        \"imp8058807465\",\n        \"imp8058807464\",\n        \"imp8058807467\",\n        \"imp8058807463\",\n        \"imp8058807470\",\n        \"imp8058807469\",\n        \"imp8058807473\",\n        \"imp8058807472\",\n        \"imp8058807462\",\n        \"imp8058807471\",\n        \"imp8059654603\",\n        \"imp9547031382\",\n        \"imp9543617143\",\n        \"imp9547617073\",\n        \"imp9547619309\",\n        \"imp8604526454\",\n        \"imp8604526455\",\n        \"imp3108736966\",\n        \"imp3108736946\",\n        \"imp00230-01100\",\n        \"imp8058807474\",\n        \"imp8058809332\",\n        \"imp8058807507\",\n        \"imp8058807502\",\n        \"imp8058807501\",\n        \"imp8058807505\",\n        \"imp8058807504\",\n        \"imp8058807500\",\n        \"imp8058807503\",\n        \"imp8058807632\",\n        \"imp8058807631\",\n        \"imp8058807635\",\n        \"imp8058807626\",\n        \"imp8058807633\",\n        \"imp8058807628\",\n        \"imp8058807627\",\n        \"imp8058807634\",\n        \"imp8058807629\",\n        \"imp8058807630\",\n        \"imp8058807545\",\n        \"imp8058807608\",\n        \"imp8058807544\",\n        \"imp8058807546\",\n        \"imp8058807547\",\n        \"imp8058807548\",\n        \"imp8058801997\",\n        \"imp8058807541\",\n        \"imp8058807543\",\n        \"imp8058801998\",\n        \"imp8058807535\",\n        \"imp00244-02122\",\n        \"imp8058807540\",\n        \"imp8058807542\",\n        \"imp8058801994\",\n        \"imp8058801996\",\n        \"imp8058801999\",\n        \"imp8058801995\",\n        \"imp8056975255\",\n        \"imp8053089442\",\n        \"imp8053089443\",\n        \"imp8053089436\",\n        \"imp8053089439\",\n        \"imp8053089438\",\n        \"imp8053089437\",\n        \"imp8054564241\",\n        \"imp8053089433\",\n        \"imp8053089428\",\n        \"imp8053089426\",\n        \"imp8053089430\",\n        \"imp8053089432\",\n        \"imp8053089444\",\n        \"imp8053089527\",\n        \"imp8053089435\",\n        \"imp8053089434\",\n        \"imp8053089427\",\n        \"imp8053089431\",\n        \"imp8053089429\",\n        \"imp8053089446\",\n        \"imp8053089449\",\n        \"imp8053089456\",\n        \"imp8053089455\",\n        \"imp8058300206\",\n        \"imp8058300207\",\n        \"imp8058300205\",\n        \"imp8058300204\",\n        \"imp00255-01100\",\n        \"imp8058807650\",\n        \"imp8058807657\",\n        \"imp8058807644\",\n        \"imp8058807642\",\n        \"imp8058807656\",\n        \"imp8058807659\",\n        \"imp8058807653\",\n        \"imp8058807651\",\n        \"imp8058807643\",\n        \"imp8058807655\",\n        \"imp8058807652\",\n        \"imp8058807663\",\n        \"imp8058807661\",\n        \"imp8058807646\",\n        \"imp8058807647\",\n        \"imp8058807641\",\n        \"imp8058807660\",\n        \"imp8058807662\",\n        \"imp8058807648\",\n        \"imp8058807665\",\n        \"imp8058807654\",\n        \"imp8058807645\",\n        \"imp8058807639\",\n        \"imp8058807638\",\n        \"imp8058807649\",\n        \"imp8058807658\",\n        \"imp8059628571\",\n        \"imp8059639191\",\n        \"imp00257-03222\",\n        \"imp00257-03233\",\n        \"imp00257-03221\",\n        \"imp00257-03227\",\n        \"imp00257-03228\",\n        \"imp00257-03232\",\n        \"imp00257-03225\",\n        \"imp00257-03226\",\n        \"imp00257-03224\",\n        \"imp8058807683\",\n        \"imp8058807682\",\n        \"imp8058807678\",\n        \"imp8058807679\",\n        \"imp8058807680\",\n        \"imp8058807677\",\n        \"imp00261-02601\",\n        \"imp8058807676\",\n        \"imp8058807482\",\n        \"imp8058807675\",\n        \"imp8058807681\",\n        \"imp8054368488\",\n        \"imp8056695611\",\n        \"imp8054368489\",\n        \"imp00266-021930\",\n        \"imp8058805622\",\n        \"imp8054567357\",\n        \"imp9092841180\",\n        \"imp9092841187\",\n        \"imp9092841185\",\n        \"imp9092841179\",\n        \"imp9092841188\",\n        \"imp9092841181\",\n        \"imp9092841183\",\n        \"imp9092841189\",\n        \"imp8058801962\",\n        \"imp00266-012000\",\n        \"imp8054565895\",\n        \"imp00271-02222\",\n        \"imp00271-02220\",\n        \"imp00271-02228\",\n        \"imp00271-02233\",\n        \"imp00271-02237\",\n        \"imp00271-02229\",\n        \"imp00271-02603\",\n        \"imp00271-02218\",\n        \"imp00271-02224\",\n        \"imp00271-02216\",\n        \"imp00271-02230\",\n        \"imp00271-02234\",\n        \"imp00271-02225\",\n        \"imp00271-02226\",\n        \"imp00271-02236\",\n        \"imp00271-02227\",\n        \"imp00271-02235\",\n        \"imp00271-02604\",\n        \"imp00271-02601\",\n        \"imp00271-02602\",\n        \"imp00271-02219\",\n        \"imp00271-02231\",\n        \"imp00271-02232\",\n        \"imp00271-02240\",\n        \"imp00271-02600\",\n        \"imp00271-02238\",\n        \"imp00271-02221\",\n        \"imp00271-02223\",\n        \"imp00271-02215\",\n        \"imp00271-02217\",\n        \"imp00271-02239\",\n        \"imp8058459823\",\n        \"imp8058451074\",\n        \"imp8056852046\",\n        \"imp8058451073\",\n        \"imp8058452858\",\n        \"imp8056811417\",\n        \"imp8056926926\",\n        \"imp8056926924\",\n        \"imp4069002192\",\n        \"imp8056811416\",\n        \"imp00275-02401\",\n        \"imp8056811623\",\n        \"imp00275-02501\",\n        \"imp8056811415\",\n        \"imp00275-02502\",\n        \"imp00275-02402\",\n        \"imp8056926923\",\n        \"imp8056811410\",\n        \"imp8056926928\",\n        \"imp8058458963\",\n        \"imp00275-01200\",\n        \"imp00277-02124\",\n        \"imp00277-02113\",\n        \"imp00277-02112\",\n        \"imp00277-02106\",\n        \"imp00277-02122\",\n        \"imp00277-02102\",\n        \"imp00277-02118\",\n        \"imp00277-02114\",\n        \"imp00277-02107\",\n        \"imp8058807479\",\n        \"imp00277-06225\",\n        \"imp00277-04338\",\n        \"imp8058807476\",\n        \"imp8058807481\",\n        \"imp8058807477\",\n        \"imp8058806977\",\n        \"imp8058804273\",\n        \"imp8053572585\",\n        \"imp8053572573\",\n        \"imp8053572568\",\n        \"imp8053572569\",\n        \"imp8053572578\",\n        \"imp8053572581\",\n        \"imp8053572566\",\n        \"imp8053572586\",\n        \"imp8053572576\",\n        \"imp8053572582\",\n        \"imp8053572587\",\n        \"imp8053572588\",\n        \"imp8053572565\",\n        \"imp00277-03444\",\n        \"imp8053572584\",\n        \"imp8054568764\",\n        \"imp8054568762\",\n        \"imp8054568763\",\n        \"imp8054564983\",\n        \"imp8054564987\",\n        \"imp8054564985\",\n        \"imp8054564986\",\n        \"imp8054564981\",\n        \"imp8054564984\",\n        \"imp8054565102\",\n        \"imp8054565106\",\n        \"imp8054565103\",\n        \"imp8054565105\",\n        \"imp00284-02112\",\n        \"imp8054565104\",\n        \"imp8054567276\",\n        \"imp8054567272\",\n        \"imp8054567277\",\n        \"imp8054567278\",\n        \"imp8054567274\",\n        \"imp8054567270\",\n        \"imp8054567279\",\n        \"imp8054567275\",\n        \"imp8054567273\",\n        \"imp8054567271\",\n        \"imp00290-directory\",\n        \"imp00290-01100\",\n        \"imp8479577492\",\n        \"imp8479577251\",\n        \"imp8479577619\",\n        \"imp8479577536\",\n        \"imp8479577531\",\n        \"imp8479577490\",\n        \"imp8479577465\",\n        \"imp8479577480\",\n        \"imp8479577277\",\n        \"imp8479577486\",\n        \"imp8479577534\",\n        \"imp8479577538\",\n        \"imp8479577483\",\n        \"imp8479577467\",\n        \"imp8479577498\",\n        \"imp8479577482\",\n        \"imp8479577537\",\n        \"imp8479577410\",\n        \"imp8479577415\",\n        \"imp8479577272\",\n        \"imp8479577166\",\n        \"imp00290-02166\",\n        \"imp8479577409\",\n        \"imp8479577475\",\n        \"imp8479577533\",\n        \"00290-02167\",\n        \"imp8479577411\",\n        \"imp8479577265\",\n        \"imp8479577474\",\n        \"imp8479577469\",\n        \"imp8479865155\",\n        \"imp00290-02501\",\n        \"imp00290-02502\",\n        \"imp8479577497\",\n        \"imp8479577476\",\n        \"imp00290-02500\",\n        \"imp8479577487\",\n        \"imp8479577477\",\n        \"imp8479577275\",\n        \"imp8479577489\",\n        \"imp8479577530\",\n        \"imp8479577278\",\n        \"imp8479577491\",\n        \"imp8479577479\",\n        \"imp8479577532\",\n        \"imp8479577398\",\n        \"imp8479577484\",\n        \"imp00290-02205\",\n        \"8056810379\",\n        \"8056926000\",\n        \"8056926001\",\n        \"imp00292-02-trunk\",\n        \"8056926057\",\n        \"8059641380\",\n        \"8059647622\",\n        \"8056834011\",\n        \"8056926028\",\n        \"8056926029\",\n        \"8056926030\",\n        \"8056926031\",\n        \"8056926032\",\n        \"8056926033\",\n        \"8056926034\",\n        \"8056926035\",\n        \"8056926036\",\n        \"8056926037\",\n        \"8056926038\",\n        \"8056926039\",\n        \"8056926040\",\n        \"8056926041\",\n        \"8056926042\",\n        \"8056926043\",\n        \"8056926044\",\n        \"8056926045\",\n        \"8056926046\",\n        \"8056926047\",\n        \"8056926048\",\n        \"8056926049\",\n        \"8056926050\",\n        \"8056926051\",\n        \"8056926052\",\n        \"8056926053\",\n        \"8056926054\",\n        \"8056926055\",\n        \"8056926056\",\n        \"8056926058\",\n        \"8056926059\",\n        \"8056926060\",\n        \"8056926061\",\n        \"8056926062\",\n        \"8056926063\",\n        \"8056926064\",\n        \"8056926065\",\n        \"8056926066\",\n        \"8056926067\",\n        \"8056926068\",\n        \"8056926069\",\n        \"8056926070\",\n        \"8056926071\",\n        \"8056926072\",\n        \"8056926073\",\n        \"8056926074\",\n        \"8056926075\",\n        \"8056926076\",\n        \"8056926077\",\n        \"8056926078\",\n        \"8056926079\",\n        \"8056926080\",\n        \"8056926081\",\n        \"8056926082\",\n        \"8056926083\",\n        \"8056926084\",\n        \"8056926085\",\n        \"8056926086\",\n        \"8056926087\",\n        \"8056926088\",\n        \"8056926089\",\n        \"8056926090\",\n        \"8056926091\",\n        \"8056926092\",\n        \"8056926093\",\n        \"8056926094\",\n        \"8056926095\",\n        \"8056926096\",\n        \"8056926097\",\n        \"8056926098\",\n        \"8056926099\",\n        \"8056926002\",\n        \"8056926003\",\n        \"8056926004\",\n        \"8056926005\",\n        \"8056926006\",\n        \"8056926007\",\n        \"8056926008\",\n        \"8056926009\",\n        \"8056926010\",\n        \"8056926011\",\n        \"8056926012\",\n        \"8056926013\",\n        \"8056926014\",\n        \"8056926015\",\n        \"8056926016\",\n        \"8056926017\",\n        \"8056926018\",\n        \"8056926019\",\n        \"8056926020\",\n        \"8056926021\",\n        \"8056926022\",\n        \"8056926023\",\n        \"8056926024\",\n        \"8056926025\",\n        \"8056926026\",\n        \"8056926027\",\n        \"8059640450\",\n        \"8059677111\",\n        \"8056816385\",\n        \"8056814803\",\n        \"8059671805\",\n        \"8059671900\",\n        \"imp8055392215\",\n        \"imp8055392212\",\n        \"imp8055392217\",\n        \"imp8055392220\",\n        \"8055647002\",\n        \"imp8055392206\",\n        \"imp8055392211\",\n        \"imp8055392218\",\n        \"imp8055392227\",\n        \"imp8055392205\",\n        \"imp8055392213\",\n        \"imp00295-02300\",\n        \"imp8055392204\",\n        \"imp8055392208\",\n        \"imp8055392203\",\n        \"imp8055392207\",\n        \"imp8055392229\",\n        \"imp8055392228\",\n        \"imp8055392210\",\n        \"imp8055392214\",\n        \"imp8055392209\",\n        \"imp8055392201\",\n        \"imp8055392219\",\n        \"imp00295-directory\",\n        \"imp00295-01100\",\n        \"imp00308-02201\",\n        \"imp00308-02202\",\n        \"imp8058801695\",\n        \"imp8057554412\",\n        \"imp8057554416\",\n        \"imp8057554449\",\n        \"imp8057554401\",\n        \"imp8057554475\",\n        \"imp8057554417\",\n        \"imp8057554432\",\n        \"imp8057554405\",\n        \"imp8057554477\",\n        \"imp8057554444\",\n        \"imp8058803406\",\n        \"imp8057554446\",\n        \"imp8057554442\",\n        \"imp8057554431\",\n        \"imp8057554447\",\n        \"imp8057554414\",\n        \"imp8057554455\",\n        \"imp8057554476\",\n        \"imp8057554438\",\n        \"imp8057554448\",\n        \"imp8057554400\",\n        \"imp8057554441\",\n        \"imp8057554413\",\n        \"imp8057554451\",\n        \"imp8057554408\",\n        \"imp8057554443\",\n        \"imp8058803409\",\n        \"imp8058803402\",\n        \"imp8057554430\",\n        \"imp8057554403\",\n        \"imp00310-02555\",\n        \"imp00310-02519\",\n        \"imp00310-02450\",\n        \"imp8057554404\",\n        \"imp8057554422\",\n        \"imp8058803415\",\n        \"imp8057554445\",\n        \"imp8057554418\",\n        \"imp8057554407\",\n        \"imp8057554410\",\n        \"imp8057554458\",\n        \"imp8057554466\",\n        \"imp6307627347\",\n        \"imp6306862980\",\n        \"imp00311-024367\",\n        \"imp00311-024368\",\n        \"imp6306862959\",\n        \"imp00311-024369\",\n        \"imp6307627351\",\n        \"imp00311-024308\",\n        \"imp00311-024342\",\n        \"imp00311-024370\",\n        \"imp00311-024371\",\n        \"imp00311-024394\",\n        \"imp6306862982\",\n        \"imp6307974159\",\n        \"imp6306862967\",\n        \"imp00311-024372\",\n        \"imp00311-024373\",\n        \"imp00311-024374\",\n        \"imp00311-024375\",\n        \"imp00311-024376\",\n        \"imp00311-024377\",\n        \"imp00311-024378\",\n        \"imp00311-024379\",\n        \"imp00311-024380\",\n        \"imp00311-024381\",\n        \"imp00311-024382\",\n        \"imp00311-024313\",\n        \"imp00311-024348\",\n        \"imp00311-024383\",\n        \"imp00311-024384\",\n        \"imp6307974157\",\n        \"imp00311-024385\",\n        \"imp6307627363\",\n        \"imp00311-024386\",\n        \"imp00311-024387\",\n        \"imp6307627358\",\n        \"imp00311-024388\",\n        \"imp6306862954\",\n        \"imp00311-024389\",\n        \"imp00311-024390\",\n        \"imp00311-024391\",\n        \"imp00311-024392\",\n        \"imp00311-024393\",\n        \"imp00311-024349\",\n        \"imp00311-024350\",\n        \"imp6306862970\",\n        \"imp00311-024395\",\n        \"imp00311-024351\",\n        \"imp00311-024352\",\n        \"imp6306862971\",\n        \"imp00311-022717\",\n        \"imp00311-024353\",\n        \"imp00311-024354\",\n        \"imp00311-024355\",\n        \"imp00311-024356\",\n        \"imp6307627344\",\n        \"imp00311-024357\",\n        \"imp00311-024358\",\n        \"imp00311-024359\",\n        \"imp00311-024360\",\n        \"imp00311-024361\",\n        \"imp6306862978\",\n        \"imp00311-024362\",\n        \"imp00311-024363\",\n        \"imp00311-024364\",\n        \"imp6306862944\",\n        \"imp6306862977\",\n        \"imp00311-024334\",\n        \"imp00311-024281\",\n        \"imp00311-024254\",\n        \"imp6306862950\",\n        \"imp6307974152\",\n        \"imp6307974174\",\n        \"imp6307974172\",\n        \"imp00311-024202\",\n        \"imp00311-024000\",\n        \"imp6307974165\",\n        \"imp8053170417\",\n        \"imp8053170418\",\n        \"imp6306862949\",\n        \"imp00311-027475\",\n        \"imp00311-022613\",\n        \"imp6307627369\",\n        \"imp00311-022120\",\n        \"imp6303771193\",\n        \"imp6306862953\",\n        \"imp6307627365\",\n        \"imp6307627368\",\n        \"imp6306862951\",\n        \"imp00311-024365\",\n        \"imp6306862969\",\n        \"imp00311-024366\",\n        \"imp6306862962\",\n        \"imp6305242870\",\n        \"imp00311-023144\",\n        \"imp00311-024406\",\n        \"imp00311-022664\",\n        \"imp00311-024234\",\n        \"imp00311-024407\",\n        \"imp00311-024408\",\n        \"imp00311-024409\",\n        \"imp00311-024318\",\n        \"imp00311-024344\",\n        \"imp00311-024021\",\n        \"imp00311-024319\",\n        \"imp00311-024025\",\n        \"imp00311-024071\",\n        \"imp00311-024297\",\n        \"imp6307627366\",\n        \"imp00311-024322\",\n        \"imp00311-024256\",\n        \"imp00311-024346\",\n        \"imp00311-024347\",\n        \"imp00311-028997\",\n        \"imp00311-022682\",\n        \"imp00311-024293\",\n        \"imp00311-022698\",\n        \"imp00311-024325\",\n        \"imp00311-024264\",\n        \"imp00311-024314\",\n        \"imp00311-024182\",\n        \"imp00311-022626\",\n        \"imp00311-024286\",\n        \"imp00311-027509\",\n        \"imp00311-024316\",\n        \"imp00311-024189\",\n        \"imp00311-022294\",\n        \"imp00311-022617\",\n        \"imp8053170415\",\n        \"imp00311-024274\",\n        \"imp00311-024396\",\n        \"imp00311-024397\",\n        \"imp00311-024398\",\n        \"imp00311-024399\",\n        \"imp00311-024400\",\n        \"imp00311-022248\",\n        \"imp00311-024401\",\n        \"imp00311-024402\",\n        \"imp8053170414\",\n        \"imp00311-024403\",\n        \"imp00311-024404\",\n        \"imp00311-024341\",\n        \"imp00311-024405\",\n        \"imp8053170412\",\n        \"imp8053170413\",\n        \"imp6307974163\",\n        \"imp00311-024280\",\n        \"imp00311-024209\",\n        \"imp00311-024195\",\n        \"imp00311-022285\",\n        \"imp00311-029901\",\n        \"imp6307974135\",\n        \"imp00311-029902\",\n        \"imp00311-029903\",\n        \"imp00311-029904\",\n        \"imp00311-024336\",\n        \"imp00311-028999\",\n        \"imp00311-024339\",\n        \"imp00311-028998\",\n        \"imp00311-021374\",\n        \"imp00311-021217\",\n        \"00311-027468\",\n        \"imp00311-029900\",\n        \"imp6307974161\",\n        \"imp6307627348\",\n        \"imp00311-024301\",\n        \"imp00311-029905\",\n        \"imp6307974147\",\n        \"imp00311-029906\",\n        \"imp00311-029907\",\n        \"imp6307627345\",\n        \"imp00311-029908\",\n        \"imp00311-029909\",\n        \"imp6307974154\",\n        \"imp00311-024331\",\n        \"imp6306862955\",\n        \"imp00311-024298\",\n        \"imp00311-024002\",\n        \"imp6307974182\",\n        \"imp00311-024299\",\n        \"imp00311-024332\",\n        \"imp6307627354\",\n        \"imp6306862960\",\n        \"imp6307627362\",\n        \"imp6307627356\",\n        \"imp00311-029956\",\n        \"imp6307974167\",\n        \"imp6307627370\",\n        \"imp00311-029957\",\n        \"imp00311-029958\",\n        \"imp00311-024246\",\n        \"imp00311-029950\",\n        \"imp00311-029951\",\n        \"imp00311-029952\",\n        \"imp6307974186\",\n        \"imp00311-024001\",\n        \"imp6307974164\",\n        \"imp6307974156\",\n        \"imp6307974149\",\n        \"imp6307974146\",\n        \"imp6307974166\",\n        \"imp00311-022819\",\n        \"imp6306862958\",\n        \"imp6307627346\",\n        \"imp6307974162\",\n        \"imp6306862979\",\n        \"imp00311-029497\",\n        \"imp6307974145\",\n        \"imp6307974143\",\n        \"imp6307627371\",\n        \"imp6307974137\",\n        \"imp6307974188\",\n        \"imp6307627340\",\n        \"imp6306862941\",\n        \"imp6306862942\",\n        \"imp6306862943\",\n        \"imp6306862945\",\n        \"imp6306862947\",\n        \"imp6306862948\",\n        \"imp6306862940\",\n        \"imp6306862952\",\n        \"imp6306862956\",\n        \"imp6306862957\",\n        \"imp6307627341\",\n        \"imp6307974144\",\n        \"imp6307627360\",\n        \"imp6306862965\",\n        \"imp6306862966\",\n        \"imp00311-027508\",\n        \"imp6306862968\",\n        \"imp6307974175\",\n        \"imp6306862972\",\n        \"imp6306862974\",\n        \"imp6306862975\",\n        \"imp6306862976\",\n        \"imp00311-027267\",\n        \"imp00311-027281\",\n        \"imp00311-027409\",\n        \"imp00311-027541\",\n        \"imp00311-027548\",\n        \"imp00311-027567\",\n        \"imp00311-027837\",\n        \"imp00311-027899\",\n        \"imp00311-021237\",\n        \"imp00311-021387\",\n        \"imp00311-021469\",\n        \"imp00311-021489\",\n        \"imp00311-021498\",\n        \"imp00311-021626\",\n        \"imp00311-021662\",\n        \"imp00311-021690\",\n        \"imp00311-021723\",\n        \"imp00311-022016\",\n        \"imp00311-022026\",\n        \"imp00311-022032\",\n        \"imp00311-022121\",\n        \"imp00311-022129\",\n        \"imp00311-022515\",\n        \"imp00311-022517\",\n        \"imp00311-022558\",\n        \"imp00311-022614\",\n        \"imp00311-022973\",\n        \"imp00311-024066\",\n        \"imp00311-024126\",\n        \"imp00311-024338\",\n        \"imp00311-024456\",\n        \"imp00311-024479\",\n        \"imp00311-024480\",\n        \"imp00311-024674\",\n        \"imp00311-024944\",\n        \"imp00311-025144\",\n        \"imp00311-025662\",\n        \"imp00311-026380\",\n        \"imp00311-026555\",\n        \"imp00311-026599\",\n        \"imp00311-026714\",\n        \"imp00311-026814\",\n        \"imp00311-026831\",\n        \"imp00311-026839\",\n        \"imp00311-026982\",\n        \"imp6307627364\",\n        \"imp00311-027401\",\n        \"imp00311-027427\",\n        \"imp00311-027527\",\n        \"imp00311-027565\",\n        \"imp00311-029044\",\n        \"imp00311-029178\",\n        \"imp00311-029330\",\n        \"imp00311-029351\",\n        \"imp00311-029757\",\n        \"imp00311-029850\",\n        \"imp6307627350\",\n        \"imp6307974151\",\n        \"imp00311-029953\",\n        \"imp00311-029954\",\n        \"imp00311-029955\",\n        \"imp6307974136\",\n        \"imp8053170416\",\n        \"imp6307974140\",\n        \"imp6307974132\",\n        \"imp00311-022044\",\n        \"imp00311-024080\",\n        \"imp6306862973\",\n        \"imp00311-022094\",\n        \"imp6307974155\",\n        \"imp00311-024307\",\n        \"imp00311-022160\",\n        \"imp00311-022164\",\n        \"imp6307974134\",\n        \"imp6307627349\",\n        \"imp00311-022202\",\n        \"imp00311-024333\",\n        \"imp6307974142\",\n        \"imp6307974131\",\n        \"imp6307974153\",\n        \"imp6307627355\",\n        \"imp6307974189\",\n        \"imp00311-025500\",\n        \"imp00311-022411\",\n        \"imp00311-022470\",\n        \"imp6306862964\",\n        \"imp6305242936\",\n        \"imp6307974181\",\n        \"imp00311-022536\",\n        \"imp00311-022564\",\n        \"imp00311-022565\",\n        \"imp6307974138\",\n        \"imp6307974170\",\n        \"imp00311-022758\",\n        \"imp00311-022759\",\n        \"imp00311-022760\",\n        \"imp00311-022761\",\n        \"imp00311-022762\",\n        \"imp6306862963\",\n        \"imp00311-024159\",\n        \"imp00311-024199\",\n        \"imp00311-024329\",\n        \"imp00311-024142\",\n        \"imp00311-011111\",\n        \"imp00319-02502\",\n        \"imp00319-02500\",\n        \"imp00319-02501\",\n        \"imp8057554513\",\n        \"imp8057554514\",\n        \"imp00324-02602\",\n        \"imp8057554512\",\n        \"imp8057554516\",\n        \"imp8057554515\",\n        \"imp8057554590\",\n        \"imp8057554517\",\n        \"imp8058803327\",\n        \"imp8053221604\",\n        \"imp8052611100\",\n        \"imp8053221606\",\n        \"imp8053221607\",\n        \"imp8053221608\",\n        \"imp8053221609\",\n        \"imp8053221610\",\n        \"imp8053221611\",\n        \"imp8053221612\",\n        \"imp8053221613\",\n        \"imp8053221614\",\n        \"imp00330-026543\",\n        \"imp8059262205\",\n        \"imp8059262206\",\n        \"imp8053221603\",\n        \"imp8052611121\",\n        \"imp5594495939\",\n        \"imp00334-directory\",\n        \"imp00334-013000\",\n        \"imp8058809441\",\n        \"imp8058803391\",\n        \"imp2674574492\",\n        \"imp2674574479\",\n        \"imp2674574478\",\n        \"imp9092431037\",\n        \"imp8058803378\",\n        \"imp8058803379\",\n        \"imp-2-00345-02-trunk@pilot.impulsevoip.net\",\n        \"imp-1-00345-02-trunk@pilot.impulsevoip.net\",\n        \"8052212633@pilot.impulsevoip.net\",\n        \"8059627014@pilot.impulsevoip.net\",\n        \"8059620186@pilot.impulsevoip.net\",\n        \"8059622118@pilot.impulsevoip.net\",\n        \"8059622225@pilot.impulsevoip.net\",\n        \"8052840346@pilot.impulsevoip.net\",\n        \"8059627101@pilot.impulsevoip.net\",\n        \"8059627179@pilot.impulsevoip.net\",\n        \"8059627181@pilot.impulsevoip.net\",\n        \"8059627185@pilot.impulsevoip.net\",\n        \"8059627197@pilot.impulsevoip.net\",\n        \"00349-02-directory\",\n        \"imp8058880397\",\n        \"imp8058880399\",\n        \"imp8058880398\",\n        \"imp00351-01100\",\n        \"00351-directory\",\n        \"imp8058880326\",\n        \"imp8058880378\",\n        \"imp8058880348\",\n        \"imp8058880344\",\n        \"imp8058880374\",\n        \"imp8058880304\",\n        \"imp8058880370\",\n        \"imp8058880346\",\n        \"imp8058880396\",\n        \"imp8058880331\",\n        \"imp8058880362\",\n        \"imp8058880330\",\n        \"imp8058880392\",\n        \"imp8058880356\",\n        \"imp8058880389\",\n        \"imp8058880371\",\n        \"imp8058880365\",\n        \"imp8058880384\",\n        \"imp8058880366\",\n        \"imp8058880317\",\n        \"imp8058880306\",\n        \"imp8058880327\",\n        \"imp8058880364\",\n        \"imp8058880386\",\n        \"imp8058880382\",\n        \"imp8058880308\",\n        \"imp8058880335\",\n        \"imp8058880338\",\n        \"imp8058880318\",\n        \"imp8058880363\",\n        \"imp8058880305\",\n        \"imp8058880341\",\n        \"imp8058880360\",\n        \"imp8058880307\",\n        \"imp8058880354\",\n        \"imp8058880312\",\n        \"imp8058880394\",\n        \"imp8058880395\",\n        \"imp8058880347\",\n        \"imp8058880379\",\n        \"imp8058880325\",\n        \"imp8058880314\",\n        \"imp8058880313\",\n        \"imp8058880369\",\n        \"imp8058880380\",\n        \"imp8058880381\",\n        \"imp8058880339\",\n        \"imp8058880358\",\n        \"imp8058880372\",\n        \"imp8058880302\",\n        \"imp8058880328\",\n        \"imp8058880349\",\n        \"imp8058880359\",\n        \"imp8058880303\",\n        \"imp8058880333\",\n        \"imp00351-02660\",\n        \"imp8058880353\",\n        \"imp8058880321\",\n        \"imp8058880329\",\n        \"imp8058880391\",\n        \"imp8058880343\",\n        \"imp8058880332\",\n        \"imp8058880300\",\n        \"imp8058880367\",\n        \"imp8058880361\",\n        \"imp8058880320\",\n        \"imp8058880324\",\n        \"imp8058880393\",\n        \"imp8058880316\",\n        \"imp8058880322\",\n        \"imp8058880373\",\n        \"imp8058880375\",\n        \"imp8058880355\",\n        \"imp8058880310\",\n        \"imp8058880315\",\n        \"imp8058880337\",\n        \"imp8058880336\",\n        \"imp8058880368\",\n        \"imp8058880390\",\n        \"imp8058880319\",\n        \"imp8058880340\",\n        \"imp8058880387\",\n        \"imp8058880352\",\n        \"imp8058880309\",\n        \"imp8058880351\",\n        \"imp8058880376\",\n        \"imp8058880323\",\n        \"imp8058880334\",\n        \"imp8058880345\",\n        \"imp8058880301\",\n        \"imp8058880385\",\n        \"imp8058880342\",\n        \"imp8058880357\",\n        \"imp8058880377\",\n        \"imp8058880383\",\n        \"imp8058880350\",\n        \"imp9514070558\",\n        \"imp9514070554\",\n        \"imp9514070562\",\n        \"imp9514070551\",\n        \"imp9514070555\",\n        \"imp9514070550\",\n        \"imp9514070553\",\n        \"imp00353-02151\",\n        \"imp9514070561\",\n        \"imp9514070556\",\n        \"imp9514070552\",\n        \"imp00353-02252\",\n        \"imp00353-02353\",\n        \"imp8059644791\",\n        \"imp8059678199\",\n        \"imp00355-directory\",\n        \"imp00355-01200\",\n        \"imp8059667277\",\n        \"imp8059667599\",\n        \"imp8059667715\",\n        \"imp8058803356\",\n        \"imp8058803351\",\n        \"imp8058803353\",\n        \"imp8058803354\",\n        \"imp8059667199\",\n        \"imp8058803352\",\n        \"imp8058803360\",\n        \"imp8059667511\",\n        \"imp8059667716\",\n        \"imp8059669071\",\n        \"imp00355-02309\",\n        \"imp00355-02310\",\n        \"imp8059667575\",\n        \"imp8059664225\",\n        \"imp8059667499\",\n        \"imp8059667757\",\n        \"imp8058803350\",\n        \"imp8058803359\",\n        \"imp8058803357\",\n        \"imp00356-directory\",\n        \"imp00356-01101\",\n        \"imp8054567294\",\n        \"imp8054566968\",\n        \"imp8054566979\",\n        \"imp8054567296\",\n        \"imp8054567298\",\n        \"imp8056837758\",\n        \"sip8054566971\",\n        \"imp8054566980\",\n        \"imp8054567293\",\n        \"imp8054566977\",\n        \"imp8054566970\",\n        \"imp8054567295\",\n        \"imp8054566975\",\n        \"imp8054566966\",\n        \"imp8054566976\",\n        \"imp8054566967\",\n        \"imp8054566978\",\n        \"imp8054567235\",\n        \"imp8054566969\",\n        \"imp8056837746\",\n        \"imp8054566972\",\n        \"imp8056837750\",\n        \"imp8054566974\",\n        \"imp8054567291\",\n        \"imp8054566973\",\n        \"imp00294-3301\",\n        \"imp00294-3303\",\n        \"imp00294-3306\",\n        \"imp00294-3307\",\n        \"imp00294-3319\",\n        \"imp00294-3320\",\n        \"imp00294-3321\",\n        \"imp00294-3323\",\n        \"imp00294-3336\",\n        \"imp00294-3343\",\n        \"00294-01-directory\",\n        \"imp8059692300\",\n        \"imp8055658010\",\n        \"imp00294-02802\",\n        \"imp8059694173\",\n        \"imp8055658018\",\n        \"imp8059694332\",\n        \"imp00294-02801\",\n        \"imp8059692983\",\n        \"imp8055658024\",\n        \"imp8055658011\",\n        \"imp8055658022\",\n        \"imp8059697763\",\n        \"imp8055658013\",\n        \"imp8055658023\",\n        \"imp8055658012\",\n        \"imp8055658015\",\n        \"imp8055658016\",\n        \"imp8055658021\",\n        \"imp8055658007\",\n        \"imp8059691445\",\n        \"imp8055658020\",\n        \"imp8059692242\",\n        \"imp8059697764\",\n        \"imp8055658017\",\n        \"imp8055658014\",\n        \"imp8055658009\",\n        \"imp8059692537\",\n        \"imp8059697762\",\n        \"imp8055658032\",\n        \"imp8055658029\",\n        \"imp8055658030\",\n        \"imp8055658028\",\n        \"imp8055658031\",\n        \"imp8055658034\",\n        \"imp8055658027\",\n        \"imp8055658036\",\n        \"imp8055658033\",\n        \"imp8055658035\",\n        \"imp00360-01111\",\n        \"imp00360-05410\",\n        \"imp8056796201\",\n        \"imp8056796203\",\n        \"imp8056796209\",\n        \"imp8056796202\",\n        \"imp00360-05408\",\n        \"imp8056796208\",\n        \"imp8056796204\",\n        \"imp00360-05407\",\n        \"imp00360-05491\",\n        \"imp00360-05492\",\n        \"imp00360-05493\",\n        \"imp00360-05494\",\n        \"imp00360-05495\",\n        \"imp3108736988\",\n        \"imp3108736984\",\n        \"imp00360-041009\",\n        \"imp3108736981\",\n        \"imp3108736985\",\n        \"imp3108736982\",\n        \"imp3103153895\",\n        \"imp00360-049938\",\n        \"imp3108736987\",\n        \"imp3108736983\",\n        \"imp00360-041010\",\n        \"imp00360-049975\",\n        \"imp00360-049976\",\n        \"imp00360-041019\",\n        \"imp00360-041091\",\n        \"imp00360-041092\",\n        \"imp00360-041093\",\n        \"imp00360-041094\",\n        \"imp00360-041095\",\n        \"imp7472423805\",\n        \"imp7472423806\",\n        \"imp00360-02981\",\n        \"imp7472423803\",\n        \"imp00360-02901\",\n        \"imp00360-02905\",\n        \"imp7472423804\",\n        \"imp00360-029936\",\n        \"imp7472423802\",\n        \"imp00360-02982\",\n        \"imp00360-02983\",\n        \"imp00360-02984\",\n        \"imp00360-039961\",\n        \"imp8052981895\",\n        \"imp8052981893\",\n        \"imp8052981891\",\n        \"imp8052981894\",\n        \"imp8052981892\",\n        \"imp00360-03806\",\n        \"imp00360-03881\",\n        \"imp00360-03882\",\n        \"imp00360-03883\",\n        \"imp00360-03884\",\n        \"imp00360-03810\",\n        \"imp00360-03805\",\n        \"imp2039262772\",\n        \"imp2039257926\",\n        \"imp2039262720\",\n        \"imp2039262715\",\n        \"imp2034561189\",\n        \"imp2039262719\",\n        \"imp2034561206\",\n        \"imp2039262730\",\n        \"imp2039262711\",\n        \"imp2039262751\",\n        \"imp2039262708\",\n        \"imp2039262748\",\n        \"imp2039262756\",\n        \"imp2039263063\",\n        \"imp2039262717\",\n        \"imp2039262718\",\n        \"imp2039262724\",\n        \"imp2039262742\",\n        \"imp2034561187\",\n        \"imp2039262795\",\n        \"imp2039262798\",\n        \"imp2039262705\",\n        \"imp2039262773\",\n        \"imp2039262776\",\n        \"imp2039262777\",\n        \"imp2039262761\",\n        \"imp2039262765\",\n        \"imp2034561190\",\n        \"imp2039262713\",\n        \"imp2039262738\",\n        \"imp2039262774\",\n        \"imp2039262789\",\n        \"imp2039262797\",\n        \"imp2039262741\",\n        \"imp2039262770\",\n        \"imp2039262775\",\n        \"imp2039257947\",\n        \"imp2039263062\",\n        \"imp2039262740\",\n        \"imp2039257930\",\n        \"imp2039262726\",\n        \"imp2039262716\",\n        \"imp2039262754\",\n        \"imp2039257939\",\n        \"imp2039262752\",\n        \"imp2039262749\",\n        \"imp2039263068\",\n        \"imp2034561188\",\n        \"imp2039262703\",\n        \"imp7654645549\",\n        \"imp7654645594\",\n        \"imp7654645577\",\n        \"imp7654645755\",\n        \"imp7654645568\",\n        \"imp7654645538\",\n        \"imp7654645526\",\n        \"imp7654645772\",\n        \"imp7654645589\",\n        \"imp7654645714\",\n        \"imp7654645743\",\n        \"imp7654645599\",\n        \"imp7654645550\",\n        \"imp7654645756\",\n        \"imp7654645791\",\n        \"imp7654645799\",\n        \"imp7654645742\",\n        \"imp7654645543\",\n        \"imp7654645716\",\n        \"imp7654645724\",\n        \"imp7654645706\",\n        \"imp7654645769\",\n        \"imp7654645753\",\n        \"imp00362-075445\",\n        \"imp7654645705\",\n        \"imp7654645741\",\n        \"imp7654645787\",\n        \"imp7654645529\",\n        \"imp7654645776\",\n        \"imp7654645796\",\n        \"imp7654645507\",\n        \"imp7654645759\",\n        \"imp7654645511\",\n        \"imp7654645719\",\n        \"imp00362-075447\",\n        \"imp7654645751\",\n        \"imp7654645728\",\n        \"imp7654645781\",\n        \"imp7654645567\",\n        \"imp7654645555\",\n        \"imp7654645581\",\n        \"imp7654645757\",\n        \"imp7654645521\",\n        \"imp7654645541\",\n        \"imp7654645536\",\n        \"imp7654645519\",\n        \"imp7654645569\",\n        \"imp7654645561\",\n        \"imp7654645777\",\n        \"imp7654645738\",\n        \"imp7654645748\",\n        \"imp7654645513\",\n        \"imp7654645548\",\n        \"imp7654645503\",\n        \"imp7654645713\",\n        \"imp7654645557\",\n        \"imp7654645704\",\n        \"imp7654645546\",\n        \"imp7654645790\",\n        \"imp7654645765\",\n        \"imp7654645558\",\n        \"imp7654645531\",\n        \"imp7654645734\",\n        \"imp7654645544\",\n        \"imp7654645782\",\n        \"imp7654645551\",\n        \"imp7654645767\",\n        \"imp7654645727\",\n        \"imp7654645540\",\n        \"imp7654645525\",\n        \"imp7654645545\",\n        \"imp7654645571\",\n        \"imp7654645583\",\n        \"imp7654645737\",\n        \"imp7654645731\",\n        \"imp4697069040\",\n        \"imp7654645701\",\n        \"imp7654645764\",\n        \"imp7654645510\",\n        \"imp7654645573\",\n        \"imp7654645702\",\n        \"imp7654645730\",\n        \"imp7654645750\",\n        \"imp7654645736\",\n        \"imp7654645537\",\n        \"imp7654645575\",\n        \"imp7654645520\",\n        \"imp7654645591\",\n        \"imp7654645542\",\n        \"imp7654645595\",\n        \"imp7654645508\",\n        \"imp7654645707\",\n        \"imp7654645518\",\n        \"imp7654645515\",\n        \"imp00362-071230\",\n        \"imp4697069018\",\n        \"imp4697069046\",\n        \"imp4697069022\",\n        \"imp4697069023\",\n        \"imp4697069027\",\n        \"imp4697069036\",\n        \"imp00362-029051\",\n        \"imp4697069019\",\n        \"imp4697069048\",\n        \"imp4697069016\",\n        \"imp4697069038\",\n        \"imp4697069053\",\n        \"imp8056839440\",\n        \"imp8058804247\",\n        \"imp8057244273\",\n        \"imp8057244274\",\n        \"imp8057244275\",\n        \"imp8054561299\",\n        \"imp8056867361\",\n        \"imp8056867344\",\n        \"imp8056867322\",\n        \"imp8056867369\",\n        \"imp8056867367\",\n        \"imp8056867347\",\n        \"imp8056867349\",\n        \"imp8056867351\",\n        \"8807\",\n        \"8808\",\n        \"imp8056867353\",\n        \"8809\",\n        \"8810\",\n        \"8811\",\n        \"8812\",\n        \"8813\",\n        \"8814\",\n        \"8815\",\n        \"8802\",\n        \"8803\",\n        \"imp8056867350\",\n        \"imp8056867302\",\n        \"8804\",\n        \"8805\",\n        \"8806\",\n        \"imp8056867362\",\n        \"imp8056867356\",\n        \"imp8056867371\",\n        \"imp8056867373\",\n        \"imp8056867338\",\n        \"imp8056867395\",\n        \"imp8056867318\",\n        \"imp8056867336\",\n        \"imp00373-028800\",\n        \"8801\",\n        \"imp8056867386\",\n        \"imp8056867366\",\n        \"imp8056867319\",\n        \"imp8056867331\",\n        \"imp8056867335\",\n        \"imp8056867325\",\n        \"imp8056867396\",\n        \"imp8056867355\",\n        \"imp8056867365\",\n        \"imp8056867397\",\n        \"imp8056867333\",\n        \"imp8056867327\",\n        \"imp8056867379\",\n        \"imp8056867346\",\n        \"imp8056867364\",\n        \"imp8056867368\",\n        \"imp8056867358\",\n        \"imp8056867375\",\n        \"imp8056867341\",\n        \"imp8056867394\",\n        \"imp8056867337\",\n        \"imp8056867345\",\n        \"imp8056867380\",\n        \"imp8056867343\",\n        \"imp00373-027299\",\n        \"imp8056867308\",\n        \"imp8056867393\",\n        \"imp8056867301\",\n        \"imp8056867332\",\n        \"imp8056867303\",\n        \"imp8056867329\",\n        \"imp8056867339\",\n        \"imp8056867316\",\n        \"imp8056867374\",\n        \"imp8056867328\",\n        \"imp8056867317\",\n        \"imp8056867315\",\n        \"imp8056867324\",\n        \"imp00373-02-trunk\",\n        \"imp00373-027297\",\n        \"imp8056867326\",\n        \"imp8056867311\",\n        \"imp8056867348\",\n        \"imp8056867320\",\n        \"imp8056867342\",\n        \"imp8056867359\",\n        \"imp8056867334\",\n        \"imp8056867330\",\n        \"imp8056867312\",\n        \"imp8056867309\",\n        \"imp8056867306\",\n        \"imp8056867363\",\n        \"imp00373-011000\",\n        \"00373-01-directory\",\n        \"00377-01-directory\",\n        \"imp8059615378\",\n        \"imp8059615367\",\n        \"imp8059615379\",\n        \"imp8059615376\",\n        \"imp8059615374\",\n        \"imp8059666961\",\n        \"imp8059615360\",\n        \"imp8059622101\",\n        \"imp8059615368\",\n        \"imp8059665073\",\n        \"imp8059615362\",\n        \"imp8059615365\",\n        \"imp8059615369\",\n        \"imp8059615377\",\n        \"imp8054570377\",\n        \"imp7738315521\",\n        \"imp7738315307\",\n        \"imp7738315649\",\n        \"imp7738315519\",\n        \"00386-02500\",\n        \"imp7738315542\",\n        \"imp8058563445\",\n        \"imp7738315513\"\n    ],\n    \"callCenter\": [\n        \"imp8054561297\",\n        \"imp8054561298\",\n        \"imp8054561295\",\n        \"imp8054561296\",\n        \"imp8056174313\",\n        \"impdemo_0002\",\n        \"imp8058805670\",\n        \"imp8052840779\",\n        \"imp8056174672\",\n        \"imp8052840785\",\n        \"imp8052840788\",\n        \"imp8056174182\",\n        \"imp8052840783\",\n        \"imp8058805673\",\n        \"impdemo_00027777\",\n        \"imp8058805674\",\n        \"imp8058805672\",\n        \"impcobra-pilot\",\n        \"imp8056174385\",\n        \"imp8058805671\",\n        \"impdemo_0002-trunk\",\n        \"imp8052840784\",\n        \"imp8052840782\",\n        \"imp8052840781\",\n        \"imp8052840780\",\n        \"imp8057300606\",\n        \"imp8053352593\",\n        \"imp8053352594\",\n        \"imp8052849977\",\n        \"imp8052901435\",\n        \"imp8054564201\",\n        \"imp00002-022301\",\n        \"imp00002-022309\",\n        \"imp8053352591\",\n        \"imp00002-022305\",\n        \"imp00002-022302\",\n        \"imp00002-053213\",\n        \"imp8053514123\",\n        \"imp00002-12-trunk@pilot.impulsevoip.net\",\n        \"8058846377@00002.impulsevoip.net\",\n        \"imp8058846326\",\n        \"imp8058846355\",\n        \"imp8058846372\",\n        \"imp8058846361\",\n        \"imp8058846392\",\n        \"imp8058846373\",\n        \"imp8058846357\",\n        \"imp8058846364\",\n        \"imp8054564281\",\n        \"imp00002-019973\",\n        \"imp8058846363\",\n        \"imp8058846370\",\n        \"imp8058846324\",\n        \"imp8058846394\",\n        \"imp8058846386\",\n        \"imp8058846391\",\n        \"imp8058846378\",\n        \"imp8058846332\",\n        \"imp8058846375\",\n        \"imp8058846393\",\n        \"imp8054565833\",\n        \"imp8058846318\",\n        \"imp8058846317\",\n        \"imp8058846396\",\n        \"imp8887776543\",\n        \"imp8058846368\",\n        \"imp8057554546\",\n        \"imp8055621909\",\n        \"imp8054763406\",\n        \"imptestbuild\",\n        \"imp00002-01-trunk@00002.impulsevoip.net\",\n        \"imp8059802095\",\n        \"imp8059802094\",\n        \"imp8058805658\",\n        \"imp8058846352\",\n        \"imp8058846334\",\n        \"sip8053514126\",\n        \"imp8058846316\",\n        \"imp8052901402\",\n        \"imp8057361678\",\n        \"imp8058805656\",\n        \"imp8058846315\",\n        \"imp00002-016006\",\n        \"imp8059802096\",\n        \"imp00002-014308\",\n        \"imp8058846353\",\n        \"imp00002-017887\",\n        \"imp8058846339\",\n        \"imp8058846362\",\n        \"imp8058846308\",\n        \"imp8058846371\",\n        \"ImpulseHQNOCVM\",\n        \"imp8053352597\",\n        \"imp8058846395\",\n        \"imp8058846360\",\n        \"imp8056174307\",\n        \"imp00002-directory\",\n        \"imp8058846382\",\n        \"imp8052594574\",\n        \"imp8058846397\",\n        \"imp8058846327\",\n        \"imp8058846359\",\n        \"imp8058846314\",\n        \"imp8058846369\",\n        \"imp00002-011234\",\n        \"imp00002-016502\",\n        \"imp8058846388\",\n        \"imp8053514102\",\n        \"imp8053514125\",\n        \"imp8058846312\",\n        \"imp8058846376\",\n        \"imp8058846399\",\n        \"imp8058846367\",\n        \"imp8059802093\",\n        \"imp00002-016501\",\n        \"imp00002-011888\",\n        \"imp3108736994\",\n        \"imp8058846305\",\n        \"imp8058805652\",\n        \"imp8054760300\",\n        \"imp00002-017326\",\n        \"imp8058846321\",\n        \"imp8058846337\",\n        \"imp8058846322\",\n        \"imp8052901694\",\n        \"imp8052901401\",\n        \"imp8052840348\",\n        \"imp8059802092\",\n        \"imp8058846320\",\n        \"imp8058846306\",\n        \"imp8058846313\",\n        \"imp00002-016004\",\n        \"imp00002-016245\",\n        \"imp8058805654\",\n        \"8058846325@00002.impulsevoip.net\",\n        \"imp8059802091\",\n        \"imp8058806969\",\n        \"imp00002-011403\",\n        \"imp8054760301\",\n        \"imp5038978575\",\n        \"imp8059802090\",\n        \"imp00002-013603\",\n        \"imp00002-016489\",\n        \"imp00002-016406\",\n        \"imp8058846387\",\n        \"imp8058846356\",\n        \"imp8058846323\",\n        \"imp8058846379\",\n        \"imp8058846329\",\n        \"imp8058846335\",\n        \"imp8058846381\",\n        \"imp8058846354\",\n        \"imp8058846336\",\n        \"imp8052849072\",\n        \"imp8056922712\",\n        \"imp8054565875\",\n        \"imp8053086869\",\n        \"imp8058846380\",\n        \"imp8058846338\",\n        \"imp00002-019971\",\n        \"imp00002-019972\",\n        \"imp8053514100\",\n        \"mreverman\",\n        \"slatsa\",\n        \"imp8058846351\",\n        \"imp8052433813\",\n        \"imp8058846304\",\n        \"imp8058846310\",\n        \"imp00002-013501\",\n        \"imp00002-013502\",\n        \"imp00002-013503\",\n        \"imp00002-013504\",\n        \"imp00002-013505\",\n        \"imp8058846331\",\n        \"imp5038978550\",\n        \"imp00002-012543\",\n        \"8888@00002.impulsevoip.net\",\n        \"imp8054563637\",\n        \"imp8052849523\",\n        \"imp8058803530\",\n        \"imp8054565689\",\n        \"imp00002-061501\",\n        \"imp8056833976\",\n        \"tsptsp\",\n        \"imp00002-022321\",\n        \"imp00002-022323\",\n        \"imp8058846307\",\n        \"imp00002-022308\",\n        \"imp8053352592\",\n        \"imp8052611125\",\n        \"imp8053507901\",\n        \"imp8052840426\",\n        \"00002-02Key2\",\n        \"00002-02Key3\",\n        \"00002-02Key4\",\n        \"imp8059621575\",\n        \"imp00002-024447\",\n        \"imp8052904278\",\n        \"imp00002-021999\",\n        \"imp00002-02RMA\",\n        \"Key1test\",\n        \"imp00002-053214\",\n        \"imp00002-01VMTEST9927\",\n        \"imp00002-025659\",\n        \"imp00002-022322\",\n        \"imp8052904279\",\n        \"imp8053763404\",\n        \"imp8053571362\",\n        \"imp8053571363\",\n        \"imp00002-026543\",\n        \"imp00002-022306\",\n        \"imp00002-053215\",\n        \"imp00002-022304\",\n        \"imp8052901884\",\n        \"imp00002-022303\",\n        \"imp00002-02-trunk\",\n        \"8058805650@00002.impulsevoip.net\",\n        \"imp8057701606\",\n        \"imp00090-02352\",\n        \"imp8057701609\",\n        \"imp8057701602\",\n        \"imp8057701607\",\n        \"00090-02133\",\n        \"imp8057701604\",\n        \"imp00090-02888\",\n        \"imp8057701610\",\n        \"imp8057701611\",\n        \"imp8057701605\",\n        \"imp8057701613\",\n        \"imp8057701614\",\n        \"imp8057701601\",\n        \"imp8057701612\",\n        \"imp8057701608\",\n        \"imp8057701603\",\n        \"imp00090-01100\",\n        \"imp8054760312\",\n        \"imp8052840397\",\n        \"imp8054760373\",\n        \"imp8054760374\",\n        \"imp8054760377\",\n        \"imp8054760375\",\n        \"imp8054760313\",\n        \"imp8054760379\",\n        \"imp00090-03ext226\",\n        \"imp8054760378\",\n        \"imp8054760376\",\n        \"imp8054368474\",\n        \"imp8054368478\",\n        \"imp8054368476\",\n        \"imp8054368475\",\n        \"imp8054368471\",\n        \"imp8054368472\",\n        \"imp8054368473\",\n        \"imp8058971177\",\n        \"imp8053197970\",\n        \"imp8053197977\",\n        \"imp8053197966\",\n        \"imp8053197972\",\n        \"imp8053197973\",\n        \"imp8053197965\",\n        \"imp8053197978\",\n        \"imp8053358061\",\n        \"imp8053358040\",\n        \"imp8053358056\",\n        \"imp8053358052\",\n        \"imp8053358010\",\n        \"imp8053358001\",\n        \"imp8053358051\",\n        \"imp8053358027\",\n        \"imp8053358064\",\n        \"imp8053358008\",\n        \"imp8053358013\",\n        \"imp8053358069\",\n        \"imp8053358050\",\n        \"imp8053358054\",\n        \"imp8053358007\",\n        \"imp8053358009\",\n        \"imp8053358023\",\n        \"imp8053358021\",\n        \"imp8053358004\",\n        \"imp8053358025\",\n        \"imp8053358005\",\n        \"imp8053358033\",\n        \"imp8053358002\",\n        \"imp8053358028\",\n        \"imp8053358072\",\n        \"imp8053358014\",\n        \"imp8053358057\",\n        \"imp8053358045\",\n        \"imp8053358022\",\n        \"imp8053358070\",\n        \"imp8053358044\",\n        \"imp8053358012\",\n        \"imp8053358018\",\n        \"imp8053358066\",\n        \"imp8053358019\",\n        \"imp8053358011\",\n        \"imp8053358020\",\n        \"imp8053358030\",\n        \"imp8053358059\",\n        \"imp8053358032\",\n        \"imp8053358026\",\n        \"imp8053358068\",\n        \"imp8053358042\",\n        \"imp8053358043\",\n        \"imp8053358031\",\n        \"imp8053358067\",\n        \"imp8053358062\",\n        \"imp8053358039\",\n        \"imp8053358003\",\n        \"imp8053358017\",\n        \"imp8053358029\",\n        \"imp8053358038\",\n        \"imp8053358073\",\n        \"imp8053358036\",\n        \"imp8053358065\",\n        \"imp8053358016\",\n        \"imp8053358034\",\n        \"imp8053358055\",\n        \"imp8056399459\",\n        \"imp8056399470\",\n        \"imp8056399461\",\n        \"imp8052051326\",\n        \"imp8052051314\",\n        \"imp8052051349\",\n        \"imp8052051368\",\n        \"imp8052051341\",\n        \"imp8052051358\",\n        \"imp8052051361\",\n        \"imp8052051347\",\n        \"imp8052051362\",\n        \"imp8052051338\",\n        \"imp8052051308\",\n        \"imp8052051346\",\n        \"imp8052051348\",\n        \"imp8052051343\",\n        \"imp8052051309\",\n        \"imp8058459758\",\n        \"imp8058459764\",\n        \"imp8056837594\",\n        \"imp8053358528\",\n        \"imp8056181837\",\n        \"imp00005-010\",\n        \"imp8056835374\",\n        \"imp8059645256\",\n        \"imp8056824779\",\n        \"imp8057702403\",\n        \"imp8053089201\",\n        \"imp8053089206\",\n        \"imp8053089203\",\n        \"imp8053089202\",\n        \"imp8058804250\",\n        \"imp8054566918\",\n        \"imp8054566907\",\n        \"imp8054566909\",\n        \"imp8054566915\",\n        \"imp00012-016103\",\n        \"imp8058804275\",\n        \"imp8054566908\",\n        \"imp8054566912\",\n        \"imp8054566900\",\n        \"imp00012-016101\",\n        \"imp8052901419\",\n        \"imp8058804216\",\n        \"imp8058804276\",\n        \"imp8054566901\",\n        \"imp8054566914\",\n        \"imp8054566913\",\n        \"imp8054566902\",\n        \"imp00012-016102\",\n        \"imp8054566905\",\n        \"imp8058804279\",\n        \"imp8054566904\",\n        \"imp8054566916\",\n        \"imp8054566906\",\n        \"imp8054566903\",\n        \"imp8054566910\",\n        \"imp8054566911\",\n        \"imp8054566917\",\n        \"imp8054566999\",\n        \"imp8057414368\",\n        \"imp8057414385\",\n        \"imp8057414352\",\n        \"imp8057414380\",\n        \"imp8057414357\",\n        \"imp8057414384\",\n        \"imp8057414365\",\n        \"imp8057414356\",\n        \"imp8057414379\",\n        \"imp8057365608\",\n        \"imp8057414372\",\n        \"imp8057414374\",\n        \"imp8057414367\",\n        \"imp8057414364\",\n        \"imp8057414386\",\n        \"imp8057414388\",\n        \"imp8057414377\",\n        \"imp00019-01100\",\n        \"imp3108736906\",\n        \"imp3108736917\",\n        \"imp3108736907\",\n        \"imp8054564877\",\n        \"imp3108736914\",\n        \"imp3108736903\",\n        \"imp8054564878\",\n        \"imp3108736912\",\n        \"imp8054564887\",\n        \"imp8054564882\",\n        \"imp8054566882\",\n        \"imp8056846518\",\n        \"imp8054566886\",\n        \"imp8056846519\",\n        \"imp8056846516\",\n        \"imp8054566884\",\n        \"imp8054566890\",\n        \"imp8054566889\",\n        \"imp8054566888\",\n        \"imp8054566885\",\n        \"imp8054566883\",\n        \"imp8054566881\",\n        \"imp8054566887\",\n        \"imp8056846517\",\n        \"imp8056972801\",\n        \"imp8056972803\",\n        \"imp8056972804\",\n        \"imp8056972802\",\n        \"imp8054568110\",\n        \"imp8054568114\",\n        \"imp8054568108\",\n        \"imp8054568116\",\n        \"imp8054568111\",\n        \"imp8054568112\",\n        \"imp8054568113\",\n        \"imp8054568109\",\n        \"imp8054568117\",\n        \"imp8056971451\",\n        \"imp8056971459\",\n        \"imp8056971454\",\n        \"imp8056971468\",\n        \"imp8056971458\",\n        \"imp8056971460\",\n        \"imp8056971455\",\n        \"imp8056971461\",\n        \"imp8056971467\",\n        \"imp8056971462\",\n        \"imp8056971452\",\n        \"imp8056971457\",\n        \"imp8056971453\",\n        \"imp8056971466\",\n        \"imp8058809325\",\n        \"imp8058809324\",\n        \"imp8056822989\",\n        \"imp00035-02249\",\n        \"imp00035-02238\",\n        \"imp8058809323\",\n        \"imp00035-02246\",\n        \"imp8058809317\",\n        \"imp8055639781\",\n        \"imp00035-02117\",\n        \"imp8058809319\",\n        \"imp8058809320\",\n        \"imp00035-02265\",\n        \"imp00035-02244\",\n        \"imp00035-02222\",\n        \"imp00035-02236\",\n        \"imp00035-02234\",\n        \"imp00035-02269\",\n        \"imp00035-02231\",\n        \"imp8058809321\",\n        \"imp8058809322\",\n        \"imp8058809327\",\n        \"imp8058809318\",\n        \"imp8058809315\",\n        \"imp8054621220\",\n        \"imp8055392794\",\n        \"imp8059798742\",\n        \"imp8059798746\",\n        \"imp8059798744\",\n        \"imp8059798758\",\n        \"imp8059798753\",\n        \"imp8059798776\",\n        \"imp8059798743\",\n        \"imp00052-02306\",\n        \"imp8059798752\",\n        \"imp8059798766\",\n        \"imp8059798761\",\n        \"imp8059798782\",\n        \"imp8059798784\",\n        \"imp8059798785\",\n        \"imp8059798771\",\n        \"imp8059798762\",\n        \"imp8059798788\",\n        \"imp8059798772\",\n        \"imp8059798777\",\n        \"imp8059798764\",\n        \"imp8059798770\",\n        \"imp8059798750\",\n        \"imp8059798760\",\n        \"imp8059798783\",\n        \"imp8059798741\",\n        \"imp8059798798\",\n        \"imp7086655882\",\n        \"imp7086655881\",\n        \"imp7086655884\",\n        \"imp7086655885\",\n        \"imp7087620976\",\n        \"imp7087620977\",\n        \"imp7087620978\",\n        \"imp7086655886\",\n        \"imp7086655883\",\n        \"imp8185320225\",\n        \"imp8185320227\",\n        \"imp8185320230\",\n        \"00060-02235\",\n        \"imp8185320229\",\n        \"imp8185320234\",\n        \"imp8185320228\",\n        \"imp00060-02109\",\n        \"imp8058803554\",\n        \"imp8058803553\",\n        \"imp00110-12118\",\n        \"imp00110-12117\",\n        \"imp00110-12119\",\n        \"imp8058563452\",\n        \"imp00110-08163\",\n        \"imp8058806982\",\n        \"imp00110-08161\",\n        \"imp00110-08160\",\n        \"imp00110-08162\",\n        \"imp00110-01333\",\n        \"imp8058806987\",\n        \"imp8058806986\",\n        \"imp00110-03138\",\n        \"imp00110-03139\",\n        \"imp00110-03137\",\n        \"imp8058806988\",\n        \"imp8058806989\",\n        \"imp00110-05109\",\n        \"imp00110-05113\",\n        \"imp00110-05112\",\n        \"imp8058803581\",\n        \"imp00110-05168\",\n        \"imp8053572551\",\n        \"imp8053572553\",\n        \"imp8053572554\",\n        \"imp8053572552\",\n        \"imp8058803591\",\n        \"imp8058803593\",\n        \"imp00110-09127\",\n        \"imp00110-09128\",\n        \"imp00110-09126\",\n        \"imp8058803592\",\n        \"imp8058844239\",\n        \"imp00110-10105\",\n        \"imp00110-10106\",\n        \"imp00110-10107\",\n        \"imp8058844238\",\n        \"imp8058563454\",\n        \"imp00110-11164\",\n        \"imp8058563457\",\n        \"imp8058563455\",\n        \"imp8058563453\",\n        \"imp8058806972\",\n        \"imp00110-15152\",\n        \"imp00110-15124\",\n        \"imp00110-15151\",\n        \"imp8058806975\",\n        \"imp8058806973\",\n        \"imp8058806974\",\n        \"imp8058803588\",\n        \"imp8058803589\",\n        \"imp8058803590\",\n        \"imp8058803587\",\n        \"imp00110-17111\",\n        \"imp00110-17114\",\n        \"imp00110-17115\",\n        \"imp8058803555\",\n        \"imp8059262213\",\n        \"imp8059262211\",\n        \"imp8059262214\",\n        \"imp00110-19210\",\n        \"imp8059262212\",\n        \"imp8058806985\",\n        \"imp8058806984\",\n        \"imp00110-02144\",\n        \"imp00110-02143\",\n        \"imp00110-02142\",\n        \"imp8059262203\",\n        \"imp8058803597\",\n        \"imp8058803598\",\n        \"imp00110-04148\",\n        \"imp00110-04149\",\n        \"imp00110-04147\",\n        \"imp8058803599\",\n        \"imp8058844240\",\n        \"imp8058844236\",\n        \"imp8058844257\",\n        \"imp8058844224\",\n        \"imp8058844249\",\n        \"imp8058844253\",\n        \"imp8058844258\",\n        \"imp8058844235\",\n        \"imp8058806976\",\n        \"imp8058844244\",\n        \"imp8058844243\",\n        \"imp8058844254\",\n        \"imp8058844255\",\n        \"imp8058844250\",\n        \"imp8058844259\",\n        \"imp8058844241\",\n        \"imp8058844233\",\n        \"imp8058844251\",\n        \"imp8058844227\",\n        \"imp8058844230\",\n        \"imp8058844222\",\n        \"imp8058844237\",\n        \"imp8058844225\",\n        \"imp8058844248\",\n        \"imp8058844245\",\n        \"imp8058844256\",\n        \"imp00110-13530\",\n        \"imp8056796268\",\n        \"imp8058844229\",\n        \"imp00110-13520\",\n        \"imp8058844221\",\n        \"imp8059622121\",\n        \"imp8058844232\",\n        \"imp8058844242\",\n        \"imp8058844226\",\n        \"imp8058844228\",\n        \"imp8058844220\",\n        \"imp8058844234\",\n        \"imp8058844231\",\n        \"imp8058844246\",\n        \"imp8058844223\",\n        \"imp8058844252\",\n        \"imp8058844247\",\n        \"imp8054568777\",\n        \"imp8054568771\",\n        \"imp8054568774\",\n        \"imp8054568775\",\n        \"imp8054568773\",\n        \"imp8054568770\",\n        \"imp8054568772\",\n        \"imp00064-02155\",\n        \"imp00064-02158\",\n        \"imp00064-02152\",\n        \"imp00064-02151\",\n        \"imp00064-02157\",\n        \"imp00064-02159\",\n        \"imp00064-02153\",\n        \"imp00064-02154\",\n        \"imp8054568776\",\n        \"imp00064-02160\",\n        \"imp00064-02156\",\n        \"imp8054568779\",\n        \"imp8054568778\",\n        \"imp8284331686\",\n        \"imp8053089780\",\n        \"imp8053089705\",\n        \"imp8053089759\",\n        \"imp8053089781\",\n        \"imp8053089763\",\n        \"imp8053089776\",\n        \"imp8053089783\",\n        \"imp8053089775\",\n        \"imp00072-02710\",\n        \"imp8053089818\",\n        \"imp00072-02711\",\n        \"imp8053089777\",\n        \"imp8053089787\",\n        \"imp8053089778\",\n        \"imp8053089779\",\n        \"imp8053089782\",\n        \"imp00074-01200\",\n        \"imp8058801113\",\n        \"imp8058801192\",\n        \"imp8058801158\",\n        \"imp8058801110\",\n        \"imp8058801130\",\n        \"imp8058801105\",\n        \"imp8058801149\",\n        \"imp8058801140\",\n        \"imp8058801150\",\n        \"imp8058801116\",\n        \"imp8058801146\",\n        \"imp8058801119\",\n        \"imp8058801155\",\n        \"imp8058801133\",\n        \"imp8058801134\",\n        \"imp8058801143\",\n        \"imp8058801118\",\n        \"imp8058801111\",\n        \"imp8058801142\",\n        \"imp8058801123\",\n        \"imp8058801114\",\n        \"imp8058801122\",\n        \"imp8058801154\",\n        \"imp8058801128\",\n        \"imp8058801132\",\n        \"imp8058801153\",\n        \"imp8058801152\",\n        \"imp8058801137\",\n        \"imp8058801157\",\n        \"imp8058801124\",\n        \"imp8058801136\",\n        \"imp8058801144\",\n        \"imp8058801102\",\n        \"imp8058801120\",\n        \"imp8058801147\",\n        \"imp8058801103\",\n        \"imp8058801156\",\n        \"imp8058801106\",\n        \"imp8058801107\",\n        \"imp8058801127\",\n        \"imp8058801177\",\n        \"imp8058801135\",\n        \"imp8058801151\",\n        \"imp8058801138\",\n        \"imp8058801141\",\n        \"imp8058801109\",\n        \"imp8058801126\",\n        \"imp8058801115\",\n        \"imp8058801108\",\n        \"imp8058801145\",\n        \"imp8058801148\",\n        \"imp8058801121\",\n        \"imp8058801139\",\n        \"imp8058801104\",\n        \"imp8054568745\",\n        \"imp8054568740\",\n        \"imp8054568746\",\n        \"imp8054568748\",\n        \"imp8054568743\",\n        \"imp8054568744\",\n        \"imp8054568751\",\n        \"imp8054568747\",\n        \"imp00202-02130\",\n        \"imp8054568742\",\n        \"imp8054570303\",\n        \"imp8054568750\",\n        \"imp8054568741\",\n        \"imp8054565865\",\n        \"imp8054568752\",\n        \"imp8052840298\",\n        \"imp8052840299\",\n        \"imp8057300930\",\n        \"imp8057701393\",\n        \"imp8058801552\",\n        \"imp8058801553\",\n        \"imp8057701395\",\n        \"imp8058801554\",\n        \"imp8054363430\",\n        \"imp8057701394\",\n        \"imp8057701638\",\n        \"imp8057701389\",\n        \"imp8057300915\",\n        \"imp8057701649\",\n        \"imp8052840261\",\n        \"imp8057701643\",\n        \"imp8057701398\",\n        \"imp8052840263\",\n        \"imp8053572589\",\n        \"imp8057701388\",\n        \"imp8057701359\",\n        \"imp8058801547\",\n        \"imp8057300906\",\n        \"imp8057701631\",\n        \"imp8058801556\",\n        \"imp8057701390\",\n        \"imp8055607805\",\n        \"00076-02VM550\",\n        \"imp8058801546\",\n        \"imp8057701647\",\n        \"imp8057701644\",\n        \"imp8057701633\",\n        \"imp8057701391\",\n        \"imp8058801548\",\n        \"imp8057701621\",\n        \"imp8057701632\",\n        \"imp8057701387\",\n        \"imp8053306603\",\n        \"imp8057701636\",\n        \"imp8057300907\",\n        \"imp8057701397\",\n        \"imp8057701385\",\n        \"imp8057701392\",\n        \"imp8058801544\",\n        \"imp8058801545\",\n        \"imp8057300909\",\n        \"imp8057300922\",\n        \"imp8057701635\",\n        \"imp8054564287\",\n        \"imp8058801543\",\n        \"imp8057701386\",\n        \"imp8053579517\",\n        \"imp8057701396\",\n        \"imp8057701628\",\n        \"imp8057701629\",\n        \"imp8057701630\",\n        \"imp8052840260\",\n        \"imp00076-01200\",\n        \"imp8058801615\",\n        \"imp8058801642\",\n        \"imp8058801651\",\n        \"imp8058801647\",\n        \"imp8058801602\",\n        \"imp8058801604\",\n        \"imp8058801603\",\n        \"imp8058801639\",\n        \"imp8058801648\",\n        \"imp8058801626\",\n        \"imp8058803551\",\n        \"imp8058801653\",\n        \"imp8058801608\",\n        \"imp8058801616\",\n        \"imp8058804201\",\n        \"imp8059662152\",\n        \"00208-029293\",\n        \"imp8058846301\",\n        \"8058801690x\",\n        \"imp8056796230\",\n        \"imp8056796223\",\n        \"imp8056796228\",\n        \"imp8056796225\",\n        \"imp8056796220\",\n        \"imp8056796226\",\n        \"imp8053572520\",\n        \"imp8053572524\",\n        \"imp8053572501\",\n        \"imp8053572512\",\n        \"imp8053572503\",\n        \"imp8053572515\",\n        \"imp00084-02555\",\n        \"imp00084-02556\",\n        \"imp8053572504\",\n        \"imp8053572513\",\n        \"imp8053572516\",\n        \"imp8053572514\",\n        \"imp8053572522\",\n        \"imp00084-02540\",\n        \"imp8056140060\",\n        \"imp8053572521\",\n        \"imp8053572500\",\n        \"imp8053572509\",\n        \"imp8053572508\",\n        \"imp8053572523\",\n        \"imp8053572507\",\n        \"imp8053572506\",\n        \"imp8053572505\",\n        \"imp4085122678\",\n        \"imp8053572517\",\n        \"imp8053572511\",\n        \"imp4085122682\",\n        \"imp8053572510\",\n        \"imp4085122667\",\n        \"imp4085122663\",\n        \"imp4085122674\",\n        \"imp4085122664\",\n        \"imp3238002637\",\n        \"imp3238002635\",\n        \"imp3238002638\",\n        \"imp3238002636\",\n        \"imp3238002641\",\n        \"imp8056173414\",\n        \"imp8056173415\",\n        \"imp8056173412\",\n        \"imp8056173410\",\n        \"imp8056173413\",\n        \"imp8056173411\",\n        \"imp8054568766\",\n        \"imp8053924263\",\n        \"imp8059330274\",\n        \"imp8059330275\",\n        \"imp8053924265\",\n        \"imp8059330276\",\n        \"imp8059330251\",\n        \"imp8059330354\",\n        \"imp8059330235\",\n        \"imp8059330321\",\n        \"imp8059330308\",\n        \"imp8053924266\",\n        \"imp8053924264\",\n        \"imp8056042697\",\n        \"imp8056042648\",\n        \"imp8056042642\",\n        \"imp8056042652\",\n        \"imp8056042643\",\n        \"imp8056174614\",\n        \"imp8056174910\",\n        \"imp8056174997\",\n        \"imp8056174619\",\n        \"imp6618406708\",\n        \"imp6613714483\",\n        \"imp6613714487\",\n        \"imp6613714420\",\n        \"imp6613714517\",\n        \"imp6613714433\",\n        \"imp6613714524\",\n        \"imp6618406798\",\n        \"imp6613714505\",\n        \"imp6613714494\",\n        \"imp6613714469\",\n        \"imp6618406707\",\n        \"imp6613714518\",\n        \"imp6613714453\",\n        \"imp6613714416\",\n        \"imp6613714527\",\n        \"imp6618406709\",\n        \"imp6613714493\",\n        \"imp6613714439\",\n        \"imp6613714508\",\n        \"imp6613714394\",\n        \"imp6613714481\",\n        \"imp6613714484\",\n        \"imp6613714468\",\n        \"imp6613714448\",\n        \"imp6613714373\",\n        \"imp6613714456\",\n        \"imp6613714525\",\n        \"imp6613714466\",\n        \"imp6613714460\",\n        \"imp6613714536\",\n        \"imp6613714375\",\n        \"imp00118-044499\",\n        \"imp6613714371\",\n        \"imp6613714479\",\n        \"imp6613714391\",\n        \"imp6613714519\",\n        \"imp6613714467\",\n        \"imp6613714461\",\n        \"imp6613714503\",\n        \"imp6613714482\",\n        \"imp6618406795\",\n        \"imp6618406704\",\n        \"imp6613714478\",\n        \"imp6613714431\",\n        \"imp6613714476\",\n        \"imp6613714395\",\n        \"imp6618406796\",\n        \"imp6613714450\",\n        \"imp8055661169\",\n        \"imp6613714451\",\n        \"imp6618406797\",\n        \"imp6613714465\",\n        \"imp6613714378\",\n        \"imp6613714471\",\n        \"imp6618406702\",\n        \"imp6613714458\",\n        \"imp6618406706\",\n        \"imp6613714374\",\n        \"imp6613714521\",\n        \"imp6613714377\",\n        \"imp6613714480\",\n        \"imp6613714389\",\n        \"imp6613714455\",\n        \"imp6613714438\",\n        \"imp6613714384\",\n        \"imp6613714504\",\n        \"imp00118-044404\",\n        \"imp6615253428\",\n        \"imp6615253429\",\n        \"imp6613714404\",\n        \"imp6613714499\",\n        \"imp6613714470\",\n        \"imp6613714408\",\n        \"imp6613714421\",\n        \"imp8055661170\",\n        \"imp6613714427\",\n        \"imp6618406701\",\n        \"imp6613714396\",\n        \"imp6613714440\",\n        \"imp6613714419\",\n        \"imp6613714522\",\n        \"imp6613714463\",\n        \"imp6613714501\",\n        \"imp6613714496\",\n        \"imp6613714442\",\n        \"imp6613714474\",\n        \"imp6618406703\",\n        \"imp6613714509\",\n        \"imp6613714502\",\n        \"imp6613714462\",\n        \"imp6613714454\",\n        \"imp6613714441\",\n        \"imp6613714382\",\n        \"imp6613714507\",\n        \"imp6613714516\",\n        \"imp6613714520\",\n        \"imp6613714492\",\n        \"imp6613714385\",\n        \"imp6613714393\",\n        \"imp6613714388\",\n        \"imp6615253427\",\n        \"imp6613714449\",\n        \"imp6613714383\",\n        \"imp6613714464\",\n        \"imp6613714497\",\n        \"imp6613714526\",\n        \"imp6613714475\",\n        \"imp6613714457\",\n        \"imp6613714506\",\n        \"imp6613714390\",\n        \"imp6613714436\",\n        \"imp00118-directory\",\n        \"imp00118-013000\",\n        \"imp8056952126\",\n        \"imp8058807673\",\n        \"imp8058804671\",\n        \"imp8055662869\",\n        \"imp8055664111\",\n        \"imp6618406705\",\n        \"imp8055664116\",\n        \"imp8055662876\",\n        \"imp8058807459\",\n        \"imp8054561253\",\n        \"imp8054561287\",\n        \"imp8058804617\",\n        \"imp8055664121\",\n        \"imp8058804628\",\n        \"imp8055662870\",\n        \"imp8058804626\",\n        \"imp8054561268\",\n        \"imp8058804624\",\n        \"imp8058804675\",\n        \"imp5593722432\",\n        \"imp8055662863\",\n        \"imp8058804653\",\n        \"imp8054561275\",\n        \"imp8054561255\",\n        \"imp8055662894\",\n        \"imp8056952109\",\n        \"imp8055664102\",\n        \"imp8054561289\",\n        \"imp8056173081\",\n        \"imp8054561261\",\n        \"imp8055664104\",\n        \"imp8058804650\",\n        \"imp8054561271\",\n        \"imp8054561286\",\n        \"imp8058804638\",\n        \"imp8055661447\",\n        \"imp8058804687\",\n        \"imp8055662862\",\n        \"imp8058804666\",\n        \"imp8058804680\",\n        \"imp8058804604\",\n        \"imp8055662891\",\n        \"imp8058804645\",\n        \"imp8055662884\",\n        \"imp8055662897\",\n        \"imp8058801698\",\n        \"imp8054561249\",\n        \"imp8058804649\",\n        \"imp8055662845\",\n        \"imp8054561288\",\n        \"imp8058804652\",\n        \"imp8058804619\",\n        \"imp8056952140\",\n        \"imp8055664105\",\n        \"imp8058804600\",\n        \"imp8055664120\",\n        \"imp8055662880\",\n        \"imp8056952129\",\n        \"imp8055662887\",\n        \"imp8054561247\",\n        \"imp8058804689\",\n        \"imp8058804694\",\n        \"imp8055664136\",\n        \"imp8053086904\",\n        \"imp8058804639\",\n        \"imp8058804664\",\n        \"imp8055662893\",\n        \"imp8058804630\",\n        \"imp8058804684\",\n        \"imp8058804692\",\n        \"imp8055661175\",\n        \"imp8058807442\",\n        \"imp8055662865\",\n        \"imp8058804655\",\n        \"imp8058804672\",\n        \"imp8055662871\",\n        \"imp8058807455\",\n        \"imp8058804663\",\n        \"imp8058804603\",\n        \"imp8058804607\",\n        \"imp8055662881\",\n        \"imp8058804695\",\n        \"imp8054561258\",\n        \"imp8055662879\",\n        \"imp8058804676\",\n        \"imp8056952114\",\n        \"imp8058804697\",\n        \"imp8058804627\",\n        \"imp8055662892\",\n        \"imp8058804659\",\n        \"imp8056952124\",\n        \"imp8055662882\",\n        \"imp8055662840\",\n        \"imp8058804696\",\n        \"imp8055662888\",\n        \"imp8055662850\",\n        \"imp8055664101\",\n        \"imp8058804634\",\n        \"imp8055662873\",\n        \"imp8058804677\",\n        \"imp8058804613\",\n        \"imp8054561285\",\n        \"imp8054561272\",\n        \"imp8058804678\",\n        \"imp8054561256\",\n        \"imp8055662886\",\n        \"imp8055662855\",\n        \"imp8058804636\",\n        \"imp8054561265\",\n        \"imp8055662856\",\n        \"imp8055662843\",\n        \"imp8058807447\",\n        \"imp8058807674\",\n        \"imp8058804688\",\n        \"imp8055662866\",\n        \"imp8058804631\",\n        \"imp8055662898\",\n        \"imp8058801699\",\n        \"imp8058804632\",\n        \"imp8058804682\",\n        \"imp8055664135\",\n        \"imp8055664112\",\n        \"imp8058804670\",\n        \"imp8055664110\",\n        \"imp8055664138\",\n        \"imp8058804651\",\n        \"imp8058804225\",\n        \"imp8053572559\",\n        \"imp8055662896\",\n        \"imp8058804640\",\n        \"imp8058804601\",\n        \"imp8054561269\",\n        \"imp8058804633\",\n        \"imp8056952113\",\n        \"imp8058804646\",\n        \"imp8058804620\",\n        \"imp8058804637\",\n        \"imp8054561276\",\n        \"imp8055662851\",\n        \"imp8058804616\",\n        \"imp8058807439\",\n        \"imp8054561263\",\n        \"imp8058807457\",\n        \"imp8053089227\",\n        \"imp8055662878\",\n        \"imp8058801659\",\n        \"imp8058807909\",\n        \"imp8058807454\",\n        \"imp8054561264\",\n        \"imp8055664128\",\n        \"imp8055662846\",\n        \"imp8055662861\",\n        \"imp8058804665\",\n        \"imp8058807441\",\n        \"imp8055664109\",\n        \"imp8055662883\",\n        \"imp8055664113\",\n        \"imp8056173080\",\n        \"imp8054561280\",\n        \"imp8054561262\",\n        \"imp8054561246\",\n        \"imp8055664134\",\n        \"imp8058804647\",\n        \"imp00118-021010\",\n        \"imp8058804654\",\n        \"imp8058807452\",\n        \"imp8058804662\",\n        \"imp8058804621\",\n        \"imp8054561243\",\n        \"imp8055664132\",\n        \"imp8058804679\",\n        \"imp8055662875\",\n        \"imp8055662877\",\n        \"imp8058807910\",\n        \"imp00118-022010\",\n        \"imp8054561250\",\n        \"imp8058804608\",\n        \"imp8058804673\",\n        \"imp8058807456\",\n        \"imp8058807458\",\n        \"imp8055662864\",\n        \"imp8058804685\",\n        \"imp8055664114\",\n        \"imp8055664115\",\n        \"imp8058804642\",\n        \"imp8052433849\",\n        \"imp8054565846\",\n        \"imp8055662874\",\n        \"imp8058807450\",\n        \"imp8058804280\",\n        \"imp8054561266\",\n        \"imp8055662841\",\n        \"imp8058804629\",\n        \"imp8055664133\",\n        \"imp8055662895\",\n        \"imp8058804658\",\n        \"imp8058804667\",\n        \"imp8054561254\",\n        \"imp8058804625\",\n        \"imp8058804610\",\n        \"imp8054561284\",\n        \"imp8055662885\",\n        \"imp8055662867\",\n        \"imp8055664124\",\n        \"imp8058807446\",\n        \"imp8055662844\",\n        \"imp8058804691\",\n        \"imp8058804618\",\n        \"imp8056173082\",\n        \"imp8058804644\",\n        \"imp8058804686\",\n        \"imp8058804693\",\n        \"imp8056952139\",\n        \"imp8054561273\",\n        \"imp8054561251\",\n        \"imp8055664131\",\n        \"imp8058804635\",\n        \"imp8055662848\",\n        \"imp8058804606\",\n        \"imp8055662164\",\n        \"imp8058804609\",\n        \"imp8055664137\",\n        \"imp8058804614\",\n        \"imp8055662857\",\n        \"imp8056952117\",\n        \"imp8054561270\",\n        \"imp8058804643\",\n        \"imp8055662842\",\n        \"imp8055662853\",\n        \"imp8058804602\",\n        \"imp8058804674\",\n        \"imp00118-024140\",\n        \"imp8058807449\",\n        \"imp8055664125\",\n        \"imp8055664127\",\n        \"imp8055662899\",\n        \"imp8055662860\",\n        \"imp8058807445\",\n        \"imp9723491665\",\n        \"imp8055664126\",\n        \"imp8055662847\",\n        \"imp8055664108\",\n        \"imp8058804660\",\n        \"imp8056952107\",\n        \"imp8058804648\",\n        \"imp8055662859\",\n        \"imp8058804669\",\n        \"imp8055661441\",\n        \"imp8058807448\",\n        \"imp8055664118\",\n        \"imp8055664122\",\n        \"imp8058804605\",\n        \"imp8053572556\",\n        \"imp8055662858\",\n        \"imp8055662852\",\n        \"imp8055664106\",\n        \"imp8058804612\",\n        \"imp8054561274\",\n        \"imp8058804656\",\n        \"imp8054561283\",\n        \"imp8058804615\",\n        \"imp8055664103\",\n        \"imp8058804699\",\n        \"imp8052593132\",\n        \"imp8055664139\",\n        \"imp8058807451\",\n        \"imp8058804683\",\n        \"imp8055664119\",\n        \"imp8058804668\",\n        \"imp8055661176\",\n        \"imp8056952119\",\n        \"imp8058807440\",\n        \"imp8055664129\",\n        \"imp8058807443\",\n        \"imp8058804622\",\n        \"imp8058804223\",\n        \"imp8056173075\",\n        \"imp8055662889\",\n        \"imp00118-029999\",\n        \"imp8055664117\",\n        \"imp8054561259\",\n        \"imp8058804698\",\n        \"imp8058804623\",\n        \"imp8058804641\",\n        \"imp8054561260\",\n        \"imp8054561241\",\n        \"imp8055662872\",\n        \"imp8055662854\",\n        \"imp00118-028181\",\n        \"imp9723491548\",\n        \"imp9723491562\",\n        \"imp9723491657\",\n        \"imp9723491649\",\n        \"imp9723491627\",\n        \"imp9723491640\",\n        \"imp9723491535\",\n        \"imp9723491587\",\n        \"imp9723491639\",\n        \"imp9723491658\",\n        \"imp9723491536\",\n        \"imp9723491647\",\n        \"imp9723491537\",\n        \"imp00118058888\",\n        \"imp9723491574\",\n        \"imp9723491576\",\n        \"imp9723491656\",\n        \"imp9723491659\",\n        \"imp9723491563\",\n        \"imp9723491549\",\n        \"imp9723491561\",\n        \"imp9723491661\",\n        \"imp8056906283\",\n        \"imp8056906281\",\n        \"imp8056177775\",\n        \"imp8056906240\",\n        \"imp8056177789\",\n        \"imp8056971494\",\n        \"imp8056906203\",\n        \"imp8056906294\",\n        \"imp8056971483\",\n        \"imp8056971484\",\n        \"imp8056971481\",\n        \"imp8056971482\",\n        \"imp8056971472\",\n        \"imp8058809477\",\n        \"imp8056971471\",\n        \"imp8056906266\",\n        \"imp8056906295\",\n        \"imp8056906291\",\n        \"imp8056906211\",\n        \"imp8056906229\",\n        \"imp8056906293\",\n        \"imp8056906222\",\n        \"imp8056906261\",\n        \"imp8056177768\",\n        \"imp8056177765\",\n        \"imp8056906206\",\n        \"imp8056906244\",\n        \"imp8056906265\",\n        \"imp8056906267\",\n        \"imp8056906257\",\n        \"imp8056177763\",\n        \"imp8056906287\",\n        \"imp8056906292\",\n        \"imp8056906290\",\n        \"imp8056971476\",\n        \"imp8056906209\",\n        \"imp8056906289\",\n        \"imp8056906204\",\n        \"imp8056906260\",\n        \"imp8056177836\",\n        \"imp8056177829\",\n        \"imp8056177786\",\n        \"imp8056177804\",\n        \"imp8056177845\",\n        \"imp8056177803\",\n        \"imp8056177837\",\n        \"imp8056177801\",\n        \"imp8056177844\",\n        \"imp8056177846\",\n        \"imp8056177822\",\n        \"imp8056177812\",\n        \"imp8056177821\",\n        \"imp8056177849\",\n        \"imp8053089723\",\n        \"imp8056177805\",\n        \"imp8056177847\",\n        \"imp8056177820\",\n        \"imp8056177815\",\n        \"imp8053089722\",\n        \"imp8056177809\",\n        \"imp8056177835\",\n        \"imp8056177828\",\n        \"imp8056177808\",\n        \"imp8056177841\",\n        \"imp8056177806\",\n        \"imp8056177810\",\n        \"imp8056177842\",\n        \"imp8056177814\",\n        \"imp8053089724\",\n        \"imp8056177816\",\n        \"imp8056177777\",\n        \"imp8056177848\",\n        \"imp8056177839\",\n        \"imp8056177827\",\n        \"imp8056177819\",\n        \"imp8056177807\",\n        \"imp8056177811\",\n        \"imp8056177802\",\n        \"imp8056177817\",\n        \"imp8056177813\",\n        \"imp8056177840\",\n        \"imp8056177843\",\n        \"imp8056177838\",\n        \"imp8056177818\",\n        \"imp8053089720\",\n        \"imp8058809403\",\n        \"imp8056906242\",\n        \"imp8058809459\",\n        \"imp8056906218\",\n        \"imp8056906298\",\n        \"imp8058809427\",\n        \"00126-08230\",\n        \"imp8058809462\",\n        \"imp8056177794\",\n        \"imp8058809433\",\n        \"imp8056906224\",\n        \"imp8056906263\",\n        \"imp8056906252\",\n        \"imp8056906232\",\n        \"imp8056906233\",\n        \"imp8056177758\",\n        \"imp8056906268\",\n        \"imp8056177755\",\n        \"imp8056177774\",\n        \"imp8056177762\",\n        \"imp8056906256\",\n        \"imp8056906277\",\n        \"imp8056906276\",\n        \"imp8056906225\",\n        \"imp8056906243\",\n        \"imp00126-02451\",\n        \"imp8056177759\",\n        \"imp8056906282\",\n        \"imp8056906216\",\n        \"imp8056906223\",\n        \"imp8056906214\",\n        \"imp00126-02452\",\n        \"imp8058809465\",\n        \"imp8056971477\",\n        \"imp8056177791\",\n        \"imp8056906245\",\n        \"imp8056906238\",\n        \"imp8056906254\",\n        \"imp8056906239\",\n        \"imp8056906212\",\n        \"imp8056906250\",\n        \"imp8056906234\",\n        \"imp8056906286\",\n        \"imp8056971479\",\n        \"imp8056906251\",\n        \"imp8056906248\",\n        \"imp8056906226\",\n        \"imp8056906285\",\n        \"imp8056177771\",\n        \"imp8053089702\",\n        \"imp8056906237\",\n        \"imp8056177764\",\n        \"imp8056906241\",\n        \"imp8056906213\",\n        \"imp8056177772\",\n        \"imp8056906231\",\n        \"imp8056906236\",\n        \"imp8056177761\",\n        \"imp8056177757\",\n        \"imp8056906274\",\n        \"imp8056906221\",\n        \"imp8056971478\",\n        \"imp8056177780\",\n        \"imp8056971473\",\n        \"imp8056177766\",\n        \"imp8056906217\",\n        \"imp8056906249\",\n        \"imp8056906273\",\n        \"imp8056906296\",\n        \"imp8056906201\",\n        \"imp8056906219\",\n        \"imp8056935555\",\n        \"imp8059655555\",\n        \"imp00126-01100\",\n        \"imp8056971480\",\n        \"imp00129-073235\",\n        \"imp00129-073221\",\n        \"imp00129-073230\",\n        \"imp00129-073234\",\n        \"imp00129-073226\",\n        \"imp00129-073223\",\n        \"imp00129-073225\",\n        \"imp00129-073232\",\n        \"imp8056182797\",\n        \"imp8054566080\",\n        \"imp8056182823\",\n        \"imp8054566082\",\n        \"imp8473488849\",\n        \"imp8473488850\",\n        \"imp8473488844\",\n        \"imp8473544171\",\n        \"imp8473507581\",\n        \"imp00146-062299\",\n        \"imp00146-062321\",\n        \"imp00146-062322\",\n        \"imp00146-012000\",\n        \"imp4125453955\",\n        \"imp4123763904\",\n        \"imp4125453948\",\n        \"imp4125453928\",\n        \"imp4123763905\",\n        \"imp4125453921\",\n        \"imp4123763961\",\n        \"imp4125453945\",\n        \"imp4125453918\",\n        \"imp4125453942\",\n        \"imp4123763960\",\n        \"imp4125453958\",\n        \"imp4126313868\",\n        \"imp8473544647\",\n        \"imp8473544646\",\n        \"imp8473544650\",\n        \"imp8473544661\",\n        \"imp8473544655\",\n        \"imp00146-024640\",\n        \"imp8473544649\",\n        \"imp8056864703\",\n        \"imp8054565854\",\n        \"imp8054565851\",\n        \"imp8054568141\",\n        \"imp8056181416\",\n        \"imp8054565853\",\n        \"imp8054568145\",\n        \"imp00148-02211\",\n        \"imp8054565869\",\n        \"imp8054564247\",\n        \"imp8054564249\",\n        \"imp8054564248\",\n        \"imp8054568142\",\n        \"imp8054568144\",\n        \"imp8054568143\",\n        \"imp8054760305\",\n        \"imp8054760306\",\n        \"imp8058809343\",\n        \"imp8058809342\",\n        \"imp00150-02301\",\n        \"imp8053571397\",\n        \"imp8058807105\",\n        \"imp8058807127\",\n        \"imp8058807123\",\n        \"imp8058807136\",\n        \"imp8058807125\",\n        \"imp8058807126\",\n        \"imp8058807124\",\n        \"00163-04SIP6949\",\n        \"imp8058807537\",\n        \"00163-04SIP7108\",\n        \"00163-04SIP7230\",\n        \"imp8058807114\",\n        \"00163-04SIP7116\",\n        \"00163-04SIP7118\",\n        \"00163-04SIP6952\",\n        \"00163-04SIP6954\",\n        \"00163-04SIP6950\",\n        \"00163-04SIP7232\",\n        \"001636-04SIP6969\",\n        \"00163-04SIP7115\",\n        \"00163-04SIP7284\",\n        \"00163-04SIP7120\",\n        \"00163-04SIP6960\",\n        \"00163-04SIP6959\",\n        \"00163-04SIP6961\",\n        \"00163-04-trunk\",\n        \"00163-04SIP7231\",\n        \"00163-04SIP7206\",\n        \"00163-04SIP7203\",\n        \"00163-04SIP7201\",\n        \"00163-04SIP6955\",\n        \"00163-04SIP6971\",\n        \"00163-04SIP6967\",\n        \"00163-04SIP6962\",\n        \"00163-04SIP6970\",\n        \"00163-04SIP7460\",\n        \"00163-04SIP7213\",\n        \"00163-04SIP6940\",\n        \"00163-04SIP6956\",\n        \"00163-04SIP6968\",\n        \"00163-04SIP7112\",\n        \"00163-04SIP6951\",\n        \"00163-04SIP6963\",\n        \"00163-04SIP6965\",\n        \"00163-04SIP7119\",\n        \"00163-04SIP7202\",\n        \"00163-04SIP7117\",\n        \"00163-04SIP6957\",\n        \"00163-04SIP7205\",\n        \"00163-04SIP7204\",\n        \"00163-04SIP6964\",\n        \"00163-04SIP6948\",\n        \"00163-04SIP6972\",\n        \"imp8058806966\",\n        \"imp8054567234\",\n        \"imp8054567195\",\n        \"imp8054567237\",\n        \"imp8054567229\",\n        \"imp8054567197\",\n        \"imp8054567267\",\n        \"imp8054567198\",\n        \"imp8054567269\",\n        \"imp8054567268\",\n        \"imp8054567196\",\n        \"imp8054567199\",\n        \"imp8058791701\",\n        \"imp8053089711\",\n        \"imp8053089713\",\n        \"imp8053089715\",\n        \"imp8053089714\",\n        \"imp8053089717\",\n        \"imp8053089716\",\n        \"imp8054568147\",\n        \"imp8054566252\",\n        \"imp8054566251\",\n        \"imp00179-02201\",\n        \"imp8054566256\",\n        \"imp00179-02203\",\n        \"imp00179-02202\",\n        \"imp8054567009\",\n        \"imp8054566255\",\n        \"imp8054568148\",\n        \"imp8054566254\",\n        \"imp8054566253\",\n        \"imp000182-02200\",\n        \"imp8053089239\",\n        \"imp8053089238\",\n        \"imp8054565971\",\n        \"imp8054565969\",\n        \"imp8054565972\",\n        \"imp00186-025000\",\n        \"imp00192-714892\",\n        \"imp00192-714891\",\n        \"imp00192-714893\",\n        \"imp00192-714894\",\n        \"imp00192-1109683\",\n        \"imp00192-1109684\",\n        \"imp00192-1109681\",\n        \"imp00192-1109682\",\n        \"imp00192-161401\",\n        \"imp00192-161402\",\n        \"imp00192-161404\",\n        \"imp00192-161403\",\n        \"imp00192-884731\",\n        \"imp00192-884732\",\n        \"imp00192-884733\",\n        \"imp00192-884734\",\n        \"imp00192-201804\",\n        \"imp00192-201801\",\n        \"imp00192-201802\",\n        \"imp00192-201803\",\n        \"imp00192-768401\",\n        \"imp00192-768403\",\n        \"imp00192-768402\",\n        \"imp00192-768404\",\n        \"imp00192-222103\",\n        \"imp00192-222104\",\n        \"imp00192-222101\",\n        \"imp00192-222102\",\n        \"imp00192-804714\",\n        \"imp00192-804713\",\n        \"imp00192-804712\",\n        \"imp00192-804711\",\n        \"imp00192-214913\",\n        \"imp00192-214912\",\n        \"imp00192-214911\",\n        \"imp00192-214914\",\n        \"imp00192-01100509\",\n        \"imp00192-01100519\",\n        \"imp00192-01104979\",\n        \"imp00192-01150029\",\n        \"imp00192-01150079\",\n        \"imp00192-01100529\",\n        \"imp00192-01100499\",\n        \"imp00192-01100539\",\n        \"imp00192-01100549\",\n        \"imp00192-01100559\",\n        \"imp00192-01100569\",\n        \"imp00192-01100579\",\n        \"imp00192-01100629\",\n        \"imp00192-01100639\",\n        \"imp00192-01109999\",\n        \"imp00192-01100009\",\n        \"imp00192-01100019\",\n        \"imp00192-01100029\",\n        \"imp00192-01100039\",\n        \"imp00192-01100049\",\n        \"imp00192-01100059\",\n        \"imp00192-01100099\",\n        \"imp00192-01100109\",\n        \"imp00192-01100399\",\n        \"imp00192-01100409\",\n        \"imp00192-01100419\",\n        \"imp00192-01100439\",\n        \"imp00192-01100449\",\n        \"imp00192-01100459\",\n        \"imp00192-01100469\",\n        \"imp00192-01100479\",\n        \"imp00192-01100489\",\n        \"imp00192-01150039\",\n        \"imp00192-01150049\",\n        \"imp00192-01100649\",\n        \"imp00192-01104829\",\n        \"imp00192-01104899\",\n        \"imp00192-01105029\",\n        \"imp00192-01100119\",\n        \"imp00192-01100129\",\n        \"imp00192-01100149\",\n        \"imp00192-01100159\",\n        \"imp00192-01100179\",\n        \"imp00192-01100189\",\n        \"imp00192-01100219\",\n        \"imp00192-01100229\",\n        \"imp00192-01100239\",\n        \"imp00192-01100269\",\n        \"imp00192-01100279\",\n        \"imp00192-01100289\",\n        \"imp00192-01100299\",\n        \"imp00192-01100309\",\n        \"imp00192-01100319\",\n        \"imp00192-01100329\",\n        \"imp00192-01100339\",\n        \"imp00192-01100349\",\n        \"imp00192-01100369\",\n        \"imp00192-01100379\",\n        \"imp00192-774693\",\n        \"imp00192-774691\",\n        \"imp00192-774692\",\n        \"imp00192-774694\",\n        \"imp00192-087203\",\n        \"imp00192-087201\",\n        \"imp00192-087204\",\n        \"imp00192-087202\",\n        \"imp00192-784723\",\n        \"imp00192-784722\",\n        \"imp00192-784724\",\n        \"imp00192-784721\",\n        \"imp00192-735301\",\n        \"imp00192-735304\",\n        \"imp00192-735303\",\n        \"imp00192-735302\",\n        \"imp00192-839801\",\n        \"imp00192-839802\",\n        \"imp00192-839803\",\n        \"imp00192-839804\",\n        \"imp00192-664823\",\n        \"imp00192-664822\",\n        \"imp00192-664821\",\n        \"imp00192-664824\",\n        \"imp00192-034742\",\n        \"imp00192-034744\",\n        \"imp00192-034743\",\n        \"imp00192-034741\",\n        \"imp00192-794483\",\n        \"imp00192-794484\",\n        \"imp00192-794482\",\n        \"imp00192-794481\",\n        \"imp00192-743113\",\n        \"imp00192-743114\",\n        \"imp00192-743112\",\n        \"imp00192-743111\",\n        \"imp00192-704081\",\n        \"imp00192-704082\",\n        \"imp00192-704083\",\n        \"imp00192-704084\",\n        \"imp00192-758302\",\n        \"imp00192-758301\",\n        \"imp00192-758303\",\n        \"imp00192-758304\",\n        \"imp00192-956501\",\n        \"imp00192-956502\",\n        \"imp00192-956503\",\n        \"imp00192-956504\",\n        \"imp00192-684793\",\n        \"imp00192-684791\",\n        \"imp00192-684792\",\n        \"imp00192-684794\",\n        \"imp00192-864651\",\n        \"imp00192-864652\",\n        \"imp00192-864653\",\n        \"imp00192-864654\",\n        \"imp00192-1024941\",\n        \"imp00192-1024944\",\n        \"imp00192-1024942\",\n        \"imp00192-1024943\",\n        \"imp00192-1076013\",\n        \"imp00192-1076011\",\n        \"imp00192-1076012\",\n        \"imp00192-1076014\",\n        \"imp00192-1091461\",\n        \"imp00192-1091462\",\n        \"imp00192-1091463\",\n        \"imp00192-1091464\",\n        \"imp00192-611534\",\n        \"imp00192-611531\",\n        \"imp00192-611532\",\n        \"imp00192-611533\",\n        \"imp00192-644774\",\n        \"imp00192-644772\",\n        \"imp00192-644773\",\n        \"imp00192-644771\",\n        \"imp00192-914831\",\n        \"imp00192-914832\",\n        \"imp00192-914833\",\n        \"imp00192-914834\",\n        \"imp00192-621542\",\n        \"imp00192-621544\",\n        \"imp00192-621541\",\n        \"imp00192-621543\",\n        \"imp00192-814071\",\n        \"imp00192-814073\",\n        \"imp00192-814074\",\n        \"imp00192-814072\",\n        \"imp00192-1089691\",\n        \"imp00192-1089694\",\n        \"imp00192-1089692\",\n        \"imp00192-1089693\",\n        \"8054353163\",\n        \"8054353164\",\n        \"8054353162\",\n        \"8054353167\",\n        \"8056926205\",\n        \"8054353158\",\n        \"8053089952\",\n        \"8054353165\",\n        \"8054353166\",\n        \"8054353168\",\n        \"8056926203\",\n        \"8054353169\",\n        \"8054353170\",\n        \"8059798821\",\n        \"8054353151\",\n        \"8054353171\",\n        \"8054353172\",\n        \"8053089965\",\n        \"8054353173\",\n        \"8054353174\",\n        \"8053089967\",\n        \"8053089968\",\n        \"8054353159\",\n        \"8054353160\",\n        \"8054353161\",\n        \"8054353155\",\n        \"8054353156\",\n        \"8053089981\",\n        \"8054353150\",\n        \"8054353157\",\n        \"8059798814\",\n        \"8054353153\",\n        \"8054353154\",\n        \"8054561043\",\n        \"8054561044\",\n        \"8053089999\",\n        \"8054561045\",\n        \"8054353152\",\n        \"8053089995\",\n        \"imp00192-02-trunk\",\n        \"8054353183\",\n        \"8059798820\",\n        \"8054353184\",\n        \"8054353185\",\n        \"8054353186\",\n        \"8054353187\",\n        \"8054561018\",\n        \"8053089977\",\n        \"8054561019\",\n        \"8054353177\",\n        \"8059679722\",\n        \"8053089979\",\n        \"8053089972\",\n        \"8053089973\",\n        \"8054561032\",\n        \"8054561041\",\n        \"8059798818\",\n        \"8053089951\",\n        \"8056810461\",\n        \"8054353188\",\n        \"8056810932\",\n        \"8054353189\",\n        \"8054353190\",\n        \"8056810602\",\n        \"8056810611\",\n        \"8059798813\",\n        \"8059798815\",\n        \"8053089986\",\n        \"8056926218\",\n        \"8056926216\",\n        \"8054353176\",\n        \"8053089958\",\n        \"8053089997\",\n        \"8056819520\",\n        \"8053089989\",\n        \"8056819039\",\n        \"8056819840\",\n        \"8056819721\",\n        \"8056819886\",\n        \"8053089985\",\n        \"8053089991\",\n        \"8056926204\",\n        \"8056926206\",\n        \"8056926207\",\n        \"8053089990\",\n        \"8056926202\",\n        \"8056926212\",\n        \"8056926215\",\n        \"8056926209\",\n        \"8056926214\",\n        \"8053089955\",\n        \"8056926213\",\n        \"8059798816\",\n        \"8056926210\",\n        \"8053089954\",\n        \"8056926211\",\n        \"8059798817\",\n        \"8054353175\",\n        \"8053089962\",\n        \"8053089960\",\n        \"8053089961\",\n        \"8053089956\",\n        \"8059798819\",\n        \"8053089966\",\n        \"8053089963\",\n        \"8053089978\",\n        \"8053089959\",\n        \"8053089957\",\n        \"8053089974\",\n        \"8053089975\",\n        \"8053089970\",\n        \"8056926208\",\n        \"8056926219\",\n        \"8056926217\",\n        \"8053089983\",\n        \"8053089971\",\n        \"8053089982\",\n        \"8053089969\",\n        \"8053089984\",\n        \"8053089980\",\n        \"8053089992\",\n        \"8053089987\",\n        \"8053089988\",\n        \"8056810731\",\n        \"8053089993\",\n        \"8053089998\",\n        \"8053089996\",\n        \"8054353178\",\n        \"8056810376\",\n        \"8056810061\",\n        \"8054353179\",\n        \"8053089976\",\n        \"8059798822\",\n        \"8054353196\",\n        \"8054353197\",\n        \"8054353180\",\n        \"8053089964\",\n        \"8054353181\",\n        \"8054353182\",\n        \"imp00192-02-trunk2\",\n        \"8053089953\",\n        \"8054353191\",\n        \"8054353192\",\n        \"8054353193\",\n        \"8054353194\",\n        \"8054353195\",\n        \"8054353199\",\n        \"imp00192-02-trunk3\",\n        \"8054353198\",\n        \"8053089950\",\n        \"8053089994\",\n        \"5102333164\",\n        \"5102333189\",\n        \"8054561042\",\n        \"8059677611\",\n        \"imp00192-674761\",\n        \"imp00192-674762\",\n        \"imp00192-674763\",\n        \"imp00192-674764\",\n        \"imp00192-694751\",\n        \"imp00192-694752\",\n        \"imp00192-694753\",\n        \"imp00192-694754\",\n        \"imp00192-097301\",\n        \"imp00192-097302\",\n        \"imp00192-097304\",\n        \"imp00192-097303\",\n        \"imp00192-1019741\",\n        \"imp00192-1019742\",\n        \"imp00192-1019743\",\n        \"imp00192-1019744\",\n        \"imp00192-944951\",\n        \"imp00192-944952\",\n        \"imp00192-944953\",\n        \"imp00192-944954\",\n        \"imp00192-1059071\",\n        \"imp00192-1059072\",\n        \"imp00192-1059073\",\n        \"imp00192-1059074\",\n        \"imp00192-634871\",\n        \"imp00192-634874\",\n        \"imp00192-634873\",\n        \"imp00192-634872\",\n        \"imp00192-171501\",\n        \"imp00192-171502\",\n        \"imp00192-171503\",\n        \"imp00192-171504\",\n        \"imp00192-171505\",\n        \"imp00192-171506\",\n        \"imp00192-874671\",\n        \"imp00192-874672\",\n        \"imp00192-874673\",\n        \"imp00192-874674\",\n        \"imp00192-849811\",\n        \"imp00192-849812\",\n        \"imp00192-849813\",\n        \"imp00192-849814\",\n        \"imp00192-057001\",\n        \"imp00192-057002\",\n        \"imp00192-057004\",\n        \"imp00192-057003\",\n        \"imp8059798808\",\n        \"imp8059798810\",\n        \"imp00192-525701\",\n        \"imp00192-525704\",\n        \"imp00192-525702\",\n        \"imp00192-525703\",\n        \"imp00192-363901\",\n        \"imp00192-363904\",\n        \"imp00192-363902\",\n        \"imp00192-363903\",\n        \"imp00192-724093\",\n        \"imp00192-724094\",\n        \"imp00192-724092\",\n        \"imp00192-724091\",\n        \"imp00192-131003\",\n        \"imp00192-131001\",\n        \"imp00192-131002\",\n        \"imp00192-131004\",\n        \"imp00192-1044631\",\n        \"imp00192-1044632\",\n        \"imp00192-1044634\",\n        \"imp00192-1044633\",\n        \"imp00192-151201\",\n        \"imp00192-151202\",\n        \"imp00192-151203\",\n        \"imp00192-151204\",\n        \"imp00192-069904\",\n        \"imp00192-069902\",\n        \"imp00192-069903\",\n        \"imp00192-069906\",\n        \"imp00192-069901\",\n        \"imp00192-353704\",\n        \"imp00192-353703\",\n        \"imp00192-353702\",\n        \"imp00192-353701\",\n        \"imp00192-107401\",\n        \"imp00192-107403\",\n        \"imp00192-107402\",\n        \"imp00192-107404\",\n        \"imp00192-976004\",\n        \"imp00192-976001\",\n        \"imp00192-976002\",\n        \"imp00192-976003\",\n        \"imp00192-242301\",\n        \"imp00192-242303\",\n        \"imp00192-242304\",\n        \"imp00192-242302\",\n        \"imp00192-127902\",\n        \"imp00192-127903\",\n        \"imp00192-127901\",\n        \"imp00192-127904\",\n        \"imp00192-077104\",\n        \"imp00192-077101\",\n        \"imp00192-077102\",\n        \"imp00192-077103\",\n        \"imp00192-077105\",\n        \"imp00192-077106\",\n        \"imp00192-117502\",\n        \"imp00192-117506\",\n        \"imp00192-117501\",\n        \"imp00192-117505\",\n        \"imp00192-117504\",\n        \"imp00192-117503\",\n        \"imp00192-117507\",\n        \"imp00192-184881\",\n        \"imp00192-184882\",\n        \"imp00192-184884\",\n        \"imp00192-184883\",\n        \"imp00192-141105\",\n        \"imp00192-141104\",\n        \"imp00192-141102\",\n        \"imp00192-141103\",\n        \"imp8087973168\",\n        \"imp00192-141101\",\n        \"imp00192-232202\",\n        \"imp00192-232201\",\n        \"imp00192-232204\",\n        \"imp00192-232203\",\n        \"imp00192-564971\",\n        \"imp00192-564973\",\n        \"imp00192-564972\",\n        \"imp00192-564974\",\n        \"imp00192-252602\",\n        \"imp00192-252603\",\n        \"imp00192-252601\",\n        \"imp00192-252604\",\n        \"imp00192-262701\",\n        \"imp00192-262702\",\n        \"imp00192-262704\",\n        \"imp00192-262703\",\n        \"imp00192-546303\",\n        \"imp00192-546304\",\n        \"imp00192-546301\",\n        \"imp00192-546302\",\n        \"imp00192-556403\",\n        \"imp00192-556402\",\n        \"imp00192-556401\",\n        \"imp00192-556404\",\n        \"imp00192-536223\",\n        \"imp00192-536221\",\n        \"imp00192-536222\",\n        \"imp00192-536224\",\n        \"imp00192-272803\",\n        \"imp00192-272801\",\n        \"imp00192-272804\",\n        \"imp00192-272802\",\n        \"imp00192-282904\",\n        \"imp00192-282902\",\n        \"imp00192-282901\",\n        \"imp00192-282903\",\n        \"imp00192-651574\",\n        \"imp00192-651571\",\n        \"imp00192-651573\",\n        \"imp00192-651572\",\n        \"imp00192-515602\",\n        \"imp00192-515601\",\n        \"imp00192-515603\",\n        \"imp00192-515604\",\n        \"imp00192-505502\",\n        \"imp00192-505504\",\n        \"imp00192-505503\",\n        \"imp00192-505501\",\n        \"imp00192-293004\",\n        \"imp00192-293002\",\n        \"imp00192-293003\",\n        \"imp00192-293001\",\n        \"imp00192-495403\",\n        \"imp00192-495404\",\n        \"imp00192-495401\",\n        \"imp00192-495402\",\n        \"imp00192-485201\",\n        \"imp00192-485203\",\n        \"imp00192-485202\",\n        \"imp00192-485204\",\n        \"imp00192-303104\",\n        \"imp00192-303103\",\n        \"imp00192-303102\",\n        \"imp00192-303101\",\n        \"imp00192-475103\",\n        \"imp00192-475101\",\n        \"imp00192-475104\",\n        \"imp00192-475102\",\n        \"imp00192-465003\",\n        \"imp00192-465002\",\n        \"imp00192-465001\",\n        \"imp00192-465004\",\n        \"imp00192-313203\",\n        \"imp00192-313201\",\n        \"imp00192-313204\",\n        \"imp00192-313202\",\n        \"imp00192-323301\",\n        \"imp00192-323304\",\n        \"imp00192-323303\",\n        \"imp00192-323302\",\n        \"imp00192-333403\",\n        \"imp00192-333401\",\n        \"imp00192-333402\",\n        \"imp00192-333404\",\n        \"imp00192-343603\",\n        \"imp00192-343601\",\n        \"imp00192-343602\",\n        \"imp00192-343604\",\n        \"imp00192-454904\",\n        \"imp00192-454902\",\n        \"imp00192-454903\",\n        \"imp00192-454901\",\n        \"imp00192-434704\",\n        \"imp00192-434702\",\n        \"imp00192-434703\",\n        \"imp00192-434701\",\n        \"imp00192-584784\",\n        \"imp00192-584781\",\n        \"imp00192-584782\",\n        \"imp00192-584783\",\n        \"imp00192-601524\",\n        \"imp00192-601523\",\n        \"imp00192-601522\",\n        \"imp00192-601521\",\n        \"imp00192-444804\",\n        \"imp00192-444801\",\n        \"imp00192-444803\",\n        \"imp00192-444802\",\n        \"imp00192-424602\",\n        \"imp00192-424603\",\n        \"imp00192-424601\",\n        \"imp00192-424604\",\n        \"imp00192-404402\",\n        \"imp00192-404401\",\n        \"imp00192-404403\",\n        \"imp00192-404404\",\n        \"imp00192-1069711\",\n        \"imp00192-1069714\",\n        \"imp00192-1069712\",\n        \"imp00192-1069713\",\n        \"imp00192-374003\",\n        \"imp00192-374001\",\n        \"imp00192-374004\",\n        \"imp00192-374002\",\n        \"imp00192-384104\",\n        \"imp00192-384103\",\n        \"imp00192-384101\",\n        \"imp00192-384102\",\n        \"imp00192-414501\",\n        \"imp00192-414503\",\n        \"imp00192-414504\",\n        \"imp00192-414502\",\n        \"imp00192-394303\",\n        \"imp00192-394301\",\n        \"imp00192-394302\",\n        \"imp00192-394304\",\n        \"imp00192-857801\",\n        \"imp00192-857802\",\n        \"imp00192-857803\",\n        \"imp00192-857804\",\n        \"imp00192-1004621\",\n        \"imp00192-1004622\",\n        \"imp00192-1004623\",\n        \"imp00192-1004624\",\n        \"imp00192-995991\",\n        \"imp00192-995992\",\n        \"imp00192-995993\",\n        \"imp00192-995994\",\n        \"imp00192-191701\",\n        \"imp00192-191702\",\n        \"imp00192-191703\",\n        \"imp00192-191704\",\n        \"imp00192-825903\",\n        \"imp00192-825904\",\n        \"imp00192-825902\",\n        \"imp00192-825901\",\n        \"imp00192-924661\",\n        \"imp00192-924662\",\n        \"imp00192-924663\",\n        \"imp00192-924664\",\n        \"imp00192-939701\",\n        \"imp00192-939702\",\n        \"imp00192-939703\",\n        \"imp00192-909761\",\n        \"imp00192-909762\",\n        \"imp00192-909763\",\n        \"imp00192-909764\",\n        \"imp00192-966601\",\n        \"imp00192-966602\",\n        \"imp00192-966603\",\n        \"imp00192-966604\",\n        \"imp00192-989754\",\n        \"imp00192-989751\",\n        \"imp00192-989752\",\n        \"imp00192-989753\",\n        \"imp00192-1034611\",\n        \"imp00192-1034612\",\n        \"imp00192-1034613\",\n        \"imp00192-1034614\",\n        \"imp00192-894981\",\n        \"imp00192-894982\",\n        \"imp00192-894983\",\n        \"imp00192-894984\",\n        \"imp00196-054444\",\n        \"imp00196-054019\",\n        \"imp00196-054014\",\n        \"imp00196-054020\",\n        \"imp00196-054016\",\n        \"imp00196-054073\",\n        \"imp00196-054053\",\n        \"imp00196-054013\",\n        \"imp00196-054011\",\n        \"imp00196-054010\",\n        \"imp00196-054063\",\n        \"imp00196-054018\",\n        \"imp00196-054015\",\n        \"imp00196-054083\",\n        \"imp00196-054017\",\n        \"imp00196-054012\",\n        \"imp00196-044304\",\n        \"imp00196-044303\",\n        \"imp00196-044309\",\n        \"imp00196-045401\",\n        \"imp00196-044317\",\n        \"imp00196-044302\",\n        \"imp8054568180\",\n        \"imp00196-045408\",\n        \"imp00196-044318\",\n        \"imp00196-044320\",\n        \"imp00196-044305\",\n        \"imp00196-044311\",\n        \"imp00196-044312\",\n        \"imp00196-045402\",\n        \"imp00196-045403\",\n        \"imp00196-045404\",\n        \"imp00196-045405\",\n        \"imp00196-045406\",\n        \"imp00196-045407\",\n        \"imp00196-045409\",\n        \"imp00196-044315\",\n        \"imp00196-013000\",\n        \"00196-01-directory\",\n        \"imp00196-032567\",\n        \"imp00196-032337\",\n        \"imp00196-032410\",\n        \"imp00196-032599\",\n        \"imp00196-032281\",\n        \"imp8054568193\",\n        \"imp00196-034330\",\n        \"imp00196-022268\",\n        \"imp8054568162\",\n        \"imp00196-022503\",\n        \"imp00196-022333\",\n        \"imp00196-024360\",\n        \"imp00196-022325\",\n        \"imp00196-022221\",\n        \"imp00196-022231\",\n        \"imp00196-022214\",\n        \"imp00196-022326\",\n        \"imp00196-022556\",\n        \"imp00196-022562\",\n        \"imp8055768218\",\n        \"imp8055768219\",\n        \"imp00196-022510\",\n        \"imp00196-022408\",\n        \"imp00196-024308\",\n        \"imp8055664352\",\n        \"imp00196-022330\",\n        \"imp00196-022541\",\n        \"imp00196-024036\",\n        \"imp00196-023286\",\n        \"imp00196-022312\",\n        \"imp00196-022339\",\n        \"imp8054568178\",\n        \"imp00196-022264\",\n        \"imp00196-022218\",\n        \"imp8054568151\",\n        \"imp00196-022400\",\n        \"imp00196-022200\",\n        \"imp00196-022347\",\n        \"imp00196-022451\",\n        \"imp00196-022545\",\n        \"imp00196-022336\",\n        \"imp8055768207\",\n        \"imp00196-022458\",\n        \"imp8055664337\",\n        \"imp00196-022560\",\n        \"imp8054568176\",\n        \"imp00196-022580\",\n        \"imp00196-022577\",\n        \"imp00196-022306\",\n        \"imp00196-022429\",\n        \"imp00196-022575\",\n        \"imp8055768152\",\n        \"imp00196-022529\",\n        \"imp00196-022307\",\n        \"imp00196-022600\",\n        \"imp8055664333\",\n        \"imp00196-022331\",\n        \"imp00196-022539\",\n        \"imp00196-022261\",\n        \"imp8055768214\",\n        \"imp00196-022585\",\n        \"imp00196-022423\",\n        \"imp00196-022589\",\n        \"imp00196-022354\",\n        \"imp00196-022601\",\n        \"imp00196-028100\",\n        \"imp00196-022363\",\n        \"imp8054568170\",\n        \"imp00196-022911\",\n        \"imp00196-022731\",\n        \"imp00196-022321\",\n        \"imp00196-022534\",\n        \"imp00196-022215\",\n        \"imp8055664353\",\n        \"imp00196-022442\",\n        \"imp00196-022278\",\n        \"imp00196-022544\",\n        \"imp00196-022317\",\n        \"imp00196-022405\",\n        \"imp00196-022540\",\n        \"imp00196-022315\",\n        \"imp8054568150\",\n        \"imp00196-022509\",\n        \"imp00196-022338\",\n        \"imp00196-022605\",\n        \"imp00196-022324\",\n        \"imp00196-022553\",\n        \"imp00196-022227\",\n        \"imp8056840733\",\n        \"imp00196-024000\",\n        \"imp00196-022445\",\n        \"imp00196-022008\",\n        \"imp00196-022350\",\n        \"imp00196-022209\",\n        \"imp00196-022327\",\n        \"imp8055664348\",\n        \"imp00196-022966\",\n        \"imp00196-022587\",\n        \"imp00196-022001\",\n        \"imp00196-022625\",\n        \"imp00196-028183\",\n        \"imp00196-022322\",\n        \"imp00196-022265\",\n        \"imp00196-022742\",\n        \"imp00196-022456\",\n        \"imp00196-022725\",\n        \"imp00196-022319\",\n        \"imp00196-022546\",\n        \"imp00196-022595\",\n        \"imp00196-022620\",\n        \"imp00196-022361\",\n        \"imp8055664340\",\n        \"imp00196-022343\",\n        \"imp00196-022570\",\n        \"imp00196-022411\",\n        \"imp00196-022308\",\n        \"imp00196-022213\",\n        \"imp00196-022535\",\n        \"imp00196-026767\",\n        \"imp00196-022565\",\n        \"imp00196-022203\",\n        \"imp00196-022314\",\n        \"imp00196-022550\",\n        \"imp00196-022267\",\n        \"imp00196-022502\",\n        \"imp00196-022504\",\n        \"imp00196-022328\",\n        \"imp00196-022735\",\n        \"imp00196-022590\",\n        \"imp00196-026209\",\n        \"imp00196-022217\",\n        \"imp00196-022438\",\n        \"imp00196-022276\",\n        \"imp00196-022335\",\n        \"imp00196-022318\",\n        \"imp00196-022311\",\n        \"imp00196-022358\",\n        \"imp8055664336\",\n        \"imp00196-022263\",\n        \"imp00196-022912\",\n        \"imp00196-022219\",\n        \"imp00196-022576\",\n        \"imp00196-022313\",\n        \"imp00196-022272\",\n        \"imp00196-022323\",\n        \"imp00196-022334\",\n        \"imp00196-022370\",\n        \"imp00196-024700\",\n        \"imp00196-022310\",\n        \"imp8059686758\",\n        \"imp8059686752\",\n        \"imp8059686843\",\n        \"imp8059686769\",\n        \"imp8059686860\",\n        \"imp8059686909\",\n        \"imp8059617533\",\n        \"imp8059617521\",\n        \"imp8059617565\",\n        \"imp8059617503\",\n        \"imp8059617576\",\n        \"imp8059617530\",\n        \"imp8059617525\",\n        \"imp8059617569\",\n        \"imp8055620363\",\n        \"imp8059617509\",\n        \"imp8059617510\",\n        \"imp8055625507\",\n        \"imp8059617547\",\n        \"imp8059617519\",\n        \"imp8059617528\",\n        \"imp8056905124\",\n        \"imp8059617512\",\n        \"imp8059617554\",\n        \"imp8059617507\",\n        \"imp8056905122\",\n        \"imp8055625505\",\n        \"imp8059617555\",\n        \"imp8059617534\",\n        \"imp8055625583\",\n        \"imp8059617506\",\n        \"imp8059617543\",\n        \"imp8059617572\",\n        \"imp8059617538\",\n        \"imp8059617516\",\n        \"imp8059617560\",\n        \"imp8059617550\",\n        \"imp8056905130\",\n        \"imp8059617574\",\n        \"imp8059617522\",\n        \"imp8056905125\",\n        \"imp8059617532\",\n        \"imp8056905126\",\n        \"imp8056905139\",\n        \"imp8055625504\",\n        \"imp8059617577\",\n        \"imp8055620361\",\n        \"imp8059617545\",\n        \"imp8059617563\",\n        \"imp8059617505\",\n        \"imp8055625500\",\n        \"imp8059617559\",\n        \"imp00198-025503\",\n        \"00198-02VM1007\",\n        \"imp8059617546\",\n        \"imp8059617540\",\n        \"imp8059617571\",\n        \"imp8059617508\",\n        \"imp8056905121\",\n        \"imp8055625510\",\n        \"imp8055625528\",\n        \"imp8055625530\",\n        \"imp8059617529\",\n        \"imp8059617537\",\n        \"imp8059617542\",\n        \"imp8059617561\",\n        \"imp8055620362\",\n        \"imp8055625502\",\n        \"imp8059617526\",\n        \"imp8059617518\",\n        \"imp8059617558\",\n        \"imp8059617564\",\n        \"imp8059617556\",\n        \"imp8059617502\",\n        \"imp8059617541\",\n        \"imp8059617549\",\n        \"imp8055620366\",\n        \"imp8056905123\",\n        \"imp8055625549\",\n        \"imp8055625523\",\n        \"imp8059617531\",\n        \"imp8059617562\",\n        \"imp8055625501\",\n        \"imp8059617523\",\n        \"imp8059617535\",\n        \"imp8055625512\",\n        \"imp8059617548\",\n        \"imp8059617501\",\n        \"imp8059617552\",\n        \"imp8055625508\",\n        \"imp8059617568\",\n        \"imp8059617524\",\n        \"imp8056905120\",\n        \"imp8059617573\",\n        \"imp8059686851\",\n        \"imp8059617527\",\n        \"imp8059617539\",\n        \"imp8059617578\",\n        \"imp8055625565\",\n        \"imp8056905119\",\n        \"imp8056905113\",\n        \"imp8059617536\",\n        \"imp8059617566\",\n        \"imp8056905128\",\n        \"imp8059617575\",\n        \"imp8055625533\",\n        \"imp8055625534\",\n        \"imp8055625537\",\n        \"imp8056905127\",\n        \"imp8054566961\",\n        \"imp8055625509\",\n        \"imp8055625548\",\n        \"imp8056905116\",\n        \"imp8059617557\",\n        \"imp8059617567\",\n        \"imp8059617553\",\n        \"imp8059617514\",\n        \"imp8054566962\",\n        \"imp8059617544\",\n        \"imp8054566963\",\n        \"imp8054566964\",\n        \"imp8055625506\",\n        \"imp8055625552\",\n        \"imp8055625553\",\n        \"imp8055625554\",\n        \"imp8055625557\",\n        \"imp8059617579\",\n        \"imp8056905137\",\n        \"imp8056905132\",\n        \"imp8056905134\",\n        \"imp8056905129\",\n        \"imp8056905135\",\n        \"imp00198-045142\",\n        \"imp00198-045141\",\n        \"imp8056905133\",\n        \"imp8056905136\",\n        \"imp00198-011111\",\n        \"imp8056905104\",\n        \"imp8056905105\",\n        \"imp8056905106\",\n        \"imp8056905101\",\n        \"imp8056905102\",\n        \"imp8056905103\",\n        \"imp8052840335\",\n        \"imp8052840338\",\n        \"imp8052840336\",\n        \"imp8052840337\",\n        \"imp8058300218\",\n        \"imp8058300215\",\n        \"imp8058300228\",\n        \"imp8058300217\",\n        \"imp8058300220\",\n        \"imp8058300223\",\n        \"imp8059630358\",\n        \"imp8058300213\",\n        \"imp8058300210\",\n        \"imp8058300214\",\n        \"imp8058300221\",\n        \"imp8058300219\",\n        \"imp8055644850\",\n        \"imp8058300227\",\n        \"imp8058300222\",\n        \"imp8058300216\",\n        \"imp8058300225\",\n        \"imp8058300224\",\n        \"imp8058300226\",\n        \"imp8058300212\",\n        \"imp8058300229\",\n        \"imp8059653404\",\n        \"imp8055692848\",\n        \"imp8055699558\",\n        \"imp8052840358\",\n        \"imp8052840355\",\n        \"imp8052840356\",\n        \"imp8052840375\",\n        \"imp8052840377\",\n        \"imp8052840380\",\n        \"imp8054566805\",\n        \"imp8054564295\",\n        \"imp8052840371\",\n        \"imp8054566878\",\n        \"imp8052840376\",\n        \"imp8054566803\",\n        \"imp8054564291\",\n        \"imp8054566877\",\n        \"imp8054564294\",\n        \"imp8058804228\",\n        \"imp8054566875\",\n        \"imp8052840378\",\n        \"imp8054566876\",\n        \"imp8054566879\",\n        \"imp8054564292\",\n        \"imp8054564293\",\n        \"imp8058803383\",\n        \"imp8054562700\",\n        \"imp8058806928\",\n        \"imp8058809485\",\n        \"imp8058807489\",\n        \"imp8058807488\",\n        \"imp8058807499\",\n        \"imp8058803414\",\n        \"imp8058807495\",\n        \"imp8058807494\",\n        \"imp8058807497\",\n        \"imp8058807493\",\n        \"imp8052593782\",\n        \"imp8058809341\",\n        \"imp8053358729\",\n        \"imp8053358734\",\n        \"imp8053358721\",\n        \"imp8054564946\",\n        \"imp8053358732\",\n        \"imp8053358725\",\n        \"imp8053170403\",\n        \"imp8054565890\",\n        \"imp8053358730\",\n        \"imp8053358722\",\n        \"imp8052849639\",\n        \"imp8053358726\",\n        \"imp8053358731\",\n        \"imp8053358727\",\n        \"imp8054565876\",\n        \"imp8053358724\",\n        \"imp8058809340\",\n        \"imp8054565889\",\n        \"imp8058803407\",\n        \"imp8053358720\",\n        \"imp8053358735\",\n        \"imp8053358728\",\n        \"imp8052849701\",\n        \"imp8058807466\",\n        \"imp8058807468\",\n        \"imp8058807465\",\n        \"imp8058807464\",\n        \"imp8058807467\",\n        \"imp8058807463\",\n        \"imp8058807470\",\n        \"imp8058807469\",\n        \"imp8058807473\",\n        \"imp8058807472\",\n        \"imp8058807462\",\n        \"imp8058807471\",\n        \"imp8059654603\",\n        \"imp3032536376\",\n        \"imp3032536377\",\n        \"imp3032536340\",\n        \"imp3032536306\",\n        \"imp3032536323\",\n        \"imp3032536491\",\n        \"imp3032536339\",\n        \"imp3032536343\",\n        \"imp3032536454\",\n        \"imp3032536456\",\n        \"imp3032536458\",\n        \"imp3032536362\",\n        \"imp3032536364\",\n        \"imp3032536366\",\n        \"imp3032536380\",\n        \"imp3032536385\",\n        \"imp9547364656\",\n        \"imp3032536389\",\n        \"imp7037769018\",\n        \"imp3032536390\",\n        \"imp3032536396\",\n        \"imp3032536400\",\n        \"imp3032536405\",\n        \"imp3032536408\",\n        \"imp3032536409\",\n        \"imp3032536410\",\n        \"imp3032536415\",\n        \"imp3032536422\",\n        \"imp3032536424\",\n        \"imp3032536426\",\n        \"imp3032536427\",\n        \"imp3032536430\",\n        \"imp3032536437\",\n        \"imp3032536439\",\n        \"imp3032536443\",\n        \"imp3032536444\",\n        \"imp3032536453\",\n        \"imp3032536455\",\n        \"imp7205933126\",\n        \"imp3032536337\",\n        \"imp3032536341\",\n        \"imp3032536344\",\n        \"imp3032536347\",\n        \"imp3032536356\",\n        \"imp3032536463\",\n        \"imp3032536470\",\n        \"imp3032536471\",\n        \"imp3032536473\",\n        \"imp3032536478\",\n        \"imp3032536479\",\n        \"imp3032536483\",\n        \"imp3032536484\",\n        \"imp3032536485\",\n        \"imp7205933105\",\n        \"imp7205933106\",\n        \"imp7205933113\",\n        \"imp7205933123\",\n        \"imp3032536397\",\n        \"imp3032536348\",\n        \"imp3032536338\",\n        \"imp3032536350\",\n        \"imp3032536360\",\n        \"imp9547031382\",\n        \"imp9543617143\",\n        \"imp9547617073\",\n        \"imp9547619309\",\n        \"imp8604526454\",\n        \"imp8604526455\",\n        \"imp3108736966\",\n        \"imp3108736946\",\n        \"imp5133180325\",\n        \"imp5135382580\",\n        \"imp5135382572\",\n        \"imp5135382588\",\n        \"imp5135382573\",\n        \"imp5135382571\",\n        \"imp5135382574\",\n        \"imp5135382575\",\n        \"imp5135382576\",\n        \"imp5135382577\",\n        \"imp5135382578\",\n        \"imp5135382579\",\n        \"imp5135382581\",\n        \"imp5135382582\",\n        \"imp5135382583\",\n        \"imp5135382584\",\n        \"imp5135382587\",\n        \"imp5135382570\",\n        \"imp7153180035\",\n        \"imp7153180911\",\n        \"imp7153180946\",\n        \"imp7153180996\",\n        \"imp7152455683\",\n        \"imp7153507083\",\n        \"imp7153184469\",\n        \"imp7153507069\",\n        \"imp7153507097\",\n        \"imp7152576028\",\n        \"imp7152576121\",\n        \"imp7153507090\",\n        \"imp7153507091\",\n        \"imp00230-01100\",\n        \"imp00230-030055\",\n        \"imp00230-030056\",\n        \"imp5158757035\",\n        \"imp5158757229\",\n        \"imp5158757236\",\n        \"imp5158757232\",\n        \"imp5158757235\",\n        \"imp5158757039\",\n        \"imp5158757008\",\n        \"imp5158757038\",\n        \"imp5158757286\",\n        \"imp5158757225\",\n        \"imp5158757014\",\n        \"imp5158757036\",\n        \"imp5158757507\",\n        \"imp5158757204\",\n        \"imp5158757405\",\n        \"imp5158757007\",\n        \"imp5158757042\",\n        \"imp5158757054\",\n        \"imp5158757296\",\n        \"imp5158757033\",\n        \"imp5158757130\",\n        \"imp5158757037\",\n        \"imp5158757104\",\n        \"imp5158757255\",\n        \"imp5158757169\",\n        \"imp5158757009\",\n        \"imp5158757475\",\n        \"imp5158757237\",\n        \"imp5158757103\",\n        \"imp5158757002\",\n        \"imp5158757175\",\n        \"imp5158757302\",\n        \"imp5158757219\",\n        \"imp5158757508\",\n        \"imp5158757065\",\n        \"imp5158757063\",\n        \"imp5158757403\",\n        \"imp5158757019\",\n        \"imp5158757053\",\n        \"imp5158757258\",\n        \"imp5158757222\",\n        \"imp5158757292\",\n        \"imp5158757223\",\n        \"imp5158757208\",\n        \"imp5158757158\",\n        \"imp5158757306\",\n        \"imp5158757032\",\n        \"imp5158757181\",\n        \"imp5158757059\",\n        \"imp5158757312\",\n        \"imp5158757293\",\n        \"imp5158757013\",\n        \"imp5158757055\",\n        \"imp5158757029\",\n        \"imp5158757114\",\n        \"imp5158757413\",\n        \"imp5158757253\",\n        \"imp5158757048\",\n        \"imp5158757421\",\n        \"imp5158757422\",\n        \"imp5158757431\",\n        \"imp5158757401\",\n        \"imp00230-036998\",\n        \"imp8058807474\",\n        \"imp8058809332\",\n        \"imp8058807507\",\n        \"imp8058807502\",\n        \"imp8058807501\",\n        \"imp8058807505\",\n        \"imp8058807504\",\n        \"imp8058807500\",\n        \"imp8058807503\",\n        \"imp8058807632\",\n        \"imp8058807631\",\n        \"imp8058807635\",\n        \"imp8058807626\",\n        \"imp8058807633\",\n        \"imp8058807628\",\n        \"imp8058807627\",\n        \"imp8058807634\",\n        \"imp8058807629\",\n        \"imp8058807630\",\n        \"imp8058807545\",\n        \"imp8058807608\",\n        \"imp8058807544\",\n        \"imp8058807546\",\n        \"imp8058807547\",\n        \"imp8058807548\",\n        \"imp8058801997\",\n        \"imp8058807541\",\n        \"imp8058807543\",\n        \"imp8058801998\",\n        \"imp8058807535\",\n        \"imp00244-02122\",\n        \"imp8058807540\",\n        \"imp8058807542\",\n        \"imp8058801994\",\n        \"imp8058801996\",\n        \"imp8058801999\",\n        \"imp8058801995\",\n        \"imp8056975255\",\n        \"imp8053089442\",\n        \"imp8053089443\",\n        \"imp8053089436\",\n        \"imp8053089439\",\n        \"imp8053089438\",\n        \"imp8053089437\",\n        \"imp8054564241\",\n        \"imp8053089433\",\n        \"imp8053089428\",\n        \"imp8053089426\",\n        \"imp8053089430\",\n        \"imp8053089432\",\n        \"imp8053089444\",\n        \"imp8053089527\",\n        \"imp8053089435\",\n        \"imp8053089434\",\n        \"imp8053089427\",\n        \"imp8053089431\",\n        \"imp8053089429\",\n        \"imp8053089446\",\n        \"imp8053089449\",\n        \"imp8053089456\",\n        \"imp8053089455\",\n        \"imp8058300206\",\n        \"imp8058300207\",\n        \"imp8058300205\",\n        \"imp8058300204\",\n        \"imp00255-01100\",\n        \"imp8058807650\",\n        \"imp8058807657\",\n        \"imp8058807644\",\n        \"imp8058807642\",\n        \"imp8058807656\",\n        \"imp8058807659\",\n        \"imp8058807653\",\n        \"imp8058807651\",\n        \"imp8058807643\",\n        \"imp8058807655\",\n        \"imp8058807652\",\n        \"imp8058807663\",\n        \"imp8058807661\",\n        \"imp8058807646\",\n        \"imp8058807647\",\n        \"imp8058807641\",\n        \"imp8058807660\",\n        \"imp8058807662\",\n        \"imp8058807648\",\n        \"imp8058807665\",\n        \"imp8058807654\",\n        \"imp8058807645\",\n        \"imp8058807639\",\n        \"imp8058807638\",\n        \"imp8058807649\",\n        \"imp8058807658\",\n        \"imp8059628571\",\n        \"imp8059639191\",\n        \"imp00257-03222\",\n        \"imp00257-03233\",\n        \"imp00257-03221\",\n        \"imp00257-03227\",\n        \"imp00257-03228\",\n        \"imp00257-03232\",\n        \"imp00257-03225\",\n        \"imp00257-03226\",\n        \"imp00257-03224\",\n        \"imp8058807683\",\n        \"imp8058807682\",\n        \"imp8058807678\",\n        \"imp8058807679\",\n        \"imp8058807680\",\n        \"imp8058807677\",\n        \"imp00261-02601\",\n        \"imp8058807676\",\n        \"imp8058807482\",\n        \"imp8058807675\",\n        \"imp8058807681\",\n        \"imp3254227400\",\n        \"imp00266-081630\",\n        \"imp2532392812\",\n        \"imp2532390197\",\n        \"imp2532390195\",\n        \"imp2538512126\",\n        \"imp00266-232131\",\n        \"imp00266-232132\",\n        \"imp00266-232133\",\n        \"imp2532390191\",\n        \"imp2532390193\",\n        \"imp2538532070\",\n        \"imp2532390192\",\n        \"imp00266-232139\",\n        \"imp00266-232138\",\n        \"imp8054368488\",\n        \"imp8056695611\",\n        \"imp8054368489\",\n        \"imp00266-021930\",\n        \"imp8058805622\",\n        \"imp8054567357\",\n        \"imp9092841180\",\n        \"imp9092841187\",\n        \"imp9092841185\",\n        \"imp9092841179\",\n        \"imp9092841188\",\n        \"imp9092841181\",\n        \"imp9092841183\",\n        \"imp9092841189\",\n        \"imp00266-1323821\",\n        \"imp00266-1323822\",\n        \"imp00266-1323823\",\n        \"imp00266-1323824\",\n        \"imp00266-1389731\",\n        \"imp00266-1389732\",\n        \"imp9097363387\",\n        \"imp8058801962\",\n        \"imp00266-441444\",\n        \"imp00266-441441\",\n        \"imp00266-441443\",\n        \"imp00266-441442\",\n        \"imp00266-229603\",\n        \"imp00266-229605\",\n        \"imp00266-229604\",\n        \"imp00266-229606\",\n        \"imp00266-229607\",\n        \"imp00266-229608\",\n        \"imp00266-634666\",\n        \"imp00266-1203512\",\n        \"imp00266-1203513\",\n        \"imp00266-1203511\",\n        \"imp00266-1203514\",\n        \"imp00266-1203515\",\n        \"imp00266-786653\",\n        \"imp00266-786652\",\n        \"imp00266-786619\",\n        \"imp00266-786651\",\n        \"imp00266-908001\",\n        \"imp00266-908002\",\n        \"imp00266-908005\",\n        \"imp00266-908003\",\n        \"imp00266-908004\",\n        \"imp00266-012000\",\n        \"imp8054565895\",\n        \"imp00271-02222\",\n        \"imp00271-02220\",\n        \"imp00271-02228\",\n        \"imp00271-02233\",\n        \"imp00271-02237\",\n        \"imp00271-02229\",\n        \"imp00271-02603\",\n        \"imp00271-02218\",\n        \"imp00271-02224\",\n        \"imp00271-02216\",\n        \"imp00271-02230\",\n        \"imp00271-02234\",\n        \"imp00271-02225\",\n        \"imp00271-02226\",\n        \"imp00271-02236\",\n        \"imp00271-02227\",\n        \"imp00271-02235\",\n        \"imp00271-02604\",\n        \"imp00271-02601\",\n        \"imp00271-02602\",\n        \"imp00271-02219\",\n        \"imp00271-02231\",\n        \"imp00271-02232\",\n        \"imp00271-02240\",\n        \"imp00271-02600\",\n        \"imp00271-02238\",\n        \"imp00271-02221\",\n        \"imp00271-02223\",\n        \"imp00271-02215\",\n        \"imp00271-02217\",\n        \"imp00271-02239\",\n        \"imp8058459823\",\n        \"imp8058451074\",\n        \"imp8056852046\",\n        \"imp8058451073\",\n        \"imp8058452858\",\n        \"imp8056811417\",\n        \"imp8056926926\",\n        \"imp8056926924\",\n        \"imp4069002192\",\n        \"imp8056811416\",\n        \"imp00275-02401\",\n        \"imp8056811623\",\n        \"imp00275-02501\",\n        \"imp8056811415\",\n        \"imp00275-02502\",\n        \"imp00275-02402\",\n        \"imp8056926923\",\n        \"imp8056811410\",\n        \"imp8056926928\",\n        \"imp8058458963\",\n        \"imp00275-01200\",\n        \"imp9492297775\",\n        \"imp00277-02124\",\n        \"imp00277-02113\",\n        \"imp00277-02112\",\n        \"imp00277-02106\",\n        \"imp00277-02122\",\n        \"imp00277-02102\",\n        \"imp00277-02118\",\n        \"imp00277-02114\",\n        \"imp00277-02107\",\n        \"imp8058807479\",\n        \"imp00277-06225\",\n        \"imp00277-04338\",\n        \"imp8058807476\",\n        \"imp8058807481\",\n        \"imp8058807477\",\n        \"imp8058806977\",\n        \"imp8058804273\",\n        \"imp8053572585\",\n        \"imp8053572573\",\n        \"imp8053572568\",\n        \"imp8053572569\",\n        \"imp8053572578\",\n        \"imp8053572581\",\n        \"imp8053572566\",\n        \"imp8053572586\",\n        \"imp8053572576\",\n        \"imp8053572582\",\n        \"imp8053572587\",\n        \"imp8053572588\",\n        \"imp8053572565\",\n        \"imp00277-03444\",\n        \"imp8053572584\",\n        \"imp8054568764\",\n        \"imp8054568762\",\n        \"imp8054568763\",\n        \"imp8054564983\",\n        \"imp8054564987\",\n        \"imp8054564985\",\n        \"imp8054564986\",\n        \"imp8054564981\",\n        \"imp8054564984\",\n        \"imp8054565102\",\n        \"imp8054565106\",\n        \"imp8054565103\",\n        \"imp8054565105\",\n        \"imp00284-02112\",\n        \"imp8054565104\",\n        \"imp8054567276\",\n        \"imp8054567272\",\n        \"imp8054567277\",\n        \"imp8054567278\",\n        \"imp8054567274\",\n        \"imp8054567270\",\n        \"imp8054567279\",\n        \"imp8054567275\",\n        \"imp8054567273\",\n        \"imp8054567271\",\n        \"imp00290-directory\",\n        \"imp00290-01100\",\n        \"imp8479577492\",\n        \"imp8479577251\",\n        \"imp8479577619\",\n        \"imp8479577536\",\n        \"imp8479577531\",\n        \"imp8479577490\",\n        \"imp8479577465\",\n        \"imp8479577480\",\n        \"imp8479577277\",\n        \"imp8479577486\",\n        \"imp8479577534\",\n        \"imp8479577538\",\n        \"imp8479577483\",\n        \"imp8479577467\",\n        \"imp8479577498\",\n        \"imp8479577482\",\n        \"imp8479577537\",\n        \"imp8479577410\",\n        \"imp8479577415\",\n        \"imp8479577272\",\n        \"imp8479577166\",\n        \"imp00290-02166\",\n        \"imp8479577409\",\n        \"imp8479577475\",\n        \"imp8479577533\",\n        \"00290-02167\",\n        \"imp8479577411\",\n        \"imp8479577265\",\n        \"imp8479577474\",\n        \"imp8479577469\",\n        \"imp8479865155\",\n        \"imp00290-02501\",\n        \"imp00290-02502\",\n        \"imp8479577497\",\n        \"imp8479577476\",\n        \"imp00290-02500\",\n        \"imp8479577487\",\n        \"imp8479577477\",\n        \"imp8479577275\",\n        \"imp8479577489\",\n        \"imp8479577530\",\n        \"imp8479577278\",\n        \"imp8479577491\",\n        \"imp8479577479\",\n        \"imp8479577532\",\n        \"imp8479577398\",\n        \"imp8479577484\",\n        \"imp00290-02205\",\n        \"imp8058807192\",\n        \"imp8058807184\",\n        \"imp8058807185\",\n        \"imp8058807183\",\n        \"imp8058807195\",\n        \"imp8058807182\",\n        \"imp8058807181\",\n        \"8056810379\",\n        \"8056926000\",\n        \"8056926001\",\n        \"imp00292-02-trunk\",\n        \"8056926057\",\n        \"8059641380\",\n        \"8059647622\",\n        \"8056834011\",\n        \"8056926028\",\n        \"8056926029\",\n        \"8056926030\",\n        \"8056926031\",\n        \"8056926032\",\n        \"8056926033\",\n        \"8056926034\",\n        \"8056926035\",\n        \"8056926036\",\n        \"8056926037\",\n        \"8056926038\",\n        \"8056926039\",\n        \"8056926040\",\n        \"8056926041\",\n        \"8056926042\",\n        \"8056926043\",\n        \"8056926044\",\n        \"8056926045\",\n        \"8056926046\",\n        \"8056926047\",\n        \"8056926048\",\n        \"8056926049\",\n        \"8056926050\",\n        \"8056926051\",\n        \"8056926052\",\n        \"8056926053\",\n        \"8056926054\",\n        \"8056926055\",\n        \"8056926056\",\n        \"8056926058\",\n        \"8056926059\",\n        \"8056926060\",\n        \"8056926061\",\n        \"8056926062\",\n        \"8056926063\",\n        \"8056926064\",\n        \"8056926065\",\n        \"8056926066\",\n        \"8056926067\",\n        \"8056926068\",\n        \"8056926069\",\n        \"8056926070\",\n        \"8056926071\",\n        \"8056926072\",\n        \"8056926073\",\n        \"8056926074\",\n        \"8056926075\",\n        \"8056926076\",\n        \"8056926077\",\n        \"8056926078\",\n        \"8056926079\",\n        \"8056926080\",\n        \"8056926081\",\n        \"8056926082\",\n        \"8056926083\",\n        \"8056926084\",\n        \"8056926085\",\n        \"8056926086\",\n        \"8056926087\",\n        \"8056926088\",\n        \"8056926089\",\n        \"8056926090\",\n        \"8056926091\",\n        \"8056926092\",\n        \"8056926093\",\n        \"8056926094\",\n        \"8056926095\",\n        \"8056926096\",\n        \"8056926097\",\n        \"8056926098\",\n        \"8056926099\",\n        \"8056926002\",\n        \"8056926003\",\n        \"8056926004\",\n        \"8056926005\",\n        \"8056926006\",\n        \"8056926007\",\n        \"8056926008\",\n        \"8056926009\",\n        \"8056926010\",\n        \"8056926011\",\n        \"8056926012\",\n        \"8056926013\",\n        \"8056926014\",\n        \"8056926015\",\n        \"8056926016\",\n        \"8056926017\",\n        \"8056926018\",\n        \"8056926019\",\n        \"8056926020\",\n        \"8056926021\",\n        \"8056926022\",\n        \"8056926023\",\n        \"8056926024\",\n        \"8056926025\",\n        \"8056926026\",\n        \"8056926027\",\n        \"8059640450\",\n        \"8059677111\",\n        \"8056816385\",\n        \"8056814803\",\n        \"8059671805\",\n        \"8059671900\",\n        \"imp8055392215\",\n        \"imp8055392212\",\n        \"imp8055392217\",\n        \"imp8055392220\",\n        \"8055647002\",\n        \"imp8055392206\",\n        \"imp8055392211\",\n        \"imp8055392218\",\n        \"imp8055392227\",\n        \"imp8055392205\",\n        \"imp8055392213\",\n        \"imp00295-02300\",\n        \"imp8055392204\",\n        \"imp8055392208\",\n        \"imp8055392203\",\n        \"imp8055392207\",\n        \"imp8055392229\",\n        \"imp8055392228\",\n        \"imp8055392210\",\n        \"imp8055392214\",\n        \"imp8055392209\",\n        \"imp8055392201\",\n        \"imp8055392219\",\n        \"imp00295-directory\",\n        \"imp00295-01100\",\n        \"imp00308-02201\",\n        \"imp00308-02202\",\n        \"imp8058801695\",\n        \"1001@00310.impulsevoip.net\",\n        \"1002@00310.impulsevoip.net\",\n        \"1003@00310.impulsevoip.net\",\n        \"1004@00310.impulsevoip.net\",\n        \"1005@00310.impulsevoip.net\",\n        \"1006@00310.impulsevoip.net\",\n        \"1007@00310.impulsevoip.net\",\n        \"1008@00310.impulsevoip.net\",\n        \"1009@00310.impulsevoip.net\",\n        \"1010@00310.impulsevoip.net\",\n        \"1011@00310.impulsevoip.net\",\n        \"1012@00310.impulsevoip.net\",\n        \"1013@00310.impulsevoip.net\",\n        \"1014@00310.impulsevoip.net\",\n        \"1015@00310.impulsevoip.net\",\n        \"1016@00310.impulsevoip.net\",\n        \"1017@00310.impulsevoip.net\",\n        \"1018@00310.impulsevoip.net\",\n        \"1019@00310.impulsevoip.net\",\n        \"1020@00310.impulsevoip.net\",\n        \"1021@00310.impulsevoip.net\",\n        \"1022@00310.impulsevoip.net\",\n        \"1023@00310.impulsevoip.net\",\n        \"1024@00310.impulsevoip.net\",\n        \"1025@00310.impulsevoip.net\",\n        \"1026@00310.impulsevoip.net\",\n        \"1027@00310.impulsevoip.net\",\n        \"1028@00310.impulsevoip.net\",\n        \"1029@00310.impulsevoip.net\",\n        \"1030@00310.impulsevoip.net\",\n        \"1031@00310.impulsevoip.net\",\n        \"1032@00310.impulsevoip.net\",\n        \"1033@00310.impulsevoip.net\",\n        \"1034@00310.impulsevoip.net\",\n        \"1035@00310.impulsevoip.net\",\n        \"1036@00310.impulsevoip.net\",\n        \"1037@00310.impulsevoip.net\",\n        \"1038@00310.impulsevoip.net\",\n        \"1039@00310.impulsevoip.net\",\n        \"1040@00310.impulsevoip.net\",\n        \"1041@00310.impulsevoip.net\",\n        \"1042@00310.impulsevoip.net\",\n        \"1043@00310.impulsevoip.net\",\n        \"1044@00310.impulsevoip.net\",\n        \"1045@00310.impulsevoip.net\",\n        \"1046@00310.impulsevoip.net\",\n        \"1047@00310.impulsevoip.net\",\n        \"1048@00310.impulsevoip.net\",\n        \"1049@00310.impulsevoip.net\",\n        \"1050@00310.impulsevoip.net\",\n        \"1051@00310.impulsevoip.net\",\n        \"1052@00310.impulsevoip.net\",\n        \"1053@00310.impulsevoip.net\",\n        \"1054@00310.impulsevoip.net\",\n        \"1055@00310.impulsevoip.net\",\n        \"1056@00310.impulsevoip.net\",\n        \"1057@00310.impulsevoip.net\",\n        \"1058@00310.impulsevoip.net\",\n        \"1059@00310.impulsevoip.net\",\n        \"1060@00310.impulsevoip.net\",\n        \"1061@00310.impulsevoip.net\",\n        \"1062@00310.impulsevoip.net\",\n        \"1063@00310.impulsevoip.net\",\n        \"1064@00310.impulsevoip.net\",\n        \"1065@00310.impulsevoip.net\",\n        \"1066@00310.impulsevoip.net\",\n        \"1067@00310.impulsevoip.net\",\n        \"1068@00310.impulsevoip.net\",\n        \"1069@00310.impulsevoip.net\",\n        \"1070@00310.impulsevoip.net\",\n        \"1071@00310.impulsevoip.net\",\n        \"1072@00310.impulsevoip.net\",\n        \"1073@00310.impulsevoip.net\",\n        \"1074@00310.impulsevoip.net\",\n        \"1075@00310.impulsevoip.net\",\n        \"1076@00310.impulsevoip.net\",\n        \"1077@00310.impulsevoip.net\",\n        \"1078@00310.impulsevoip.net\",\n        \"1079@00310.impulsevoip.net\",\n        \"1080@00310.impulsevoip.net\",\n        \"1081@00310.impulsevoip.net\",\n        \"1082@00310.impulsevoip.net\",\n        \"1083@00310.impulsevoip.net\",\n        \"1084@00310.impulsevoip.net\",\n        \"1085@00310.impulsevoip.net\",\n        \"1086@00310.impulsevoip.net\",\n        \"1087@00310.impulsevoip.net\",\n        \"1088@00310.impulsevoip.net\",\n        \"1089@00310.impulsevoip.net\",\n        \"1090@00310.impulsevoip.net\",\n        \"1091@00310.impulsevoip.net\",\n        \"1092@00310.impulsevoip.net\",\n        \"1093@00310.impulsevoip.net\",\n        \"1094@00310.impulsevoip.net\",\n        \"1095@00310.impulsevoip.net\",\n        \"1096@00310.impulsevoip.net\",\n        \"1097@00310.impulsevoip.net\",\n        \"1098@00310.impulsevoip.net\",\n        \"1099@00310.impulsevoip.net\",\n        \"1100@00310.impulsevoip.net\",\n        \"1101@00310.impulsevoip.net\",\n        \"1102@00310.impulsevoip.net\",\n        \"1103@00310.impulsevoip.net\",\n        \"1104@00310.impulsevoip.net\",\n        \"1105@00310.impulsevoip.net\",\n        \"1106@00310.impulsevoip.net\",\n        \"1107@00310.impulsevoip.net\",\n        \"1108@00310.impulsevoip.net\",\n        \"1109@00310.impulsevoip.net\",\n        \"1110@00310.impulsevoip.net\",\n        \"1111@00310.impulsevoip.net\",\n        \"1112@00310.impulsevoip.net\",\n        \"1113@00310.impulsevoip.net\",\n        \"1114@00310.impulsevoip.net\",\n        \"1115@00310.impulsevoip.net\",\n        \"1116@00310.impulsevoip.net\",\n        \"1117@00310.impulsevoip.net\",\n        \"1118@00310.impulsevoip.net\",\n        \"1119@00310.impulsevoip.net\",\n        \"1120@00310.impulsevoip.net\",\n        \"1121@00310.impulsevoip.net\",\n        \"1122@00310.impulsevoip.net\",\n        \"1123@00310.impulsevoip.net\",\n        \"1124@00310.impulsevoip.net\",\n        \"1125@00310.impulsevoip.net\",\n        \"1126@00310.impulsevoip.net\",\n        \"1127@00310.impulsevoip.net\",\n        \"1128@00310.impulsevoip.net\",\n        \"1129@00310.impulsevoip.net\",\n        \"1130@00310.impulsevoip.net\",\n        \"1131@00310.impulsevoip.net\",\n        \"1132@00310.impulsevoip.net\",\n        \"1133@00310.impulsevoip.net\",\n        \"1134@00310.impulsevoip.net\",\n        \"1135@00310.impulsevoip.net\",\n        \"1136@00310.impulsevoip.net\",\n        \"1137@00310.impulsevoip.net\",\n        \"1138@00310.impulsevoip.net\",\n        \"1139@00310.impulsevoip.net\",\n        \"1140@00310.impulsevoip.net\",\n        \"1141@00310.impulsevoip.net\",\n        \"1142@00310.impulsevoip.net\",\n        \"1143@00310.impulsevoip.net\",\n        \"1144@00310.impulsevoip.net\",\n        \"1145@00310.impulsevoip.net\",\n        \"1146@00310.impulsevoip.net\",\n        \"1147@00310.impulsevoip.net\",\n        \"1148@00310.impulsevoip.net\",\n        \"1149@00310.impulsevoip.net\",\n        \"1150@00310.impulsevoip.net\",\n        \"1151@00310.impulsevoip.net\",\n        \"1152@00310.impulsevoip.net\",\n        \"1153@00310.impulsevoip.net\",\n        \"1154@00310.impulsevoip.net\",\n        \"1155@00310.impulsevoip.net\",\n        \"1156@00310.impulsevoip.net\",\n        \"1157@00310.impulsevoip.net\",\n        \"1158@00310.impulsevoip.net\",\n        \"1159@00310.impulsevoip.net\",\n        \"1160@00310.impulsevoip.net\",\n        \"1161@00310.impulsevoip.net\",\n        \"1162@00310.impulsevoip.net\",\n        \"1163@00310.impulsevoip.net\",\n        \"1164@00310.impulsevoip.net\",\n        \"1165@00310.impulsevoip.net\",\n        \"1166@00310.impulsevoip.net\",\n        \"1167@00310.impulsevoip.net\",\n        \"1168@00310.impulsevoip.net\",\n        \"1169@00310.impulsevoip.net\",\n        \"1170@00310.impulsevoip.net\",\n        \"1171@00310.impulsevoip.net\",\n        \"1172@00310.impulsevoip.net\",\n        \"1173@00310.impulsevoip.net\",\n        \"1174@00310.impulsevoip.net\",\n        \"1175@00310.impulsevoip.net\",\n        \"1176@00310.impulsevoip.net\",\n        \"1177@00310.impulsevoip.net\",\n        \"1178@00310.impulsevoip.net\",\n        \"1179@00310.impulsevoip.net\",\n        \"1180@00310.impulsevoip.net\",\n        \"1181@00310.impulsevoip.net\",\n        \"1182@00310.impulsevoip.net\",\n        \"1183@00310.impulsevoip.net\",\n        \"1184@00310.impulsevoip.net\",\n        \"1185@00310.impulsevoip.net\",\n        \"1186@00310.impulsevoip.net\",\n        \"1187@00310.impulsevoip.net\",\n        \"1188@00310.impulsevoip.net\",\n        \"1189@00310.impulsevoip.net\",\n        \"1190@00310.impulsevoip.net\",\n        \"1191@00310.impulsevoip.net\",\n        \"1192@00310.impulsevoip.net\",\n        \"1193@00310.impulsevoip.net\",\n        \"1194@00310.impulsevoip.net\",\n        \"1195@00310.impulsevoip.net\",\n        \"1196@00310.impulsevoip.net\",\n        \"1197@00310.impulsevoip.net\",\n        \"1198@00310.impulsevoip.net\",\n        \"1199@00310.impulsevoip.net\",\n        \"1200@00310.impulsevoip.net\",\n        \"1201@00310.impulsevoip.net\",\n        \"1202@00310.impulsevoip.net\",\n        \"1203@00310.impulsevoip.net\",\n        \"1204@00310.impulsevoip.net\",\n        \"1205@00310.impulsevoip.net\",\n        \"1206@00310.impulsevoip.net\",\n        \"1207@00310.impulsevoip.net\",\n        \"1208@00310.impulsevoip.net\",\n        \"1209@00310.impulsevoip.net\",\n        \"1210@00310.impulsevoip.net\",\n        \"1211@00310.impulsevoip.net\",\n        \"1212@00310.impulsevoip.net\",\n        \"1213@00310.impulsevoip.net\",\n        \"1214@00310.impulsevoip.net\",\n        \"1215@00310.impulsevoip.net\",\n        \"2484@00310.impulsevoip.net\",\n        \"2485@00310.impulsevoip.net\",\n        \"2486@00310.impulsevoip.net\",\n        \"2487@00310.impulsevoip.net\",\n        \"2488@00310.impulsevoip.net\",\n        \"2489@00310.impulsevoip.net\",\n        \"2490@00310.impulsevoip.net\",\n        \"2491@00310.impulsevoip.net\",\n        \"2492@00310.impulsevoip.net\",\n        \"2493@00310.impulsevoip.net\",\n        \"2494@00310.impulsevoip.net\",\n        \"2495@00310.impulsevoip.net\",\n        \"2496@00310.impulsevoip.net\",\n        \"2497@00310.impulsevoip.net\",\n        \"2498@00310.impulsevoip.net\",\n        \"2499@00310.impulsevoip.net\",\n        \"2500@00310.impulsevoip.net\",\n        \"2501@00310.impulsevoip.net\",\n        \"2502@00310.impulsevoip.net\",\n        \"2503@00310.impulsevoip.net\",\n        \"2504@00310.impulsevoip.net\",\n        \"2505@00310.impulsevoip.net\",\n        \"2506@00310.impulsevoip.net\",\n        \"2507@00310.impulsevoip.net\",\n        \"2508@00310.impulsevoip.net\",\n        \"2509@00310.impulsevoip.net\",\n        \"2510@00310.impulsevoip.net\",\n        \"2511@00310.impulsevoip.net\",\n        \"2512@00310.impulsevoip.net\",\n        \"2513@00310.impulsevoip.net\",\n        \"2514@00310.impulsevoip.net\",\n        \"2515@00310.impulsevoip.net\",\n        \"2516@00310.impulsevoip.net\",\n        \"2517@00310.impulsevoip.net\",\n        \"2518@00310.impulsevoip.net\",\n        \"2519@00310.impulsevoip.net\",\n        \"2520@00310.impulsevoip.net\",\n        \"2521@00310.impulsevoip.net\",\n        \"2522@00310.impulsevoip.net\",\n        \"2523@00310.impulsevoip.net\",\n        \"2524@00310.impulsevoip.net\",\n        \"2525@00310.impulsevoip.net\",\n        \"2526@00310.impulsevoip.net\",\n        \"2527@00310.impulsevoip.net\",\n        \"2528@00310.impulsevoip.net\",\n        \"2529@00310.impulsevoip.net\",\n        \"2530@00310.impulsevoip.net\",\n        \"2531@00310.impulsevoip.net\",\n        \"2532@00310.impulsevoip.net\",\n        \"2533@00310.impulsevoip.net\",\n        \"2534@00310.impulsevoip.net\",\n        \"2535@00310.impulsevoip.net\",\n        \"2536@00310.impulsevoip.net\",\n        \"2537@00310.impulsevoip.net\",\n        \"2538@00310.impulsevoip.net\",\n        \"2539@00310.impulsevoip.net\",\n        \"2540@00310.impulsevoip.net\",\n        \"2541@00310.impulsevoip.net\",\n        \"2542@00310.impulsevoip.net\",\n        \"2543@00310.impulsevoip.net\",\n        \"2544@00310.impulsevoip.net\",\n        \"2545@00310.impulsevoip.net\",\n        \"2546@00310.impulsevoip.net\",\n        \"2547@00310.impulsevoip.net\",\n        \"2548@00310.impulsevoip.net\",\n        \"2549@00310.impulsevoip.net\",\n        \"2550@00310.impulsevoip.net\",\n        \"2551@00310.impulsevoip.net\",\n        \"2552@00310.impulsevoip.net\",\n        \"2553@00310.impulsevoip.net\",\n        \"2554@00310.impulsevoip.net\",\n        \"2555@00310.impulsevoip.net\",\n        \"2556@00310.impulsevoip.net\",\n        \"2557@00310.impulsevoip.net\",\n        \"2558@00310.impulsevoip.net\",\n        \"2559@00310.impulsevoip.net\",\n        \"2560@00310.impulsevoip.net\",\n        \"2561@00310.impulsevoip.net\",\n        \"2562@00310.impulsevoip.net\",\n        \"2563@00310.impulsevoip.net\",\n        \"2564@00310.impulsevoip.net\",\n        \"2565@00310.impulsevoip.net\",\n        \"2566@00310.impulsevoip.net\",\n        \"2567@00310.impulsevoip.net\",\n        \"2568@00310.impulsevoip.net\",\n        \"2569@00310.impulsevoip.net\",\n        \"2570@00310.impulsevoip.net\",\n        \"2571@00310.impulsevoip.net\",\n        \"2572@00310.impulsevoip.net\",\n        \"2573@00310.impulsevoip.net\",\n        \"2574@00310.impulsevoip.net\",\n        \"2575@00310.impulsevoip.net\",\n        \"2576@00310.impulsevoip.net\",\n        \"2577@00310.impulsevoip.net\",\n        \"2578@00310.impulsevoip.net\",\n        \"2579@00310.impulsevoip.net\",\n        \"2580@00310.impulsevoip.net\",\n        \"2581@00310.impulsevoip.net\",\n        \"2582@00310.impulsevoip.net\",\n        \"2583@00310.impulsevoip.net\",\n        \"2584@00310.impulsevoip.net\",\n        \"2585@00310.impulsevoip.net\",\n        \"2586@00310.impulsevoip.net\",\n        \"2587@00310.impulsevoip.net\",\n        \"2588@00310.impulsevoip.net\",\n        \"2589@00310.impulsevoip.net\",\n        \"2590@00310.impulsevoip.net\",\n        \"2591@00310.impulsevoip.net\",\n        \"2592@00310.impulsevoip.net\",\n        \"2593@00310.impulsevoip.net\",\n        \"2594@00310.impulsevoip.net\",\n        \"2595@00310.impulsevoip.net\",\n        \"2596@00310.impulsevoip.net\",\n        \"2597@00310.impulsevoip.net\",\n        \"2598@00310.impulsevoip.net\",\n        \"2599@00310.impulsevoip.net\",\n        \"2600@00310.impulsevoip.net\",\n        \"2601@00310.impulsevoip.net\",\n        \"2602@00310.impulsevoip.net\",\n        \"2603@00310.impulsevoip.net\",\n        \"2604@00310.impulsevoip.net\",\n        \"2605@00310.impulsevoip.net\",\n        \"2606@00310.impulsevoip.net\",\n        \"2607@00310.impulsevoip.net\",\n        \"2608@00310.impulsevoip.net\",\n        \"2609@00310.impulsevoip.net\",\n        \"2610@00310.impulsevoip.net\",\n        \"2611@00310.impulsevoip.net\",\n        \"2612@00310.impulsevoip.net\",\n        \"2613@00310.impulsevoip.net\",\n        \"2614@00310.impulsevoip.net\",\n        \"2615@00310.impulsevoip.net\",\n        \"2616@00310.impulsevoip.net\",\n        \"2617@00310.impulsevoip.net\",\n        \"2618@00310.impulsevoip.net\",\n        \"2619@00310.impulsevoip.net\",\n        \"2620@00310.impulsevoip.net\",\n        \"2621@00310.impulsevoip.net\",\n        \"2622@00310.impulsevoip.net\",\n        \"2623@00310.impulsevoip.net\",\n        \"2624@00310.impulsevoip.net\",\n        \"2625@00310.impulsevoip.net\",\n        \"2626@00310.impulsevoip.net\",\n        \"2627@00310.impulsevoip.net\",\n        \"2628@00310.impulsevoip.net\",\n        \"2629@00310.impulsevoip.net\",\n        \"2630@00310.impulsevoip.net\",\n        \"2631@00310.impulsevoip.net\",\n        \"2632@00310.impulsevoip.net\",\n        \"2633@00310.impulsevoip.net\",\n        \"2634@00310.impulsevoip.net\",\n        \"2635@00310.impulsevoip.net\",\n        \"2636@00310.impulsevoip.net\",\n        \"2637@00310.impulsevoip.net\",\n        \"2638@00310.impulsevoip.net\",\n        \"2639@00310.impulsevoip.net\",\n        \"2640@00310.impulsevoip.net\",\n        \"2641@00310.impulsevoip.net\",\n        \"2642@00310.impulsevoip.net\",\n        \"2643@00310.impulsevoip.net\",\n        \"2644@00310.impulsevoip.net\",\n        \"2645@00310.impulsevoip.net\",\n        \"2646@00310.impulsevoip.net\",\n        \"2647@00310.impulsevoip.net\",\n        \"2648@00310.impulsevoip.net\",\n        \"2649@00310.impulsevoip.net\",\n        \"2650@00310.impulsevoip.net\",\n        \"2651@00310.impulsevoip.net\",\n        \"2652@00310.impulsevoip.net\",\n        \"2653@00310.impulsevoip.net\",\n        \"2654@00310.impulsevoip.net\",\n        \"2655@00310.impulsevoip.net\",\n        \"2656@00310.impulsevoip.net\",\n        \"2657@00310.impulsevoip.net\",\n        \"2658@00310.impulsevoip.net\",\n        \"2659@00310.impulsevoip.net\",\n        \"2660@00310.impulsevoip.net\",\n        \"2661@00310.impulsevoip.net\",\n        \"2662@00310.impulsevoip.net\",\n        \"2663@00310.impulsevoip.net\",\n        \"2664@00310.impulsevoip.net\",\n        \"2665@00310.impulsevoip.net\",\n        \"2666@00310.impulsevoip.net\",\n        \"2667@00310.impulsevoip.net\",\n        \"2668@00310.impulsevoip.net\",\n        \"2669@00310.impulsevoip.net\",\n        \"2670@00310.impulsevoip.net\",\n        \"2671@00310.impulsevoip.net\",\n        \"2672@00310.impulsevoip.net\",\n        \"2673@00310.impulsevoip.net\",\n        \"2674@00310.impulsevoip.net\",\n        \"2675@00310.impulsevoip.net\",\n        \"2676@00310.impulsevoip.net\",\n        \"2677@00310.impulsevoip.net\",\n        \"2678@00310.impulsevoip.net\",\n        \"2679@00310.impulsevoip.net\",\n        \"1912@00310.impulsevoip.net\",\n        \"1913@00310.impulsevoip.net\",\n        \"1914@00310.impulsevoip.net\",\n        \"1915@00310.impulsevoip.net\",\n        \"1916@00310.impulsevoip.net\",\n        \"1917@00310.impulsevoip.net\",\n        \"1918@00310.impulsevoip.net\",\n        \"1919@00310.impulsevoip.net\",\n        \"1920@00310.impulsevoip.net\",\n        \"1921@00310.impulsevoip.net\",\n        \"1922@00310.impulsevoip.net\",\n        \"1923@00310.impulsevoip.net\",\n        \"1924@00310.impulsevoip.net\",\n        \"1925@00310.impulsevoip.net\",\n        \"1926@00310.impulsevoip.net\",\n        \"1927@00310.impulsevoip.net\",\n        \"1928@00310.impulsevoip.net\",\n        \"1929@00310.impulsevoip.net\",\n        \"1930@00310.impulsevoip.net\",\n        \"1931@00310.impulsevoip.net\",\n        \"1932@00310.impulsevoip.net\",\n        \"1933@00310.impulsevoip.net\",\n        \"1934@00310.impulsevoip.net\",\n        \"1935@00310.impulsevoip.net\",\n        \"1936@00310.impulsevoip.net\",\n        \"1937@00310.impulsevoip.net\",\n        \"1938@00310.impulsevoip.net\",\n        \"1939@00310.impulsevoip.net\",\n        \"1940@00310.impulsevoip.net\",\n        \"1941@00310.impulsevoip.net\",\n        \"1942@00310.impulsevoip.net\",\n        \"1943@00310.impulsevoip.net\",\n        \"1944@00310.impulsevoip.net\",\n        \"1945@00310.impulsevoip.net\",\n        \"1946@00310.impulsevoip.net\",\n        \"1947@00310.impulsevoip.net\",\n        \"1948@00310.impulsevoip.net\",\n        \"1949@00310.impulsevoip.net\",\n        \"1950@00310.impulsevoip.net\",\n        \"1951@00310.impulsevoip.net\",\n        \"1952@00310.impulsevoip.net\",\n        \"1953@00310.impulsevoip.net\",\n        \"1954@00310.impulsevoip.net\",\n        \"1955@00310.impulsevoip.net\",\n        \"1956@00310.impulsevoip.net\",\n        \"1957@00310.impulsevoip.net\",\n        \"1958@00310.impulsevoip.net\",\n        \"1959@00310.impulsevoip.net\",\n        \"1960@00310.impulsevoip.net\",\n        \"1961@00310.impulsevoip.net\",\n        \"1962@00310.impulsevoip.net\",\n        \"1963@00310.impulsevoip.net\",\n        \"1964@00310.impulsevoip.net\",\n        \"1965@00310.impulsevoip.net\",\n        \"1966@00310.impulsevoip.net\",\n        \"1967@00310.impulsevoip.net\",\n        \"1968@00310.impulsevoip.net\",\n        \"1969@00310.impulsevoip.net\",\n        \"1970@00310.impulsevoip.net\",\n        \"1971@00310.impulsevoip.net\",\n        \"1718@00310.impulsevoip.net\",\n        \"1719@00310.impulsevoip.net\",\n        \"1720@00310.impulsevoip.net\",\n        \"1721@00310.impulsevoip.net\",\n        \"1722@00310.impulsevoip.net\",\n        \"1723@00310.impulsevoip.net\",\n        \"1724@00310.impulsevoip.net\",\n        \"1725@00310.impulsevoip.net\",\n        \"1726@00310.impulsevoip.net\",\n        \"1727@00310.impulsevoip.net\",\n        \"1728@00310.impulsevoip.net\",\n        \"1729@00310.impulsevoip.net\",\n        \"1730@00310.impulsevoip.net\",\n        \"1731@00310.impulsevoip.net\",\n        \"1732@00310.impulsevoip.net\",\n        \"1733@00310.impulsevoip.net\",\n        \"1734@00310.impulsevoip.net\",\n        \"1735@00310.impulsevoip.net\",\n        \"1736@00310.impulsevoip.net\",\n        \"1737@00310.impulsevoip.net\",\n        \"1738@00310.impulsevoip.net\",\n        \"1739@00310.impulsevoip.net\",\n        \"1740@00310.impulsevoip.net\",\n        \"1741@00310.impulsevoip.net\",\n        \"1742@00310.impulsevoip.net\",\n        \"1743@00310.impulsevoip.net\",\n        \"1744@00310.impulsevoip.net\",\n        \"1745@00310.impulsevoip.net\",\n        \"1746@00310.impulsevoip.net\",\n        \"1747@00310.impulsevoip.net\",\n        \"1748@00310.impulsevoip.net\",\n        \"1749@00310.impulsevoip.net\",\n        \"1750@00310.impulsevoip.net\",\n        \"1751@00310.impulsevoip.net\",\n        \"1752@00310.impulsevoip.net\",\n        \"1753@00310.impulsevoip.net\",\n        \"1754@00310.impulsevoip.net\",\n        \"1755@00310.impulsevoip.net\",\n        \"1756@00310.impulsevoip.net\",\n        \"1757@00310.impulsevoip.net\",\n        \"1758@00310.impulsevoip.net\",\n        \"1759@00310.impulsevoip.net\",\n        \"1760@00310.impulsevoip.net\",\n        \"1761@00310.impulsevoip.net\",\n        \"1762@00310.impulsevoip.net\",\n        \"1763@00310.impulsevoip.net\",\n        \"1764@00310.impulsevoip.net\",\n        \"1765@00310.impulsevoip.net\",\n        \"1766@00310.impulsevoip.net\",\n        \"1767@00310.impulsevoip.net\",\n        \"1768@00310.impulsevoip.net\",\n        \"1769@00310.impulsevoip.net\",\n        \"1770@00310.impulsevoip.net\",\n        \"1771@00310.impulsevoip.net\",\n        \"1772@00310.impulsevoip.net\",\n        \"1773@00310.impulsevoip.net\",\n        \"1774@00310.impulsevoip.net\",\n        \"1775@00310.impulsevoip.net\",\n        \"1776@00310.impulsevoip.net\",\n        \"1777@00310.impulsevoip.net\",\n        \"1778@00310.impulsevoip.net\",\n        \"1779@00310.impulsevoip.net\",\n        \"1780@00310.impulsevoip.net\",\n        \"1781@00310.impulsevoip.net\",\n        \"1782@00310.impulsevoip.net\",\n        \"1783@00310.impulsevoip.net\",\n        \"1784@00310.impulsevoip.net\",\n        \"1785@00310.impulsevoip.net\",\n        \"1786@00310.impulsevoip.net\",\n        \"1787@00310.impulsevoip.net\",\n        \"1788@00310.impulsevoip.net\",\n        \"1789@00310.impulsevoip.net\",\n        \"1790@00310.impulsevoip.net\",\n        \"1791@00310.impulsevoip.net\",\n        \"1792@00310.impulsevoip.net\",\n        \"1793@00310.impulsevoip.net\",\n        \"1794@00310.impulsevoip.net\",\n        \"1795@00310.impulsevoip.net\",\n        \"1796@00310.impulsevoip.net\",\n        \"1797@00310.impulsevoip.net\",\n        \"1798@00310.impulsevoip.net\",\n        \"1799@00310.impulsevoip.net\",\n        \"1800@00310.impulsevoip.net\",\n        \"1801@00310.impulsevoip.net\",\n        \"1802@00310.impulsevoip.net\",\n        \"1803@00310.impulsevoip.net\",\n        \"1804@00310.impulsevoip.net\",\n        \"1805@00310.impulsevoip.net\",\n        \"1806@00310.impulsevoip.net\",\n        \"1807@00310.impulsevoip.net\",\n        \"1808@00310.impulsevoip.net\",\n        \"1809@00310.impulsevoip.net\",\n        \"1810@00310.impulsevoip.net\",\n        \"1811@00310.impulsevoip.net\",\n        \"1812@00310.impulsevoip.net\",\n        \"1813@00310.impulsevoip.net\",\n        \"1814@00310.impulsevoip.net\",\n        \"1815@00310.impulsevoip.net\",\n        \"1000@00310.impulsevoip.net\",\n        \"1438@00310.impulsevoip.net\",\n        \"1439@00310.impulsevoip.net\",\n        \"1440@00310.impulsevoip.net\",\n        \"1441@00310.impulsevoip.net\",\n        \"1442@00310.impulsevoip.net\",\n        \"1250@00310.impulsevoip.net\",\n        \"1251@00310.impulsevoip.net\",\n        \"1252@00310.impulsevoip.net\",\n        \"1253@00310.impulsevoip.net\",\n        \"1254@00310.impulsevoip.net\",\n        \"1255@00310.impulsevoip.net\",\n        \"1256@00310.impulsevoip.net\",\n        \"1427@00310.impulsevoip.net\",\n        \"1428@00310.impulsevoip.net\",\n        \"1429@00310.impulsevoip.net\",\n        \"1430@00310.impulsevoip.net\",\n        \"1431@00310.impulsevoip.net\",\n        \"1432@00310.impulsevoip.net\",\n        \"1433@00310.impulsevoip.net\",\n        \"1434@00310.impulsevoip.net\",\n        \"1435@00310.impulsevoip.net\",\n        \"1436@00310.impulsevoip.net\",\n        \"1437@00310.impulsevoip.net\",\n        \"1367@00310.impulsevoip.net\",\n        \"1368@00310.impulsevoip.net\",\n        \"1369@00310.impulsevoip.net\",\n        \"1370@00310.impulsevoip.net\",\n        \"1371@00310.impulsevoip.net\",\n        \"1372@00310.impulsevoip.net\",\n        \"1373@00310.impulsevoip.net\",\n        \"1374@00310.impulsevoip.net\",\n        \"1375@00310.impulsevoip.net\",\n        \"1443@00310.impulsevoip.net\",\n        \"1444@00310.impulsevoip.net\",\n        \"1445@00310.impulsevoip.net\",\n        \"1446@00310.impulsevoip.net\",\n        \"1447@00310.impulsevoip.net\",\n        \"1448@00310.impulsevoip.net\",\n        \"1449@00310.impulsevoip.net\",\n        \"1450@00310.impulsevoip.net\",\n        \"1451@00310.impulsevoip.net\",\n        \"1329@00310.impulsevoip.net\",\n        \"1330@00310.impulsevoip.net\",\n        \"1331@00310.impulsevoip.net\",\n        \"1332@00310.impulsevoip.net\",\n        \"1333@00310.impulsevoip.net\",\n        \"1334@00310.impulsevoip.net\",\n        \"1335@00310.impulsevoip.net\",\n        \"1336@00310.impulsevoip.net\",\n        \"1337@00310.impulsevoip.net\",\n        \"1383@00310.impulsevoip.net\",\n        \"1384@00310.impulsevoip.net\",\n        \"1385@00310.impulsevoip.net\",\n        \"1386@00310.impulsevoip.net\",\n        \"1387@00310.impulsevoip.net\",\n        \"1388@00310.impulsevoip.net\",\n        \"1286@00310.impulsevoip.net\",\n        \"1287@00310.impulsevoip.net\",\n        \"1288@00310.impulsevoip.net\",\n        \"1289@00310.impulsevoip.net\",\n        \"1290@00310.impulsevoip.net\",\n        \"1291@00310.impulsevoip.net\",\n        \"1292@00310.impulsevoip.net\",\n        \"1293@00310.impulsevoip.net\",\n        \"1294@00310.impulsevoip.net\",\n        \"1295@00310.impulsevoip.net\",\n        \"1296@00310.impulsevoip.net\",\n        \"1297@00310.impulsevoip.net\",\n        \"1298@00310.impulsevoip.net\",\n        \"1299@00310.impulsevoip.net\",\n        \"1300@00310.impulsevoip.net\",\n        \"1301@00310.impulsevoip.net\",\n        \"1302@00310.impulsevoip.net\",\n        \"1303@00310.impulsevoip.net\",\n        \"1304@00310.impulsevoip.net\",\n        \"1305@00310.impulsevoip.net\",\n        \"1389@00310.impulsevoip.net\",\n        \"1390@00310.impulsevoip.net\",\n        \"1391@00310.impulsevoip.net\",\n        \"1392@00310.impulsevoip.net\",\n        \"1393@00310.impulsevoip.net\",\n        \"1394@00310.impulsevoip.net\",\n        \"1395@00310.impulsevoip.net\",\n        \"1376@00310.impulsevoip.net\",\n        \"1377@00310.impulsevoip.net\",\n        \"1378@00310.impulsevoip.net\",\n        \"1379@00310.impulsevoip.net\",\n        \"1380@00310.impulsevoip.net\",\n        \"1381@00310.impulsevoip.net\",\n        \"1382@00310.impulsevoip.net\",\n        \"1396@00310.impulsevoip.net\",\n        \"1397@00310.impulsevoip.net\",\n        \"1398@00310.impulsevoip.net\",\n        \"1399@00310.impulsevoip.net\",\n        \"1400@00310.impulsevoip.net\",\n        \"1401@00310.impulsevoip.net\",\n        \"1402@00310.impulsevoip.net\",\n        \"1403@00310.impulsevoip.net\",\n        \"1404@00310.impulsevoip.net\",\n        \"1405@00310.impulsevoip.net\",\n        \"1306@00310.impulsevoip.net\",\n        \"1307@00310.impulsevoip.net\",\n        \"1308@00310.impulsevoip.net\",\n        \"1309@00310.impulsevoip.net\",\n        \"1310@00310.impulsevoip.net\",\n        \"1311@00310.impulsevoip.net\",\n        \"1312@00310.impulsevoip.net\",\n        \"1313@00310.impulsevoip.net\",\n        \"1314@00310.impulsevoip.net\",\n        \"1315@00310.impulsevoip.net\",\n        \"1316@00310.impulsevoip.net\",\n        \"1317@00310.impulsevoip.net\",\n        \"1318@00310.impulsevoip.net\",\n        \"1319@00310.impulsevoip.net\",\n        \"1320@00310.impulsevoip.net\",\n        \"1321@00310.impulsevoip.net\",\n        \"1322@00310.impulsevoip.net\",\n        \"1323@00310.impulsevoip.net\",\n        \"1324@00310.impulsevoip.net\",\n        \"1325@00310.impulsevoip.net\",\n        \"1326@00310.impulsevoip.net\",\n        \"1327@00310.impulsevoip.net\",\n        \"1328@00310.impulsevoip.net\",\n        \"1406@00310.impulsevoip.net\",\n        \"1407@00310.impulsevoip.net\",\n        \"1408@00310.impulsevoip.net\",\n        \"1409@00310.impulsevoip.net\",\n        \"1410@00310.impulsevoip.net\",\n        \"1411@00310.impulsevoip.net\",\n        \"1412@00310.impulsevoip.net\",\n        \"1413@00310.impulsevoip.net\",\n        \"1414@00310.impulsevoip.net\",\n        \"1415@00310.impulsevoip.net\",\n        \"1416@00310.impulsevoip.net\",\n        \"1417@00310.impulsevoip.net\",\n        \"1418@00310.impulsevoip.net\",\n        \"1419@00310.impulsevoip.net\",\n        \"1420@00310.impulsevoip.net\",\n        \"1267@00310.impulsevoip.net\",\n        \"1268@00310.impulsevoip.net\",\n        \"1269@00310.impulsevoip.net\",\n        \"1270@00310.impulsevoip.net\",\n        \"1271@00310.impulsevoip.net\",\n        \"1272@00310.impulsevoip.net\",\n        \"1273@00310.impulsevoip.net\",\n        \"1274@00310.impulsevoip.net\",\n        \"1275@00310.impulsevoip.net\",\n        \"1276@00310.impulsevoip.net\",\n        \"1277@00310.impulsevoip.net\",\n        \"1278@00310.impulsevoip.net\",\n        \"1279@00310.impulsevoip.net\",\n        \"1280@00310.impulsevoip.net\",\n        \"1281@00310.impulsevoip.net\",\n        \"1282@00310.impulsevoip.net\",\n        \"1283@00310.impulsevoip.net\",\n        \"1284@00310.impulsevoip.net\",\n        \"1285@00310.impulsevoip.net\",\n        \"1349@00310.impulsevoip.net\",\n        \"1350@00310.impulsevoip.net\",\n        \"1351@00310.impulsevoip.net\",\n        \"1352@00310.impulsevoip.net\",\n        \"1353@00310.impulsevoip.net\",\n        \"1354@00310.impulsevoip.net\",\n        \"1355@00310.impulsevoip.net\",\n        \"1356@00310.impulsevoip.net\",\n        \"1357@00310.impulsevoip.net\",\n        \"1358@00310.impulsevoip.net\",\n        \"1359@00310.impulsevoip.net\",\n        \"1360@00310.impulsevoip.net\",\n        \"1361@00310.impulsevoip.net\",\n        \"1362@00310.impulsevoip.net\",\n        \"1363@00310.impulsevoip.net\",\n        \"1364@00310.impulsevoip.net\",\n        \"1365@00310.impulsevoip.net\",\n        \"1366@00310.impulsevoip.net\",\n        \"1452@00310.impulsevoip.net\",\n        \"3168@00310.impulsevoip.net\",\n        \"3169@00310.impulsevoip.net\",\n        \"3170@00310.impulsevoip.net\",\n        \"3171@00310.impulsevoip.net\",\n        \"1453@00310.impulsevoip.net\",\n        \"1454@00310.impulsevoip.net\",\n        \"1455@00310.impulsevoip.net\",\n        \"1456@00310.impulsevoip.net\",\n        \"1457@00310.impulsevoip.net\",\n        \"1458@00310.impulsevoip.net\",\n        \"1257@00310.impulsevoip.net\",\n        \"1258@00310.impulsevoip.net\",\n        \"1259@00310.impulsevoip.net\",\n        \"1260@00310.impulsevoip.net\",\n        \"1261@00310.impulsevoip.net\",\n        \"1262@00310.impulsevoip.net\",\n        \"1263@00310.impulsevoip.net\",\n        \"1264@00310.impulsevoip.net\",\n        \"1265@00310.impulsevoip.net\",\n        \"1266@00310.impulsevoip.net\",\n        \"1421@00310.impulsevoip.net\",\n        \"1422@00310.impulsevoip.net\",\n        \"1423@00310.impulsevoip.net\",\n        \"1424@00310.impulsevoip.net\",\n        \"1425@00310.impulsevoip.net\",\n        \"1426@00310.impulsevoip.net\",\n        \"1338@00310.impulsevoip.net\",\n        \"1339@00310.impulsevoip.net\",\n        \"1340@00310.impulsevoip.net\",\n        \"1341@00310.impulsevoip.net\",\n        \"1342@00310.impulsevoip.net\",\n        \"1343@00310.impulsevoip.net\",\n        \"1344@00310.impulsevoip.net\",\n        \"1345@00310.impulsevoip.net\",\n        \"1346@00310.impulsevoip.net\",\n        \"1347@00310.impulsevoip.net\",\n        \"1348@00310.impulsevoip.net\",\n        \"1459@00310.impulsevoip.net\",\n        \"1460@00310.impulsevoip.net\",\n        \"imp00310-03-trunk@00310.impulsevoip.net\",\n        \"1461@00310.impulsevoip.net\",\n        \"1462@00310.impulsevoip.net\",\n        \"1216@00310.impulsevoip.net\",\n        \"1217@00310.impulsevoip.net\",\n        \"1218@00310.impulsevoip.net\",\n        \"1219@00310.impulsevoip.net\",\n        \"1220@00310.impulsevoip.net\",\n        \"1221@00310.impulsevoip.net\",\n        \"1222@00310.impulsevoip.net\",\n        \"1223@00310.impulsevoip.net\",\n        \"1224@00310.impulsevoip.net\",\n        \"1225@00310.impulsevoip.net\",\n        \"1226@00310.impulsevoip.net\",\n        \"1227@00310.impulsevoip.net\",\n        \"1228@00310.impulsevoip.net\",\n        \"1229@00310.impulsevoip.net\",\n        \"1230@00310.impulsevoip.net\",\n        \"1231@00310.impulsevoip.net\",\n        \"1232@00310.impulsevoip.net\",\n        \"1233@00310.impulsevoip.net\",\n        \"1234@00310.impulsevoip.net\",\n        \"1235@00310.impulsevoip.net\",\n        \"1236@00310.impulsevoip.net\",\n        \"1237@00310.impulsevoip.net\",\n        \"1238@00310.impulsevoip.net\",\n        \"1239@00310.impulsevoip.net\",\n        \"1240@00310.impulsevoip.net\",\n        \"1241@00310.impulsevoip.net\",\n        \"1242@00310.impulsevoip.net\",\n        \"1243@00310.impulsevoip.net\",\n        \"1244@00310.impulsevoip.net\",\n        \"1245@00310.impulsevoip.net\",\n        \"1246@00310.impulsevoip.net\",\n        \"1247@00310.impulsevoip.net\",\n        \"1248@00310.impulsevoip.net\",\n        \"1249@00310.impulsevoip.net\",\n        \"1816@00310.impulsevoip.net\",\n        \"1817@00310.impulsevoip.net\",\n        \"1818@00310.impulsevoip.net\",\n        \"1819@00310.impulsevoip.net\",\n        \"1820@00310.impulsevoip.net\",\n        \"1821@00310.impulsevoip.net\",\n        \"1822@00310.impulsevoip.net\",\n        \"1823@00310.impulsevoip.net\",\n        \"1824@00310.impulsevoip.net\",\n        \"1825@00310.impulsevoip.net\",\n        \"1826@00310.impulsevoip.net\",\n        \"1827@00310.impulsevoip.net\",\n        \"1828@00310.impulsevoip.net\",\n        \"1829@00310.impulsevoip.net\",\n        \"1830@00310.impulsevoip.net\",\n        \"1831@00310.impulsevoip.net\",\n        \"1832@00310.impulsevoip.net\",\n        \"1833@00310.impulsevoip.net\",\n        \"1834@00310.impulsevoip.net\",\n        \"1835@00310.impulsevoip.net\",\n        \"1836@00310.impulsevoip.net\",\n        \"1837@00310.impulsevoip.net\",\n        \"1838@00310.impulsevoip.net\",\n        \"1839@00310.impulsevoip.net\",\n        \"1840@00310.impulsevoip.net\",\n        \"1841@00310.impulsevoip.net\",\n        \"1842@00310.impulsevoip.net\",\n        \"1843@00310.impulsevoip.net\",\n        \"1844@00310.impulsevoip.net\",\n        \"1845@00310.impulsevoip.net\",\n        \"1846@00310.impulsevoip.net\",\n        \"1847@00310.impulsevoip.net\",\n        \"1848@00310.impulsevoip.net\",\n        \"1849@00310.impulsevoip.net\",\n        \"1850@00310.impulsevoip.net\",\n        \"1851@00310.impulsevoip.net\",\n        \"1852@00310.impulsevoip.net\",\n        \"1853@00310.impulsevoip.net\",\n        \"1854@00310.impulsevoip.net\",\n        \"1855@00310.impulsevoip.net\",\n        \"1856@00310.impulsevoip.net\",\n        \"1857@00310.impulsevoip.net\",\n        \"1858@00310.impulsevoip.net\",\n        \"1859@00310.impulsevoip.net\",\n        \"1860@00310.impulsevoip.net\",\n        \"1861@00310.impulsevoip.net\",\n        \"1862@00310.impulsevoip.net\",\n        \"1863@00310.impulsevoip.net\",\n        \"1864@00310.impulsevoip.net\",\n        \"1865@00310.impulsevoip.net\",\n        \"1866@00310.impulsevoip.net\",\n        \"1867@00310.impulsevoip.net\",\n        \"1868@00310.impulsevoip.net\",\n        \"1869@00310.impulsevoip.net\",\n        \"1870@00310.impulsevoip.net\",\n        \"1871@00310.impulsevoip.net\",\n        \"1872@00310.impulsevoip.net\",\n        \"1873@00310.impulsevoip.net\",\n        \"1874@00310.impulsevoip.net\",\n        \"1875@00310.impulsevoip.net\",\n        \"1876@00310.impulsevoip.net\",\n        \"1877@00310.impulsevoip.net\",\n        \"1878@00310.impulsevoip.net\",\n        \"1879@00310.impulsevoip.net\",\n        \"1880@00310.impulsevoip.net\",\n        \"1881@00310.impulsevoip.net\",\n        \"1882@00310.impulsevoip.net\",\n        \"1883@00310.impulsevoip.net\",\n        \"1884@00310.impulsevoip.net\",\n        \"1885@00310.impulsevoip.net\",\n        \"1886@00310.impulsevoip.net\",\n        \"1887@00310.impulsevoip.net\",\n        \"1888@00310.impulsevoip.net\",\n        \"1889@00310.impulsevoip.net\",\n        \"1890@00310.impulsevoip.net\",\n        \"1891@00310.impulsevoip.net\",\n        \"1892@00310.impulsevoip.net\",\n        \"1893@00310.impulsevoip.net\",\n        \"1894@00310.impulsevoip.net\",\n        \"1895@00310.impulsevoip.net\",\n        \"1896@00310.impulsevoip.net\",\n        \"1897@00310.impulsevoip.net\",\n        \"1898@00310.impulsevoip.net\",\n        \"1899@00310.impulsevoip.net\",\n        \"1900@00310.impulsevoip.net\",\n        \"1901@00310.impulsevoip.net\",\n        \"1902@00310.impulsevoip.net\",\n        \"1903@00310.impulsevoip.net\",\n        \"1904@00310.impulsevoip.net\",\n        \"1905@00310.impulsevoip.net\",\n        \"1906@00310.impulsevoip.net\",\n        \"1907@00310.impulsevoip.net\",\n        \"1908@00310.impulsevoip.net\",\n        \"1909@00310.impulsevoip.net\",\n        \"1910@00310.impulsevoip.net\",\n        \"2424@00310.impulsevoip.net\",\n        \"2425@00310.impulsevoip.net\",\n        \"2426@00310.impulsevoip.net\",\n        \"2427@00310.impulsevoip.net\",\n        \"2428@00310.impulsevoip.net\",\n        \"2429@00310.impulsevoip.net\",\n        \"2430@00310.impulsevoip.net\",\n        \"2431@00310.impulsevoip.net\",\n        \"2432@00310.impulsevoip.net\",\n        \"2433@00310.impulsevoip.net\",\n        \"2434@00310.impulsevoip.net\",\n        \"2435@00310.impulsevoip.net\",\n        \"2436@00310.impulsevoip.net\",\n        \"2437@00310.impulsevoip.net\",\n        \"2438@00310.impulsevoip.net\",\n        \"2439@00310.impulsevoip.net\",\n        \"2440@00310.impulsevoip.net\",\n        \"2441@00310.impulsevoip.net\",\n        \"2442@00310.impulsevoip.net\",\n        \"2443@00310.impulsevoip.net\",\n        \"2444@00310.impulsevoip.net\",\n        \"2445@00310.impulsevoip.net\",\n        \"2446@00310.impulsevoip.net\",\n        \"2447@00310.impulsevoip.net\",\n        \"2448@00310.impulsevoip.net\",\n        \"2449@00310.impulsevoip.net\",\n        \"2450@00310.impulsevoip.net\",\n        \"2451@00310.impulsevoip.net\",\n        \"2452@00310.impulsevoip.net\",\n        \"2453@00310.impulsevoip.net\",\n        \"2454@00310.impulsevoip.net\",\n        \"2455@00310.impulsevoip.net\",\n        \"2456@00310.impulsevoip.net\",\n        \"2457@00310.impulsevoip.net\",\n        \"2458@00310.impulsevoip.net\",\n        \"2459@00310.impulsevoip.net\",\n        \"2460@00310.impulsevoip.net\",\n        \"2461@00310.impulsevoip.net\",\n        \"2462@00310.impulsevoip.net\",\n        \"2463@00310.impulsevoip.net\",\n        \"2464@00310.impulsevoip.net\",\n        \"2465@00310.impulsevoip.net\",\n        \"2466@00310.impulsevoip.net\",\n        \"2467@00310.impulsevoip.net\",\n        \"2468@00310.impulsevoip.net\",\n        \"2469@00310.impulsevoip.net\",\n        \"2470@00310.impulsevoip.net\",\n        \"2471@00310.impulsevoip.net\",\n        \"2472@00310.impulsevoip.net\",\n        \"2473@00310.impulsevoip.net\",\n        \"2474@00310.impulsevoip.net\",\n        \"2475@00310.impulsevoip.net\",\n        \"2476@00310.impulsevoip.net\",\n        \"2477@00310.impulsevoip.net\",\n        \"2478@00310.impulsevoip.net\",\n        \"2479@00310.impulsevoip.net\",\n        \"2480@00310.impulsevoip.net\",\n        \"2481@00310.impulsevoip.net\",\n        \"2482@00310.impulsevoip.net\",\n        \"2483@00310.impulsevoip.net\",\n        \"1463@00310.impulsevoip.net\",\n        \"1464@00310.impulsevoip.net\",\n        \"1465@00310.impulsevoip.net\",\n        \"1466@00310.impulsevoip.net\",\n        \"1467@00310.impulsevoip.net\",\n        \"1468@00310.impulsevoip.net\",\n        \"1469@00310.impulsevoip.net\",\n        \"1470@00310.impulsevoip.net\",\n        \"1471@00310.impulsevoip.net\",\n        \"1472@00310.impulsevoip.net\",\n        \"1473@00310.impulsevoip.net\",\n        \"1474@00310.impulsevoip.net\",\n        \"1475@00310.impulsevoip.net\",\n        \"1476@00310.impulsevoip.net\",\n        \"1477@00310.impulsevoip.net\",\n        \"1478@00310.impulsevoip.net\",\n        \"1479@00310.impulsevoip.net\",\n        \"1480@00310.impulsevoip.net\",\n        \"1481@00310.impulsevoip.net\",\n        \"1482@00310.impulsevoip.net\",\n        \"1483@00310.impulsevoip.net\",\n        \"1484@00310.impulsevoip.net\",\n        \"1485@00310.impulsevoip.net\",\n        \"1486@00310.impulsevoip.net\",\n        \"1487@00310.impulsevoip.net\",\n        \"1488@00310.impulsevoip.net\",\n        \"1489@00310.impulsevoip.net\",\n        \"1490@00310.impulsevoip.net\",\n        \"1491@00310.impulsevoip.net\",\n        \"1492@00310.impulsevoip.net\",\n        \"1493@00310.impulsevoip.net\",\n        \"1494@00310.impulsevoip.net\",\n        \"1495@00310.impulsevoip.net\",\n        \"1496@00310.impulsevoip.net\",\n        \"1497@00310.impulsevoip.net\",\n        \"1498@00310.impulsevoip.net\",\n        \"1499@00310.impulsevoip.net\",\n        \"1500@00310.impulsevoip.net\",\n        \"1501@00310.impulsevoip.net\",\n        \"1502@00310.impulsevoip.net\",\n        \"1503@00310.impulsevoip.net\",\n        \"1504@00310.impulsevoip.net\",\n        \"1505@00310.impulsevoip.net\",\n        \"1506@00310.impulsevoip.net\",\n        \"1507@00310.impulsevoip.net\",\n        \"1508@00310.impulsevoip.net\",\n        \"1509@00310.impulsevoip.net\",\n        \"1510@00310.impulsevoip.net\",\n        \"1511@00310.impulsevoip.net\",\n        \"1512@00310.impulsevoip.net\",\n        \"1513@00310.impulsevoip.net\",\n        \"1514@00310.impulsevoip.net\",\n        \"1515@00310.impulsevoip.net\",\n        \"1516@00310.impulsevoip.net\",\n        \"1517@00310.impulsevoip.net\",\n        \"1518@00310.impulsevoip.net\",\n        \"1519@00310.impulsevoip.net\",\n        \"1520@00310.impulsevoip.net\",\n        \"1521@00310.impulsevoip.net\",\n        \"1522@00310.impulsevoip.net\",\n        \"1523@00310.impulsevoip.net\",\n        \"1524@00310.impulsevoip.net\",\n        \"1525@00310.impulsevoip.net\",\n        \"1526@00310.impulsevoip.net\",\n        \"1527@00310.impulsevoip.net\",\n        \"1528@00310.impulsevoip.net\",\n        \"1529@00310.impulsevoip.net\",\n        \"1530@00310.impulsevoip.net\",\n        \"1531@00310.impulsevoip.net\",\n        \"1532@00310.impulsevoip.net\",\n        \"1533@00310.impulsevoip.net\",\n        \"1534@00310.impulsevoip.net\",\n        \"1535@00310.impulsevoip.net\",\n        \"1536@00310.impulsevoip.net\",\n        \"1537@00310.impulsevoip.net\",\n        \"1538@00310.impulsevoip.net\",\n        \"1539@00310.impulsevoip.net\",\n        \"1540@00310.impulsevoip.net\",\n        \"1541@00310.impulsevoip.net\",\n        \"1542@00310.impulsevoip.net\",\n        \"1543@00310.impulsevoip.net\",\n        \"1544@00310.impulsevoip.net\",\n        \"1545@00310.impulsevoip.net\",\n        \"1546@00310.impulsevoip.net\",\n        \"1547@00310.impulsevoip.net\",\n        \"1548@00310.impulsevoip.net\",\n        \"1549@00310.impulsevoip.net\",\n        \"1550@00310.impulsevoip.net\",\n        \"1551@00310.impulsevoip.net\",\n        \"1552@00310.impulsevoip.net\",\n        \"1553@00310.impulsevoip.net\",\n        \"1554@00310.impulsevoip.net\",\n        \"1555@00310.impulsevoip.net\",\n        \"1556@00310.impulsevoip.net\",\n        \"1557@00310.impulsevoip.net\",\n        \"1558@00310.impulsevoip.net\",\n        \"1559@00310.impulsevoip.net\",\n        \"1560@00310.impulsevoip.net\",\n        \"1561@00310.impulsevoip.net\",\n        \"1562@00310.impulsevoip.net\",\n        \"1563@00310.impulsevoip.net\",\n        \"1564@00310.impulsevoip.net\",\n        \"1565@00310.impulsevoip.net\",\n        \"1566@00310.impulsevoip.net\",\n        \"1567@00310.impulsevoip.net\",\n        \"1568@00310.impulsevoip.net\",\n        \"1569@00310.impulsevoip.net\",\n        \"1570@00310.impulsevoip.net\",\n        \"1571@00310.impulsevoip.net\",\n        \"1572@00310.impulsevoip.net\",\n        \"1573@00310.impulsevoip.net\",\n        \"1574@00310.impulsevoip.net\",\n        \"1575@00310.impulsevoip.net\",\n        \"1576@00310.impulsevoip.net\",\n        \"1577@00310.impulsevoip.net\",\n        \"1578@00310.impulsevoip.net\",\n        \"1579@00310.impulsevoip.net\",\n        \"1580@00310.impulsevoip.net\",\n        \"1581@00310.impulsevoip.net\",\n        \"1582@00310.impulsevoip.net\",\n        \"1583@00310.impulsevoip.net\",\n        \"1584@00310.impulsevoip.net\",\n        \"1585@00310.impulsevoip.net\",\n        \"1586@00310.impulsevoip.net\",\n        \"1587@00310.impulsevoip.net\",\n        \"1588@00310.impulsevoip.net\",\n        \"1589@00310.impulsevoip.net\",\n        \"1590@00310.impulsevoip.net\",\n        \"1591@00310.impulsevoip.net\",\n        \"1592@00310.impulsevoip.net\",\n        \"1593@00310.impulsevoip.net\",\n        \"1594@00310.impulsevoip.net\",\n        \"1595@00310.impulsevoip.net\",\n        \"1596@00310.impulsevoip.net\",\n        \"1597@00310.impulsevoip.net\",\n        \"1598@00310.impulsevoip.net\",\n        \"1599@00310.impulsevoip.net\",\n        \"1600@00310.impulsevoip.net\",\n        \"1601@00310.impulsevoip.net\",\n        \"1602@00310.impulsevoip.net\",\n        \"1603@00310.impulsevoip.net\",\n        \"1604@00310.impulsevoip.net\",\n        \"1605@00310.impulsevoip.net\",\n        \"1606@00310.impulsevoip.net\",\n        \"1607@00310.impulsevoip.net\",\n        \"1608@00310.impulsevoip.net\",\n        \"1609@00310.impulsevoip.net\",\n        \"1610@00310.impulsevoip.net\",\n        \"1611@00310.impulsevoip.net\",\n        \"1612@00310.impulsevoip.net\",\n        \"1613@00310.impulsevoip.net\",\n        \"1614@00310.impulsevoip.net\",\n        \"1615@00310.impulsevoip.net\",\n        \"1616@00310.impulsevoip.net\",\n        \"1617@00310.impulsevoip.net\",\n        \"1618@00310.impulsevoip.net\",\n        \"1619@00310.impulsevoip.net\",\n        \"1620@00310.impulsevoip.net\",\n        \"1621@00310.impulsevoip.net\",\n        \"1622@00310.impulsevoip.net\",\n        \"1623@00310.impulsevoip.net\",\n        \"1624@00310.impulsevoip.net\",\n        \"1625@00310.impulsevoip.net\",\n        \"1626@00310.impulsevoip.net\",\n        \"1627@00310.impulsevoip.net\",\n        \"1628@00310.impulsevoip.net\",\n        \"1629@00310.impulsevoip.net\",\n        \"1630@00310.impulsevoip.net\",\n        \"1631@00310.impulsevoip.net\",\n        \"1632@00310.impulsevoip.net\",\n        \"1633@00310.impulsevoip.net\",\n        \"1634@00310.impulsevoip.net\",\n        \"1635@00310.impulsevoip.net\",\n        \"1636@00310.impulsevoip.net\",\n        \"1637@00310.impulsevoip.net\",\n        \"1638@00310.impulsevoip.net\",\n        \"1639@00310.impulsevoip.net\",\n        \"1640@00310.impulsevoip.net\",\n        \"1641@00310.impulsevoip.net\",\n        \"1642@00310.impulsevoip.net\",\n        \"1643@00310.impulsevoip.net\",\n        \"1644@00310.impulsevoip.net\",\n        \"1645@00310.impulsevoip.net\",\n        \"1646@00310.impulsevoip.net\",\n        \"1647@00310.impulsevoip.net\",\n        \"1648@00310.impulsevoip.net\",\n        \"1649@00310.impulsevoip.net\",\n        \"1650@00310.impulsevoip.net\",\n        \"1651@00310.impulsevoip.net\",\n        \"1652@00310.impulsevoip.net\",\n        \"1653@00310.impulsevoip.net\",\n        \"1654@00310.impulsevoip.net\",\n        \"1655@00310.impulsevoip.net\",\n        \"1656@00310.impulsevoip.net\",\n        \"1657@00310.impulsevoip.net\",\n        \"1658@00310.impulsevoip.net\",\n        \"1659@00310.impulsevoip.net\",\n        \"1660@00310.impulsevoip.net\",\n        \"1661@00310.impulsevoip.net\",\n        \"1662@00310.impulsevoip.net\",\n        \"1663@00310.impulsevoip.net\",\n        \"1664@00310.impulsevoip.net\",\n        \"1665@00310.impulsevoip.net\",\n        \"1666@00310.impulsevoip.net\",\n        \"1667@00310.impulsevoip.net\",\n        \"1668@00310.impulsevoip.net\",\n        \"1669@00310.impulsevoip.net\",\n        \"1670@00310.impulsevoip.net\",\n        \"1671@00310.impulsevoip.net\",\n        \"1672@00310.impulsevoip.net\",\n        \"1673@00310.impulsevoip.net\",\n        \"1674@00310.impulsevoip.net\",\n        \"1675@00310.impulsevoip.net\",\n        \"1676@00310.impulsevoip.net\",\n        \"1677@00310.impulsevoip.net\",\n        \"1678@00310.impulsevoip.net\",\n        \"1679@00310.impulsevoip.net\",\n        \"1680@00310.impulsevoip.net\",\n        \"1681@00310.impulsevoip.net\",\n        \"1682@00310.impulsevoip.net\",\n        \"1683@00310.impulsevoip.net\",\n        \"1684@00310.impulsevoip.net\",\n        \"1685@00310.impulsevoip.net\",\n        \"1686@00310.impulsevoip.net\",\n        \"1687@00310.impulsevoip.net\",\n        \"1688@00310.impulsevoip.net\",\n        \"1689@00310.impulsevoip.net\",\n        \"1690@00310.impulsevoip.net\",\n        \"1691@00310.impulsevoip.net\",\n        \"1692@00310.impulsevoip.net\",\n        \"1693@00310.impulsevoip.net\",\n        \"1694@00310.impulsevoip.net\",\n        \"1695@00310.impulsevoip.net\",\n        \"1696@00310.impulsevoip.net\",\n        \"1697@00310.impulsevoip.net\",\n        \"1698@00310.impulsevoip.net\",\n        \"1699@00310.impulsevoip.net\",\n        \"1700@00310.impulsevoip.net\",\n        \"1701@00310.impulsevoip.net\",\n        \"1702@00310.impulsevoip.net\",\n        \"1703@00310.impulsevoip.net\",\n        \"1704@00310.impulsevoip.net\",\n        \"1705@00310.impulsevoip.net\",\n        \"1706@00310.impulsevoip.net\",\n        \"1707@00310.impulsevoip.net\",\n        \"1708@00310.impulsevoip.net\",\n        \"1709@00310.impulsevoip.net\",\n        \"1710@00310.impulsevoip.net\",\n        \"1711@00310.impulsevoip.net\",\n        \"1712@00310.impulsevoip.net\",\n        \"1713@00310.impulsevoip.net\",\n        \"1714@00310.impulsevoip.net\",\n        \"1715@00310.impulsevoip.net\",\n        \"1716@00310.impulsevoip.net\",\n        \"1717@00310.impulsevoip.net\",\n        \"1972@00310.impulsevoip.net\",\n        \"1973@00310.impulsevoip.net\",\n        \"1974@00310.impulsevoip.net\",\n        \"1975@00310.impulsevoip.net\",\n        \"1976@00310.impulsevoip.net\",\n        \"1977@00310.impulsevoip.net\",\n        \"1978@00310.impulsevoip.net\",\n        \"1979@00310.impulsevoip.net\",\n        \"1980@00310.impulsevoip.net\",\n        \"1981@00310.impulsevoip.net\",\n        \"1982@00310.impulsevoip.net\",\n        \"1983@00310.impulsevoip.net\",\n        \"1984@00310.impulsevoip.net\",\n        \"1985@00310.impulsevoip.net\",\n        \"1986@00310.impulsevoip.net\",\n        \"1987@00310.impulsevoip.net\",\n        \"1988@00310.impulsevoip.net\",\n        \"1989@00310.impulsevoip.net\",\n        \"1990@00310.impulsevoip.net\",\n        \"1991@00310.impulsevoip.net\",\n        \"1992@00310.impulsevoip.net\",\n        \"1993@00310.impulsevoip.net\",\n        \"1994@00310.impulsevoip.net\",\n        \"1995@00310.impulsevoip.net\",\n        \"1996@00310.impulsevoip.net\",\n        \"1997@00310.impulsevoip.net\",\n        \"1998@00310.impulsevoip.net\",\n        \"1999@00310.impulsevoip.net\",\n        \"2000@00310.impulsevoip.net\",\n        \"2001@00310.impulsevoip.net\",\n        \"2002@00310.impulsevoip.net\",\n        \"2003@00310.impulsevoip.net\",\n        \"2004@00310.impulsevoip.net\",\n        \"2005@00310.impulsevoip.net\",\n        \"2006@00310.impulsevoip.net\",\n        \"2007@00310.impulsevoip.net\",\n        \"2008@00310.impulsevoip.net\",\n        \"2009@00310.impulsevoip.net\",\n        \"2010@00310.impulsevoip.net\",\n        \"2011@00310.impulsevoip.net\",\n        \"2012@00310.impulsevoip.net\",\n        \"2013@00310.impulsevoip.net\",\n        \"2014@00310.impulsevoip.net\",\n        \"2015@00310.impulsevoip.net\",\n        \"2016@00310.impulsevoip.net\",\n        \"2017@00310.impulsevoip.net\",\n        \"2018@00310.impulsevoip.net\",\n        \"2019@00310.impulsevoip.net\",\n        \"2020@00310.impulsevoip.net\",\n        \"2021@00310.impulsevoip.net\",\n        \"2022@00310.impulsevoip.net\",\n        \"2023@00310.impulsevoip.net\",\n        \"2024@00310.impulsevoip.net\",\n        \"2025@00310.impulsevoip.net\",\n        \"2026@00310.impulsevoip.net\",\n        \"2027@00310.impulsevoip.net\",\n        \"2028@00310.impulsevoip.net\",\n        \"2029@00310.impulsevoip.net\",\n        \"2030@00310.impulsevoip.net\",\n        \"2031@00310.impulsevoip.net\",\n        \"2032@00310.impulsevoip.net\",\n        \"2033@00310.impulsevoip.net\",\n        \"2034@00310.impulsevoip.net\",\n        \"2035@00310.impulsevoip.net\",\n        \"2036@00310.impulsevoip.net\",\n        \"2037@00310.impulsevoip.net\",\n        \"2038@00310.impulsevoip.net\",\n        \"2039@00310.impulsevoip.net\",\n        \"2040@00310.impulsevoip.net\",\n        \"2041@00310.impulsevoip.net\",\n        \"2042@00310.impulsevoip.net\",\n        \"2043@00310.impulsevoip.net\",\n        \"2044@00310.impulsevoip.net\",\n        \"2045@00310.impulsevoip.net\",\n        \"2046@00310.impulsevoip.net\",\n        \"2047@00310.impulsevoip.net\",\n        \"2048@00310.impulsevoip.net\",\n        \"2049@00310.impulsevoip.net\",\n        \"2050@00310.impulsevoip.net\",\n        \"2051@00310.impulsevoip.net\",\n        \"2052@00310.impulsevoip.net\",\n        \"2053@00310.impulsevoip.net\",\n        \"2054@00310.impulsevoip.net\",\n        \"2055@00310.impulsevoip.net\",\n        \"2056@00310.impulsevoip.net\",\n        \"2057@00310.impulsevoip.net\",\n        \"2058@00310.impulsevoip.net\",\n        \"2059@00310.impulsevoip.net\",\n        \"2060@00310.impulsevoip.net\",\n        \"2061@00310.impulsevoip.net\",\n        \"2062@00310.impulsevoip.net\",\n        \"2063@00310.impulsevoip.net\",\n        \"2064@00310.impulsevoip.net\",\n        \"2065@00310.impulsevoip.net\",\n        \"2066@00310.impulsevoip.net\",\n        \"2067@00310.impulsevoip.net\",\n        \"2068@00310.impulsevoip.net\",\n        \"2069@00310.impulsevoip.net\",\n        \"2070@00310.impulsevoip.net\",\n        \"2071@00310.impulsevoip.net\",\n        \"2072@00310.impulsevoip.net\",\n        \"2073@00310.impulsevoip.net\",\n        \"2074@00310.impulsevoip.net\",\n        \"2075@00310.impulsevoip.net\",\n        \"2076@00310.impulsevoip.net\",\n        \"2077@00310.impulsevoip.net\",\n        \"2078@00310.impulsevoip.net\",\n        \"2079@00310.impulsevoip.net\",\n        \"2080@00310.impulsevoip.net\",\n        \"2081@00310.impulsevoip.net\",\n        \"2082@00310.impulsevoip.net\",\n        \"2083@00310.impulsevoip.net\",\n        \"2084@00310.impulsevoip.net\",\n        \"2085@00310.impulsevoip.net\",\n        \"2086@00310.impulsevoip.net\",\n        \"2087@00310.impulsevoip.net\",\n        \"2088@00310.impulsevoip.net\",\n        \"2089@00310.impulsevoip.net\",\n        \"2090@00310.impulsevoip.net\",\n        \"2091@00310.impulsevoip.net\",\n        \"2092@00310.impulsevoip.net\",\n        \"2093@00310.impulsevoip.net\",\n        \"2094@00310.impulsevoip.net\",\n        \"2095@00310.impulsevoip.net\",\n        \"2096@00310.impulsevoip.net\",\n        \"2097@00310.impulsevoip.net\",\n        \"2098@00310.impulsevoip.net\",\n        \"2099@00310.impulsevoip.net\",\n        \"2100@00310.impulsevoip.net\",\n        \"2101@00310.impulsevoip.net\",\n        \"2102@00310.impulsevoip.net\",\n        \"2103@00310.impulsevoip.net\",\n        \"2104@00310.impulsevoip.net\",\n        \"2105@00310.impulsevoip.net\",\n        \"2106@00310.impulsevoip.net\",\n        \"2107@00310.impulsevoip.net\",\n        \"2108@00310.impulsevoip.net\",\n        \"2109@00310.impulsevoip.net\",\n        \"2110@00310.impulsevoip.net\",\n        \"2111@00310.impulsevoip.net\",\n        \"2112@00310.impulsevoip.net\",\n        \"2113@00310.impulsevoip.net\",\n        \"2114@00310.impulsevoip.net\",\n        \"2115@00310.impulsevoip.net\",\n        \"2116@00310.impulsevoip.net\",\n        \"2117@00310.impulsevoip.net\",\n        \"2118@00310.impulsevoip.net\",\n        \"2119@00310.impulsevoip.net\",\n        \"2120@00310.impulsevoip.net\",\n        \"2121@00310.impulsevoip.net\",\n        \"2122@00310.impulsevoip.net\",\n        \"2123@00310.impulsevoip.net\",\n        \"2124@00310.impulsevoip.net\",\n        \"2125@00310.impulsevoip.net\",\n        \"2126@00310.impulsevoip.net\",\n        \"2127@00310.impulsevoip.net\",\n        \"2128@00310.impulsevoip.net\",\n        \"2129@00310.impulsevoip.net\",\n        \"2130@00310.impulsevoip.net\",\n        \"2131@00310.impulsevoip.net\",\n        \"2132@00310.impulsevoip.net\",\n        \"2133@00310.impulsevoip.net\",\n        \"2134@00310.impulsevoip.net\",\n        \"2135@00310.impulsevoip.net\",\n        \"2136@00310.impulsevoip.net\",\n        \"2137@00310.impulsevoip.net\",\n        \"2138@00310.impulsevoip.net\",\n        \"2139@00310.impulsevoip.net\",\n        \"2140@00310.impulsevoip.net\",\n        \"2141@00310.impulsevoip.net\",\n        \"2142@00310.impulsevoip.net\",\n        \"2143@00310.impulsevoip.net\",\n        \"2144@00310.impulsevoip.net\",\n        \"2145@00310.impulsevoip.net\",\n        \"2146@00310.impulsevoip.net\",\n        \"2147@00310.impulsevoip.net\",\n        \"2148@00310.impulsevoip.net\",\n        \"2149@00310.impulsevoip.net\",\n        \"2150@00310.impulsevoip.net\",\n        \"2151@00310.impulsevoip.net\",\n        \"2152@00310.impulsevoip.net\",\n        \"2153@00310.impulsevoip.net\",\n        \"2154@00310.impulsevoip.net\",\n        \"2155@00310.impulsevoip.net\",\n        \"2156@00310.impulsevoip.net\",\n        \"2157@00310.impulsevoip.net\",\n        \"2158@00310.impulsevoip.net\",\n        \"2159@00310.impulsevoip.net\",\n        \"2160@00310.impulsevoip.net\",\n        \"2161@00310.impulsevoip.net\",\n        \"2162@00310.impulsevoip.net\",\n        \"2163@00310.impulsevoip.net\",\n        \"2164@00310.impulsevoip.net\",\n        \"2165@00310.impulsevoip.net\",\n        \"2166@00310.impulsevoip.net\",\n        \"2167@00310.impulsevoip.net\",\n        \"2680@00310.impulsevoip.net\",\n        \"2681@00310.impulsevoip.net\",\n        \"2682@00310.impulsevoip.net\",\n        \"2683@00310.impulsevoip.net\",\n        \"2684@00310.impulsevoip.net\",\n        \"2685@00310.impulsevoip.net\",\n        \"2686@00310.impulsevoip.net\",\n        \"2687@00310.impulsevoip.net\",\n        \"2688@00310.impulsevoip.net\",\n        \"2689@00310.impulsevoip.net\",\n        \"2690@00310.impulsevoip.net\",\n        \"2691@00310.impulsevoip.net\",\n        \"2692@00310.impulsevoip.net\",\n        \"2693@00310.impulsevoip.net\",\n        \"2694@00310.impulsevoip.net\",\n        \"2695@00310.impulsevoip.net\",\n        \"2696@00310.impulsevoip.net\",\n        \"2697@00310.impulsevoip.net\",\n        \"2698@00310.impulsevoip.net\",\n        \"2699@00310.impulsevoip.net\",\n        \"2700@00310.impulsevoip.net\",\n        \"2701@00310.impulsevoip.net\",\n        \"2702@00310.impulsevoip.net\",\n        \"2703@00310.impulsevoip.net\",\n        \"2704@00310.impulsevoip.net\",\n        \"2705@00310.impulsevoip.net\",\n        \"2706@00310.impulsevoip.net\",\n        \"2707@00310.impulsevoip.net\",\n        \"2708@00310.impulsevoip.net\",\n        \"2709@00310.impulsevoip.net\",\n        \"2710@00310.impulsevoip.net\",\n        \"2711@00310.impulsevoip.net\",\n        \"2712@00310.impulsevoip.net\",\n        \"2713@00310.impulsevoip.net\",\n        \"2714@00310.impulsevoip.net\",\n        \"2715@00310.impulsevoip.net\",\n        \"2716@00310.impulsevoip.net\",\n        \"2717@00310.impulsevoip.net\",\n        \"2718@00310.impulsevoip.net\",\n        \"2719@00310.impulsevoip.net\",\n        \"2720@00310.impulsevoip.net\",\n        \"2721@00310.impulsevoip.net\",\n        \"2722@00310.impulsevoip.net\",\n        \"2723@00310.impulsevoip.net\",\n        \"2724@00310.impulsevoip.net\",\n        \"2725@00310.impulsevoip.net\",\n        \"2726@00310.impulsevoip.net\",\n        \"2727@00310.impulsevoip.net\",\n        \"2728@00310.impulsevoip.net\",\n        \"2729@00310.impulsevoip.net\",\n        \"2730@00310.impulsevoip.net\",\n        \"2731@00310.impulsevoip.net\",\n        \"2732@00310.impulsevoip.net\",\n        \"2733@00310.impulsevoip.net\",\n        \"2734@00310.impulsevoip.net\",\n        \"2735@00310.impulsevoip.net\",\n        \"2736@00310.impulsevoip.net\",\n        \"2737@00310.impulsevoip.net\",\n        \"2738@00310.impulsevoip.net\",\n        \"2739@00310.impulsevoip.net\",\n        \"2740@00310.impulsevoip.net\",\n        \"2741@00310.impulsevoip.net\",\n        \"2742@00310.impulsevoip.net\",\n        \"2743@00310.impulsevoip.net\",\n        \"2744@00310.impulsevoip.net\",\n        \"2745@00310.impulsevoip.net\",\n        \"2746@00310.impulsevoip.net\",\n        \"2747@00310.impulsevoip.net\",\n        \"2748@00310.impulsevoip.net\",\n        \"2749@00310.impulsevoip.net\",\n        \"2750@00310.impulsevoip.net\",\n        \"2751@00310.impulsevoip.net\",\n        \"2752@00310.impulsevoip.net\",\n        \"2753@00310.impulsevoip.net\",\n        \"2754@00310.impulsevoip.net\",\n        \"2755@00310.impulsevoip.net\",\n        \"2756@00310.impulsevoip.net\",\n        \"2757@00310.impulsevoip.net\",\n        \"2758@00310.impulsevoip.net\",\n        \"2759@00310.impulsevoip.net\",\n        \"2760@00310.impulsevoip.net\",\n        \"2761@00310.impulsevoip.net\",\n        \"2762@00310.impulsevoip.net\",\n        \"2763@00310.impulsevoip.net\",\n        \"2764@00310.impulsevoip.net\",\n        \"2765@00310.impulsevoip.net\",\n        \"2766@00310.impulsevoip.net\",\n        \"2767@00310.impulsevoip.net\",\n        \"2768@00310.impulsevoip.net\",\n        \"2769@00310.impulsevoip.net\",\n        \"2770@00310.impulsevoip.net\",\n        \"2771@00310.impulsevoip.net\",\n        \"2772@00310.impulsevoip.net\",\n        \"2773@00310.impulsevoip.net\",\n        \"2774@00310.impulsevoip.net\",\n        \"2775@00310.impulsevoip.net\",\n        \"2776@00310.impulsevoip.net\",\n        \"2777@00310.impulsevoip.net\",\n        \"2778@00310.impulsevoip.net\",\n        \"2779@00310.impulsevoip.net\",\n        \"2780@00310.impulsevoip.net\",\n        \"2781@00310.impulsevoip.net\",\n        \"2782@00310.impulsevoip.net\",\n        \"2783@00310.impulsevoip.net\",\n        \"2784@00310.impulsevoip.net\",\n        \"2785@00310.impulsevoip.net\",\n        \"2786@00310.impulsevoip.net\",\n        \"2787@00310.impulsevoip.net\",\n        \"2788@00310.impulsevoip.net\",\n        \"2789@00310.impulsevoip.net\",\n        \"2790@00310.impulsevoip.net\",\n        \"2791@00310.impulsevoip.net\",\n        \"2792@00310.impulsevoip.net\",\n        \"2793@00310.impulsevoip.net\",\n        \"2794@00310.impulsevoip.net\",\n        \"2795@00310.impulsevoip.net\",\n        \"2796@00310.impulsevoip.net\",\n        \"2797@00310.impulsevoip.net\",\n        \"2798@00310.impulsevoip.net\",\n        \"2799@00310.impulsevoip.net\",\n        \"2800@00310.impulsevoip.net\",\n        \"2801@00310.impulsevoip.net\",\n        \"2802@00310.impulsevoip.net\",\n        \"2803@00310.impulsevoip.net\",\n        \"2804@00310.impulsevoip.net\",\n        \"2805@00310.impulsevoip.net\",\n        \"2806@00310.impulsevoip.net\",\n        \"2807@00310.impulsevoip.net\",\n        \"2808@00310.impulsevoip.net\",\n        \"2809@00310.impulsevoip.net\",\n        \"2810@00310.impulsevoip.net\",\n        \"2811@00310.impulsevoip.net\",\n        \"2812@00310.impulsevoip.net\",\n        \"2813@00310.impulsevoip.net\",\n        \"2814@00310.impulsevoip.net\",\n        \"2815@00310.impulsevoip.net\",\n        \"2816@00310.impulsevoip.net\",\n        \"2817@00310.impulsevoip.net\",\n        \"2818@00310.impulsevoip.net\",\n        \"2819@00310.impulsevoip.net\",\n        \"2820@00310.impulsevoip.net\",\n        \"2821@00310.impulsevoip.net\",\n        \"2822@00310.impulsevoip.net\",\n        \"2823@00310.impulsevoip.net\",\n        \"2824@00310.impulsevoip.net\",\n        \"2825@00310.impulsevoip.net\",\n        \"2826@00310.impulsevoip.net\",\n        \"2827@00310.impulsevoip.net\",\n        \"2828@00310.impulsevoip.net\",\n        \"2829@00310.impulsevoip.net\",\n        \"2830@00310.impulsevoip.net\",\n        \"2831@00310.impulsevoip.net\",\n        \"2832@00310.impulsevoip.net\",\n        \"2833@00310.impulsevoip.net\",\n        \"2834@00310.impulsevoip.net\",\n        \"2835@00310.impulsevoip.net\",\n        \"2836@00310.impulsevoip.net\",\n        \"2837@00310.impulsevoip.net\",\n        \"2838@00310.impulsevoip.net\",\n        \"2839@00310.impulsevoip.net\",\n        \"2840@00310.impulsevoip.net\",\n        \"2841@00310.impulsevoip.net\",\n        \"2842@00310.impulsevoip.net\",\n        \"2843@00310.impulsevoip.net\",\n        \"2844@00310.impulsevoip.net\",\n        \"2845@00310.impulsevoip.net\",\n        \"2846@00310.impulsevoip.net\",\n        \"2847@00310.impulsevoip.net\",\n        \"2848@00310.impulsevoip.net\",\n        \"2849@00310.impulsevoip.net\",\n        \"2850@00310.impulsevoip.net\",\n        \"2851@00310.impulsevoip.net\",\n        \"2852@00310.impulsevoip.net\",\n        \"2853@00310.impulsevoip.net\",\n        \"2854@00310.impulsevoip.net\",\n        \"2855@00310.impulsevoip.net\",\n        \"2856@00310.impulsevoip.net\",\n        \"2857@00310.impulsevoip.net\",\n        \"2858@00310.impulsevoip.net\",\n        \"2859@00310.impulsevoip.net\",\n        \"2860@00310.impulsevoip.net\",\n        \"2861@00310.impulsevoip.net\",\n        \"2862@00310.impulsevoip.net\",\n        \"2863@00310.impulsevoip.net\",\n        \"2864@00310.impulsevoip.net\",\n        \"2865@00310.impulsevoip.net\",\n        \"2866@00310.impulsevoip.net\",\n        \"2867@00310.impulsevoip.net\",\n        \"2868@00310.impulsevoip.net\",\n        \"2869@00310.impulsevoip.net\",\n        \"2870@00310.impulsevoip.net\",\n        \"2871@00310.impulsevoip.net\",\n        \"2872@00310.impulsevoip.net\",\n        \"2873@00310.impulsevoip.net\",\n        \"2874@00310.impulsevoip.net\",\n        \"2875@00310.impulsevoip.net\",\n        \"2876@00310.impulsevoip.net\",\n        \"2877@00310.impulsevoip.net\",\n        \"2878@00310.impulsevoip.net\",\n        \"2879@00310.impulsevoip.net\",\n        \"2880@00310.impulsevoip.net\",\n        \"2881@00310.impulsevoip.net\",\n        \"2882@00310.impulsevoip.net\",\n        \"2883@00310.impulsevoip.net\",\n        \"2884@00310.impulsevoip.net\",\n        \"2885@00310.impulsevoip.net\",\n        \"2886@00310.impulsevoip.net\",\n        \"2887@00310.impulsevoip.net\",\n        \"2888@00310.impulsevoip.net\",\n        \"2889@00310.impulsevoip.net\",\n        \"2890@00310.impulsevoip.net\",\n        \"2891@00310.impulsevoip.net\",\n        \"2892@00310.impulsevoip.net\",\n        \"2893@00310.impulsevoip.net\",\n        \"2894@00310.impulsevoip.net\",\n        \"2895@00310.impulsevoip.net\",\n        \"2896@00310.impulsevoip.net\",\n        \"2897@00310.impulsevoip.net\",\n        \"2898@00310.impulsevoip.net\",\n        \"2899@00310.impulsevoip.net\",\n        \"2900@00310.impulsevoip.net\",\n        \"2901@00310.impulsevoip.net\",\n        \"2902@00310.impulsevoip.net\",\n        \"2903@00310.impulsevoip.net\",\n        \"2904@00310.impulsevoip.net\",\n        \"2905@00310.impulsevoip.net\",\n        \"2906@00310.impulsevoip.net\",\n        \"2907@00310.impulsevoip.net\",\n        \"2908@00310.impulsevoip.net\",\n        \"2909@00310.impulsevoip.net\",\n        \"2910@00310.impulsevoip.net\",\n        \"2168@00310.impulsevoip.net\",\n        \"2169@00310.impulsevoip.net\",\n        \"2170@00310.impulsevoip.net\",\n        \"2171@00310.impulsevoip.net\",\n        \"2172@00310.impulsevoip.net\",\n        \"2173@00310.impulsevoip.net\",\n        \"2174@00310.impulsevoip.net\",\n        \"2175@00310.impulsevoip.net\",\n        \"2176@00310.impulsevoip.net\",\n        \"2177@00310.impulsevoip.net\",\n        \"2178@00310.impulsevoip.net\",\n        \"2179@00310.impulsevoip.net\",\n        \"2180@00310.impulsevoip.net\",\n        \"2181@00310.impulsevoip.net\",\n        \"2182@00310.impulsevoip.net\",\n        \"2183@00310.impulsevoip.net\",\n        \"2184@00310.impulsevoip.net\",\n        \"2185@00310.impulsevoip.net\",\n        \"2186@00310.impulsevoip.net\",\n        \"2187@00310.impulsevoip.net\",\n        \"2188@00310.impulsevoip.net\",\n        \"2189@00310.impulsevoip.net\",\n        \"2190@00310.impulsevoip.net\",\n        \"2191@00310.impulsevoip.net\",\n        \"2192@00310.impulsevoip.net\",\n        \"2193@00310.impulsevoip.net\",\n        \"2194@00310.impulsevoip.net\",\n        \"2195@00310.impulsevoip.net\",\n        \"2196@00310.impulsevoip.net\",\n        \"2197@00310.impulsevoip.net\",\n        \"2198@00310.impulsevoip.net\",\n        \"2199@00310.impulsevoip.net\",\n        \"2200@00310.impulsevoip.net\",\n        \"2201@00310.impulsevoip.net\",\n        \"2202@00310.impulsevoip.net\",\n        \"2203@00310.impulsevoip.net\",\n        \"2204@00310.impulsevoip.net\",\n        \"2205@00310.impulsevoip.net\",\n        \"2206@00310.impulsevoip.net\",\n        \"2207@00310.impulsevoip.net\",\n        \"2208@00310.impulsevoip.net\",\n        \"2209@00310.impulsevoip.net\",\n        \"2210@00310.impulsevoip.net\",\n        \"2211@00310.impulsevoip.net\",\n        \"2212@00310.impulsevoip.net\",\n        \"2213@00310.impulsevoip.net\",\n        \"2214@00310.impulsevoip.net\",\n        \"2215@00310.impulsevoip.net\",\n        \"2216@00310.impulsevoip.net\",\n        \"2217@00310.impulsevoip.net\",\n        \"2218@00310.impulsevoip.net\",\n        \"2219@00310.impulsevoip.net\",\n        \"2220@00310.impulsevoip.net\",\n        \"2221@00310.impulsevoip.net\",\n        \"2222@00310.impulsevoip.net\",\n        \"2223@00310.impulsevoip.net\",\n        \"2224@00310.impulsevoip.net\",\n        \"2225@00310.impulsevoip.net\",\n        \"2226@00310.impulsevoip.net\",\n        \"2227@00310.impulsevoip.net\",\n        \"2228@00310.impulsevoip.net\",\n        \"2229@00310.impulsevoip.net\",\n        \"2230@00310.impulsevoip.net\",\n        \"2231@00310.impulsevoip.net\",\n        \"2232@00310.impulsevoip.net\",\n        \"2233@00310.impulsevoip.net\",\n        \"2234@00310.impulsevoip.net\",\n        \"2235@00310.impulsevoip.net\",\n        \"2236@00310.impulsevoip.net\",\n        \"2237@00310.impulsevoip.net\",\n        \"2238@00310.impulsevoip.net\",\n        \"2239@00310.impulsevoip.net\",\n        \"2240@00310.impulsevoip.net\",\n        \"2241@00310.impulsevoip.net\",\n        \"2242@00310.impulsevoip.net\",\n        \"2243@00310.impulsevoip.net\",\n        \"2244@00310.impulsevoip.net\",\n        \"2245@00310.impulsevoip.net\",\n        \"2246@00310.impulsevoip.net\",\n        \"2247@00310.impulsevoip.net\",\n        \"2248@00310.impulsevoip.net\",\n        \"2249@00310.impulsevoip.net\",\n        \"2250@00310.impulsevoip.net\",\n        \"2251@00310.impulsevoip.net\",\n        \"2252@00310.impulsevoip.net\",\n        \"2253@00310.impulsevoip.net\",\n        \"2254@00310.impulsevoip.net\",\n        \"2255@00310.impulsevoip.net\",\n        \"2256@00310.impulsevoip.net\",\n        \"2257@00310.impulsevoip.net\",\n        \"2258@00310.impulsevoip.net\",\n        \"2259@00310.impulsevoip.net\",\n        \"2260@00310.impulsevoip.net\",\n        \"2261@00310.impulsevoip.net\",\n        \"2262@00310.impulsevoip.net\",\n        \"2263@00310.impulsevoip.net\",\n        \"2264@00310.impulsevoip.net\",\n        \"2265@00310.impulsevoip.net\",\n        \"2266@00310.impulsevoip.net\",\n        \"2267@00310.impulsevoip.net\",\n        \"2268@00310.impulsevoip.net\",\n        \"2269@00310.impulsevoip.net\",\n        \"2270@00310.impulsevoip.net\",\n        \"2271@00310.impulsevoip.net\",\n        \"2272@00310.impulsevoip.net\",\n        \"2273@00310.impulsevoip.net\",\n        \"2274@00310.impulsevoip.net\",\n        \"2275@00310.impulsevoip.net\",\n        \"2276@00310.impulsevoip.net\",\n        \"2277@00310.impulsevoip.net\",\n        \"2278@00310.impulsevoip.net\",\n        \"2279@00310.impulsevoip.net\",\n        \"2280@00310.impulsevoip.net\",\n        \"2281@00310.impulsevoip.net\",\n        \"2282@00310.impulsevoip.net\",\n        \"2283@00310.impulsevoip.net\",\n        \"2284@00310.impulsevoip.net\",\n        \"2285@00310.impulsevoip.net\",\n        \"2286@00310.impulsevoip.net\",\n        \"2287@00310.impulsevoip.net\",\n        \"2288@00310.impulsevoip.net\",\n        \"2289@00310.impulsevoip.net\",\n        \"2290@00310.impulsevoip.net\",\n        \"2291@00310.impulsevoip.net\",\n        \"2292@00310.impulsevoip.net\",\n        \"2293@00310.impulsevoip.net\",\n        \"2294@00310.impulsevoip.net\",\n        \"2295@00310.impulsevoip.net\",\n        \"2296@00310.impulsevoip.net\",\n        \"2297@00310.impulsevoip.net\",\n        \"2298@00310.impulsevoip.net\",\n        \"2299@00310.impulsevoip.net\",\n        \"2300@00310.impulsevoip.net\",\n        \"2301@00310.impulsevoip.net\",\n        \"2302@00310.impulsevoip.net\",\n        \"2303@00310.impulsevoip.net\",\n        \"2304@00310.impulsevoip.net\",\n        \"2305@00310.impulsevoip.net\",\n        \"2306@00310.impulsevoip.net\",\n        \"2307@00310.impulsevoip.net\",\n        \"2308@00310.impulsevoip.net\",\n        \"2309@00310.impulsevoip.net\",\n        \"2310@00310.impulsevoip.net\",\n        \"2311@00310.impulsevoip.net\",\n        \"2312@00310.impulsevoip.net\",\n        \"2313@00310.impulsevoip.net\",\n        \"2314@00310.impulsevoip.net\",\n        \"2315@00310.impulsevoip.net\",\n        \"2316@00310.impulsevoip.net\",\n        \"2317@00310.impulsevoip.net\",\n        \"2318@00310.impulsevoip.net\",\n        \"2319@00310.impulsevoip.net\",\n        \"2320@00310.impulsevoip.net\",\n        \"2321@00310.impulsevoip.net\",\n        \"2322@00310.impulsevoip.net\",\n        \"2323@00310.impulsevoip.net\",\n        \"2324@00310.impulsevoip.net\",\n        \"2325@00310.impulsevoip.net\",\n        \"2326@00310.impulsevoip.net\",\n        \"2327@00310.impulsevoip.net\",\n        \"2328@00310.impulsevoip.net\",\n        \"2329@00310.impulsevoip.net\",\n        \"2330@00310.impulsevoip.net\",\n        \"2331@00310.impulsevoip.net\",\n        \"2332@00310.impulsevoip.net\",\n        \"2333@00310.impulsevoip.net\",\n        \"2334@00310.impulsevoip.net\",\n        \"2335@00310.impulsevoip.net\",\n        \"2336@00310.impulsevoip.net\",\n        \"2337@00310.impulsevoip.net\",\n        \"2338@00310.impulsevoip.net\",\n        \"2339@00310.impulsevoip.net\",\n        \"2340@00310.impulsevoip.net\",\n        \"2341@00310.impulsevoip.net\",\n        \"2342@00310.impulsevoip.net\",\n        \"2343@00310.impulsevoip.net\",\n        \"2344@00310.impulsevoip.net\",\n        \"2345@00310.impulsevoip.net\",\n        \"2346@00310.impulsevoip.net\",\n        \"2347@00310.impulsevoip.net\",\n        \"2348@00310.impulsevoip.net\",\n        \"2349@00310.impulsevoip.net\",\n        \"2350@00310.impulsevoip.net\",\n        \"2351@00310.impulsevoip.net\",\n        \"2352@00310.impulsevoip.net\",\n        \"2353@00310.impulsevoip.net\",\n        \"2354@00310.impulsevoip.net\",\n        \"2355@00310.impulsevoip.net\",\n        \"2356@00310.impulsevoip.net\",\n        \"2357@00310.impulsevoip.net\",\n        \"2358@00310.impulsevoip.net\",\n        \"2359@00310.impulsevoip.net\",\n        \"2360@00310.impulsevoip.net\",\n        \"2361@00310.impulsevoip.net\",\n        \"2362@00310.impulsevoip.net\",\n        \"2363@00310.impulsevoip.net\",\n        \"2364@00310.impulsevoip.net\",\n        \"2365@00310.impulsevoip.net\",\n        \"2366@00310.impulsevoip.net\",\n        \"2367@00310.impulsevoip.net\",\n        \"2368@00310.impulsevoip.net\",\n        \"2369@00310.impulsevoip.net\",\n        \"2370@00310.impulsevoip.net\",\n        \"2371@00310.impulsevoip.net\",\n        \"2372@00310.impulsevoip.net\",\n        \"2373@00310.impulsevoip.net\",\n        \"2374@00310.impulsevoip.net\",\n        \"2375@00310.impulsevoip.net\",\n        \"2376@00310.impulsevoip.net\",\n        \"2377@00310.impulsevoip.net\",\n        \"2378@00310.impulsevoip.net\",\n        \"2379@00310.impulsevoip.net\",\n        \"2380@00310.impulsevoip.net\",\n        \"2381@00310.impulsevoip.net\",\n        \"2382@00310.impulsevoip.net\",\n        \"2383@00310.impulsevoip.net\",\n        \"2384@00310.impulsevoip.net\",\n        \"2385@00310.impulsevoip.net\",\n        \"2386@00310.impulsevoip.net\",\n        \"2387@00310.impulsevoip.net\",\n        \"2388@00310.impulsevoip.net\",\n        \"2389@00310.impulsevoip.net\",\n        \"2390@00310.impulsevoip.net\",\n        \"2391@00310.impulsevoip.net\",\n        \"2392@00310.impulsevoip.net\",\n        \"2393@00310.impulsevoip.net\",\n        \"2394@00310.impulsevoip.net\",\n        \"2395@00310.impulsevoip.net\",\n        \"2396@00310.impulsevoip.net\",\n        \"2397@00310.impulsevoip.net\",\n        \"2398@00310.impulsevoip.net\",\n        \"2399@00310.impulsevoip.net\",\n        \"2400@00310.impulsevoip.net\",\n        \"2401@00310.impulsevoip.net\",\n        \"2402@00310.impulsevoip.net\",\n        \"2403@00310.impulsevoip.net\",\n        \"2404@00310.impulsevoip.net\",\n        \"2405@00310.impulsevoip.net\",\n        \"2406@00310.impulsevoip.net\",\n        \"2407@00310.impulsevoip.net\",\n        \"2408@00310.impulsevoip.net\",\n        \"2409@00310.impulsevoip.net\",\n        \"2410@00310.impulsevoip.net\",\n        \"2411@00310.impulsevoip.net\",\n        \"2412@00310.impulsevoip.net\",\n        \"2413@00310.impulsevoip.net\",\n        \"2414@00310.impulsevoip.net\",\n        \"2415@00310.impulsevoip.net\",\n        \"2416@00310.impulsevoip.net\",\n        \"2417@00310.impulsevoip.net\",\n        \"2418@00310.impulsevoip.net\",\n        \"2419@00310.impulsevoip.net\",\n        \"2420@00310.impulsevoip.net\",\n        \"2421@00310.impulsevoip.net\",\n        \"2422@00310.impulsevoip.net\",\n        \"2423@00310.impulsevoip.net\",\n        \"3172@00310.impulsevoip.net\",\n        \"3173@00310.impulsevoip.net\",\n        \"3174@00310.impulsevoip.net\",\n        \"3175@00310.impulsevoip.net\",\n        \"3176@00310.impulsevoip.net\",\n        \"3177@00310.impulsevoip.net\",\n        \"3178@00310.impulsevoip.net\",\n        \"3179@00310.impulsevoip.net\",\n        \"3180@00310.impulsevoip.net\",\n        \"3181@00310.impulsevoip.net\",\n        \"3182@00310.impulsevoip.net\",\n        \"3183@00310.impulsevoip.net\",\n        \"3184@00310.impulsevoip.net\",\n        \"3185@00310.impulsevoip.net\",\n        \"3186@00310.impulsevoip.net\",\n        \"3187@00310.impulsevoip.net\",\n        \"3188@00310.impulsevoip.net\",\n        \"3189@00310.impulsevoip.net\",\n        \"3190@00310.impulsevoip.net\",\n        \"3191@00310.impulsevoip.net\",\n        \"3192@00310.impulsevoip.net\",\n        \"3193@00310.impulsevoip.net\",\n        \"3194@00310.impulsevoip.net\",\n        \"3195@00310.impulsevoip.net\",\n        \"3196@00310.impulsevoip.net\",\n        \"3197@00310.impulsevoip.net\",\n        \"3198@00310.impulsevoip.net\",\n        \"3199@00310.impulsevoip.net\",\n        \"3200@00310.impulsevoip.net\",\n        \"3201@00310.impulsevoip.net\",\n        \"3202@00310.impulsevoip.net\",\n        \"3203@00310.impulsevoip.net\",\n        \"3204@00310.impulsevoip.net\",\n        \"3205@00310.impulsevoip.net\",\n        \"3206@00310.impulsevoip.net\",\n        \"3207@00310.impulsevoip.net\",\n        \"3208@00310.impulsevoip.net\",\n        \"3209@00310.impulsevoip.net\",\n        \"3210@00310.impulsevoip.net\",\n        \"3211@00310.impulsevoip.net\",\n        \"3212@00310.impulsevoip.net\",\n        \"3213@00310.impulsevoip.net\",\n        \"3214@00310.impulsevoip.net\",\n        \"3215@00310.impulsevoip.net\",\n        \"3216@00310.impulsevoip.net\",\n        \"3217@00310.impulsevoip.net\",\n        \"3218@00310.impulsevoip.net\",\n        \"3219@00310.impulsevoip.net\",\n        \"3220@00310.impulsevoip.net\",\n        \"3221@00310.impulsevoip.net\",\n        \"3222@00310.impulsevoip.net\",\n        \"3223@00310.impulsevoip.net\",\n        \"3224@00310.impulsevoip.net\",\n        \"3225@00310.impulsevoip.net\",\n        \"3226@00310.impulsevoip.net\",\n        \"3227@00310.impulsevoip.net\",\n        \"3228@00310.impulsevoip.net\",\n        \"3229@00310.impulsevoip.net\",\n        \"3230@00310.impulsevoip.net\",\n        \"3231@00310.impulsevoip.net\",\n        \"3232@00310.impulsevoip.net\",\n        \"3233@00310.impulsevoip.net\",\n        \"3234@00310.impulsevoip.net\",\n        \"3235@00310.impulsevoip.net\",\n        \"3236@00310.impulsevoip.net\",\n        \"3237@00310.impulsevoip.net\",\n        \"3238@00310.impulsevoip.net\",\n        \"3239@00310.impulsevoip.net\",\n        \"3240@00310.impulsevoip.net\",\n        \"3241@00310.impulsevoip.net\",\n        \"3242@00310.impulsevoip.net\",\n        \"3243@00310.impulsevoip.net\",\n        \"3244@00310.impulsevoip.net\",\n        \"3245@00310.impulsevoip.net\",\n        \"3246@00310.impulsevoip.net\",\n        \"3247@00310.impulsevoip.net\",\n        \"3248@00310.impulsevoip.net\",\n        \"3249@00310.impulsevoip.net\",\n        \"3250@00310.impulsevoip.net\",\n        \"3251@00310.impulsevoip.net\",\n        \"3252@00310.impulsevoip.net\",\n        \"3253@00310.impulsevoip.net\",\n        \"3254@00310.impulsevoip.net\",\n        \"3255@00310.impulsevoip.net\",\n        \"3256@00310.impulsevoip.net\",\n        \"3257@00310.impulsevoip.net\",\n        \"3258@00310.impulsevoip.net\",\n        \"3259@00310.impulsevoip.net\",\n        \"3260@00310.impulsevoip.net\",\n        \"3261@00310.impulsevoip.net\",\n        \"3262@00310.impulsevoip.net\",\n        \"3263@00310.impulsevoip.net\",\n        \"3264@00310.impulsevoip.net\",\n        \"3265@00310.impulsevoip.net\",\n        \"3266@00310.impulsevoip.net\",\n        \"3267@00310.impulsevoip.net\",\n        \"3268@00310.impulsevoip.net\",\n        \"3269@00310.impulsevoip.net\",\n        \"3270@00310.impulsevoip.net\",\n        \"3271@00310.impulsevoip.net\",\n        \"3272@00310.impulsevoip.net\",\n        \"3273@00310.impulsevoip.net\",\n        \"3274@00310.impulsevoip.net\",\n        \"3275@00310.impulsevoip.net\",\n        \"3276@00310.impulsevoip.net\",\n        \"3277@00310.impulsevoip.net\",\n        \"3278@00310.impulsevoip.net\",\n        \"3279@00310.impulsevoip.net\",\n        \"3280@00310.impulsevoip.net\",\n        \"3281@00310.impulsevoip.net\",\n        \"3282@00310.impulsevoip.net\",\n        \"3283@00310.impulsevoip.net\",\n        \"3284@00310.impulsevoip.net\",\n        \"3285@00310.impulsevoip.net\",\n        \"3286@00310.impulsevoip.net\",\n        \"3287@00310.impulsevoip.net\",\n        \"3288@00310.impulsevoip.net\",\n        \"3289@00310.impulsevoip.net\",\n        \"3290@00310.impulsevoip.net\",\n        \"3291@00310.impulsevoip.net\",\n        \"3292@00310.impulsevoip.net\",\n        \"3293@00310.impulsevoip.net\",\n        \"3294@00310.impulsevoip.net\",\n        \"3295@00310.impulsevoip.net\",\n        \"3296@00310.impulsevoip.net\",\n        \"3297@00310.impulsevoip.net\",\n        \"3298@00310.impulsevoip.net\",\n        \"3299@00310.impulsevoip.net\",\n        \"3300@00310.impulsevoip.net\",\n        \"3301@00310.impulsevoip.net\",\n        \"3302@00310.impulsevoip.net\",\n        \"3303@00310.impulsevoip.net\",\n        \"3304@00310.impulsevoip.net\",\n        \"3305@00310.impulsevoip.net\",\n        \"3306@00310.impulsevoip.net\",\n        \"3307@00310.impulsevoip.net\",\n        \"3308@00310.impulsevoip.net\",\n        \"3309@00310.impulsevoip.net\",\n        \"3310@00310.impulsevoip.net\",\n        \"3311@00310.impulsevoip.net\",\n        \"3312@00310.impulsevoip.net\",\n        \"3313@00310.impulsevoip.net\",\n        \"3314@00310.impulsevoip.net\",\n        \"3315@00310.impulsevoip.net\",\n        \"3316@00310.impulsevoip.net\",\n        \"3317@00310.impulsevoip.net\",\n        \"3318@00310.impulsevoip.net\",\n        \"3319@00310.impulsevoip.net\",\n        \"3320@00310.impulsevoip.net\",\n        \"3321@00310.impulsevoip.net\",\n        \"3322@00310.impulsevoip.net\",\n        \"3323@00310.impulsevoip.net\",\n        \"3324@00310.impulsevoip.net\",\n        \"3325@00310.impulsevoip.net\",\n        \"3326@00310.impulsevoip.net\",\n        \"3327@00310.impulsevoip.net\",\n        \"3328@00310.impulsevoip.net\",\n        \"3329@00310.impulsevoip.net\",\n        \"3330@00310.impulsevoip.net\",\n        \"3331@00310.impulsevoip.net\",\n        \"3332@00310.impulsevoip.net\",\n        \"3333@00310.impulsevoip.net\",\n        \"3334@00310.impulsevoip.net\",\n        \"3335@00310.impulsevoip.net\",\n        \"3336@00310.impulsevoip.net\",\n        \"3337@00310.impulsevoip.net\",\n        \"3338@00310.impulsevoip.net\",\n        \"3339@00310.impulsevoip.net\",\n        \"3340@00310.impulsevoip.net\",\n        \"3341@00310.impulsevoip.net\",\n        \"3342@00310.impulsevoip.net\",\n        \"3343@00310.impulsevoip.net\",\n        \"3344@00310.impulsevoip.net\",\n        \"3345@00310.impulsevoip.net\",\n        \"3346@00310.impulsevoip.net\",\n        \"3347@00310.impulsevoip.net\",\n        \"3348@00310.impulsevoip.net\",\n        \"3349@00310.impulsevoip.net\",\n        \"3350@00310.impulsevoip.net\",\n        \"3351@00310.impulsevoip.net\",\n        \"3352@00310.impulsevoip.net\",\n        \"3353@00310.impulsevoip.net\",\n        \"3354@00310.impulsevoip.net\",\n        \"3355@00310.impulsevoip.net\",\n        \"3356@00310.impulsevoip.net\",\n        \"3357@00310.impulsevoip.net\",\n        \"3358@00310.impulsevoip.net\",\n        \"3359@00310.impulsevoip.net\",\n        \"3360@00310.impulsevoip.net\",\n        \"3361@00310.impulsevoip.net\",\n        \"3362@00310.impulsevoip.net\",\n        \"3363@00310.impulsevoip.net\",\n        \"3364@00310.impulsevoip.net\",\n        \"3365@00310.impulsevoip.net\",\n        \"3366@00310.impulsevoip.net\",\n        \"3367@00310.impulsevoip.net\",\n        \"3368@00310.impulsevoip.net\",\n        \"3369@00310.impulsevoip.net\",\n        \"3370@00310.impulsevoip.net\",\n        \"3371@00310.impulsevoip.net\",\n        \"3372@00310.impulsevoip.net\",\n        \"3373@00310.impulsevoip.net\",\n        \"3374@00310.impulsevoip.net\",\n        \"3375@00310.impulsevoip.net\",\n        \"3376@00310.impulsevoip.net\",\n        \"3377@00310.impulsevoip.net\",\n        \"3378@00310.impulsevoip.net\",\n        \"3379@00310.impulsevoip.net\",\n        \"3380@00310.impulsevoip.net\",\n        \"3381@00310.impulsevoip.net\",\n        \"3382@00310.impulsevoip.net\",\n        \"3383@00310.impulsevoip.net\",\n        \"3384@00310.impulsevoip.net\",\n        \"3385@00310.impulsevoip.net\",\n        \"3386@00310.impulsevoip.net\",\n        \"3387@00310.impulsevoip.net\",\n        \"3388@00310.impulsevoip.net\",\n        \"3389@00310.impulsevoip.net\",\n        \"3390@00310.impulsevoip.net\",\n        \"3391@00310.impulsevoip.net\",\n        \"3392@00310.impulsevoip.net\",\n        \"3393@00310.impulsevoip.net\",\n        \"3394@00310.impulsevoip.net\",\n        \"3395@00310.impulsevoip.net\",\n        \"3396@00310.impulsevoip.net\",\n        \"3397@00310.impulsevoip.net\",\n        \"3398@00310.impulsevoip.net\",\n        \"3399@00310.impulsevoip.net\",\n        \"3400@00310.impulsevoip.net\",\n        \"3401@00310.impulsevoip.net\",\n        \"3402@00310.impulsevoip.net\",\n        \"3403@00310.impulsevoip.net\",\n        \"3404@00310.impulsevoip.net\",\n        \"3405@00310.impulsevoip.net\",\n        \"3406@00310.impulsevoip.net\",\n        \"3407@00310.impulsevoip.net\",\n        \"3408@00310.impulsevoip.net\",\n        \"3409@00310.impulsevoip.net\",\n        \"3410@00310.impulsevoip.net\",\n        \"3411@00310.impulsevoip.net\",\n        \"3412@00310.impulsevoip.net\",\n        \"3413@00310.impulsevoip.net\",\n        \"3414@00310.impulsevoip.net\",\n        \"3415@00310.impulsevoip.net\",\n        \"3416@00310.impulsevoip.net\",\n        \"3417@00310.impulsevoip.net\",\n        \"3418@00310.impulsevoip.net\",\n        \"3419@00310.impulsevoip.net\",\n        \"3420@00310.impulsevoip.net\",\n        \"3421@00310.impulsevoip.net\",\n        \"3422@00310.impulsevoip.net\",\n        \"3423@00310.impulsevoip.net\",\n        \"2912@00310.impulsevoip.net\",\n        \"2913@00310.impulsevoip.net\",\n        \"2914@00310.impulsevoip.net\",\n        \"2915@00310.impulsevoip.net\",\n        \"2916@00310.impulsevoip.net\",\n        \"2917@00310.impulsevoip.net\",\n        \"2918@00310.impulsevoip.net\",\n        \"2919@00310.impulsevoip.net\",\n        \"2920@00310.impulsevoip.net\",\n        \"2921@00310.impulsevoip.net\",\n        \"2922@00310.impulsevoip.net\",\n        \"2923@00310.impulsevoip.net\",\n        \"2924@00310.impulsevoip.net\",\n        \"2925@00310.impulsevoip.net\",\n        \"2926@00310.impulsevoip.net\",\n        \"2927@00310.impulsevoip.net\",\n        \"2928@00310.impulsevoip.net\",\n        \"2929@00310.impulsevoip.net\",\n        \"2930@00310.impulsevoip.net\",\n        \"2931@00310.impulsevoip.net\",\n        \"2932@00310.impulsevoip.net\",\n        \"2933@00310.impulsevoip.net\",\n        \"2934@00310.impulsevoip.net\",\n        \"2935@00310.impulsevoip.net\",\n        \"2936@00310.impulsevoip.net\",\n        \"2937@00310.impulsevoip.net\",\n        \"2938@00310.impulsevoip.net\",\n        \"2939@00310.impulsevoip.net\",\n        \"2940@00310.impulsevoip.net\",\n        \"2941@00310.impulsevoip.net\",\n        \"2942@00310.impulsevoip.net\",\n        \"2943@00310.impulsevoip.net\",\n        \"2944@00310.impulsevoip.net\",\n        \"2945@00310.impulsevoip.net\",\n        \"2946@00310.impulsevoip.net\",\n        \"2947@00310.impulsevoip.net\",\n        \"2948@00310.impulsevoip.net\",\n        \"2949@00310.impulsevoip.net\",\n        \"2950@00310.impulsevoip.net\",\n        \"2951@00310.impulsevoip.net\",\n        \"2952@00310.impulsevoip.net\",\n        \"2953@00310.impulsevoip.net\",\n        \"2954@00310.impulsevoip.net\",\n        \"2955@00310.impulsevoip.net\",\n        \"2956@00310.impulsevoip.net\",\n        \"2957@00310.impulsevoip.net\",\n        \"2958@00310.impulsevoip.net\",\n        \"2959@00310.impulsevoip.net\",\n        \"2960@00310.impulsevoip.net\",\n        \"2961@00310.impulsevoip.net\",\n        \"2962@00310.impulsevoip.net\",\n        \"2963@00310.impulsevoip.net\",\n        \"2964@00310.impulsevoip.net\",\n        \"2965@00310.impulsevoip.net\",\n        \"2966@00310.impulsevoip.net\",\n        \"2967@00310.impulsevoip.net\",\n        \"2968@00310.impulsevoip.net\",\n        \"2969@00310.impulsevoip.net\",\n        \"2970@00310.impulsevoip.net\",\n        \"2971@00310.impulsevoip.net\",\n        \"2972@00310.impulsevoip.net\",\n        \"2973@00310.impulsevoip.net\",\n        \"2974@00310.impulsevoip.net\",\n        \"2975@00310.impulsevoip.net\",\n        \"2976@00310.impulsevoip.net\",\n        \"2977@00310.impulsevoip.net\",\n        \"2978@00310.impulsevoip.net\",\n        \"2979@00310.impulsevoip.net\",\n        \"2980@00310.impulsevoip.net\",\n        \"2981@00310.impulsevoip.net\",\n        \"2982@00310.impulsevoip.net\",\n        \"2983@00310.impulsevoip.net\",\n        \"2984@00310.impulsevoip.net\",\n        \"2985@00310.impulsevoip.net\",\n        \"2986@00310.impulsevoip.net\",\n        \"2987@00310.impulsevoip.net\",\n        \"2988@00310.impulsevoip.net\",\n        \"2989@00310.impulsevoip.net\",\n        \"2990@00310.impulsevoip.net\",\n        \"2991@00310.impulsevoip.net\",\n        \"2992@00310.impulsevoip.net\",\n        \"2993@00310.impulsevoip.net\",\n        \"2994@00310.impulsevoip.net\",\n        \"2995@00310.impulsevoip.net\",\n        \"2996@00310.impulsevoip.net\",\n        \"2997@00310.impulsevoip.net\",\n        \"2998@00310.impulsevoip.net\",\n        \"2999@00310.impulsevoip.net\",\n        \"3000@00310.impulsevoip.net\",\n        \"3001@00310.impulsevoip.net\",\n        \"3002@00310.impulsevoip.net\",\n        \"3003@00310.impulsevoip.net\",\n        \"3004@00310.impulsevoip.net\",\n        \"3005@00310.impulsevoip.net\",\n        \"3006@00310.impulsevoip.net\",\n        \"3007@00310.impulsevoip.net\",\n        \"3008@00310.impulsevoip.net\",\n        \"3009@00310.impulsevoip.net\",\n        \"3010@00310.impulsevoip.net\",\n        \"3011@00310.impulsevoip.net\",\n        \"3012@00310.impulsevoip.net\",\n        \"3013@00310.impulsevoip.net\",\n        \"3014@00310.impulsevoip.net\",\n        \"3015@00310.impulsevoip.net\",\n        \"3016@00310.impulsevoip.net\",\n        \"3017@00310.impulsevoip.net\",\n        \"3018@00310.impulsevoip.net\",\n        \"3019@00310.impulsevoip.net\",\n        \"3020@00310.impulsevoip.net\",\n        \"3021@00310.impulsevoip.net\",\n        \"3022@00310.impulsevoip.net\",\n        \"3023@00310.impulsevoip.net\",\n        \"3024@00310.impulsevoip.net\",\n        \"3025@00310.impulsevoip.net\",\n        \"3026@00310.impulsevoip.net\",\n        \"3027@00310.impulsevoip.net\",\n        \"3028@00310.impulsevoip.net\",\n        \"3029@00310.impulsevoip.net\",\n        \"3030@00310.impulsevoip.net\",\n        \"3031@00310.impulsevoip.net\",\n        \"3032@00310.impulsevoip.net\",\n        \"3033@00310.impulsevoip.net\",\n        \"3034@00310.impulsevoip.net\",\n        \"3035@00310.impulsevoip.net\",\n        \"3036@00310.impulsevoip.net\",\n        \"3037@00310.impulsevoip.net\",\n        \"3038@00310.impulsevoip.net\",\n        \"3039@00310.impulsevoip.net\",\n        \"3040@00310.impulsevoip.net\",\n        \"3041@00310.impulsevoip.net\",\n        \"3042@00310.impulsevoip.net\",\n        \"3043@00310.impulsevoip.net\",\n        \"3044@00310.impulsevoip.net\",\n        \"3045@00310.impulsevoip.net\",\n        \"3046@00310.impulsevoip.net\",\n        \"3047@00310.impulsevoip.net\",\n        \"3048@00310.impulsevoip.net\",\n        \"3049@00310.impulsevoip.net\",\n        \"3050@00310.impulsevoip.net\",\n        \"3051@00310.impulsevoip.net\",\n        \"3052@00310.impulsevoip.net\",\n        \"3053@00310.impulsevoip.net\",\n        \"3054@00310.impulsevoip.net\",\n        \"3055@00310.impulsevoip.net\",\n        \"3056@00310.impulsevoip.net\",\n        \"3057@00310.impulsevoip.net\",\n        \"3058@00310.impulsevoip.net\",\n        \"3059@00310.impulsevoip.net\",\n        \"3060@00310.impulsevoip.net\",\n        \"3061@00310.impulsevoip.net\",\n        \"3062@00310.impulsevoip.net\",\n        \"3063@00310.impulsevoip.net\",\n        \"3064@00310.impulsevoip.net\",\n        \"3065@00310.impulsevoip.net\",\n        \"3066@00310.impulsevoip.net\",\n        \"3067@00310.impulsevoip.net\",\n        \"3068@00310.impulsevoip.net\",\n        \"3069@00310.impulsevoip.net\",\n        \"3070@00310.impulsevoip.net\",\n        \"3071@00310.impulsevoip.net\",\n        \"3072@00310.impulsevoip.net\",\n        \"3073@00310.impulsevoip.net\",\n        \"3074@00310.impulsevoip.net\",\n        \"3075@00310.impulsevoip.net\",\n        \"3076@00310.impulsevoip.net\",\n        \"3077@00310.impulsevoip.net\",\n        \"3078@00310.impulsevoip.net\",\n        \"3079@00310.impulsevoip.net\",\n        \"3080@00310.impulsevoip.net\",\n        \"3081@00310.impulsevoip.net\",\n        \"3082@00310.impulsevoip.net\",\n        \"3083@00310.impulsevoip.net\",\n        \"3084@00310.impulsevoip.net\",\n        \"3085@00310.impulsevoip.net\",\n        \"3086@00310.impulsevoip.net\",\n        \"3087@00310.impulsevoip.net\",\n        \"3088@00310.impulsevoip.net\",\n        \"3089@00310.impulsevoip.net\",\n        \"3090@00310.impulsevoip.net\",\n        \"3091@00310.impulsevoip.net\",\n        \"3092@00310.impulsevoip.net\",\n        \"3093@00310.impulsevoip.net\",\n        \"3094@00310.impulsevoip.net\",\n        \"3095@00310.impulsevoip.net\",\n        \"3096@00310.impulsevoip.net\",\n        \"3097@00310.impulsevoip.net\",\n        \"3098@00310.impulsevoip.net\",\n        \"3099@00310.impulsevoip.net\",\n        \"3100@00310.impulsevoip.net\",\n        \"3101@00310.impulsevoip.net\",\n        \"3102@00310.impulsevoip.net\",\n        \"3103@00310.impulsevoip.net\",\n        \"3104@00310.impulsevoip.net\",\n        \"3105@00310.impulsevoip.net\",\n        \"3106@00310.impulsevoip.net\",\n        \"3107@00310.impulsevoip.net\",\n        \"3108@00310.impulsevoip.net\",\n        \"3109@00310.impulsevoip.net\",\n        \"3110@00310.impulsevoip.net\",\n        \"3111@00310.impulsevoip.net\",\n        \"3112@00310.impulsevoip.net\",\n        \"3113@00310.impulsevoip.net\",\n        \"3114@00310.impulsevoip.net\",\n        \"3115@00310.impulsevoip.net\",\n        \"3116@00310.impulsevoip.net\",\n        \"3117@00310.impulsevoip.net\",\n        \"3118@00310.impulsevoip.net\",\n        \"3119@00310.impulsevoip.net\",\n        \"3120@00310.impulsevoip.net\",\n        \"3121@00310.impulsevoip.net\",\n        \"3122@00310.impulsevoip.net\",\n        \"3123@00310.impulsevoip.net\",\n        \"3124@00310.impulsevoip.net\",\n        \"3125@00310.impulsevoip.net\",\n        \"3126@00310.impulsevoip.net\",\n        \"3127@00310.impulsevoip.net\",\n        \"3128@00310.impulsevoip.net\",\n        \"3129@00310.impulsevoip.net\",\n        \"3130@00310.impulsevoip.net\",\n        \"3131@00310.impulsevoip.net\",\n        \"3132@00310.impulsevoip.net\",\n        \"3133@00310.impulsevoip.net\",\n        \"3134@00310.impulsevoip.net\",\n        \"3135@00310.impulsevoip.net\",\n        \"3136@00310.impulsevoip.net\",\n        \"3137@00310.impulsevoip.net\",\n        \"3138@00310.impulsevoip.net\",\n        \"3139@00310.impulsevoip.net\",\n        \"3140@00310.impulsevoip.net\",\n        \"3141@00310.impulsevoip.net\",\n        \"3142@00310.impulsevoip.net\",\n        \"3143@00310.impulsevoip.net\",\n        \"3144@00310.impulsevoip.net\",\n        \"3145@00310.impulsevoip.net\",\n        \"3146@00310.impulsevoip.net\",\n        \"3147@00310.impulsevoip.net\",\n        \"3148@00310.impulsevoip.net\",\n        \"3149@00310.impulsevoip.net\",\n        \"3150@00310.impulsevoip.net\",\n        \"3151@00310.impulsevoip.net\",\n        \"3152@00310.impulsevoip.net\",\n        \"3153@00310.impulsevoip.net\",\n        \"3154@00310.impulsevoip.net\",\n        \"3155@00310.impulsevoip.net\",\n        \"3156@00310.impulsevoip.net\",\n        \"3157@00310.impulsevoip.net\",\n        \"3158@00310.impulsevoip.net\",\n        \"3159@00310.impulsevoip.net\",\n        \"3160@00310.impulsevoip.net\",\n        \"3161@00310.impulsevoip.net\",\n        \"3162@00310.impulsevoip.net\",\n        \"3163@00310.impulsevoip.net\",\n        \"3164@00310.impulsevoip.net\",\n        \"3165@00310.impulsevoip.net\",\n        \"3166@00310.impulsevoip.net\",\n        \"3167@00310.impulsevoip.net\",\n        \"3424@00310.impulsevoip.net\",\n        \"3425@00310.impulsevoip.net\",\n        \"3426@00310.impulsevoip.net\",\n        \"3427@00310.impulsevoip.net\",\n        \"3428@00310.impulsevoip.net\",\n        \"3429@00310.impulsevoip.net\",\n        \"3430@00310.impulsevoip.net\",\n        \"3431@00310.impulsevoip.net\",\n        \"3432@00310.impulsevoip.net\",\n        \"3433@00310.impulsevoip.net\",\n        \"3434@00310.impulsevoip.net\",\n        \"3435@00310.impulsevoip.net\",\n        \"3436@00310.impulsevoip.net\",\n        \"3437@00310.impulsevoip.net\",\n        \"3438@00310.impulsevoip.net\",\n        \"3439@00310.impulsevoip.net\",\n        \"3440@00310.impulsevoip.net\",\n        \"3441@00310.impulsevoip.net\",\n        \"3442@00310.impulsevoip.net\",\n        \"3443@00310.impulsevoip.net\",\n        \"3444@00310.impulsevoip.net\",\n        \"3445@00310.impulsevoip.net\",\n        \"3446@00310.impulsevoip.net\",\n        \"3447@00310.impulsevoip.net\",\n        \"3448@00310.impulsevoip.net\",\n        \"3449@00310.impulsevoip.net\",\n        \"3450@00310.impulsevoip.net\",\n        \"3451@00310.impulsevoip.net\",\n        \"3452@00310.impulsevoip.net\",\n        \"3453@00310.impulsevoip.net\",\n        \"3454@00310.impulsevoip.net\",\n        \"3455@00310.impulsevoip.net\",\n        \"3456@00310.impulsevoip.net\",\n        \"3457@00310.impulsevoip.net\",\n        \"3458@00310.impulsevoip.net\",\n        \"3459@00310.impulsevoip.net\",\n        \"3460@00310.impulsevoip.net\",\n        \"3461@00310.impulsevoip.net\",\n        \"3462@00310.impulsevoip.net\",\n        \"3463@00310.impulsevoip.net\",\n        \"3464@00310.impulsevoip.net\",\n        \"3465@00310.impulsevoip.net\",\n        \"3466@00310.impulsevoip.net\",\n        \"3467@00310.impulsevoip.net\",\n        \"3468@00310.impulsevoip.net\",\n        \"3469@00310.impulsevoip.net\",\n        \"3470@00310.impulsevoip.net\",\n        \"3471@00310.impulsevoip.net\",\n        \"3472@00310.impulsevoip.net\",\n        \"3473@00310.impulsevoip.net\",\n        \"3474@00310.impulsevoip.net\",\n        \"3475@00310.impulsevoip.net\",\n        \"3476@00310.impulsevoip.net\",\n        \"3477@00310.impulsevoip.net\",\n        \"3478@00310.impulsevoip.net\",\n        \"3479@00310.impulsevoip.net\",\n        \"3480@00310.impulsevoip.net\",\n        \"3481@00310.impulsevoip.net\",\n        \"3482@00310.impulsevoip.net\",\n        \"3483@00310.impulsevoip.net\",\n        \"3484@00310.impulsevoip.net\",\n        \"3485@00310.impulsevoip.net\",\n        \"3486@00310.impulsevoip.net\",\n        \"3487@00310.impulsevoip.net\",\n        \"3488@00310.impulsevoip.net\",\n        \"3489@00310.impulsevoip.net\",\n        \"3490@00310.impulsevoip.net\",\n        \"3491@00310.impulsevoip.net\",\n        \"3492@00310.impulsevoip.net\",\n        \"3493@00310.impulsevoip.net\",\n        \"3494@00310.impulsevoip.net\",\n        \"3495@00310.impulsevoip.net\",\n        \"3496@00310.impulsevoip.net\",\n        \"3497@00310.impulsevoip.net\",\n        \"3498@00310.impulsevoip.net\",\n        \"3499@00310.impulsevoip.net\",\n        \"3500@00310.impulsevoip.net\",\n        \"3501@00310.impulsevoip.net\",\n        \"3502@00310.impulsevoip.net\",\n        \"3503@00310.impulsevoip.net\",\n        \"3504@00310.impulsevoip.net\",\n        \"3505@00310.impulsevoip.net\",\n        \"3506@00310.impulsevoip.net\",\n        \"3507@00310.impulsevoip.net\",\n        \"3508@00310.impulsevoip.net\",\n        \"3509@00310.impulsevoip.net\",\n        \"3510@00310.impulsevoip.net\",\n        \"3511@00310.impulsevoip.net\",\n        \"3512@00310.impulsevoip.net\",\n        \"3513@00310.impulsevoip.net\",\n        \"3514@00310.impulsevoip.net\",\n        \"3515@00310.impulsevoip.net\",\n        \"3516@00310.impulsevoip.net\",\n        \"3517@00310.impulsevoip.net\",\n        \"3518@00310.impulsevoip.net\",\n        \"3519@00310.impulsevoip.net\",\n        \"3520@00310.impulsevoip.net\",\n        \"3521@00310.impulsevoip.net\",\n        \"3522@00310.impulsevoip.net\",\n        \"3523@00310.impulsevoip.net\",\n        \"3524@00310.impulsevoip.net\",\n        \"3525@00310.impulsevoip.net\",\n        \"3526@00310.impulsevoip.net\",\n        \"3527@00310.impulsevoip.net\",\n        \"3528@00310.impulsevoip.net\",\n        \"3529@00310.impulsevoip.net\",\n        \"3530@00310.impulsevoip.net\",\n        \"3531@00310.impulsevoip.net\",\n        \"3532@00310.impulsevoip.net\",\n        \"3533@00310.impulsevoip.net\",\n        \"3534@00310.impulsevoip.net\",\n        \"3535@00310.impulsevoip.net\",\n        \"3536@00310.impulsevoip.net\",\n        \"3537@00310.impulsevoip.net\",\n        \"3538@00310.impulsevoip.net\",\n        \"3539@00310.impulsevoip.net\",\n        \"3540@00310.impulsevoip.net\",\n        \"3541@00310.impulsevoip.net\",\n        \"3542@00310.impulsevoip.net\",\n        \"3543@00310.impulsevoip.net\",\n        \"3544@00310.impulsevoip.net\",\n        \"3545@00310.impulsevoip.net\",\n        \"3546@00310.impulsevoip.net\",\n        \"3547@00310.impulsevoip.net\",\n        \"3548@00310.impulsevoip.net\",\n        \"3549@00310.impulsevoip.net\",\n        \"3550@00310.impulsevoip.net\",\n        \"3551@00310.impulsevoip.net\",\n        \"3552@00310.impulsevoip.net\",\n        \"3553@00310.impulsevoip.net\",\n        \"3554@00310.impulsevoip.net\",\n        \"3555@00310.impulsevoip.net\",\n        \"3556@00310.impulsevoip.net\",\n        \"3557@00310.impulsevoip.net\",\n        \"3558@00310.impulsevoip.net\",\n        \"3559@00310.impulsevoip.net\",\n        \"3560@00310.impulsevoip.net\",\n        \"3561@00310.impulsevoip.net\",\n        \"3562@00310.impulsevoip.net\",\n        \"3563@00310.impulsevoip.net\",\n        \"3564@00310.impulsevoip.net\",\n        \"3565@00310.impulsevoip.net\",\n        \"3566@00310.impulsevoip.net\",\n        \"3567@00310.impulsevoip.net\",\n        \"3568@00310.impulsevoip.net\",\n        \"3569@00310.impulsevoip.net\",\n        \"3570@00310.impulsevoip.net\",\n        \"3571@00310.impulsevoip.net\",\n        \"3572@00310.impulsevoip.net\",\n        \"3573@00310.impulsevoip.net\",\n        \"3574@00310.impulsevoip.net\",\n        \"3575@00310.impulsevoip.net\",\n        \"3576@00310.impulsevoip.net\",\n        \"3577@00310.impulsevoip.net\",\n        \"3578@00310.impulsevoip.net\",\n        \"3579@00310.impulsevoip.net\",\n        \"3580@00310.impulsevoip.net\",\n        \"3581@00310.impulsevoip.net\",\n        \"3582@00310.impulsevoip.net\",\n        \"3583@00310.impulsevoip.net\",\n        \"3584@00310.impulsevoip.net\",\n        \"3585@00310.impulsevoip.net\",\n        \"3586@00310.impulsevoip.net\",\n        \"3587@00310.impulsevoip.net\",\n        \"3588@00310.impulsevoip.net\",\n        \"3589@00310.impulsevoip.net\",\n        \"3590@00310.impulsevoip.net\",\n        \"3591@00310.impulsevoip.net\",\n        \"3592@00310.impulsevoip.net\",\n        \"3593@00310.impulsevoip.net\",\n        \"3594@00310.impulsevoip.net\",\n        \"3595@00310.impulsevoip.net\",\n        \"3596@00310.impulsevoip.net\",\n        \"3597@00310.impulsevoip.net\",\n        \"3598@00310.impulsevoip.net\",\n        \"3599@00310.impulsevoip.net\",\n        \"3600@00310.impulsevoip.net\",\n        \"3601@00310.impulsevoip.net\",\n        \"3602@00310.impulsevoip.net\",\n        \"3603@00310.impulsevoip.net\",\n        \"3604@00310.impulsevoip.net\",\n        \"3605@00310.impulsevoip.net\",\n        \"3606@00310.impulsevoip.net\",\n        \"3607@00310.impulsevoip.net\",\n        \"3608@00310.impulsevoip.net\",\n        \"3609@00310.impulsevoip.net\",\n        \"3610@00310.impulsevoip.net\",\n        \"3611@00310.impulsevoip.net\",\n        \"3612@00310.impulsevoip.net\",\n        \"3613@00310.impulsevoip.net\",\n        \"3614@00310.impulsevoip.net\",\n        \"3615@00310.impulsevoip.net\",\n        \"3616@00310.impulsevoip.net\",\n        \"3617@00310.impulsevoip.net\",\n        \"3618@00310.impulsevoip.net\",\n        \"3619@00310.impulsevoip.net\",\n        \"3620@00310.impulsevoip.net\",\n        \"3621@00310.impulsevoip.net\",\n        \"3622@00310.impulsevoip.net\",\n        \"3623@00310.impulsevoip.net\",\n        \"3624@00310.impulsevoip.net\",\n        \"3625@00310.impulsevoip.net\",\n        \"3626@00310.impulsevoip.net\",\n        \"3627@00310.impulsevoip.net\",\n        \"3628@00310.impulsevoip.net\",\n        \"3629@00310.impulsevoip.net\",\n        \"3630@00310.impulsevoip.net\",\n        \"3631@00310.impulsevoip.net\",\n        \"3632@00310.impulsevoip.net\",\n        \"3633@00310.impulsevoip.net\",\n        \"3634@00310.impulsevoip.net\",\n        \"3635@00310.impulsevoip.net\",\n        \"3636@00310.impulsevoip.net\",\n        \"3637@00310.impulsevoip.net\",\n        \"3638@00310.impulsevoip.net\",\n        \"3639@00310.impulsevoip.net\",\n        \"3640@00310.impulsevoip.net\",\n        \"3641@00310.impulsevoip.net\",\n        \"3642@00310.impulsevoip.net\",\n        \"3643@00310.impulsevoip.net\",\n        \"3644@00310.impulsevoip.net\",\n        \"3645@00310.impulsevoip.net\",\n        \"3646@00310.impulsevoip.net\",\n        \"3647@00310.impulsevoip.net\",\n        \"3648@00310.impulsevoip.net\",\n        \"3649@00310.impulsevoip.net\",\n        \"3650@00310.impulsevoip.net\",\n        \"3651@00310.impulsevoip.net\",\n        \"3652@00310.impulsevoip.net\",\n        \"3653@00310.impulsevoip.net\",\n        \"3654@00310.impulsevoip.net\",\n        \"3655@00310.impulsevoip.net\",\n        \"3656@00310.impulsevoip.net\",\n        \"3657@00310.impulsevoip.net\",\n        \"3658@00310.impulsevoip.net\",\n        \"3659@00310.impulsevoip.net\",\n        \"3660@00310.impulsevoip.net\",\n        \"3661@00310.impulsevoip.net\",\n        \"3662@00310.impulsevoip.net\",\n        \"3663@00310.impulsevoip.net\",\n        \"3664@00310.impulsevoip.net\",\n        \"3665@00310.impulsevoip.net\",\n        \"3666@00310.impulsevoip.net\",\n        \"3667@00310.impulsevoip.net\",\n        \"3668@00310.impulsevoip.net\",\n        \"3669@00310.impulsevoip.net\",\n        \"3670@00310.impulsevoip.net\",\n        \"3671@00310.impulsevoip.net\",\n        \"3672@00310.impulsevoip.net\",\n        \"3673@00310.impulsevoip.net\",\n        \"3674@00310.impulsevoip.net\",\n        \"3675@00310.impulsevoip.net\",\n        \"3676@00310.impulsevoip.net\",\n        \"3677@00310.impulsevoip.net\",\n        \"3678@00310.impulsevoip.net\",\n        \"3679@00310.impulsevoip.net\",\n        \"3680@00310.impulsevoip.net\",\n        \"3681@00310.impulsevoip.net\",\n        \"3682@00310.impulsevoip.net\",\n        \"3683@00310.impulsevoip.net\",\n        \"3684@00310.impulsevoip.net\",\n        \"3685@00310.impulsevoip.net\",\n        \"3686@00310.impulsevoip.net\",\n        \"3687@00310.impulsevoip.net\",\n        \"3688@00310.impulsevoip.net\",\n        \"3689@00310.impulsevoip.net\",\n        \"3690@00310.impulsevoip.net\",\n        \"3691@00310.impulsevoip.net\",\n        \"3692@00310.impulsevoip.net\",\n        \"3693@00310.impulsevoip.net\",\n        \"3694@00310.impulsevoip.net\",\n        \"3695@00310.impulsevoip.net\",\n        \"3696@00310.impulsevoip.net\",\n        \"3697@00310.impulsevoip.net\",\n        \"3698@00310.impulsevoip.net\",\n        \"3699@00310.impulsevoip.net\",\n        \"3700@00310.impulsevoip.net\",\n        \"3701@00310.impulsevoip.net\",\n        \"3702@00310.impulsevoip.net\",\n        \"3703@00310.impulsevoip.net\",\n        \"3704@00310.impulsevoip.net\",\n        \"3705@00310.impulsevoip.net\",\n        \"3706@00310.impulsevoip.net\",\n        \"3707@00310.impulsevoip.net\",\n        \"3708@00310.impulsevoip.net\",\n        \"3709@00310.impulsevoip.net\",\n        \"3710@00310.impulsevoip.net\",\n        \"3711@00310.impulsevoip.net\",\n        \"3712@00310.impulsevoip.net\",\n        \"3713@00310.impulsevoip.net\",\n        \"3714@00310.impulsevoip.net\",\n        \"3715@00310.impulsevoip.net\",\n        \"3716@00310.impulsevoip.net\",\n        \"3717@00310.impulsevoip.net\",\n        \"3718@00310.impulsevoip.net\",\n        \"3719@00310.impulsevoip.net\",\n        \"3720@00310.impulsevoip.net\",\n        \"3721@00310.impulsevoip.net\",\n        \"3722@00310.impulsevoip.net\",\n        \"3723@00310.impulsevoip.net\",\n        \"3724@00310.impulsevoip.net\",\n        \"3725@00310.impulsevoip.net\",\n        \"3726@00310.impulsevoip.net\",\n        \"3727@00310.impulsevoip.net\",\n        \"3728@00310.impulsevoip.net\",\n        \"3729@00310.impulsevoip.net\",\n        \"3730@00310.impulsevoip.net\",\n        \"3731@00310.impulsevoip.net\",\n        \"3732@00310.impulsevoip.net\",\n        \"3733@00310.impulsevoip.net\",\n        \"3734@00310.impulsevoip.net\",\n        \"3735@00310.impulsevoip.net\",\n        \"3736@00310.impulsevoip.net\",\n        \"3737@00310.impulsevoip.net\",\n        \"3738@00310.impulsevoip.net\",\n        \"3739@00310.impulsevoip.net\",\n        \"3740@00310.impulsevoip.net\",\n        \"3741@00310.impulsevoip.net\",\n        \"3742@00310.impulsevoip.net\",\n        \"3743@00310.impulsevoip.net\",\n        \"3744@00310.impulsevoip.net\",\n        \"3745@00310.impulsevoip.net\",\n        \"3746@00310.impulsevoip.net\",\n        \"3747@00310.impulsevoip.net\",\n        \"3748@00310.impulsevoip.net\",\n        \"3749@00310.impulsevoip.net\",\n        \"3750@00310.impulsevoip.net\",\n        \"3751@00310.impulsevoip.net\",\n        \"3752@00310.impulsevoip.net\",\n        \"3753@00310.impulsevoip.net\",\n        \"3754@00310.impulsevoip.net\",\n        \"3755@00310.impulsevoip.net\",\n        \"3756@00310.impulsevoip.net\",\n        \"3757@00310.impulsevoip.net\",\n        \"3758@00310.impulsevoip.net\",\n        \"3759@00310.impulsevoip.net\",\n        \"3760@00310.impulsevoip.net\",\n        \"3761@00310.impulsevoip.net\",\n        \"3762@00310.impulsevoip.net\",\n        \"3763@00310.impulsevoip.net\",\n        \"3764@00310.impulsevoip.net\",\n        \"3765@00310.impulsevoip.net\",\n        \"3766@00310.impulsevoip.net\",\n        \"3767@00310.impulsevoip.net\",\n        \"3768@00310.impulsevoip.net\",\n        \"3769@00310.impulsevoip.net\",\n        \"3770@00310.impulsevoip.net\",\n        \"3771@00310.impulsevoip.net\",\n        \"3772@00310.impulsevoip.net\",\n        \"3773@00310.impulsevoip.net\",\n        \"3774@00310.impulsevoip.net\",\n        \"3775@00310.impulsevoip.net\",\n        \"3776@00310.impulsevoip.net\",\n        \"3777@00310.impulsevoip.net\",\n        \"3778@00310.impulsevoip.net\",\n        \"3779@00310.impulsevoip.net\",\n        \"3780@00310.impulsevoip.net\",\n        \"3781@00310.impulsevoip.net\",\n        \"3782@00310.impulsevoip.net\",\n        \"3783@00310.impulsevoip.net\",\n        \"3784@00310.impulsevoip.net\",\n        \"3785@00310.impulsevoip.net\",\n        \"3786@00310.impulsevoip.net\",\n        \"3787@00310.impulsevoip.net\",\n        \"3788@00310.impulsevoip.net\",\n        \"3789@00310.impulsevoip.net\",\n        \"3790@00310.impulsevoip.net\",\n        \"3791@00310.impulsevoip.net\",\n        \"3792@00310.impulsevoip.net\",\n        \"3793@00310.impulsevoip.net\",\n        \"3794@00310.impulsevoip.net\",\n        \"3795@00310.impulsevoip.net\",\n        \"3796@00310.impulsevoip.net\",\n        \"3797@00310.impulsevoip.net\",\n        \"3798@00310.impulsevoip.net\",\n        \"3799@00310.impulsevoip.net\",\n        \"3800@00310.impulsevoip.net\",\n        \"3801@00310.impulsevoip.net\",\n        \"3802@00310.impulsevoip.net\",\n        \"3803@00310.impulsevoip.net\",\n        \"3804@00310.impulsevoip.net\",\n        \"3805@00310.impulsevoip.net\",\n        \"3806@00310.impulsevoip.net\",\n        \"3807@00310.impulsevoip.net\",\n        \"3808@00310.impulsevoip.net\",\n        \"3809@00310.impulsevoip.net\",\n        \"3810@00310.impulsevoip.net\",\n        \"3811@00310.impulsevoip.net\",\n        \"3812@00310.impulsevoip.net\",\n        \"3813@00310.impulsevoip.net\",\n        \"3814@00310.impulsevoip.net\",\n        \"3815@00310.impulsevoip.net\",\n        \"3816@00310.impulsevoip.net\",\n        \"3817@00310.impulsevoip.net\",\n        \"3818@00310.impulsevoip.net\",\n        \"3819@00310.impulsevoip.net\",\n        \"3820@00310.impulsevoip.net\",\n        \"3821@00310.impulsevoip.net\",\n        \"3822@00310.impulsevoip.net\",\n        \"3823@00310.impulsevoip.net\",\n        \"3824@00310.impulsevoip.net\",\n        \"3825@00310.impulsevoip.net\",\n        \"3826@00310.impulsevoip.net\",\n        \"3827@00310.impulsevoip.net\",\n        \"3828@00310.impulsevoip.net\",\n        \"3829@00310.impulsevoip.net\",\n        \"3830@00310.impulsevoip.net\",\n        \"3831@00310.impulsevoip.net\",\n        \"3832@00310.impulsevoip.net\",\n        \"3833@00310.impulsevoip.net\",\n        \"3834@00310.impulsevoip.net\",\n        \"3835@00310.impulsevoip.net\",\n        \"3836@00310.impulsevoip.net\",\n        \"3837@00310.impulsevoip.net\",\n        \"3838@00310.impulsevoip.net\",\n        \"3839@00310.impulsevoip.net\",\n        \"3840@00310.impulsevoip.net\",\n        \"3841@00310.impulsevoip.net\",\n        \"3842@00310.impulsevoip.net\",\n        \"3843@00310.impulsevoip.net\",\n        \"3844@00310.impulsevoip.net\",\n        \"3845@00310.impulsevoip.net\",\n        \"3846@00310.impulsevoip.net\",\n        \"3847@00310.impulsevoip.net\",\n        \"3848@00310.impulsevoip.net\",\n        \"3849@00310.impulsevoip.net\",\n        \"3850@00310.impulsevoip.net\",\n        \"3851@00310.impulsevoip.net\",\n        \"3852@00310.impulsevoip.net\",\n        \"3853@00310.impulsevoip.net\",\n        \"3854@00310.impulsevoip.net\",\n        \"3855@00310.impulsevoip.net\",\n        \"3856@00310.impulsevoip.net\",\n        \"3857@00310.impulsevoip.net\",\n        \"3858@00310.impulsevoip.net\",\n        \"3859@00310.impulsevoip.net\",\n        \"3860@00310.impulsevoip.net\",\n        \"3861@00310.impulsevoip.net\",\n        \"3862@00310.impulsevoip.net\",\n        \"3863@00310.impulsevoip.net\",\n        \"3864@00310.impulsevoip.net\",\n        \"3865@00310.impulsevoip.net\",\n        \"3866@00310.impulsevoip.net\",\n        \"3867@00310.impulsevoip.net\",\n        \"3868@00310.impulsevoip.net\",\n        \"3869@00310.impulsevoip.net\",\n        \"3870@00310.impulsevoip.net\",\n        \"3871@00310.impulsevoip.net\",\n        \"3872@00310.impulsevoip.net\",\n        \"3873@00310.impulsevoip.net\",\n        \"3874@00310.impulsevoip.net\",\n        \"3875@00310.impulsevoip.net\",\n        \"3876@00310.impulsevoip.net\",\n        \"3877@00310.impulsevoip.net\",\n        \"3878@00310.impulsevoip.net\",\n        \"3879@00310.impulsevoip.net\",\n        \"3880@00310.impulsevoip.net\",\n        \"3881@00310.impulsevoip.net\",\n        \"3882@00310.impulsevoip.net\",\n        \"3883@00310.impulsevoip.net\",\n        \"3884@00310.impulsevoip.net\",\n        \"3885@00310.impulsevoip.net\",\n        \"3886@00310.impulsevoip.net\",\n        \"3887@00310.impulsevoip.net\",\n        \"3888@00310.impulsevoip.net\",\n        \"3889@00310.impulsevoip.net\",\n        \"3890@00310.impulsevoip.net\",\n        \"3891@00310.impulsevoip.net\",\n        \"3892@00310.impulsevoip.net\",\n        \"3893@00310.impulsevoip.net\",\n        \"3894@00310.impulsevoip.net\",\n        \"3895@00310.impulsevoip.net\",\n        \"3896@00310.impulsevoip.net\",\n        \"3897@00310.impulsevoip.net\",\n        \"3898@00310.impulsevoip.net\",\n        \"3899@00310.impulsevoip.net\",\n        \"3900@00310.impulsevoip.net\",\n        \"3901@00310.impulsevoip.net\",\n        \"3902@00310.impulsevoip.net\",\n        \"3903@00310.impulsevoip.net\",\n        \"3904@00310.impulsevoip.net\",\n        \"3905@00310.impulsevoip.net\",\n        \"3906@00310.impulsevoip.net\",\n        \"3907@00310.impulsevoip.net\",\n        \"3908@00310.impulsevoip.net\",\n        \"3909@00310.impulsevoip.net\",\n        \"3910@00310.impulsevoip.net\",\n        \"3912@00310.impulsevoip.net\",\n        \"3913@00310.impulsevoip.net\",\n        \"3914@00310.impulsevoip.net\",\n        \"3915@00310.impulsevoip.net\",\n        \"3916@00310.impulsevoip.net\",\n        \"3917@00310.impulsevoip.net\",\n        \"3918@00310.impulsevoip.net\",\n        \"3919@00310.impulsevoip.net\",\n        \"3920@00310.impulsevoip.net\",\n        \"3921@00310.impulsevoip.net\",\n        \"3922@00310.impulsevoip.net\",\n        \"3923@00310.impulsevoip.net\",\n        \"3924@00310.impulsevoip.net\",\n        \"3925@00310.impulsevoip.net\",\n        \"3926@00310.impulsevoip.net\",\n        \"3927@00310.impulsevoip.net\",\n        \"3928@00310.impulsevoip.net\",\n        \"3929@00310.impulsevoip.net\",\n        \"3930@00310.impulsevoip.net\",\n        \"3931@00310.impulsevoip.net\",\n        \"3932@00310.impulsevoip.net\",\n        \"3933@00310.impulsevoip.net\",\n        \"3934@00310.impulsevoip.net\",\n        \"3935@00310.impulsevoip.net\",\n        \"3936@00310.impulsevoip.net\",\n        \"3937@00310.impulsevoip.net\",\n        \"3938@00310.impulsevoip.net\",\n        \"3939@00310.impulsevoip.net\",\n        \"3940@00310.impulsevoip.net\",\n        \"3941@00310.impulsevoip.net\",\n        \"3942@00310.impulsevoip.net\",\n        \"3943@00310.impulsevoip.net\",\n        \"3944@00310.impulsevoip.net\",\n        \"3945@00310.impulsevoip.net\",\n        \"3946@00310.impulsevoip.net\",\n        \"3947@00310.impulsevoip.net\",\n        \"3948@00310.impulsevoip.net\",\n        \"3949@00310.impulsevoip.net\",\n        \"3950@00310.impulsevoip.net\",\n        \"3951@00310.impulsevoip.net\",\n        \"3952@00310.impulsevoip.net\",\n        \"3953@00310.impulsevoip.net\",\n        \"3954@00310.impulsevoip.net\",\n        \"3955@00310.impulsevoip.net\",\n        \"3956@00310.impulsevoip.net\",\n        \"3957@00310.impulsevoip.net\",\n        \"3958@00310.impulsevoip.net\",\n        \"3959@00310.impulsevoip.net\",\n        \"3960@00310.impulsevoip.net\",\n        \"3961@00310.impulsevoip.net\",\n        \"3962@00310.impulsevoip.net\",\n        \"3963@00310.impulsevoip.net\",\n        \"3964@00310.impulsevoip.net\",\n        \"3965@00310.impulsevoip.net\",\n        \"3966@00310.impulsevoip.net\",\n        \"3967@00310.impulsevoip.net\",\n        \"3968@00310.impulsevoip.net\",\n        \"3969@00310.impulsevoip.net\",\n        \"3970@00310.impulsevoip.net\",\n        \"3971@00310.impulsevoip.net\",\n        \"3972@00310.impulsevoip.net\",\n        \"3973@00310.impulsevoip.net\",\n        \"3974@00310.impulsevoip.net\",\n        \"3975@00310.impulsevoip.net\",\n        \"3976@00310.impulsevoip.net\",\n        \"3977@00310.impulsevoip.net\",\n        \"3978@00310.impulsevoip.net\",\n        \"3979@00310.impulsevoip.net\",\n        \"3980@00310.impulsevoip.net\",\n        \"3981@00310.impulsevoip.net\",\n        \"3982@00310.impulsevoip.net\",\n        \"3983@00310.impulsevoip.net\",\n        \"3984@00310.impulsevoip.net\",\n        \"3985@00310.impulsevoip.net\",\n        \"3986@00310.impulsevoip.net\",\n        \"3987@00310.impulsevoip.net\",\n        \"3988@00310.impulsevoip.net\",\n        \"3989@00310.impulsevoip.net\",\n        \"3990@00310.impulsevoip.net\",\n        \"3991@00310.impulsevoip.net\",\n        \"3992@00310.impulsevoip.net\",\n        \"3993@00310.impulsevoip.net\",\n        \"3994@00310.impulsevoip.net\",\n        \"3995@00310.impulsevoip.net\",\n        \"3996@00310.impulsevoip.net\",\n        \"3997@00310.impulsevoip.net\",\n        \"3998@00310.impulsevoip.net\",\n        \"3999@00310.impulsevoip.net\",\n        \"4000@00310.impulsevoip.net\",\n        \"4001@00310.impulsevoip.net\",\n        \"4002@00310.impulsevoip.net\",\n        \"4003@00310.impulsevoip.net\",\n        \"4004@00310.impulsevoip.net\",\n        \"4005@00310.impulsevoip.net\",\n        \"4006@00310.impulsevoip.net\",\n        \"4007@00310.impulsevoip.net\",\n        \"4008@00310.impulsevoip.net\",\n        \"4009@00310.impulsevoip.net\",\n        \"4010@00310.impulsevoip.net\",\n        \"4011@00310.impulsevoip.net\",\n        \"4012@00310.impulsevoip.net\",\n        \"4013@00310.impulsevoip.net\",\n        \"4014@00310.impulsevoip.net\",\n        \"4015@00310.impulsevoip.net\",\n        \"4016@00310.impulsevoip.net\",\n        \"4017@00310.impulsevoip.net\",\n        \"4018@00310.impulsevoip.net\",\n        \"4019@00310.impulsevoip.net\",\n        \"4020@00310.impulsevoip.net\",\n        \"4021@00310.impulsevoip.net\",\n        \"4022@00310.impulsevoip.net\",\n        \"4023@00310.impulsevoip.net\",\n        \"4024@00310.impulsevoip.net\",\n        \"4025@00310.impulsevoip.net\",\n        \"4026@00310.impulsevoip.net\",\n        \"4027@00310.impulsevoip.net\",\n        \"4028@00310.impulsevoip.net\",\n        \"4029@00310.impulsevoip.net\",\n        \"4030@00310.impulsevoip.net\",\n        \"4031@00310.impulsevoip.net\",\n        \"4032@00310.impulsevoip.net\",\n        \"4033@00310.impulsevoip.net\",\n        \"4034@00310.impulsevoip.net\",\n        \"4035@00310.impulsevoip.net\",\n        \"4036@00310.impulsevoip.net\",\n        \"4037@00310.impulsevoip.net\",\n        \"4038@00310.impulsevoip.net\",\n        \"4039@00310.impulsevoip.net\",\n        \"4040@00310.impulsevoip.net\",\n        \"4041@00310.impulsevoip.net\",\n        \"4042@00310.impulsevoip.net\",\n        \"4043@00310.impulsevoip.net\",\n        \"4044@00310.impulsevoip.net\",\n        \"4045@00310.impulsevoip.net\",\n        \"4046@00310.impulsevoip.net\",\n        \"4047@00310.impulsevoip.net\",\n        \"4048@00310.impulsevoip.net\",\n        \"4049@00310.impulsevoip.net\",\n        \"4050@00310.impulsevoip.net\",\n        \"4051@00310.impulsevoip.net\",\n        \"4052@00310.impulsevoip.net\",\n        \"4053@00310.impulsevoip.net\",\n        \"4054@00310.impulsevoip.net\",\n        \"4055@00310.impulsevoip.net\",\n        \"4056@00310.impulsevoip.net\",\n        \"4057@00310.impulsevoip.net\",\n        \"4058@00310.impulsevoip.net\",\n        \"4059@00310.impulsevoip.net\",\n        \"4060@00310.impulsevoip.net\",\n        \"4061@00310.impulsevoip.net\",\n        \"4062@00310.impulsevoip.net\",\n        \"4063@00310.impulsevoip.net\",\n        \"4064@00310.impulsevoip.net\",\n        \"4065@00310.impulsevoip.net\",\n        \"4066@00310.impulsevoip.net\",\n        \"4067@00310.impulsevoip.net\",\n        \"4068@00310.impulsevoip.net\",\n        \"4069@00310.impulsevoip.net\",\n        \"4070@00310.impulsevoip.net\",\n        \"4071@00310.impulsevoip.net\",\n        \"4072@00310.impulsevoip.net\",\n        \"4073@00310.impulsevoip.net\",\n        \"4074@00310.impulsevoip.net\",\n        \"4075@00310.impulsevoip.net\",\n        \"4076@00310.impulsevoip.net\",\n        \"4077@00310.impulsevoip.net\",\n        \"4078@00310.impulsevoip.net\",\n        \"4079@00310.impulsevoip.net\",\n        \"4080@00310.impulsevoip.net\",\n        \"4081@00310.impulsevoip.net\",\n        \"4082@00310.impulsevoip.net\",\n        \"4083@00310.impulsevoip.net\",\n        \"4084@00310.impulsevoip.net\",\n        \"4085@00310.impulsevoip.net\",\n        \"4086@00310.impulsevoip.net\",\n        \"4087@00310.impulsevoip.net\",\n        \"4088@00310.impulsevoip.net\",\n        \"4089@00310.impulsevoip.net\",\n        \"4090@00310.impulsevoip.net\",\n        \"4091@00310.impulsevoip.net\",\n        \"4092@00310.impulsevoip.net\",\n        \"4093@00310.impulsevoip.net\",\n        \"4094@00310.impulsevoip.net\",\n        \"4095@00310.impulsevoip.net\",\n        \"4096@00310.impulsevoip.net\",\n        \"4097@00310.impulsevoip.net\",\n        \"4098@00310.impulsevoip.net\",\n        \"4099@00310.impulsevoip.net\",\n        \"4100@00310.impulsevoip.net\",\n        \"4101@00310.impulsevoip.net\",\n        \"4102@00310.impulsevoip.net\",\n        \"4103@00310.impulsevoip.net\",\n        \"4104@00310.impulsevoip.net\",\n        \"4105@00310.impulsevoip.net\",\n        \"4106@00310.impulsevoip.net\",\n        \"4107@00310.impulsevoip.net\",\n        \"4108@00310.impulsevoip.net\",\n        \"4109@00310.impulsevoip.net\",\n        \"4110@00310.impulsevoip.net\",\n        \"4111@00310.impulsevoip.net\",\n        \"4112@00310.impulsevoip.net\",\n        \"4113@00310.impulsevoip.net\",\n        \"4114@00310.impulsevoip.net\",\n        \"4115@00310.impulsevoip.net\",\n        \"4116@00310.impulsevoip.net\",\n        \"4117@00310.impulsevoip.net\",\n        \"4118@00310.impulsevoip.net\",\n        \"4119@00310.impulsevoip.net\",\n        \"4120@00310.impulsevoip.net\",\n        \"4121@00310.impulsevoip.net\",\n        \"4122@00310.impulsevoip.net\",\n        \"4123@00310.impulsevoip.net\",\n        \"4124@00310.impulsevoip.net\",\n        \"4125@00310.impulsevoip.net\",\n        \"4126@00310.impulsevoip.net\",\n        \"4127@00310.impulsevoip.net\",\n        \"4128@00310.impulsevoip.net\",\n        \"4129@00310.impulsevoip.net\",\n        \"4130@00310.impulsevoip.net\",\n        \"4131@00310.impulsevoip.net\",\n        \"4132@00310.impulsevoip.net\",\n        \"4133@00310.impulsevoip.net\",\n        \"4134@00310.impulsevoip.net\",\n        \"4135@00310.impulsevoip.net\",\n        \"4136@00310.impulsevoip.net\",\n        \"4137@00310.impulsevoip.net\",\n        \"4138@00310.impulsevoip.net\",\n        \"4139@00310.impulsevoip.net\",\n        \"4140@00310.impulsevoip.net\",\n        \"4141@00310.impulsevoip.net\",\n        \"4142@00310.impulsevoip.net\",\n        \"4143@00310.impulsevoip.net\",\n        \"4144@00310.impulsevoip.net\",\n        \"4145@00310.impulsevoip.net\",\n        \"4146@00310.impulsevoip.net\",\n        \"4147@00310.impulsevoip.net\",\n        \"4148@00310.impulsevoip.net\",\n        \"4149@00310.impulsevoip.net\",\n        \"4150@00310.impulsevoip.net\",\n        \"4151@00310.impulsevoip.net\",\n        \"4152@00310.impulsevoip.net\",\n        \"4153@00310.impulsevoip.net\",\n        \"4154@00310.impulsevoip.net\",\n        \"4155@00310.impulsevoip.net\",\n        \"4156@00310.impulsevoip.net\",\n        \"4157@00310.impulsevoip.net\",\n        \"4158@00310.impulsevoip.net\",\n        \"4159@00310.impulsevoip.net\",\n        \"4160@00310.impulsevoip.net\",\n        \"4161@00310.impulsevoip.net\",\n        \"4162@00310.impulsevoip.net\",\n        \"4163@00310.impulsevoip.net\",\n        \"4164@00310.impulsevoip.net\",\n        \"4165@00310.impulsevoip.net\",\n        \"4166@00310.impulsevoip.net\",\n        \"4167@00310.impulsevoip.net\",\n        \"4168@00310.impulsevoip.net\",\n        \"4169@00310.impulsevoip.net\",\n        \"4170@00310.impulsevoip.net\",\n        \"4171@00310.impulsevoip.net\",\n        \"4172@00310.impulsevoip.net\",\n        \"4173@00310.impulsevoip.net\",\n        \"4174@00310.impulsevoip.net\",\n        \"4175@00310.impulsevoip.net\",\n        \"4176@00310.impulsevoip.net\",\n        \"4177@00310.impulsevoip.net\",\n        \"4178@00310.impulsevoip.net\",\n        \"4179@00310.impulsevoip.net\",\n        \"4180@00310.impulsevoip.net\",\n        \"4181@00310.impulsevoip.net\",\n        \"4182@00310.impulsevoip.net\",\n        \"4183@00310.impulsevoip.net\",\n        \"4184@00310.impulsevoip.net\",\n        \"4185@00310.impulsevoip.net\",\n        \"4186@00310.impulsevoip.net\",\n        \"4187@00310.impulsevoip.net\",\n        \"4188@00310.impulsevoip.net\",\n        \"4189@00310.impulsevoip.net\",\n        \"4190@00310.impulsevoip.net\",\n        \"4191@00310.impulsevoip.net\",\n        \"4192@00310.impulsevoip.net\",\n        \"4193@00310.impulsevoip.net\",\n        \"4194@00310.impulsevoip.net\",\n        \"4195@00310.impulsevoip.net\",\n        \"4196@00310.impulsevoip.net\",\n        \"4197@00310.impulsevoip.net\",\n        \"4198@00310.impulsevoip.net\",\n        \"4199@00310.impulsevoip.net\",\n        \"4200@00310.impulsevoip.net\",\n        \"4201@00310.impulsevoip.net\",\n        \"4202@00310.impulsevoip.net\",\n        \"4203@00310.impulsevoip.net\",\n        \"4204@00310.impulsevoip.net\",\n        \"4205@00310.impulsevoip.net\",\n        \"4206@00310.impulsevoip.net\",\n        \"4207@00310.impulsevoip.net\",\n        \"4208@00310.impulsevoip.net\",\n        \"4209@00310.impulsevoip.net\",\n        \"4210@00310.impulsevoip.net\",\n        \"4211@00310.impulsevoip.net\",\n        \"4212@00310.impulsevoip.net\",\n        \"4213@00310.impulsevoip.net\",\n        \"4214@00310.impulsevoip.net\",\n        \"4215@00310.impulsevoip.net\",\n        \"4216@00310.impulsevoip.net\",\n        \"4217@00310.impulsevoip.net\",\n        \"4218@00310.impulsevoip.net\",\n        \"4219@00310.impulsevoip.net\",\n        \"4220@00310.impulsevoip.net\",\n        \"4221@00310.impulsevoip.net\",\n        \"4222@00310.impulsevoip.net\",\n        \"4223@00310.impulsevoip.net\",\n        \"4224@00310.impulsevoip.net\",\n        \"4225@00310.impulsevoip.net\",\n        \"4226@00310.impulsevoip.net\",\n        \"4227@00310.impulsevoip.net\",\n        \"4228@00310.impulsevoip.net\",\n        \"4229@00310.impulsevoip.net\",\n        \"4230@00310.impulsevoip.net\",\n        \"4231@00310.impulsevoip.net\",\n        \"4232@00310.impulsevoip.net\",\n        \"4233@00310.impulsevoip.net\",\n        \"4234@00310.impulsevoip.net\",\n        \"4235@00310.impulsevoip.net\",\n        \"4236@00310.impulsevoip.net\",\n        \"4237@00310.impulsevoip.net\",\n        \"4238@00310.impulsevoip.net\",\n        \"4239@00310.impulsevoip.net\",\n        \"4240@00310.impulsevoip.net\",\n        \"4241@00310.impulsevoip.net\",\n        \"4242@00310.impulsevoip.net\",\n        \"4243@00310.impulsevoip.net\",\n        \"4244@00310.impulsevoip.net\",\n        \"4245@00310.impulsevoip.net\",\n        \"4246@00310.impulsevoip.net\",\n        \"4247@00310.impulsevoip.net\",\n        \"4248@00310.impulsevoip.net\",\n        \"4249@00310.impulsevoip.net\",\n        \"4250@00310.impulsevoip.net\",\n        \"4251@00310.impulsevoip.net\",\n        \"4252@00310.impulsevoip.net\",\n        \"4253@00310.impulsevoip.net\",\n        \"4254@00310.impulsevoip.net\",\n        \"4255@00310.impulsevoip.net\",\n        \"4256@00310.impulsevoip.net\",\n        \"4257@00310.impulsevoip.net\",\n        \"4258@00310.impulsevoip.net\",\n        \"4259@00310.impulsevoip.net\",\n        \"4260@00310.impulsevoip.net\",\n        \"4261@00310.impulsevoip.net\",\n        \"4262@00310.impulsevoip.net\",\n        \"4263@00310.impulsevoip.net\",\n        \"4264@00310.impulsevoip.net\",\n        \"4265@00310.impulsevoip.net\",\n        \"4266@00310.impulsevoip.net\",\n        \"4267@00310.impulsevoip.net\",\n        \"4268@00310.impulsevoip.net\",\n        \"4269@00310.impulsevoip.net\",\n        \"4270@00310.impulsevoip.net\",\n        \"4271@00310.impulsevoip.net\",\n        \"4272@00310.impulsevoip.net\",\n        \"4273@00310.impulsevoip.net\",\n        \"4274@00310.impulsevoip.net\",\n        \"4275@00310.impulsevoip.net\",\n        \"4276@00310.impulsevoip.net\",\n        \"4277@00310.impulsevoip.net\",\n        \"4278@00310.impulsevoip.net\",\n        \"4279@00310.impulsevoip.net\",\n        \"4280@00310.impulsevoip.net\",\n        \"4281@00310.impulsevoip.net\",\n        \"4282@00310.impulsevoip.net\",\n        \"4283@00310.impulsevoip.net\",\n        \"4284@00310.impulsevoip.net\",\n        \"4285@00310.impulsevoip.net\",\n        \"4286@00310.impulsevoip.net\",\n        \"4287@00310.impulsevoip.net\",\n        \"4288@00310.impulsevoip.net\",\n        \"4289@00310.impulsevoip.net\",\n        \"4290@00310.impulsevoip.net\",\n        \"4291@00310.impulsevoip.net\",\n        \"4292@00310.impulsevoip.net\",\n        \"4293@00310.impulsevoip.net\",\n        \"4294@00310.impulsevoip.net\",\n        \"4295@00310.impulsevoip.net\",\n        \"4296@00310.impulsevoip.net\",\n        \"4297@00310.impulsevoip.net\",\n        \"4298@00310.impulsevoip.net\",\n        \"4299@00310.impulsevoip.net\",\n        \"4300@00310.impulsevoip.net\",\n        \"4301@00310.impulsevoip.net\",\n        \"4302@00310.impulsevoip.net\",\n        \"4303@00310.impulsevoip.net\",\n        \"4304@00310.impulsevoip.net\",\n        \"4305@00310.impulsevoip.net\",\n        \"4306@00310.impulsevoip.net\",\n        \"4307@00310.impulsevoip.net\",\n        \"4308@00310.impulsevoip.net\",\n        \"4309@00310.impulsevoip.net\",\n        \"4310@00310.impulsevoip.net\",\n        \"4311@00310.impulsevoip.net\",\n        \"4312@00310.impulsevoip.net\",\n        \"4313@00310.impulsevoip.net\",\n        \"4314@00310.impulsevoip.net\",\n        \"4315@00310.impulsevoip.net\",\n        \"4316@00310.impulsevoip.net\",\n        \"4317@00310.impulsevoip.net\",\n        \"4318@00310.impulsevoip.net\",\n        \"4319@00310.impulsevoip.net\",\n        \"4320@00310.impulsevoip.net\",\n        \"4321@00310.impulsevoip.net\",\n        \"4322@00310.impulsevoip.net\",\n        \"4323@00310.impulsevoip.net\",\n        \"4324@00310.impulsevoip.net\",\n        \"4325@00310.impulsevoip.net\",\n        \"4326@00310.impulsevoip.net\",\n        \"4327@00310.impulsevoip.net\",\n        \"4328@00310.impulsevoip.net\",\n        \"4329@00310.impulsevoip.net\",\n        \"4330@00310.impulsevoip.net\",\n        \"4331@00310.impulsevoip.net\",\n        \"4332@00310.impulsevoip.net\",\n        \"4333@00310.impulsevoip.net\",\n        \"4334@00310.impulsevoip.net\",\n        \"4335@00310.impulsevoip.net\",\n        \"4336@00310.impulsevoip.net\",\n        \"4337@00310.impulsevoip.net\",\n        \"4338@00310.impulsevoip.net\",\n        \"4339@00310.impulsevoip.net\",\n        \"4340@00310.impulsevoip.net\",\n        \"4341@00310.impulsevoip.net\",\n        \"4342@00310.impulsevoip.net\",\n        \"4343@00310.impulsevoip.net\",\n        \"4344@00310.impulsevoip.net\",\n        \"4345@00310.impulsevoip.net\",\n        \"4346@00310.impulsevoip.net\",\n        \"4347@00310.impulsevoip.net\",\n        \"4348@00310.impulsevoip.net\",\n        \"4349@00310.impulsevoip.net\",\n        \"4350@00310.impulsevoip.net\",\n        \"4351@00310.impulsevoip.net\",\n        \"4352@00310.impulsevoip.net\",\n        \"4353@00310.impulsevoip.net\",\n        \"4354@00310.impulsevoip.net\",\n        \"4355@00310.impulsevoip.net\",\n        \"4356@00310.impulsevoip.net\",\n        \"4357@00310.impulsevoip.net\",\n        \"4358@00310.impulsevoip.net\",\n        \"4359@00310.impulsevoip.net\",\n        \"4360@00310.impulsevoip.net\",\n        \"4361@00310.impulsevoip.net\",\n        \"4362@00310.impulsevoip.net\",\n        \"4363@00310.impulsevoip.net\",\n        \"4364@00310.impulsevoip.net\",\n        \"4365@00310.impulsevoip.net\",\n        \"4366@00310.impulsevoip.net\",\n        \"4367@00310.impulsevoip.net\",\n        \"4368@00310.impulsevoip.net\",\n        \"4369@00310.impulsevoip.net\",\n        \"4370@00310.impulsevoip.net\",\n        \"4371@00310.impulsevoip.net\",\n        \"4372@00310.impulsevoip.net\",\n        \"4373@00310.impulsevoip.net\",\n        \"4374@00310.impulsevoip.net\",\n        \"4375@00310.impulsevoip.net\",\n        \"4376@00310.impulsevoip.net\",\n        \"4377@00310.impulsevoip.net\",\n        \"4378@00310.impulsevoip.net\",\n        \"4379@00310.impulsevoip.net\",\n        \"4380@00310.impulsevoip.net\",\n        \"4381@00310.impulsevoip.net\",\n        \"4382@00310.impulsevoip.net\",\n        \"4383@00310.impulsevoip.net\",\n        \"4384@00310.impulsevoip.net\",\n        \"4385@00310.impulsevoip.net\",\n        \"4386@00310.impulsevoip.net\",\n        \"4387@00310.impulsevoip.net\",\n        \"4388@00310.impulsevoip.net\",\n        \"4389@00310.impulsevoip.net\",\n        \"4390@00310.impulsevoip.net\",\n        \"4391@00310.impulsevoip.net\",\n        \"4392@00310.impulsevoip.net\",\n        \"4393@00310.impulsevoip.net\",\n        \"4394@00310.impulsevoip.net\",\n        \"4395@00310.impulsevoip.net\",\n        \"4396@00310.impulsevoip.net\",\n        \"4397@00310.impulsevoip.net\",\n        \"4398@00310.impulsevoip.net\",\n        \"4399@00310.impulsevoip.net\",\n        \"4400@00310.impulsevoip.net\",\n        \"4401@00310.impulsevoip.net\",\n        \"4402@00310.impulsevoip.net\",\n        \"4403@00310.impulsevoip.net\",\n        \"4404@00310.impulsevoip.net\",\n        \"4405@00310.impulsevoip.net\",\n        \"4406@00310.impulsevoip.net\",\n        \"4407@00310.impulsevoip.net\",\n        \"4408@00310.impulsevoip.net\",\n        \"4409@00310.impulsevoip.net\",\n        \"4410@00310.impulsevoip.net\",\n        \"4411@00310.impulsevoip.net\",\n        \"4412@00310.impulsevoip.net\",\n        \"4413@00310.impulsevoip.net\",\n        \"4414@00310.impulsevoip.net\",\n        \"4415@00310.impulsevoip.net\",\n        \"4416@00310.impulsevoip.net\",\n        \"4417@00310.impulsevoip.net\",\n        \"4418@00310.impulsevoip.net\",\n        \"4419@00310.impulsevoip.net\",\n        \"4420@00310.impulsevoip.net\",\n        \"4421@00310.impulsevoip.net\",\n        \"4422@00310.impulsevoip.net\",\n        \"4423@00310.impulsevoip.net\",\n        \"4424@00310.impulsevoip.net\",\n        \"4425@00310.impulsevoip.net\",\n        \"4426@00310.impulsevoip.net\",\n        \"4427@00310.impulsevoip.net\",\n        \"4428@00310.impulsevoip.net\",\n        \"4429@00310.impulsevoip.net\",\n        \"4430@00310.impulsevoip.net\",\n        \"4431@00310.impulsevoip.net\",\n        \"4432@00310.impulsevoip.net\",\n        \"4433@00310.impulsevoip.net\",\n        \"4434@00310.impulsevoip.net\",\n        \"4435@00310.impulsevoip.net\",\n        \"4436@00310.impulsevoip.net\",\n        \"4437@00310.impulsevoip.net\",\n        \"4438@00310.impulsevoip.net\",\n        \"4439@00310.impulsevoip.net\",\n        \"4440@00310.impulsevoip.net\",\n        \"4441@00310.impulsevoip.net\",\n        \"4442@00310.impulsevoip.net\",\n        \"4443@00310.impulsevoip.net\",\n        \"4444@00310.impulsevoip.net\",\n        \"4445@00310.impulsevoip.net\",\n        \"4446@00310.impulsevoip.net\",\n        \"4447@00310.impulsevoip.net\",\n        \"4448@00310.impulsevoip.net\",\n        \"4449@00310.impulsevoip.net\",\n        \"4450@00310.impulsevoip.net\",\n        \"4451@00310.impulsevoip.net\",\n        \"4452@00310.impulsevoip.net\",\n        \"4453@00310.impulsevoip.net\",\n        \"4454@00310.impulsevoip.net\",\n        \"4455@00310.impulsevoip.net\",\n        \"4456@00310.impulsevoip.net\",\n        \"4457@00310.impulsevoip.net\",\n        \"4458@00310.impulsevoip.net\",\n        \"4459@00310.impulsevoip.net\",\n        \"4460@00310.impulsevoip.net\",\n        \"4461@00310.impulsevoip.net\",\n        \"4462@00310.impulsevoip.net\",\n        \"4463@00310.impulsevoip.net\",\n        \"4464@00310.impulsevoip.net\",\n        \"4465@00310.impulsevoip.net\",\n        \"4466@00310.impulsevoip.net\",\n        \"4467@00310.impulsevoip.net\",\n        \"4468@00310.impulsevoip.net\",\n        \"4469@00310.impulsevoip.net\",\n        \"4470@00310.impulsevoip.net\",\n        \"4471@00310.impulsevoip.net\",\n        \"4472@00310.impulsevoip.net\",\n        \"4473@00310.impulsevoip.net\",\n        \"4474@00310.impulsevoip.net\",\n        \"4475@00310.impulsevoip.net\",\n        \"4476@00310.impulsevoip.net\",\n        \"4477@00310.impulsevoip.net\",\n        \"4478@00310.impulsevoip.net\",\n        \"4479@00310.impulsevoip.net\",\n        \"4480@00310.impulsevoip.net\",\n        \"4481@00310.impulsevoip.net\",\n        \"4482@00310.impulsevoip.net\",\n        \"4483@00310.impulsevoip.net\",\n        \"4484@00310.impulsevoip.net\",\n        \"4485@00310.impulsevoip.net\",\n        \"4486@00310.impulsevoip.net\",\n        \"4487@00310.impulsevoip.net\",\n        \"4488@00310.impulsevoip.net\",\n        \"4489@00310.impulsevoip.net\",\n        \"4490@00310.impulsevoip.net\",\n        \"4491@00310.impulsevoip.net\",\n        \"4492@00310.impulsevoip.net\",\n        \"4493@00310.impulsevoip.net\",\n        \"4494@00310.impulsevoip.net\",\n        \"4495@00310.impulsevoip.net\",\n        \"4496@00310.impulsevoip.net\",\n        \"4497@00310.impulsevoip.net\",\n        \"4498@00310.impulsevoip.net\",\n        \"4499@00310.impulsevoip.net\",\n        \"4500@00310.impulsevoip.net\",\n        \"4501@00310.impulsevoip.net\",\n        \"4502@00310.impulsevoip.net\",\n        \"4503@00310.impulsevoip.net\",\n        \"4504@00310.impulsevoip.net\",\n        \"4505@00310.impulsevoip.net\",\n        \"4506@00310.impulsevoip.net\",\n        \"4507@00310.impulsevoip.net\",\n        \"4508@00310.impulsevoip.net\",\n        \"4509@00310.impulsevoip.net\",\n        \"4510@00310.impulsevoip.net\",\n        \"4511@00310.impulsevoip.net\",\n        \"4512@00310.impulsevoip.net\",\n        \"4513@00310.impulsevoip.net\",\n        \"4514@00310.impulsevoip.net\",\n        \"4515@00310.impulsevoip.net\",\n        \"4516@00310.impulsevoip.net\",\n        \"4517@00310.impulsevoip.net\",\n        \"4518@00310.impulsevoip.net\",\n        \"4519@00310.impulsevoip.net\",\n        \"4520@00310.impulsevoip.net\",\n        \"4521@00310.impulsevoip.net\",\n        \"4522@00310.impulsevoip.net\",\n        \"4523@00310.impulsevoip.net\",\n        \"4524@00310.impulsevoip.net\",\n        \"4525@00310.impulsevoip.net\",\n        \"4526@00310.impulsevoip.net\",\n        \"4527@00310.impulsevoip.net\",\n        \"4528@00310.impulsevoip.net\",\n        \"4529@00310.impulsevoip.net\",\n        \"4530@00310.impulsevoip.net\",\n        \"4531@00310.impulsevoip.net\",\n        \"4532@00310.impulsevoip.net\",\n        \"4533@00310.impulsevoip.net\",\n        \"4534@00310.impulsevoip.net\",\n        \"4535@00310.impulsevoip.net\",\n        \"4536@00310.impulsevoip.net\",\n        \"4537@00310.impulsevoip.net\",\n        \"4538@00310.impulsevoip.net\",\n        \"4539@00310.impulsevoip.net\",\n        \"4540@00310.impulsevoip.net\",\n        \"4541@00310.impulsevoip.net\",\n        \"4542@00310.impulsevoip.net\",\n        \"4543@00310.impulsevoip.net\",\n        \"4544@00310.impulsevoip.net\",\n        \"4545@00310.impulsevoip.net\",\n        \"4546@00310.impulsevoip.net\",\n        \"4547@00310.impulsevoip.net\",\n        \"4548@00310.impulsevoip.net\",\n        \"4549@00310.impulsevoip.net\",\n        \"4550@00310.impulsevoip.net\",\n        \"4551@00310.impulsevoip.net\",\n        \"4552@00310.impulsevoip.net\",\n        \"4553@00310.impulsevoip.net\",\n        \"4554@00310.impulsevoip.net\",\n        \"4555@00310.impulsevoip.net\",\n        \"4556@00310.impulsevoip.net\",\n        \"4557@00310.impulsevoip.net\",\n        \"4558@00310.impulsevoip.net\",\n        \"4559@00310.impulsevoip.net\",\n        \"4560@00310.impulsevoip.net\",\n        \"4561@00310.impulsevoip.net\",\n        \"4562@00310.impulsevoip.net\",\n        \"4563@00310.impulsevoip.net\",\n        \"4564@00310.impulsevoip.net\",\n        \"4565@00310.impulsevoip.net\",\n        \"4566@00310.impulsevoip.net\",\n        \"4567@00310.impulsevoip.net\",\n        \"4568@00310.impulsevoip.net\",\n        \"4569@00310.impulsevoip.net\",\n        \"4570@00310.impulsevoip.net\",\n        \"4571@00310.impulsevoip.net\",\n        \"4572@00310.impulsevoip.net\",\n        \"4573@00310.impulsevoip.net\",\n        \"4574@00310.impulsevoip.net\",\n        \"4575@00310.impulsevoip.net\",\n        \"4576@00310.impulsevoip.net\",\n        \"4577@00310.impulsevoip.net\",\n        \"4578@00310.impulsevoip.net\",\n        \"4579@00310.impulsevoip.net\",\n        \"4580@00310.impulsevoip.net\",\n        \"4581@00310.impulsevoip.net\",\n        \"4582@00310.impulsevoip.net\",\n        \"4583@00310.impulsevoip.net\",\n        \"4584@00310.impulsevoip.net\",\n        \"4585@00310.impulsevoip.net\",\n        \"4586@00310.impulsevoip.net\",\n        \"4587@00310.impulsevoip.net\",\n        \"4588@00310.impulsevoip.net\",\n        \"4589@00310.impulsevoip.net\",\n        \"4590@00310.impulsevoip.net\",\n        \"4591@00310.impulsevoip.net\",\n        \"4592@00310.impulsevoip.net\",\n        \"4593@00310.impulsevoip.net\",\n        \"4594@00310.impulsevoip.net\",\n        \"4595@00310.impulsevoip.net\",\n        \"4596@00310.impulsevoip.net\",\n        \"4597@00310.impulsevoip.net\",\n        \"4598@00310.impulsevoip.net\",\n        \"4599@00310.impulsevoip.net\",\n        \"4600@00310.impulsevoip.net\",\n        \"4601@00310.impulsevoip.net\",\n        \"4602@00310.impulsevoip.net\",\n        \"4603@00310.impulsevoip.net\",\n        \"4604@00310.impulsevoip.net\",\n        \"4605@00310.impulsevoip.net\",\n        \"4606@00310.impulsevoip.net\",\n        \"4607@00310.impulsevoip.net\",\n        \"4608@00310.impulsevoip.net\",\n        \"4609@00310.impulsevoip.net\",\n        \"4610@00310.impulsevoip.net\",\n        \"4611@00310.impulsevoip.net\",\n        \"4612@00310.impulsevoip.net\",\n        \"4613@00310.impulsevoip.net\",\n        \"4614@00310.impulsevoip.net\",\n        \"4615@00310.impulsevoip.net\",\n        \"4616@00310.impulsevoip.net\",\n        \"4617@00310.impulsevoip.net\",\n        \"4618@00310.impulsevoip.net\",\n        \"4619@00310.impulsevoip.net\",\n        \"4620@00310.impulsevoip.net\",\n        \"4621@00310.impulsevoip.net\",\n        \"4622@00310.impulsevoip.net\",\n        \"4623@00310.impulsevoip.net\",\n        \"4624@00310.impulsevoip.net\",\n        \"4625@00310.impulsevoip.net\",\n        \"4626@00310.impulsevoip.net\",\n        \"4627@00310.impulsevoip.net\",\n        \"4628@00310.impulsevoip.net\",\n        \"4629@00310.impulsevoip.net\",\n        \"4630@00310.impulsevoip.net\",\n        \"4631@00310.impulsevoip.net\",\n        \"4632@00310.impulsevoip.net\",\n        \"4633@00310.impulsevoip.net\",\n        \"4634@00310.impulsevoip.net\",\n        \"4635@00310.impulsevoip.net\",\n        \"4636@00310.impulsevoip.net\",\n        \"4637@00310.impulsevoip.net\",\n        \"4638@00310.impulsevoip.net\",\n        \"4639@00310.impulsevoip.net\",\n        \"4640@00310.impulsevoip.net\",\n        \"4641@00310.impulsevoip.net\",\n        \"4642@00310.impulsevoip.net\",\n        \"4643@00310.impulsevoip.net\",\n        \"4644@00310.impulsevoip.net\",\n        \"4645@00310.impulsevoip.net\",\n        \"4646@00310.impulsevoip.net\",\n        \"4647@00310.impulsevoip.net\",\n        \"4648@00310.impulsevoip.net\",\n        \"4649@00310.impulsevoip.net\",\n        \"4650@00310.impulsevoip.net\",\n        \"4651@00310.impulsevoip.net\",\n        \"4652@00310.impulsevoip.net\",\n        \"4653@00310.impulsevoip.net\",\n        \"4654@00310.impulsevoip.net\",\n        \"4655@00310.impulsevoip.net\",\n        \"4656@00310.impulsevoip.net\",\n        \"4657@00310.impulsevoip.net\",\n        \"4658@00310.impulsevoip.net\",\n        \"4659@00310.impulsevoip.net\",\n        \"4660@00310.impulsevoip.net\",\n        \"4661@00310.impulsevoip.net\",\n        \"4662@00310.impulsevoip.net\",\n        \"4663@00310.impulsevoip.net\",\n        \"4664@00310.impulsevoip.net\",\n        \"4665@00310.impulsevoip.net\",\n        \"4666@00310.impulsevoip.net\",\n        \"4667@00310.impulsevoip.net\",\n        \"4668@00310.impulsevoip.net\",\n        \"4669@00310.impulsevoip.net\",\n        \"4670@00310.impulsevoip.net\",\n        \"4671@00310.impulsevoip.net\",\n        \"4672@00310.impulsevoip.net\",\n        \"4673@00310.impulsevoip.net\",\n        \"4674@00310.impulsevoip.net\",\n        \"4675@00310.impulsevoip.net\",\n        \"4676@00310.impulsevoip.net\",\n        \"4677@00310.impulsevoip.net\",\n        \"4678@00310.impulsevoip.net\",\n        \"4679@00310.impulsevoip.net\",\n        \"4680@00310.impulsevoip.net\",\n        \"4681@00310.impulsevoip.net\",\n        \"4682@00310.impulsevoip.net\",\n        \"4683@00310.impulsevoip.net\",\n        \"4684@00310.impulsevoip.net\",\n        \"4685@00310.impulsevoip.net\",\n        \"4686@00310.impulsevoip.net\",\n        \"4687@00310.impulsevoip.net\",\n        \"4688@00310.impulsevoip.net\",\n        \"4689@00310.impulsevoip.net\",\n        \"4690@00310.impulsevoip.net\",\n        \"4691@00310.impulsevoip.net\",\n        \"4692@00310.impulsevoip.net\",\n        \"4693@00310.impulsevoip.net\",\n        \"4694@00310.impulsevoip.net\",\n        \"4695@00310.impulsevoip.net\",\n        \"4696@00310.impulsevoip.net\",\n        \"4697@00310.impulsevoip.net\",\n        \"4698@00310.impulsevoip.net\",\n        \"4699@00310.impulsevoip.net\",\n        \"4700@00310.impulsevoip.net\",\n        \"4701@00310.impulsevoip.net\",\n        \"4702@00310.impulsevoip.net\",\n        \"4703@00310.impulsevoip.net\",\n        \"4704@00310.impulsevoip.net\",\n        \"4705@00310.impulsevoip.net\",\n        \"4706@00310.impulsevoip.net\",\n        \"4707@00310.impulsevoip.net\",\n        \"4708@00310.impulsevoip.net\",\n        \"4709@00310.impulsevoip.net\",\n        \"4710@00310.impulsevoip.net\",\n        \"4711@00310.impulsevoip.net\",\n        \"4712@00310.impulsevoip.net\",\n        \"4713@00310.impulsevoip.net\",\n        \"4714@00310.impulsevoip.net\",\n        \"4715@00310.impulsevoip.net\",\n        \"4716@00310.impulsevoip.net\",\n        \"4717@00310.impulsevoip.net\",\n        \"4718@00310.impulsevoip.net\",\n        \"4719@00310.impulsevoip.net\",\n        \"4720@00310.impulsevoip.net\",\n        \"4721@00310.impulsevoip.net\",\n        \"4722@00310.impulsevoip.net\",\n        \"4723@00310.impulsevoip.net\",\n        \"4724@00310.impulsevoip.net\",\n        \"4725@00310.impulsevoip.net\",\n        \"4726@00310.impulsevoip.net\",\n        \"4727@00310.impulsevoip.net\",\n        \"4728@00310.impulsevoip.net\",\n        \"4729@00310.impulsevoip.net\",\n        \"4730@00310.impulsevoip.net\",\n        \"4731@00310.impulsevoip.net\",\n        \"4732@00310.impulsevoip.net\",\n        \"4733@00310.impulsevoip.net\",\n        \"4734@00310.impulsevoip.net\",\n        \"4735@00310.impulsevoip.net\",\n        \"4736@00310.impulsevoip.net\",\n        \"4737@00310.impulsevoip.net\",\n        \"4738@00310.impulsevoip.net\",\n        \"4739@00310.impulsevoip.net\",\n        \"4740@00310.impulsevoip.net\",\n        \"4741@00310.impulsevoip.net\",\n        \"4742@00310.impulsevoip.net\",\n        \"4743@00310.impulsevoip.net\",\n        \"4744@00310.impulsevoip.net\",\n        \"4745@00310.impulsevoip.net\",\n        \"4746@00310.impulsevoip.net\",\n        \"4747@00310.impulsevoip.net\",\n        \"4748@00310.impulsevoip.net\",\n        \"4749@00310.impulsevoip.net\",\n        \"4750@00310.impulsevoip.net\",\n        \"4751@00310.impulsevoip.net\",\n        \"4752@00310.impulsevoip.net\",\n        \"4753@00310.impulsevoip.net\",\n        \"4754@00310.impulsevoip.net\",\n        \"4755@00310.impulsevoip.net\",\n        \"4756@00310.impulsevoip.net\",\n        \"4757@00310.impulsevoip.net\",\n        \"4758@00310.impulsevoip.net\",\n        \"4759@00310.impulsevoip.net\",\n        \"4760@00310.impulsevoip.net\",\n        \"4761@00310.impulsevoip.net\",\n        \"4762@00310.impulsevoip.net\",\n        \"4763@00310.impulsevoip.net\",\n        \"4764@00310.impulsevoip.net\",\n        \"4765@00310.impulsevoip.net\",\n        \"4766@00310.impulsevoip.net\",\n        \"4767@00310.impulsevoip.net\",\n        \"4768@00310.impulsevoip.net\",\n        \"4769@00310.impulsevoip.net\",\n        \"4770@00310.impulsevoip.net\",\n        \"4771@00310.impulsevoip.net\",\n        \"4772@00310.impulsevoip.net\",\n        \"4773@00310.impulsevoip.net\",\n        \"4774@00310.impulsevoip.net\",\n        \"4775@00310.impulsevoip.net\",\n        \"4776@00310.impulsevoip.net\",\n        \"4777@00310.impulsevoip.net\",\n        \"4778@00310.impulsevoip.net\",\n        \"4779@00310.impulsevoip.net\",\n        \"4780@00310.impulsevoip.net\",\n        \"4781@00310.impulsevoip.net\",\n        \"4782@00310.impulsevoip.net\",\n        \"4783@00310.impulsevoip.net\",\n        \"4784@00310.impulsevoip.net\",\n        \"4785@00310.impulsevoip.net\",\n        \"4786@00310.impulsevoip.net\",\n        \"4787@00310.impulsevoip.net\",\n        \"4788@00310.impulsevoip.net\",\n        \"4789@00310.impulsevoip.net\",\n        \"4790@00310.impulsevoip.net\",\n        \"4791@00310.impulsevoip.net\",\n        \"4792@00310.impulsevoip.net\",\n        \"4793@00310.impulsevoip.net\",\n        \"4794@00310.impulsevoip.net\",\n        \"4795@00310.impulsevoip.net\",\n        \"4796@00310.impulsevoip.net\",\n        \"4797@00310.impulsevoip.net\",\n        \"4798@00310.impulsevoip.net\",\n        \"4799@00310.impulsevoip.net\",\n        \"4800@00310.impulsevoip.net\",\n        \"4801@00310.impulsevoip.net\",\n        \"4802@00310.impulsevoip.net\",\n        \"4803@00310.impulsevoip.net\",\n        \"4804@00310.impulsevoip.net\",\n        \"4805@00310.impulsevoip.net\",\n        \"4806@00310.impulsevoip.net\",\n        \"4807@00310.impulsevoip.net\",\n        \"4808@00310.impulsevoip.net\",\n        \"4809@00310.impulsevoip.net\",\n        \"4810@00310.impulsevoip.net\",\n        \"4811@00310.impulsevoip.net\",\n        \"4812@00310.impulsevoip.net\",\n        \"4813@00310.impulsevoip.net\",\n        \"4814@00310.impulsevoip.net\",\n        \"4815@00310.impulsevoip.net\",\n        \"4816@00310.impulsevoip.net\",\n        \"4817@00310.impulsevoip.net\",\n        \"4818@00310.impulsevoip.net\",\n        \"4819@00310.impulsevoip.net\",\n        \"4820@00310.impulsevoip.net\",\n        \"4821@00310.impulsevoip.net\",\n        \"4822@00310.impulsevoip.net\",\n        \"4823@00310.impulsevoip.net\",\n        \"4824@00310.impulsevoip.net\",\n        \"4825@00310.impulsevoip.net\",\n        \"4826@00310.impulsevoip.net\",\n        \"4827@00310.impulsevoip.net\",\n        \"4828@00310.impulsevoip.net\",\n        \"4829@00310.impulsevoip.net\",\n        \"4830@00310.impulsevoip.net\",\n        \"4831@00310.impulsevoip.net\",\n        \"4832@00310.impulsevoip.net\",\n        \"4833@00310.impulsevoip.net\",\n        \"4834@00310.impulsevoip.net\",\n        \"4835@00310.impulsevoip.net\",\n        \"4836@00310.impulsevoip.net\",\n        \"4837@00310.impulsevoip.net\",\n        \"4838@00310.impulsevoip.net\",\n        \"4839@00310.impulsevoip.net\",\n        \"4840@00310.impulsevoip.net\",\n        \"4841@00310.impulsevoip.net\",\n        \"4842@00310.impulsevoip.net\",\n        \"4843@00310.impulsevoip.net\",\n        \"4844@00310.impulsevoip.net\",\n        \"4845@00310.impulsevoip.net\",\n        \"4846@00310.impulsevoip.net\",\n        \"4847@00310.impulsevoip.net\",\n        \"4848@00310.impulsevoip.net\",\n        \"4849@00310.impulsevoip.net\",\n        \"4850@00310.impulsevoip.net\",\n        \"4851@00310.impulsevoip.net\",\n        \"4852@00310.impulsevoip.net\",\n        \"4853@00310.impulsevoip.net\",\n        \"4854@00310.impulsevoip.net\",\n        \"4855@00310.impulsevoip.net\",\n        \"4856@00310.impulsevoip.net\",\n        \"4857@00310.impulsevoip.net\",\n        \"4858@00310.impulsevoip.net\",\n        \"4859@00310.impulsevoip.net\",\n        \"4860@00310.impulsevoip.net\",\n        \"4861@00310.impulsevoip.net\",\n        \"4862@00310.impulsevoip.net\",\n        \"4863@00310.impulsevoip.net\",\n        \"4864@00310.impulsevoip.net\",\n        \"4865@00310.impulsevoip.net\",\n        \"4866@00310.impulsevoip.net\",\n        \"4867@00310.impulsevoip.net\",\n        \"4868@00310.impulsevoip.net\",\n        \"4869@00310.impulsevoip.net\",\n        \"4870@00310.impulsevoip.net\",\n        \"4871@00310.impulsevoip.net\",\n        \"4872@00310.impulsevoip.net\",\n        \"4873@00310.impulsevoip.net\",\n        \"4874@00310.impulsevoip.net\",\n        \"4875@00310.impulsevoip.net\",\n        \"4876@00310.impulsevoip.net\",\n        \"4877@00310.impulsevoip.net\",\n        \"4878@00310.impulsevoip.net\",\n        \"4879@00310.impulsevoip.net\",\n        \"4880@00310.impulsevoip.net\",\n        \"4881@00310.impulsevoip.net\",\n        \"4882@00310.impulsevoip.net\",\n        \"4883@00310.impulsevoip.net\",\n        \"4884@00310.impulsevoip.net\",\n        \"4885@00310.impulsevoip.net\",\n        \"4886@00310.impulsevoip.net\",\n        \"4887@00310.impulsevoip.net\",\n        \"4888@00310.impulsevoip.net\",\n        \"4889@00310.impulsevoip.net\",\n        \"4890@00310.impulsevoip.net\",\n        \"4891@00310.impulsevoip.net\",\n        \"4892@00310.impulsevoip.net\",\n        \"4893@00310.impulsevoip.net\",\n        \"4894@00310.impulsevoip.net\",\n        \"4895@00310.impulsevoip.net\",\n        \"4896@00310.impulsevoip.net\",\n        \"4897@00310.impulsevoip.net\",\n        \"4898@00310.impulsevoip.net\",\n        \"4899@00310.impulsevoip.net\",\n        \"4900@00310.impulsevoip.net\",\n        \"4901@00310.impulsevoip.net\",\n        \"4902@00310.impulsevoip.net\",\n        \"4903@00310.impulsevoip.net\",\n        \"4904@00310.impulsevoip.net\",\n        \"4905@00310.impulsevoip.net\",\n        \"4906@00310.impulsevoip.net\",\n        \"4907@00310.impulsevoip.net\",\n        \"4908@00310.impulsevoip.net\",\n        \"4909@00310.impulsevoip.net\",\n        \"4910@00310.impulsevoip.net\",\n        \"5587@00310.impulsevoip.net\",\n        \"4912@00310.impulsevoip.net\",\n        \"4913@00310.impulsevoip.net\",\n        \"4914@00310.impulsevoip.net\",\n        \"4915@00310.impulsevoip.net\",\n        \"4916@00310.impulsevoip.net\",\n        \"4917@00310.impulsevoip.net\",\n        \"4918@00310.impulsevoip.net\",\n        \"4919@00310.impulsevoip.net\",\n        \"4920@00310.impulsevoip.net\",\n        \"4921@00310.impulsevoip.net\",\n        \"4922@00310.impulsevoip.net\",\n        \"4923@00310.impulsevoip.net\",\n        \"4924@00310.impulsevoip.net\",\n        \"4925@00310.impulsevoip.net\",\n        \"4926@00310.impulsevoip.net\",\n        \"4927@00310.impulsevoip.net\",\n        \"4928@00310.impulsevoip.net\",\n        \"4929@00310.impulsevoip.net\",\n        \"4930@00310.impulsevoip.net\",\n        \"4931@00310.impulsevoip.net\",\n        \"4932@00310.impulsevoip.net\",\n        \"4933@00310.impulsevoip.net\",\n        \"4934@00310.impulsevoip.net\",\n        \"4935@00310.impulsevoip.net\",\n        \"4936@00310.impulsevoip.net\",\n        \"4937@00310.impulsevoip.net\",\n        \"4938@00310.impulsevoip.net\",\n        \"4939@00310.impulsevoip.net\",\n        \"4940@00310.impulsevoip.net\",\n        \"4941@00310.impulsevoip.net\",\n        \"4942@00310.impulsevoip.net\",\n        \"4943@00310.impulsevoip.net\",\n        \"4944@00310.impulsevoip.net\",\n        \"4945@00310.impulsevoip.net\",\n        \"4946@00310.impulsevoip.net\",\n        \"4947@00310.impulsevoip.net\",\n        \"4948@00310.impulsevoip.net\",\n        \"4949@00310.impulsevoip.net\",\n        \"4950@00310.impulsevoip.net\",\n        \"4951@00310.impulsevoip.net\",\n        \"4952@00310.impulsevoip.net\",\n        \"4953@00310.impulsevoip.net\",\n        \"4954@00310.impulsevoip.net\",\n        \"4955@00310.impulsevoip.net\",\n        \"4956@00310.impulsevoip.net\",\n        \"4957@00310.impulsevoip.net\",\n        \"4958@00310.impulsevoip.net\",\n        \"4959@00310.impulsevoip.net\",\n        \"4960@00310.impulsevoip.net\",\n        \"4961@00310.impulsevoip.net\",\n        \"4962@00310.impulsevoip.net\",\n        \"4963@00310.impulsevoip.net\",\n        \"4964@00310.impulsevoip.net\",\n        \"4965@00310.impulsevoip.net\",\n        \"4966@00310.impulsevoip.net\",\n        \"4967@00310.impulsevoip.net\",\n        \"4968@00310.impulsevoip.net\",\n        \"4969@00310.impulsevoip.net\",\n        \"4970@00310.impulsevoip.net\",\n        \"4971@00310.impulsevoip.net\",\n        \"4972@00310.impulsevoip.net\",\n        \"4973@00310.impulsevoip.net\",\n        \"4974@00310.impulsevoip.net\",\n        \"4975@00310.impulsevoip.net\",\n        \"4976@00310.impulsevoip.net\",\n        \"4977@00310.impulsevoip.net\",\n        \"4978@00310.impulsevoip.net\",\n        \"4979@00310.impulsevoip.net\",\n        \"4980@00310.impulsevoip.net\",\n        \"4981@00310.impulsevoip.net\",\n        \"4982@00310.impulsevoip.net\",\n        \"4983@00310.impulsevoip.net\",\n        \"4984@00310.impulsevoip.net\",\n        \"4985@00310.impulsevoip.net\",\n        \"4986@00310.impulsevoip.net\",\n        \"4987@00310.impulsevoip.net\",\n        \"4988@00310.impulsevoip.net\",\n        \"4989@00310.impulsevoip.net\",\n        \"4990@00310.impulsevoip.net\",\n        \"4991@00310.impulsevoip.net\",\n        \"4992@00310.impulsevoip.net\",\n        \"4993@00310.impulsevoip.net\",\n        \"4994@00310.impulsevoip.net\",\n        \"4995@00310.impulsevoip.net\",\n        \"4996@00310.impulsevoip.net\",\n        \"4997@00310.impulsevoip.net\",\n        \"4998@00310.impulsevoip.net\",\n        \"4999@00310.impulsevoip.net\",\n        \"5000@00310.impulsevoip.net\",\n        \"5001@00310.impulsevoip.net\",\n        \"5002@00310.impulsevoip.net\",\n        \"5003@00310.impulsevoip.net\",\n        \"5004@00310.impulsevoip.net\",\n        \"5005@00310.impulsevoip.net\",\n        \"5006@00310.impulsevoip.net\",\n        \"5007@00310.impulsevoip.net\",\n        \"5008@00310.impulsevoip.net\",\n        \"5009@00310.impulsevoip.net\",\n        \"5010@00310.impulsevoip.net\",\n        \"5011@00310.impulsevoip.net\",\n        \"5012@00310.impulsevoip.net\",\n        \"5013@00310.impulsevoip.net\",\n        \"5014@00310.impulsevoip.net\",\n        \"5015@00310.impulsevoip.net\",\n        \"5016@00310.impulsevoip.net\",\n        \"5017@00310.impulsevoip.net\",\n        \"5018@00310.impulsevoip.net\",\n        \"5019@00310.impulsevoip.net\",\n        \"5020@00310.impulsevoip.net\",\n        \"5021@00310.impulsevoip.net\",\n        \"5022@00310.impulsevoip.net\",\n        \"5023@00310.impulsevoip.net\",\n        \"5024@00310.impulsevoip.net\",\n        \"5025@00310.impulsevoip.net\",\n        \"5026@00310.impulsevoip.net\",\n        \"5027@00310.impulsevoip.net\",\n        \"5028@00310.impulsevoip.net\",\n        \"5029@00310.impulsevoip.net\",\n        \"5030@00310.impulsevoip.net\",\n        \"5031@00310.impulsevoip.net\",\n        \"5032@00310.impulsevoip.net\",\n        \"5033@00310.impulsevoip.net\",\n        \"5034@00310.impulsevoip.net\",\n        \"5035@00310.impulsevoip.net\",\n        \"5036@00310.impulsevoip.net\",\n        \"5037@00310.impulsevoip.net\",\n        \"5038@00310.impulsevoip.net\",\n        \"5039@00310.impulsevoip.net\",\n        \"5040@00310.impulsevoip.net\",\n        \"5041@00310.impulsevoip.net\",\n        \"5042@00310.impulsevoip.net\",\n        \"5043@00310.impulsevoip.net\",\n        \"5044@00310.impulsevoip.net\",\n        \"5045@00310.impulsevoip.net\",\n        \"5046@00310.impulsevoip.net\",\n        \"5047@00310.impulsevoip.net\",\n        \"5048@00310.impulsevoip.net\",\n        \"5049@00310.impulsevoip.net\",\n        \"5050@00310.impulsevoip.net\",\n        \"5051@00310.impulsevoip.net\",\n        \"5052@00310.impulsevoip.net\",\n        \"5053@00310.impulsevoip.net\",\n        \"5054@00310.impulsevoip.net\",\n        \"5055@00310.impulsevoip.net\",\n        \"5056@00310.impulsevoip.net\",\n        \"5057@00310.impulsevoip.net\",\n        \"5058@00310.impulsevoip.net\",\n        \"5059@00310.impulsevoip.net\",\n        \"5060@00310.impulsevoip.net\",\n        \"5061@00310.impulsevoip.net\",\n        \"5062@00310.impulsevoip.net\",\n        \"5063@00310.impulsevoip.net\",\n        \"5064@00310.impulsevoip.net\",\n        \"5065@00310.impulsevoip.net\",\n        \"5066@00310.impulsevoip.net\",\n        \"5067@00310.impulsevoip.net\",\n        \"5068@00310.impulsevoip.net\",\n        \"5069@00310.impulsevoip.net\",\n        \"5070@00310.impulsevoip.net\",\n        \"5071@00310.impulsevoip.net\",\n        \"5072@00310.impulsevoip.net\",\n        \"5073@00310.impulsevoip.net\",\n        \"5074@00310.impulsevoip.net\",\n        \"5075@00310.impulsevoip.net\",\n        \"5076@00310.impulsevoip.net\",\n        \"5077@00310.impulsevoip.net\",\n        \"5078@00310.impulsevoip.net\",\n        \"5079@00310.impulsevoip.net\",\n        \"5080@00310.impulsevoip.net\",\n        \"5081@00310.impulsevoip.net\",\n        \"5082@00310.impulsevoip.net\",\n        \"5083@00310.impulsevoip.net\",\n        \"5084@00310.impulsevoip.net\",\n        \"5085@00310.impulsevoip.net\",\n        \"5086@00310.impulsevoip.net\",\n        \"5087@00310.impulsevoip.net\",\n        \"5088@00310.impulsevoip.net\",\n        \"5089@00310.impulsevoip.net\",\n        \"5090@00310.impulsevoip.net\",\n        \"5091@00310.impulsevoip.net\",\n        \"5092@00310.impulsevoip.net\",\n        \"5093@00310.impulsevoip.net\",\n        \"5094@00310.impulsevoip.net\",\n        \"5095@00310.impulsevoip.net\",\n        \"5096@00310.impulsevoip.net\",\n        \"5097@00310.impulsevoip.net\",\n        \"5098@00310.impulsevoip.net\",\n        \"5099@00310.impulsevoip.net\",\n        \"5100@00310.impulsevoip.net\",\n        \"5101@00310.impulsevoip.net\",\n        \"5102@00310.impulsevoip.net\",\n        \"5103@00310.impulsevoip.net\",\n        \"5104@00310.impulsevoip.net\",\n        \"5105@00310.impulsevoip.net\",\n        \"5106@00310.impulsevoip.net\",\n        \"5107@00310.impulsevoip.net\",\n        \"5108@00310.impulsevoip.net\",\n        \"5109@00310.impulsevoip.net\",\n        \"5110@00310.impulsevoip.net\",\n        \"5111@00310.impulsevoip.net\",\n        \"5112@00310.impulsevoip.net\",\n        \"5113@00310.impulsevoip.net\",\n        \"5114@00310.impulsevoip.net\",\n        \"5115@00310.impulsevoip.net\",\n        \"5116@00310.impulsevoip.net\",\n        \"5117@00310.impulsevoip.net\",\n        \"5118@00310.impulsevoip.net\",\n        \"5119@00310.impulsevoip.net\",\n        \"5120@00310.impulsevoip.net\",\n        \"5121@00310.impulsevoip.net\",\n        \"5122@00310.impulsevoip.net\",\n        \"5123@00310.impulsevoip.net\",\n        \"5124@00310.impulsevoip.net\",\n        \"5125@00310.impulsevoip.net\",\n        \"5126@00310.impulsevoip.net\",\n        \"5127@00310.impulsevoip.net\",\n        \"5128@00310.impulsevoip.net\",\n        \"5129@00310.impulsevoip.net\",\n        \"5130@00310.impulsevoip.net\",\n        \"5131@00310.impulsevoip.net\",\n        \"5132@00310.impulsevoip.net\",\n        \"5133@00310.impulsevoip.net\",\n        \"5134@00310.impulsevoip.net\",\n        \"5135@00310.impulsevoip.net\",\n        \"5136@00310.impulsevoip.net\",\n        \"5137@00310.impulsevoip.net\",\n        \"5138@00310.impulsevoip.net\",\n        \"5139@00310.impulsevoip.net\",\n        \"5140@00310.impulsevoip.net\",\n        \"5141@00310.impulsevoip.net\",\n        \"5142@00310.impulsevoip.net\",\n        \"5143@00310.impulsevoip.net\",\n        \"5144@00310.impulsevoip.net\",\n        \"5145@00310.impulsevoip.net\",\n        \"5146@00310.impulsevoip.net\",\n        \"5147@00310.impulsevoip.net\",\n        \"5148@00310.impulsevoip.net\",\n        \"5149@00310.impulsevoip.net\",\n        \"5150@00310.impulsevoip.net\",\n        \"5151@00310.impulsevoip.net\",\n        \"5152@00310.impulsevoip.net\",\n        \"5153@00310.impulsevoip.net\",\n        \"5154@00310.impulsevoip.net\",\n        \"5155@00310.impulsevoip.net\",\n        \"5156@00310.impulsevoip.net\",\n        \"5157@00310.impulsevoip.net\",\n        \"5158@00310.impulsevoip.net\",\n        \"5159@00310.impulsevoip.net\",\n        \"5160@00310.impulsevoip.net\",\n        \"5161@00310.impulsevoip.net\",\n        \"5162@00310.impulsevoip.net\",\n        \"5163@00310.impulsevoip.net\",\n        \"5164@00310.impulsevoip.net\",\n        \"5165@00310.impulsevoip.net\",\n        \"5166@00310.impulsevoip.net\",\n        \"5167@00310.impulsevoip.net\",\n        \"5680@00310.impulsevoip.net\",\n        \"5681@00310.impulsevoip.net\",\n        \"5682@00310.impulsevoip.net\",\n        \"5683@00310.impulsevoip.net\",\n        \"5684@00310.impulsevoip.net\",\n        \"5685@00310.impulsevoip.net\",\n        \"5686@00310.impulsevoip.net\",\n        \"5687@00310.impulsevoip.net\",\n        \"5688@00310.impulsevoip.net\",\n        \"5689@00310.impulsevoip.net\",\n        \"5690@00310.impulsevoip.net\",\n        \"5691@00310.impulsevoip.net\",\n        \"5692@00310.impulsevoip.net\",\n        \"5693@00310.impulsevoip.net\",\n        \"5694@00310.impulsevoip.net\",\n        \"5695@00310.impulsevoip.net\",\n        \"5696@00310.impulsevoip.net\",\n        \"5697@00310.impulsevoip.net\",\n        \"5698@00310.impulsevoip.net\",\n        \"5699@00310.impulsevoip.net\",\n        \"5700@00310.impulsevoip.net\",\n        \"5701@00310.impulsevoip.net\",\n        \"5702@00310.impulsevoip.net\",\n        \"5703@00310.impulsevoip.net\",\n        \"5704@00310.impulsevoip.net\",\n        \"5705@00310.impulsevoip.net\",\n        \"5706@00310.impulsevoip.net\",\n        \"5707@00310.impulsevoip.net\",\n        \"5708@00310.impulsevoip.net\",\n        \"5709@00310.impulsevoip.net\",\n        \"5710@00310.impulsevoip.net\",\n        \"5711@00310.impulsevoip.net\",\n        \"5712@00310.impulsevoip.net\",\n        \"5713@00310.impulsevoip.net\",\n        \"5714@00310.impulsevoip.net\",\n        \"5715@00310.impulsevoip.net\",\n        \"5716@00310.impulsevoip.net\",\n        \"5717@00310.impulsevoip.net\",\n        \"5718@00310.impulsevoip.net\",\n        \"5719@00310.impulsevoip.net\",\n        \"5720@00310.impulsevoip.net\",\n        \"5721@00310.impulsevoip.net\",\n        \"5722@00310.impulsevoip.net\",\n        \"5723@00310.impulsevoip.net\",\n        \"5724@00310.impulsevoip.net\",\n        \"5725@00310.impulsevoip.net\",\n        \"5726@00310.impulsevoip.net\",\n        \"5727@00310.impulsevoip.net\",\n        \"5728@00310.impulsevoip.net\",\n        \"5729@00310.impulsevoip.net\",\n        \"5730@00310.impulsevoip.net\",\n        \"5731@00310.impulsevoip.net\",\n        \"5732@00310.impulsevoip.net\",\n        \"5733@00310.impulsevoip.net\",\n        \"5734@00310.impulsevoip.net\",\n        \"5735@00310.impulsevoip.net\",\n        \"5736@00310.impulsevoip.net\",\n        \"5737@00310.impulsevoip.net\",\n        \"5738@00310.impulsevoip.net\",\n        \"5739@00310.impulsevoip.net\",\n        \"5740@00310.impulsevoip.net\",\n        \"5741@00310.impulsevoip.net\",\n        \"5742@00310.impulsevoip.net\",\n        \"5743@00310.impulsevoip.net\",\n        \"5744@00310.impulsevoip.net\",\n        \"5745@00310.impulsevoip.net\",\n        \"5746@00310.impulsevoip.net\",\n        \"5747@00310.impulsevoip.net\",\n        \"5748@00310.impulsevoip.net\",\n        \"5749@00310.impulsevoip.net\",\n        \"5750@00310.impulsevoip.net\",\n        \"5751@00310.impulsevoip.net\",\n        \"5752@00310.impulsevoip.net\",\n        \"5753@00310.impulsevoip.net\",\n        \"5754@00310.impulsevoip.net\",\n        \"5755@00310.impulsevoip.net\",\n        \"5756@00310.impulsevoip.net\",\n        \"5757@00310.impulsevoip.net\",\n        \"5758@00310.impulsevoip.net\",\n        \"5759@00310.impulsevoip.net\",\n        \"5760@00310.impulsevoip.net\",\n        \"5761@00310.impulsevoip.net\",\n        \"5762@00310.impulsevoip.net\",\n        \"5763@00310.impulsevoip.net\",\n        \"5764@00310.impulsevoip.net\",\n        \"5765@00310.impulsevoip.net\",\n        \"5766@00310.impulsevoip.net\",\n        \"5767@00310.impulsevoip.net\",\n        \"5768@00310.impulsevoip.net\",\n        \"5769@00310.impulsevoip.net\",\n        \"5770@00310.impulsevoip.net\",\n        \"5771@00310.impulsevoip.net\",\n        \"5772@00310.impulsevoip.net\",\n        \"5773@00310.impulsevoip.net\",\n        \"5774@00310.impulsevoip.net\",\n        \"5775@00310.impulsevoip.net\",\n        \"5776@00310.impulsevoip.net\",\n        \"5777@00310.impulsevoip.net\",\n        \"5778@00310.impulsevoip.net\",\n        \"5779@00310.impulsevoip.net\",\n        \"5780@00310.impulsevoip.net\",\n        \"5781@00310.impulsevoip.net\",\n        \"5782@00310.impulsevoip.net\",\n        \"5783@00310.impulsevoip.net\",\n        \"5784@00310.impulsevoip.net\",\n        \"5785@00310.impulsevoip.net\",\n        \"5786@00310.impulsevoip.net\",\n        \"5787@00310.impulsevoip.net\",\n        \"5788@00310.impulsevoip.net\",\n        \"5789@00310.impulsevoip.net\",\n        \"5790@00310.impulsevoip.net\",\n        \"5791@00310.impulsevoip.net\",\n        \"5792@00310.impulsevoip.net\",\n        \"5793@00310.impulsevoip.net\",\n        \"5794@00310.impulsevoip.net\",\n        \"5795@00310.impulsevoip.net\",\n        \"5796@00310.impulsevoip.net\",\n        \"5797@00310.impulsevoip.net\",\n        \"5798@00310.impulsevoip.net\",\n        \"5799@00310.impulsevoip.net\",\n        \"5800@00310.impulsevoip.net\",\n        \"5801@00310.impulsevoip.net\",\n        \"5802@00310.impulsevoip.net\",\n        \"5803@00310.impulsevoip.net\",\n        \"5804@00310.impulsevoip.net\",\n        \"5805@00310.impulsevoip.net\",\n        \"5806@00310.impulsevoip.net\",\n        \"5807@00310.impulsevoip.net\",\n        \"5808@00310.impulsevoip.net\",\n        \"5809@00310.impulsevoip.net\",\n        \"5810@00310.impulsevoip.net\",\n        \"5811@00310.impulsevoip.net\",\n        \"5812@00310.impulsevoip.net\",\n        \"5813@00310.impulsevoip.net\",\n        \"5814@00310.impulsevoip.net\",\n        \"5815@00310.impulsevoip.net\",\n        \"5816@00310.impulsevoip.net\",\n        \"5817@00310.impulsevoip.net\",\n        \"5818@00310.impulsevoip.net\",\n        \"5819@00310.impulsevoip.net\",\n        \"5820@00310.impulsevoip.net\",\n        \"5821@00310.impulsevoip.net\",\n        \"5822@00310.impulsevoip.net\",\n        \"5823@00310.impulsevoip.net\",\n        \"5824@00310.impulsevoip.net\",\n        \"5825@00310.impulsevoip.net\",\n        \"5826@00310.impulsevoip.net\",\n        \"5827@00310.impulsevoip.net\",\n        \"5828@00310.impulsevoip.net\",\n        \"5829@00310.impulsevoip.net\",\n        \"5830@00310.impulsevoip.net\",\n        \"5831@00310.impulsevoip.net\",\n        \"5832@00310.impulsevoip.net\",\n        \"5833@00310.impulsevoip.net\",\n        \"5834@00310.impulsevoip.net\",\n        \"5835@00310.impulsevoip.net\",\n        \"5836@00310.impulsevoip.net\",\n        \"5837@00310.impulsevoip.net\",\n        \"5838@00310.impulsevoip.net\",\n        \"5839@00310.impulsevoip.net\",\n        \"5840@00310.impulsevoip.net\",\n        \"5841@00310.impulsevoip.net\",\n        \"5842@00310.impulsevoip.net\",\n        \"5843@00310.impulsevoip.net\",\n        \"5844@00310.impulsevoip.net\",\n        \"5845@00310.impulsevoip.net\",\n        \"5846@00310.impulsevoip.net\",\n        \"5847@00310.impulsevoip.net\",\n        \"5848@00310.impulsevoip.net\",\n        \"5849@00310.impulsevoip.net\",\n        \"5850@00310.impulsevoip.net\",\n        \"5851@00310.impulsevoip.net\",\n        \"5852@00310.impulsevoip.net\",\n        \"5853@00310.impulsevoip.net\",\n        \"5854@00310.impulsevoip.net\",\n        \"5855@00310.impulsevoip.net\",\n        \"5856@00310.impulsevoip.net\",\n        \"5857@00310.impulsevoip.net\",\n        \"5858@00310.impulsevoip.net\",\n        \"5859@00310.impulsevoip.net\",\n        \"5860@00310.impulsevoip.net\",\n        \"5861@00310.impulsevoip.net\",\n        \"5862@00310.impulsevoip.net\",\n        \"5863@00310.impulsevoip.net\",\n        \"5864@00310.impulsevoip.net\",\n        \"5865@00310.impulsevoip.net\",\n        \"5866@00310.impulsevoip.net\",\n        \"5867@00310.impulsevoip.net\",\n        \"5868@00310.impulsevoip.net\",\n        \"5869@00310.impulsevoip.net\",\n        \"5870@00310.impulsevoip.net\",\n        \"5871@00310.impulsevoip.net\",\n        \"5872@00310.impulsevoip.net\",\n        \"5873@00310.impulsevoip.net\",\n        \"5874@00310.impulsevoip.net\",\n        \"5875@00310.impulsevoip.net\",\n        \"5876@00310.impulsevoip.net\",\n        \"5877@00310.impulsevoip.net\",\n        \"5878@00310.impulsevoip.net\",\n        \"5879@00310.impulsevoip.net\",\n        \"5880@00310.impulsevoip.net\",\n        \"5881@00310.impulsevoip.net\",\n        \"5882@00310.impulsevoip.net\",\n        \"5883@00310.impulsevoip.net\",\n        \"5884@00310.impulsevoip.net\",\n        \"5885@00310.impulsevoip.net\",\n        \"5886@00310.impulsevoip.net\",\n        \"5887@00310.impulsevoip.net\",\n        \"5888@00310.impulsevoip.net\",\n        \"5889@00310.impulsevoip.net\",\n        \"5890@00310.impulsevoip.net\",\n        \"5891@00310.impulsevoip.net\",\n        \"5892@00310.impulsevoip.net\",\n        \"5893@00310.impulsevoip.net\",\n        \"5894@00310.impulsevoip.net\",\n        \"5895@00310.impulsevoip.net\",\n        \"5896@00310.impulsevoip.net\",\n        \"5897@00310.impulsevoip.net\",\n        \"5898@00310.impulsevoip.net\",\n        \"5899@00310.impulsevoip.net\",\n        \"5900@00310.impulsevoip.net\",\n        \"5901@00310.impulsevoip.net\",\n        \"5902@00310.impulsevoip.net\",\n        \"5903@00310.impulsevoip.net\",\n        \"5904@00310.impulsevoip.net\",\n        \"5905@00310.impulsevoip.net\",\n        \"5906@00310.impulsevoip.net\",\n        \"5907@00310.impulsevoip.net\",\n        \"5908@00310.impulsevoip.net\",\n        \"5909@00310.impulsevoip.net\",\n        \"5910@00310.impulsevoip.net\",\n        \"5168@00310.impulsevoip.net\",\n        \"5169@00310.impulsevoip.net\",\n        \"5170@00310.impulsevoip.net\",\n        \"5171@00310.impulsevoip.net\",\n        \"5172@00310.impulsevoip.net\",\n        \"5173@00310.impulsevoip.net\",\n        \"5174@00310.impulsevoip.net\",\n        \"5175@00310.impulsevoip.net\",\n        \"5176@00310.impulsevoip.net\",\n        \"5177@00310.impulsevoip.net\",\n        \"5178@00310.impulsevoip.net\",\n        \"5179@00310.impulsevoip.net\",\n        \"5180@00310.impulsevoip.net\",\n        \"5181@00310.impulsevoip.net\",\n        \"5182@00310.impulsevoip.net\",\n        \"5183@00310.impulsevoip.net\",\n        \"5184@00310.impulsevoip.net\",\n        \"5185@00310.impulsevoip.net\",\n        \"5186@00310.impulsevoip.net\",\n        \"5187@00310.impulsevoip.net\",\n        \"5188@00310.impulsevoip.net\",\n        \"5189@00310.impulsevoip.net\",\n        \"5190@00310.impulsevoip.net\",\n        \"5191@00310.impulsevoip.net\",\n        \"5192@00310.impulsevoip.net\",\n        \"5193@00310.impulsevoip.net\",\n        \"5194@00310.impulsevoip.net\",\n        \"5195@00310.impulsevoip.net\",\n        \"5196@00310.impulsevoip.net\",\n        \"5197@00310.impulsevoip.net\",\n        \"5198@00310.impulsevoip.net\",\n        \"5199@00310.impulsevoip.net\",\n        \"5200@00310.impulsevoip.net\",\n        \"5201@00310.impulsevoip.net\",\n        \"5202@00310.impulsevoip.net\",\n        \"5203@00310.impulsevoip.net\",\n        \"5204@00310.impulsevoip.net\",\n        \"5205@00310.impulsevoip.net\",\n        \"5206@00310.impulsevoip.net\",\n        \"5207@00310.impulsevoip.net\",\n        \"5208@00310.impulsevoip.net\",\n        \"5209@00310.impulsevoip.net\",\n        \"5210@00310.impulsevoip.net\",\n        \"5211@00310.impulsevoip.net\",\n        \"5212@00310.impulsevoip.net\",\n        \"5213@00310.impulsevoip.net\",\n        \"5214@00310.impulsevoip.net\",\n        \"5215@00310.impulsevoip.net\",\n        \"5216@00310.impulsevoip.net\",\n        \"5217@00310.impulsevoip.net\",\n        \"5218@00310.impulsevoip.net\",\n        \"5219@00310.impulsevoip.net\",\n        \"5220@00310.impulsevoip.net\",\n        \"5221@00310.impulsevoip.net\",\n        \"5222@00310.impulsevoip.net\",\n        \"5223@00310.impulsevoip.net\",\n        \"5224@00310.impulsevoip.net\",\n        \"5225@00310.impulsevoip.net\",\n        \"5226@00310.impulsevoip.net\",\n        \"5227@00310.impulsevoip.net\",\n        \"5228@00310.impulsevoip.net\",\n        \"5229@00310.impulsevoip.net\",\n        \"5230@00310.impulsevoip.net\",\n        \"5231@00310.impulsevoip.net\",\n        \"5232@00310.impulsevoip.net\",\n        \"5233@00310.impulsevoip.net\",\n        \"5234@00310.impulsevoip.net\",\n        \"5235@00310.impulsevoip.net\",\n        \"5236@00310.impulsevoip.net\",\n        \"5237@00310.impulsevoip.net\",\n        \"5238@00310.impulsevoip.net\",\n        \"5239@00310.impulsevoip.net\",\n        \"5240@00310.impulsevoip.net\",\n        \"5241@00310.impulsevoip.net\",\n        \"5242@00310.impulsevoip.net\",\n        \"5243@00310.impulsevoip.net\",\n        \"5244@00310.impulsevoip.net\",\n        \"5245@00310.impulsevoip.net\",\n        \"5246@00310.impulsevoip.net\",\n        \"5247@00310.impulsevoip.net\",\n        \"5248@00310.impulsevoip.net\",\n        \"5249@00310.impulsevoip.net\",\n        \"5250@00310.impulsevoip.net\",\n        \"5251@00310.impulsevoip.net\",\n        \"5252@00310.impulsevoip.net\",\n        \"5253@00310.impulsevoip.net\",\n        \"5254@00310.impulsevoip.net\",\n        \"5255@00310.impulsevoip.net\",\n        \"5256@00310.impulsevoip.net\",\n        \"5257@00310.impulsevoip.net\",\n        \"5258@00310.impulsevoip.net\",\n        \"5259@00310.impulsevoip.net\",\n        \"5260@00310.impulsevoip.net\",\n        \"5261@00310.impulsevoip.net\",\n        \"5262@00310.impulsevoip.net\",\n        \"5263@00310.impulsevoip.net\",\n        \"5264@00310.impulsevoip.net\",\n        \"5265@00310.impulsevoip.net\",\n        \"5266@00310.impulsevoip.net\",\n        \"5267@00310.impulsevoip.net\",\n        \"5268@00310.impulsevoip.net\",\n        \"5269@00310.impulsevoip.net\",\n        \"5270@00310.impulsevoip.net\",\n        \"5271@00310.impulsevoip.net\",\n        \"5272@00310.impulsevoip.net\",\n        \"5273@00310.impulsevoip.net\",\n        \"5274@00310.impulsevoip.net\",\n        \"5275@00310.impulsevoip.net\",\n        \"5276@00310.impulsevoip.net\",\n        \"5277@00310.impulsevoip.net\",\n        \"5278@00310.impulsevoip.net\",\n        \"5279@00310.impulsevoip.net\",\n        \"5280@00310.impulsevoip.net\",\n        \"5281@00310.impulsevoip.net\",\n        \"5282@00310.impulsevoip.net\",\n        \"5283@00310.impulsevoip.net\",\n        \"5284@00310.impulsevoip.net\",\n        \"5285@00310.impulsevoip.net\",\n        \"5286@00310.impulsevoip.net\",\n        \"5287@00310.impulsevoip.net\",\n        \"5288@00310.impulsevoip.net\",\n        \"5289@00310.impulsevoip.net\",\n        \"5290@00310.impulsevoip.net\",\n        \"5291@00310.impulsevoip.net\",\n        \"5292@00310.impulsevoip.net\",\n        \"5293@00310.impulsevoip.net\",\n        \"5294@00310.impulsevoip.net\",\n        \"5295@00310.impulsevoip.net\",\n        \"5296@00310.impulsevoip.net\",\n        \"5297@00310.impulsevoip.net\",\n        \"5298@00310.impulsevoip.net\",\n        \"5299@00310.impulsevoip.net\",\n        \"5300@00310.impulsevoip.net\",\n        \"5301@00310.impulsevoip.net\",\n        \"5302@00310.impulsevoip.net\",\n        \"5303@00310.impulsevoip.net\",\n        \"5305@00310.impulsevoip.net\",\n        \"5306@00310.impulsevoip.net\",\n        \"5307@00310.impulsevoip.net\",\n        \"5308@00310.impulsevoip.net\",\n        \"5309@00310.impulsevoip.net\",\n        \"5310@00310.impulsevoip.net\",\n        \"5311@00310.impulsevoip.net\",\n        \"5312@00310.impulsevoip.net\",\n        \"5313@00310.impulsevoip.net\",\n        \"5314@00310.impulsevoip.net\",\n        \"5315@00310.impulsevoip.net\",\n        \"5316@00310.impulsevoip.net\",\n        \"5317@00310.impulsevoip.net\",\n        \"5318@00310.impulsevoip.net\",\n        \"5319@00310.impulsevoip.net\",\n        \"5320@00310.impulsevoip.net\",\n        \"5321@00310.impulsevoip.net\",\n        \"5322@00310.impulsevoip.net\",\n        \"5323@00310.impulsevoip.net\",\n        \"5324@00310.impulsevoip.net\",\n        \"5325@00310.impulsevoip.net\",\n        \"5326@00310.impulsevoip.net\",\n        \"5327@00310.impulsevoip.net\",\n        \"5328@00310.impulsevoip.net\",\n        \"5329@00310.impulsevoip.net\",\n        \"5330@00310.impulsevoip.net\",\n        \"5331@00310.impulsevoip.net\",\n        \"5332@00310.impulsevoip.net\",\n        \"5333@00310.impulsevoip.net\",\n        \"5334@00310.impulsevoip.net\",\n        \"5335@00310.impulsevoip.net\",\n        \"5336@00310.impulsevoip.net\",\n        \"5337@00310.impulsevoip.net\",\n        \"5338@00310.impulsevoip.net\",\n        \"5339@00310.impulsevoip.net\",\n        \"5340@00310.impulsevoip.net\",\n        \"5341@00310.impulsevoip.net\",\n        \"5342@00310.impulsevoip.net\",\n        \"5343@00310.impulsevoip.net\",\n        \"5344@00310.impulsevoip.net\",\n        \"5345@00310.impulsevoip.net\",\n        \"5346@00310.impulsevoip.net\",\n        \"5347@00310.impulsevoip.net\",\n        \"5348@00310.impulsevoip.net\",\n        \"5349@00310.impulsevoip.net\",\n        \"5350@00310.impulsevoip.net\",\n        \"5351@00310.impulsevoip.net\",\n        \"5352@00310.impulsevoip.net\",\n        \"5353@00310.impulsevoip.net\",\n        \"5354@00310.impulsevoip.net\",\n        \"5355@00310.impulsevoip.net\",\n        \"5356@00310.impulsevoip.net\",\n        \"5357@00310.impulsevoip.net\",\n        \"5358@00310.impulsevoip.net\",\n        \"5359@00310.impulsevoip.net\",\n        \"5360@00310.impulsevoip.net\",\n        \"5361@00310.impulsevoip.net\",\n        \"5362@00310.impulsevoip.net\",\n        \"5363@00310.impulsevoip.net\",\n        \"5364@00310.impulsevoip.net\",\n        \"5365@00310.impulsevoip.net\",\n        \"5366@00310.impulsevoip.net\",\n        \"5367@00310.impulsevoip.net\",\n        \"5368@00310.impulsevoip.net\",\n        \"5369@00310.impulsevoip.net\",\n        \"5370@00310.impulsevoip.net\",\n        \"5371@00310.impulsevoip.net\",\n        \"5372@00310.impulsevoip.net\",\n        \"5373@00310.impulsevoip.net\",\n        \"5374@00310.impulsevoip.net\",\n        \"5375@00310.impulsevoip.net\",\n        \"5376@00310.impulsevoip.net\",\n        \"5377@00310.impulsevoip.net\",\n        \"5378@00310.impulsevoip.net\",\n        \"5379@00310.impulsevoip.net\",\n        \"5380@00310.impulsevoip.net\",\n        \"5381@00310.impulsevoip.net\",\n        \"5382@00310.impulsevoip.net\",\n        \"5383@00310.impulsevoip.net\",\n        \"5384@00310.impulsevoip.net\",\n        \"5385@00310.impulsevoip.net\",\n        \"5386@00310.impulsevoip.net\",\n        \"5387@00310.impulsevoip.net\",\n        \"5388@00310.impulsevoip.net\",\n        \"5389@00310.impulsevoip.net\",\n        \"5390@00310.impulsevoip.net\",\n        \"5391@00310.impulsevoip.net\",\n        \"5392@00310.impulsevoip.net\",\n        \"5393@00310.impulsevoip.net\",\n        \"5394@00310.impulsevoip.net\",\n        \"5395@00310.impulsevoip.net\",\n        \"5396@00310.impulsevoip.net\",\n        \"5397@00310.impulsevoip.net\",\n        \"5398@00310.impulsevoip.net\",\n        \"5399@00310.impulsevoip.net\",\n        \"5400@00310.impulsevoip.net\",\n        \"5401@00310.impulsevoip.net\",\n        \"5402@00310.impulsevoip.net\",\n        \"5403@00310.impulsevoip.net\",\n        \"5404@00310.impulsevoip.net\",\n        \"5405@00310.impulsevoip.net\",\n        \"5406@00310.impulsevoip.net\",\n        \"5407@00310.impulsevoip.net\",\n        \"5408@00310.impulsevoip.net\",\n        \"5409@00310.impulsevoip.net\",\n        \"5410@00310.impulsevoip.net\",\n        \"5411@00310.impulsevoip.net\",\n        \"5412@00310.impulsevoip.net\",\n        \"5413@00310.impulsevoip.net\",\n        \"5414@00310.impulsevoip.net\",\n        \"5415@00310.impulsevoip.net\",\n        \"5416@00310.impulsevoip.net\",\n        \"5417@00310.impulsevoip.net\",\n        \"5418@00310.impulsevoip.net\",\n        \"5419@00310.impulsevoip.net\",\n        \"5420@00310.impulsevoip.net\",\n        \"5421@00310.impulsevoip.net\",\n        \"5422@00310.impulsevoip.net\",\n        \"5423@00310.impulsevoip.net\",\n        \"5424@00310.impulsevoip.net\",\n        \"5425@00310.impulsevoip.net\",\n        \"5426@00310.impulsevoip.net\",\n        \"5427@00310.impulsevoip.net\",\n        \"5428@00310.impulsevoip.net\",\n        \"5429@00310.impulsevoip.net\",\n        \"5430@00310.impulsevoip.net\",\n        \"5431@00310.impulsevoip.net\",\n        \"5432@00310.impulsevoip.net\",\n        \"5433@00310.impulsevoip.net\",\n        \"5434@00310.impulsevoip.net\",\n        \"5435@00310.impulsevoip.net\",\n        \"5436@00310.impulsevoip.net\",\n        \"5437@00310.impulsevoip.net\",\n        \"5438@00310.impulsevoip.net\",\n        \"5439@00310.impulsevoip.net\",\n        \"5440@00310.impulsevoip.net\",\n        \"5441@00310.impulsevoip.net\",\n        \"5442@00310.impulsevoip.net\",\n        \"5443@00310.impulsevoip.net\",\n        \"5444@00310.impulsevoip.net\",\n        \"5445@00310.impulsevoip.net\",\n        \"5446@00310.impulsevoip.net\",\n        \"5447@00310.impulsevoip.net\",\n        \"5448@00310.impulsevoip.net\",\n        \"5449@00310.impulsevoip.net\",\n        \"5450@00310.impulsevoip.net\",\n        \"5451@00310.impulsevoip.net\",\n        \"5452@00310.impulsevoip.net\",\n        \"5453@00310.impulsevoip.net\",\n        \"5454@00310.impulsevoip.net\",\n        \"5455@00310.impulsevoip.net\",\n        \"5456@00310.impulsevoip.net\",\n        \"5457@00310.impulsevoip.net\",\n        \"5458@00310.impulsevoip.net\",\n        \"5459@00310.impulsevoip.net\",\n        \"5460@00310.impulsevoip.net\",\n        \"5461@00310.impulsevoip.net\",\n        \"5462@00310.impulsevoip.net\",\n        \"5463@00310.impulsevoip.net\",\n        \"5464@00310.impulsevoip.net\",\n        \"5465@00310.impulsevoip.net\",\n        \"5466@00310.impulsevoip.net\",\n        \"5467@00310.impulsevoip.net\",\n        \"5468@00310.impulsevoip.net\",\n        \"5469@00310.impulsevoip.net\",\n        \"5470@00310.impulsevoip.net\",\n        \"5471@00310.impulsevoip.net\",\n        \"5472@00310.impulsevoip.net\",\n        \"5473@00310.impulsevoip.net\",\n        \"5474@00310.impulsevoip.net\",\n        \"5475@00310.impulsevoip.net\",\n        \"5476@00310.impulsevoip.net\",\n        \"5477@00310.impulsevoip.net\",\n        \"5478@00310.impulsevoip.net\",\n        \"5479@00310.impulsevoip.net\",\n        \"5480@00310.impulsevoip.net\",\n        \"5481@00310.impulsevoip.net\",\n        \"5482@00310.impulsevoip.net\",\n        \"5483@00310.impulsevoip.net\",\n        \"5484@00310.impulsevoip.net\",\n        \"5485@00310.impulsevoip.net\",\n        \"5486@00310.impulsevoip.net\",\n        \"5487@00310.impulsevoip.net\",\n        \"5488@00310.impulsevoip.net\",\n        \"5489@00310.impulsevoip.net\",\n        \"5490@00310.impulsevoip.net\",\n        \"5491@00310.impulsevoip.net\",\n        \"5492@00310.impulsevoip.net\",\n        \"5493@00310.impulsevoip.net\",\n        \"5494@00310.impulsevoip.net\",\n        \"5495@00310.impulsevoip.net\",\n        \"5496@00310.impulsevoip.net\",\n        \"5497@00310.impulsevoip.net\",\n        \"5498@00310.impulsevoip.net\",\n        \"5499@00310.impulsevoip.net\",\n        \"5500@00310.impulsevoip.net\",\n        \"5501@00310.impulsevoip.net\",\n        \"5502@00310.impulsevoip.net\",\n        \"5503@00310.impulsevoip.net\",\n        \"5504@00310.impulsevoip.net\",\n        \"5505@00310.impulsevoip.net\",\n        \"5506@00310.impulsevoip.net\",\n        \"5507@00310.impulsevoip.net\",\n        \"5508@00310.impulsevoip.net\",\n        \"5509@00310.impulsevoip.net\",\n        \"5510@00310.impulsevoip.net\",\n        \"5511@00310.impulsevoip.net\",\n        \"5512@00310.impulsevoip.net\",\n        \"5513@00310.impulsevoip.net\",\n        \"5514@00310.impulsevoip.net\",\n        \"5515@00310.impulsevoip.net\",\n        \"5516@00310.impulsevoip.net\",\n        \"5517@00310.impulsevoip.net\",\n        \"5518@00310.impulsevoip.net\",\n        \"5519@00310.impulsevoip.net\",\n        \"5520@00310.impulsevoip.net\",\n        \"5521@00310.impulsevoip.net\",\n        \"5522@00310.impulsevoip.net\",\n        \"5523@00310.impulsevoip.net\",\n        \"5524@00310.impulsevoip.net\",\n        \"5525@00310.impulsevoip.net\",\n        \"5526@00310.impulsevoip.net\",\n        \"5527@00310.impulsevoip.net\",\n        \"5528@00310.impulsevoip.net\",\n        \"5529@00310.impulsevoip.net\",\n        \"5530@00310.impulsevoip.net\",\n        \"5531@00310.impulsevoip.net\",\n        \"5532@00310.impulsevoip.net\",\n        \"5533@00310.impulsevoip.net\",\n        \"5534@00310.impulsevoip.net\",\n        \"5535@00310.impulsevoip.net\",\n        \"5536@00310.impulsevoip.net\",\n        \"5537@00310.impulsevoip.net\",\n        \"5538@00310.impulsevoip.net\",\n        \"5539@00310.impulsevoip.net\",\n        \"5540@00310.impulsevoip.net\",\n        \"5541@00310.impulsevoip.net\",\n        \"5542@00310.impulsevoip.net\",\n        \"5543@00310.impulsevoip.net\",\n        \"5544@00310.impulsevoip.net\",\n        \"5545@00310.impulsevoip.net\",\n        \"5546@00310.impulsevoip.net\",\n        \"5547@00310.impulsevoip.net\",\n        \"5548@00310.impulsevoip.net\",\n        \"5549@00310.impulsevoip.net\",\n        \"5550@00310.impulsevoip.net\",\n        \"5551@00310.impulsevoip.net\",\n        \"5552@00310.impulsevoip.net\",\n        \"5553@00310.impulsevoip.net\",\n        \"5554@00310.impulsevoip.net\",\n        \"5555@00310.impulsevoip.net\",\n        \"5556@00310.impulsevoip.net\",\n        \"5557@00310.impulsevoip.net\",\n        \"5558@00310.impulsevoip.net\",\n        \"5559@00310.impulsevoip.net\",\n        \"5560@00310.impulsevoip.net\",\n        \"5561@00310.impulsevoip.net\",\n        \"5562@00310.impulsevoip.net\",\n        \"5563@00310.impulsevoip.net\",\n        \"5564@00310.impulsevoip.net\",\n        \"5565@00310.impulsevoip.net\",\n        \"5566@00310.impulsevoip.net\",\n        \"5567@00310.impulsevoip.net\",\n        \"5568@00310.impulsevoip.net\",\n        \"5569@00310.impulsevoip.net\",\n        \"5570@00310.impulsevoip.net\",\n        \"5571@00310.impulsevoip.net\",\n        \"5572@00310.impulsevoip.net\",\n        \"5573@00310.impulsevoip.net\",\n        \"5574@00310.impulsevoip.net\",\n        \"5575@00310.impulsevoip.net\",\n        \"5576@00310.impulsevoip.net\",\n        \"5577@00310.impulsevoip.net\",\n        \"5578@00310.impulsevoip.net\",\n        \"5579@00310.impulsevoip.net\",\n        \"5580@00310.impulsevoip.net\",\n        \"5581@00310.impulsevoip.net\",\n        \"5582@00310.impulsevoip.net\",\n        \"5583@00310.impulsevoip.net\",\n        \"5584@00310.impulsevoip.net\",\n        \"5585@00310.impulsevoip.net\",\n        \"5586@00310.impulsevoip.net\",\n        \"5588@00310.impulsevoip.net\",\n        \"5589@00310.impulsevoip.net\",\n        \"5590@00310.impulsevoip.net\",\n        \"5591@00310.impulsevoip.net\",\n        \"5592@00310.impulsevoip.net\",\n        \"5593@00310.impulsevoip.net\",\n        \"5594@00310.impulsevoip.net\",\n        \"5595@00310.impulsevoip.net\",\n        \"5596@00310.impulsevoip.net\",\n        \"5597@00310.impulsevoip.net\",\n        \"5598@00310.impulsevoip.net\",\n        \"5599@00310.impulsevoip.net\",\n        \"5600@00310.impulsevoip.net\",\n        \"5601@00310.impulsevoip.net\",\n        \"5602@00310.impulsevoip.net\",\n        \"5603@00310.impulsevoip.net\",\n        \"5604@00310.impulsevoip.net\",\n        \"5605@00310.impulsevoip.net\",\n        \"5606@00310.impulsevoip.net\",\n        \"5607@00310.impulsevoip.net\",\n        \"5608@00310.impulsevoip.net\",\n        \"5609@00310.impulsevoip.net\",\n        \"5610@00310.impulsevoip.net\",\n        \"5611@00310.impulsevoip.net\",\n        \"5612@00310.impulsevoip.net\",\n        \"5613@00310.impulsevoip.net\",\n        \"5614@00310.impulsevoip.net\",\n        \"5615@00310.impulsevoip.net\",\n        \"5616@00310.impulsevoip.net\",\n        \"5617@00310.impulsevoip.net\",\n        \"5618@00310.impulsevoip.net\",\n        \"5619@00310.impulsevoip.net\",\n        \"5620@00310.impulsevoip.net\",\n        \"5621@00310.impulsevoip.net\",\n        \"5622@00310.impulsevoip.net\",\n        \"5623@00310.impulsevoip.net\",\n        \"5624@00310.impulsevoip.net\",\n        \"5625@00310.impulsevoip.net\",\n        \"5626@00310.impulsevoip.net\",\n        \"5627@00310.impulsevoip.net\",\n        \"5628@00310.impulsevoip.net\",\n        \"5629@00310.impulsevoip.net\",\n        \"5630@00310.impulsevoip.net\",\n        \"5631@00310.impulsevoip.net\",\n        \"5632@00310.impulsevoip.net\",\n        \"5633@00310.impulsevoip.net\",\n        \"5634@00310.impulsevoip.net\",\n        \"5635@00310.impulsevoip.net\",\n        \"5636@00310.impulsevoip.net\",\n        \"5637@00310.impulsevoip.net\",\n        \"5638@00310.impulsevoip.net\",\n        \"5639@00310.impulsevoip.net\",\n        \"5640@00310.impulsevoip.net\",\n        \"5641@00310.impulsevoip.net\",\n        \"5642@00310.impulsevoip.net\",\n        \"5643@00310.impulsevoip.net\",\n        \"5644@00310.impulsevoip.net\",\n        \"5645@00310.impulsevoip.net\",\n        \"5646@00310.impulsevoip.net\",\n        \"5647@00310.impulsevoip.net\",\n        \"5648@00310.impulsevoip.net\",\n        \"5649@00310.impulsevoip.net\",\n        \"5650@00310.impulsevoip.net\",\n        \"5651@00310.impulsevoip.net\",\n        \"5652@00310.impulsevoip.net\",\n        \"5653@00310.impulsevoip.net\",\n        \"5654@00310.impulsevoip.net\",\n        \"5655@00310.impulsevoip.net\",\n        \"5656@00310.impulsevoip.net\",\n        \"5657@00310.impulsevoip.net\",\n        \"5658@00310.impulsevoip.net\",\n        \"5659@00310.impulsevoip.net\",\n        \"5660@00310.impulsevoip.net\",\n        \"5661@00310.impulsevoip.net\",\n        \"5662@00310.impulsevoip.net\",\n        \"5663@00310.impulsevoip.net\",\n        \"5664@00310.impulsevoip.net\",\n        \"5665@00310.impulsevoip.net\",\n        \"5666@00310.impulsevoip.net\",\n        \"5667@00310.impulsevoip.net\",\n        \"5668@00310.impulsevoip.net\",\n        \"5669@00310.impulsevoip.net\",\n        \"5670@00310.impulsevoip.net\",\n        \"5671@00310.impulsevoip.net\",\n        \"5672@00310.impulsevoip.net\",\n        \"5673@00310.impulsevoip.net\",\n        \"5674@00310.impulsevoip.net\",\n        \"5675@00310.impulsevoip.net\",\n        \"5676@00310.impulsevoip.net\",\n        \"5677@00310.impulsevoip.net\",\n        \"5678@00310.impulsevoip.net\",\n        \"5679@00310.impulsevoip.net\",\n        \"6168@00310.impulsevoip.net\",\n        \"6169@00310.impulsevoip.net\",\n        \"6170@00310.impulsevoip.net\",\n        \"6171@00310.impulsevoip.net\",\n        \"6172@00310.impulsevoip.net\",\n        \"6173@00310.impulsevoip.net\",\n        \"6174@00310.impulsevoip.net\",\n        \"6175@00310.impulsevoip.net\",\n        \"6176@00310.impulsevoip.net\",\n        \"6177@00310.impulsevoip.net\",\n        \"6178@00310.impulsevoip.net\",\n        \"6179@00310.impulsevoip.net\",\n        \"6180@00310.impulsevoip.net\",\n        \"6181@00310.impulsevoip.net\",\n        \"6182@00310.impulsevoip.net\",\n        \"6183@00310.impulsevoip.net\",\n        \"6184@00310.impulsevoip.net\",\n        \"6185@00310.impulsevoip.net\",\n        \"6186@00310.impulsevoip.net\",\n        \"6187@00310.impulsevoip.net\",\n        \"6188@00310.impulsevoip.net\",\n        \"6189@00310.impulsevoip.net\",\n        \"6190@00310.impulsevoip.net\",\n        \"6191@00310.impulsevoip.net\",\n        \"6192@00310.impulsevoip.net\",\n        \"6193@00310.impulsevoip.net\",\n        \"6194@00310.impulsevoip.net\",\n        \"6195@00310.impulsevoip.net\",\n        \"6196@00310.impulsevoip.net\",\n        \"6197@00310.impulsevoip.net\",\n        \"6198@00310.impulsevoip.net\",\n        \"6199@00310.impulsevoip.net\",\n        \"6200@00310.impulsevoip.net\",\n        \"6201@00310.impulsevoip.net\",\n        \"6202@00310.impulsevoip.net\",\n        \"6203@00310.impulsevoip.net\",\n        \"6204@00310.impulsevoip.net\",\n        \"6205@00310.impulsevoip.net\",\n        \"6206@00310.impulsevoip.net\",\n        \"6207@00310.impulsevoip.net\",\n        \"6208@00310.impulsevoip.net\",\n        \"6209@00310.impulsevoip.net\",\n        \"6210@00310.impulsevoip.net\",\n        \"6211@00310.impulsevoip.net\",\n        \"6212@00310.impulsevoip.net\",\n        \"6213@00310.impulsevoip.net\",\n        \"6214@00310.impulsevoip.net\",\n        \"6215@00310.impulsevoip.net\",\n        \"6216@00310.impulsevoip.net\",\n        \"6217@00310.impulsevoip.net\",\n        \"6218@00310.impulsevoip.net\",\n        \"6219@00310.impulsevoip.net\",\n        \"6220@00310.impulsevoip.net\",\n        \"6221@00310.impulsevoip.net\",\n        \"6222@00310.impulsevoip.net\",\n        \"6223@00310.impulsevoip.net\",\n        \"6224@00310.impulsevoip.net\",\n        \"6225@00310.impulsevoip.net\",\n        \"6226@00310.impulsevoip.net\",\n        \"6227@00310.impulsevoip.net\",\n        \"6228@00310.impulsevoip.net\",\n        \"6229@00310.impulsevoip.net\",\n        \"6230@00310.impulsevoip.net\",\n        \"6231@00310.impulsevoip.net\",\n        \"6232@00310.impulsevoip.net\",\n        \"6233@00310.impulsevoip.net\",\n        \"6234@00310.impulsevoip.net\",\n        \"6235@00310.impulsevoip.net\",\n        \"6236@00310.impulsevoip.net\",\n        \"6237@00310.impulsevoip.net\",\n        \"6238@00310.impulsevoip.net\",\n        \"6239@00310.impulsevoip.net\",\n        \"6240@00310.impulsevoip.net\",\n        \"6241@00310.impulsevoip.net\",\n        \"6242@00310.impulsevoip.net\",\n        \"6243@00310.impulsevoip.net\",\n        \"6244@00310.impulsevoip.net\",\n        \"6245@00310.impulsevoip.net\",\n        \"6246@00310.impulsevoip.net\",\n        \"6247@00310.impulsevoip.net\",\n        \"6248@00310.impulsevoip.net\",\n        \"6249@00310.impulsevoip.net\",\n        \"6250@00310.impulsevoip.net\",\n        \"6251@00310.impulsevoip.net\",\n        \"6252@00310.impulsevoip.net\",\n        \"6253@00310.impulsevoip.net\",\n        \"6254@00310.impulsevoip.net\",\n        \"6255@00310.impulsevoip.net\",\n        \"6256@00310.impulsevoip.net\",\n        \"6257@00310.impulsevoip.net\",\n        \"6258@00310.impulsevoip.net\",\n        \"6259@00310.impulsevoip.net\",\n        \"6260@00310.impulsevoip.net\",\n        \"6261@00310.impulsevoip.net\",\n        \"6262@00310.impulsevoip.net\",\n        \"6263@00310.impulsevoip.net\",\n        \"6264@00310.impulsevoip.net\",\n        \"6265@00310.impulsevoip.net\",\n        \"6266@00310.impulsevoip.net\",\n        \"6267@00310.impulsevoip.net\",\n        \"6268@00310.impulsevoip.net\",\n        \"6269@00310.impulsevoip.net\",\n        \"6270@00310.impulsevoip.net\",\n        \"6271@00310.impulsevoip.net\",\n        \"6272@00310.impulsevoip.net\",\n        \"6273@00310.impulsevoip.net\",\n        \"6274@00310.impulsevoip.net\",\n        \"6275@00310.impulsevoip.net\",\n        \"6276@00310.impulsevoip.net\",\n        \"6277@00310.impulsevoip.net\",\n        \"6278@00310.impulsevoip.net\",\n        \"6279@00310.impulsevoip.net\",\n        \"6280@00310.impulsevoip.net\",\n        \"6281@00310.impulsevoip.net\",\n        \"6282@00310.impulsevoip.net\",\n        \"6283@00310.impulsevoip.net\",\n        \"6284@00310.impulsevoip.net\",\n        \"6285@00310.impulsevoip.net\",\n        \"6286@00310.impulsevoip.net\",\n        \"6287@00310.impulsevoip.net\",\n        \"6288@00310.impulsevoip.net\",\n        \"6289@00310.impulsevoip.net\",\n        \"6290@00310.impulsevoip.net\",\n        \"6291@00310.impulsevoip.net\",\n        \"6292@00310.impulsevoip.net\",\n        \"6293@00310.impulsevoip.net\",\n        \"6294@00310.impulsevoip.net\",\n        \"6295@00310.impulsevoip.net\",\n        \"6296@00310.impulsevoip.net\",\n        \"6297@00310.impulsevoip.net\",\n        \"6298@00310.impulsevoip.net\",\n        \"6299@00310.impulsevoip.net\",\n        \"6300@00310.impulsevoip.net\",\n        \"6301@00310.impulsevoip.net\",\n        \"6302@00310.impulsevoip.net\",\n        \"6303@00310.impulsevoip.net\",\n        \"6304@00310.impulsevoip.net\",\n        \"6305@00310.impulsevoip.net\",\n        \"6306@00310.impulsevoip.net\",\n        \"6307@00310.impulsevoip.net\",\n        \"6308@00310.impulsevoip.net\",\n        \"6309@00310.impulsevoip.net\",\n        \"6310@00310.impulsevoip.net\",\n        \"6311@00310.impulsevoip.net\",\n        \"6312@00310.impulsevoip.net\",\n        \"6313@00310.impulsevoip.net\",\n        \"6314@00310.impulsevoip.net\",\n        \"6315@00310.impulsevoip.net\",\n        \"6316@00310.impulsevoip.net\",\n        \"6317@00310.impulsevoip.net\",\n        \"6318@00310.impulsevoip.net\",\n        \"6319@00310.impulsevoip.net\",\n        \"6320@00310.impulsevoip.net\",\n        \"6321@00310.impulsevoip.net\",\n        \"6322@00310.impulsevoip.net\",\n        \"6323@00310.impulsevoip.net\",\n        \"6324@00310.impulsevoip.net\",\n        \"6325@00310.impulsevoip.net\",\n        \"6326@00310.impulsevoip.net\",\n        \"6327@00310.impulsevoip.net\",\n        \"6328@00310.impulsevoip.net\",\n        \"6329@00310.impulsevoip.net\",\n        \"6330@00310.impulsevoip.net\",\n        \"6331@00310.impulsevoip.net\",\n        \"6332@00310.impulsevoip.net\",\n        \"6333@00310.impulsevoip.net\",\n        \"6334@00310.impulsevoip.net\",\n        \"6335@00310.impulsevoip.net\",\n        \"6336@00310.impulsevoip.net\",\n        \"6337@00310.impulsevoip.net\",\n        \"6338@00310.impulsevoip.net\",\n        \"6339@00310.impulsevoip.net\",\n        \"6340@00310.impulsevoip.net\",\n        \"6341@00310.impulsevoip.net\",\n        \"6342@00310.impulsevoip.net\",\n        \"6343@00310.impulsevoip.net\",\n        \"6344@00310.impulsevoip.net\",\n        \"6345@00310.impulsevoip.net\",\n        \"6346@00310.impulsevoip.net\",\n        \"6347@00310.impulsevoip.net\",\n        \"6348@00310.impulsevoip.net\",\n        \"6349@00310.impulsevoip.net\",\n        \"6350@00310.impulsevoip.net\",\n        \"6351@00310.impulsevoip.net\",\n        \"6352@00310.impulsevoip.net\",\n        \"6353@00310.impulsevoip.net\",\n        \"6354@00310.impulsevoip.net\",\n        \"6355@00310.impulsevoip.net\",\n        \"6356@00310.impulsevoip.net\",\n        \"6357@00310.impulsevoip.net\",\n        \"6358@00310.impulsevoip.net\",\n        \"6359@00310.impulsevoip.net\",\n        \"6360@00310.impulsevoip.net\",\n        \"6361@00310.impulsevoip.net\",\n        \"6362@00310.impulsevoip.net\",\n        \"6363@00310.impulsevoip.net\",\n        \"6364@00310.impulsevoip.net\",\n        \"6365@00310.impulsevoip.net\",\n        \"6366@00310.impulsevoip.net\",\n        \"6367@00310.impulsevoip.net\",\n        \"6368@00310.impulsevoip.net\",\n        \"6369@00310.impulsevoip.net\",\n        \"6370@00310.impulsevoip.net\",\n        \"6371@00310.impulsevoip.net\",\n        \"6372@00310.impulsevoip.net\",\n        \"6373@00310.impulsevoip.net\",\n        \"6374@00310.impulsevoip.net\",\n        \"6375@00310.impulsevoip.net\",\n        \"6376@00310.impulsevoip.net\",\n        \"6377@00310.impulsevoip.net\",\n        \"6378@00310.impulsevoip.net\",\n        \"6379@00310.impulsevoip.net\",\n        \"6380@00310.impulsevoip.net\",\n        \"6381@00310.impulsevoip.net\",\n        \"6382@00310.impulsevoip.net\",\n        \"6383@00310.impulsevoip.net\",\n        \"6384@00310.impulsevoip.net\",\n        \"6385@00310.impulsevoip.net\",\n        \"6386@00310.impulsevoip.net\",\n        \"6387@00310.impulsevoip.net\",\n        \"6388@00310.impulsevoip.net\",\n        \"6389@00310.impulsevoip.net\",\n        \"6390@00310.impulsevoip.net\",\n        \"6391@00310.impulsevoip.net\",\n        \"6392@00310.impulsevoip.net\",\n        \"6393@00310.impulsevoip.net\",\n        \"6394@00310.impulsevoip.net\",\n        \"6395@00310.impulsevoip.net\",\n        \"6396@00310.impulsevoip.net\",\n        \"6397@00310.impulsevoip.net\",\n        \"6398@00310.impulsevoip.net\",\n        \"6399@00310.impulsevoip.net\",\n        \"6400@00310.impulsevoip.net\",\n        \"6401@00310.impulsevoip.net\",\n        \"6402@00310.impulsevoip.net\",\n        \"6403@00310.impulsevoip.net\",\n        \"6404@00310.impulsevoip.net\",\n        \"6405@00310.impulsevoip.net\",\n        \"6406@00310.impulsevoip.net\",\n        \"6407@00310.impulsevoip.net\",\n        \"6408@00310.impulsevoip.net\",\n        \"6409@00310.impulsevoip.net\",\n        \"6410@00310.impulsevoip.net\",\n        \"6411@00310.impulsevoip.net\",\n        \"6412@00310.impulsevoip.net\",\n        \"6413@00310.impulsevoip.net\",\n        \"6414@00310.impulsevoip.net\",\n        \"6415@00310.impulsevoip.net\",\n        \"6416@00310.impulsevoip.net\",\n        \"6417@00310.impulsevoip.net\",\n        \"6418@00310.impulsevoip.net\",\n        \"6419@00310.impulsevoip.net\",\n        \"6420@00310.impulsevoip.net\",\n        \"6421@00310.impulsevoip.net\",\n        \"6422@00310.impulsevoip.net\",\n        \"6423@00310.impulsevoip.net\",\n        \"6424@00310.impulsevoip.net\",\n        \"6425@00310.impulsevoip.net\",\n        \"6426@00310.impulsevoip.net\",\n        \"6427@00310.impulsevoip.net\",\n        \"6428@00310.impulsevoip.net\",\n        \"6429@00310.impulsevoip.net\",\n        \"6430@00310.impulsevoip.net\",\n        \"6431@00310.impulsevoip.net\",\n        \"6432@00310.impulsevoip.net\",\n        \"6433@00310.impulsevoip.net\",\n        \"6434@00310.impulsevoip.net\",\n        \"6435@00310.impulsevoip.net\",\n        \"6436@00310.impulsevoip.net\",\n        \"6437@00310.impulsevoip.net\",\n        \"6438@00310.impulsevoip.net\",\n        \"6439@00310.impulsevoip.net\",\n        \"6440@00310.impulsevoip.net\",\n        \"6441@00310.impulsevoip.net\",\n        \"6442@00310.impulsevoip.net\",\n        \"6443@00310.impulsevoip.net\",\n        \"6444@00310.impulsevoip.net\",\n        \"6445@00310.impulsevoip.net\",\n        \"6446@00310.impulsevoip.net\",\n        \"6447@00310.impulsevoip.net\",\n        \"6448@00310.impulsevoip.net\",\n        \"6449@00310.impulsevoip.net\",\n        \"6450@00310.impulsevoip.net\",\n        \"6451@00310.impulsevoip.net\",\n        \"6452@00310.impulsevoip.net\",\n        \"6453@00310.impulsevoip.net\",\n        \"6454@00310.impulsevoip.net\",\n        \"6455@00310.impulsevoip.net\",\n        \"6456@00310.impulsevoip.net\",\n        \"6457@00310.impulsevoip.net\",\n        \"6458@00310.impulsevoip.net\",\n        \"6459@00310.impulsevoip.net\",\n        \"6460@00310.impulsevoip.net\",\n        \"6461@00310.impulsevoip.net\",\n        \"6462@00310.impulsevoip.net\",\n        \"6463@00310.impulsevoip.net\",\n        \"6464@00310.impulsevoip.net\",\n        \"6465@00310.impulsevoip.net\",\n        \"6466@00310.impulsevoip.net\",\n        \"6467@00310.impulsevoip.net\",\n        \"6468@00310.impulsevoip.net\",\n        \"6469@00310.impulsevoip.net\",\n        \"6470@00310.impulsevoip.net\",\n        \"6471@00310.impulsevoip.net\",\n        \"6472@00310.impulsevoip.net\",\n        \"6473@00310.impulsevoip.net\",\n        \"6474@00310.impulsevoip.net\",\n        \"6475@00310.impulsevoip.net\",\n        \"6476@00310.impulsevoip.net\",\n        \"6477@00310.impulsevoip.net\",\n        \"6478@00310.impulsevoip.net\",\n        \"6479@00310.impulsevoip.net\",\n        \"6480@00310.impulsevoip.net\",\n        \"6481@00310.impulsevoip.net\",\n        \"6482@00310.impulsevoip.net\",\n        \"6483@00310.impulsevoip.net\",\n        \"6484@00310.impulsevoip.net\",\n        \"6485@00310.impulsevoip.net\",\n        \"6486@00310.impulsevoip.net\",\n        \"6487@00310.impulsevoip.net\",\n        \"6488@00310.impulsevoip.net\",\n        \"6489@00310.impulsevoip.net\",\n        \"6490@00310.impulsevoip.net\",\n        \"6491@00310.impulsevoip.net\",\n        \"6492@00310.impulsevoip.net\",\n        \"6493@00310.impulsevoip.net\",\n        \"6494@00310.impulsevoip.net\",\n        \"6495@00310.impulsevoip.net\",\n        \"6496@00310.impulsevoip.net\",\n        \"6497@00310.impulsevoip.net\",\n        \"6498@00310.impulsevoip.net\",\n        \"6499@00310.impulsevoip.net\",\n        \"6500@00310.impulsevoip.net\",\n        \"6501@00310.impulsevoip.net\",\n        \"6502@00310.impulsevoip.net\",\n        \"6503@00310.impulsevoip.net\",\n        \"6504@00310.impulsevoip.net\",\n        \"6505@00310.impulsevoip.net\",\n        \"6506@00310.impulsevoip.net\",\n        \"6507@00310.impulsevoip.net\",\n        \"6508@00310.impulsevoip.net\",\n        \"6509@00310.impulsevoip.net\",\n        \"6510@00310.impulsevoip.net\",\n        \"6511@00310.impulsevoip.net\",\n        \"6512@00310.impulsevoip.net\",\n        \"6513@00310.impulsevoip.net\",\n        \"6514@00310.impulsevoip.net\",\n        \"6515@00310.impulsevoip.net\",\n        \"6516@00310.impulsevoip.net\",\n        \"6517@00310.impulsevoip.net\",\n        \"6518@00310.impulsevoip.net\",\n        \"6519@00310.impulsevoip.net\",\n        \"6520@00310.impulsevoip.net\",\n        \"6521@00310.impulsevoip.net\",\n        \"6522@00310.impulsevoip.net\",\n        \"6523@00310.impulsevoip.net\",\n        \"6524@00310.impulsevoip.net\",\n        \"6525@00310.impulsevoip.net\",\n        \"6526@00310.impulsevoip.net\",\n        \"6527@00310.impulsevoip.net\",\n        \"6528@00310.impulsevoip.net\",\n        \"6529@00310.impulsevoip.net\",\n        \"6530@00310.impulsevoip.net\",\n        \"6531@00310.impulsevoip.net\",\n        \"6532@00310.impulsevoip.net\",\n        \"6533@00310.impulsevoip.net\",\n        \"6534@00310.impulsevoip.net\",\n        \"6535@00310.impulsevoip.net\",\n        \"6536@00310.impulsevoip.net\",\n        \"6537@00310.impulsevoip.net\",\n        \"6538@00310.impulsevoip.net\",\n        \"6539@00310.impulsevoip.net\",\n        \"6540@00310.impulsevoip.net\",\n        \"6541@00310.impulsevoip.net\",\n        \"6542@00310.impulsevoip.net\",\n        \"6543@00310.impulsevoip.net\",\n        \"6544@00310.impulsevoip.net\",\n        \"6545@00310.impulsevoip.net\",\n        \"6546@00310.impulsevoip.net\",\n        \"6547@00310.impulsevoip.net\",\n        \"6548@00310.impulsevoip.net\",\n        \"6549@00310.impulsevoip.net\",\n        \"6550@00310.impulsevoip.net\",\n        \"6551@00310.impulsevoip.net\",\n        \"6552@00310.impulsevoip.net\",\n        \"6553@00310.impulsevoip.net\",\n        \"6554@00310.impulsevoip.net\",\n        \"6555@00310.impulsevoip.net\",\n        \"6556@00310.impulsevoip.net\",\n        \"6557@00310.impulsevoip.net\",\n        \"6558@00310.impulsevoip.net\",\n        \"6559@00310.impulsevoip.net\",\n        \"6560@00310.impulsevoip.net\",\n        \"6561@00310.impulsevoip.net\",\n        \"6562@00310.impulsevoip.net\",\n        \"6563@00310.impulsevoip.net\",\n        \"6564@00310.impulsevoip.net\",\n        \"6565@00310.impulsevoip.net\",\n        \"6566@00310.impulsevoip.net\",\n        \"6567@00310.impulsevoip.net\",\n        \"6568@00310.impulsevoip.net\",\n        \"6569@00310.impulsevoip.net\",\n        \"6570@00310.impulsevoip.net\",\n        \"6571@00310.impulsevoip.net\",\n        \"6572@00310.impulsevoip.net\",\n        \"6573@00310.impulsevoip.net\",\n        \"6574@00310.impulsevoip.net\",\n        \"6575@00310.impulsevoip.net\",\n        \"6576@00310.impulsevoip.net\",\n        \"6577@00310.impulsevoip.net\",\n        \"6578@00310.impulsevoip.net\",\n        \"6579@00310.impulsevoip.net\",\n        \"6580@00310.impulsevoip.net\",\n        \"6581@00310.impulsevoip.net\",\n        \"6582@00310.impulsevoip.net\",\n        \"6583@00310.impulsevoip.net\",\n        \"6584@00310.impulsevoip.net\",\n        \"6585@00310.impulsevoip.net\",\n        \"6586@00310.impulsevoip.net\",\n        \"6587@00310.impulsevoip.net\",\n        \"6588@00310.impulsevoip.net\",\n        \"6589@00310.impulsevoip.net\",\n        \"6590@00310.impulsevoip.net\",\n        \"6591@00310.impulsevoip.net\",\n        \"6592@00310.impulsevoip.net\",\n        \"6593@00310.impulsevoip.net\",\n        \"6594@00310.impulsevoip.net\",\n        \"6595@00310.impulsevoip.net\",\n        \"6596@00310.impulsevoip.net\",\n        \"6597@00310.impulsevoip.net\",\n        \"6598@00310.impulsevoip.net\",\n        \"6599@00310.impulsevoip.net\",\n        \"6600@00310.impulsevoip.net\",\n        \"6601@00310.impulsevoip.net\",\n        \"6602@00310.impulsevoip.net\",\n        \"6603@00310.impulsevoip.net\",\n        \"6604@00310.impulsevoip.net\",\n        \"6605@00310.impulsevoip.net\",\n        \"6606@00310.impulsevoip.net\",\n        \"6607@00310.impulsevoip.net\",\n        \"6608@00310.impulsevoip.net\",\n        \"6609@00310.impulsevoip.net\",\n        \"6610@00310.impulsevoip.net\",\n        \"6611@00310.impulsevoip.net\",\n        \"6612@00310.impulsevoip.net\",\n        \"6613@00310.impulsevoip.net\",\n        \"6614@00310.impulsevoip.net\",\n        \"6615@00310.impulsevoip.net\",\n        \"6616@00310.impulsevoip.net\",\n        \"6617@00310.impulsevoip.net\",\n        \"6618@00310.impulsevoip.net\",\n        \"6619@00310.impulsevoip.net\",\n        \"6620@00310.impulsevoip.net\",\n        \"6621@00310.impulsevoip.net\",\n        \"6622@00310.impulsevoip.net\",\n        \"6623@00310.impulsevoip.net\",\n        \"6624@00310.impulsevoip.net\",\n        \"6625@00310.impulsevoip.net\",\n        \"6626@00310.impulsevoip.net\",\n        \"6627@00310.impulsevoip.net\",\n        \"6628@00310.impulsevoip.net\",\n        \"6629@00310.impulsevoip.net\",\n        \"6630@00310.impulsevoip.net\",\n        \"6631@00310.impulsevoip.net\",\n        \"6632@00310.impulsevoip.net\",\n        \"6633@00310.impulsevoip.net\",\n        \"6634@00310.impulsevoip.net\",\n        \"6635@00310.impulsevoip.net\",\n        \"6636@00310.impulsevoip.net\",\n        \"6637@00310.impulsevoip.net\",\n        \"6638@00310.impulsevoip.net\",\n        \"6639@00310.impulsevoip.net\",\n        \"6640@00310.impulsevoip.net\",\n        \"6641@00310.impulsevoip.net\",\n        \"6642@00310.impulsevoip.net\",\n        \"6643@00310.impulsevoip.net\",\n        \"6644@00310.impulsevoip.net\",\n        \"6645@00310.impulsevoip.net\",\n        \"6646@00310.impulsevoip.net\",\n        \"6647@00310.impulsevoip.net\",\n        \"6648@00310.impulsevoip.net\",\n        \"6649@00310.impulsevoip.net\",\n        \"6650@00310.impulsevoip.net\",\n        \"6651@00310.impulsevoip.net\",\n        \"6652@00310.impulsevoip.net\",\n        \"6653@00310.impulsevoip.net\",\n        \"6654@00310.impulsevoip.net\",\n        \"6655@00310.impulsevoip.net\",\n        \"6656@00310.impulsevoip.net\",\n        \"6657@00310.impulsevoip.net\",\n        \"6658@00310.impulsevoip.net\",\n        \"6659@00310.impulsevoip.net\",\n        \"6660@00310.impulsevoip.net\",\n        \"6661@00310.impulsevoip.net\",\n        \"6662@00310.impulsevoip.net\",\n        \"6663@00310.impulsevoip.net\",\n        \"6664@00310.impulsevoip.net\",\n        \"6665@00310.impulsevoip.net\",\n        \"6666@00310.impulsevoip.net\",\n        \"6667@00310.impulsevoip.net\",\n        \"6668@00310.impulsevoip.net\",\n        \"6669@00310.impulsevoip.net\",\n        \"6670@00310.impulsevoip.net\",\n        \"6671@00310.impulsevoip.net\",\n        \"6672@00310.impulsevoip.net\",\n        \"6673@00310.impulsevoip.net\",\n        \"6674@00310.impulsevoip.net\",\n        \"6675@00310.impulsevoip.net\",\n        \"6676@00310.impulsevoip.net\",\n        \"6677@00310.impulsevoip.net\",\n        \"6678@00310.impulsevoip.net\",\n        \"6679@00310.impulsevoip.net\",\n        \"5912@00310.impulsevoip.net\",\n        \"5913@00310.impulsevoip.net\",\n        \"5914@00310.impulsevoip.net\",\n        \"5915@00310.impulsevoip.net\",\n        \"5916@00310.impulsevoip.net\",\n        \"5917@00310.impulsevoip.net\",\n        \"5918@00310.impulsevoip.net\",\n        \"5919@00310.impulsevoip.net\",\n        \"5920@00310.impulsevoip.net\",\n        \"5921@00310.impulsevoip.net\",\n        \"5922@00310.impulsevoip.net\",\n        \"5923@00310.impulsevoip.net\",\n        \"5924@00310.impulsevoip.net\",\n        \"5925@00310.impulsevoip.net\",\n        \"5926@00310.impulsevoip.net\",\n        \"5927@00310.impulsevoip.net\",\n        \"5928@00310.impulsevoip.net\",\n        \"5929@00310.impulsevoip.net\",\n        \"5930@00310.impulsevoip.net\",\n        \"5931@00310.impulsevoip.net\",\n        \"5932@00310.impulsevoip.net\",\n        \"5933@00310.impulsevoip.net\",\n        \"5934@00310.impulsevoip.net\",\n        \"5935@00310.impulsevoip.net\",\n        \"5936@00310.impulsevoip.net\",\n        \"5937@00310.impulsevoip.net\",\n        \"5938@00310.impulsevoip.net\",\n        \"5939@00310.impulsevoip.net\",\n        \"5940@00310.impulsevoip.net\",\n        \"5941@00310.impulsevoip.net\",\n        \"5942@00310.impulsevoip.net\",\n        \"5943@00310.impulsevoip.net\",\n        \"5944@00310.impulsevoip.net\",\n        \"5945@00310.impulsevoip.net\",\n        \"5946@00310.impulsevoip.net\",\n        \"5947@00310.impulsevoip.net\",\n        \"5948@00310.impulsevoip.net\",\n        \"5949@00310.impulsevoip.net\",\n        \"5950@00310.impulsevoip.net\",\n        \"5951@00310.impulsevoip.net\",\n        \"5952@00310.impulsevoip.net\",\n        \"5953@00310.impulsevoip.net\",\n        \"5954@00310.impulsevoip.net\",\n        \"5955@00310.impulsevoip.net\",\n        \"5956@00310.impulsevoip.net\",\n        \"5957@00310.impulsevoip.net\",\n        \"5958@00310.impulsevoip.net\",\n        \"5959@00310.impulsevoip.net\",\n        \"5960@00310.impulsevoip.net\",\n        \"5961@00310.impulsevoip.net\",\n        \"5962@00310.impulsevoip.net\",\n        \"5963@00310.impulsevoip.net\",\n        \"5964@00310.impulsevoip.net\",\n        \"5965@00310.impulsevoip.net\",\n        \"5966@00310.impulsevoip.net\",\n        \"5967@00310.impulsevoip.net\",\n        \"5968@00310.impulsevoip.net\",\n        \"5969@00310.impulsevoip.net\",\n        \"5970@00310.impulsevoip.net\",\n        \"5971@00310.impulsevoip.net\",\n        \"5972@00310.impulsevoip.net\",\n        \"5973@00310.impulsevoip.net\",\n        \"5974@00310.impulsevoip.net\",\n        \"5975@00310.impulsevoip.net\",\n        \"5976@00310.impulsevoip.net\",\n        \"5977@00310.impulsevoip.net\",\n        \"5978@00310.impulsevoip.net\",\n        \"5979@00310.impulsevoip.net\",\n        \"5980@00310.impulsevoip.net\",\n        \"5981@00310.impulsevoip.net\",\n        \"5982@00310.impulsevoip.net\",\n        \"5983@00310.impulsevoip.net\",\n        \"5984@00310.impulsevoip.net\",\n        \"5985@00310.impulsevoip.net\",\n        \"5986@00310.impulsevoip.net\",\n        \"5987@00310.impulsevoip.net\",\n        \"5988@00310.impulsevoip.net\",\n        \"5989@00310.impulsevoip.net\",\n        \"5990@00310.impulsevoip.net\",\n        \"5991@00310.impulsevoip.net\",\n        \"5992@00310.impulsevoip.net\",\n        \"5993@00310.impulsevoip.net\",\n        \"5994@00310.impulsevoip.net\",\n        \"5995@00310.impulsevoip.net\",\n        \"5996@00310.impulsevoip.net\",\n        \"5997@00310.impulsevoip.net\",\n        \"5998@00310.impulsevoip.net\",\n        \"5999@00310.impulsevoip.net\",\n        \"6000@00310.impulsevoip.net\",\n        \"6001@00310.impulsevoip.net\",\n        \"6002@00310.impulsevoip.net\",\n        \"6003@00310.impulsevoip.net\",\n        \"6004@00310.impulsevoip.net\",\n        \"6005@00310.impulsevoip.net\",\n        \"6006@00310.impulsevoip.net\",\n        \"6007@00310.impulsevoip.net\",\n        \"6008@00310.impulsevoip.net\",\n        \"6009@00310.impulsevoip.net\",\n        \"6010@00310.impulsevoip.net\",\n        \"6011@00310.impulsevoip.net\",\n        \"6012@00310.impulsevoip.net\",\n        \"6013@00310.impulsevoip.net\",\n        \"6014@00310.impulsevoip.net\",\n        \"6015@00310.impulsevoip.net\",\n        \"6016@00310.impulsevoip.net\",\n        \"6017@00310.impulsevoip.net\",\n        \"6018@00310.impulsevoip.net\",\n        \"6019@00310.impulsevoip.net\",\n        \"6020@00310.impulsevoip.net\",\n        \"6021@00310.impulsevoip.net\",\n        \"6022@00310.impulsevoip.net\",\n        \"6023@00310.impulsevoip.net\",\n        \"6024@00310.impulsevoip.net\",\n        \"6025@00310.impulsevoip.net\",\n        \"6026@00310.impulsevoip.net\",\n        \"6027@00310.impulsevoip.net\",\n        \"6028@00310.impulsevoip.net\",\n        \"6029@00310.impulsevoip.net\",\n        \"6030@00310.impulsevoip.net\",\n        \"6031@00310.impulsevoip.net\",\n        \"6032@00310.impulsevoip.net\",\n        \"6033@00310.impulsevoip.net\",\n        \"6034@00310.impulsevoip.net\",\n        \"6035@00310.impulsevoip.net\",\n        \"6036@00310.impulsevoip.net\",\n        \"6037@00310.impulsevoip.net\",\n        \"6038@00310.impulsevoip.net\",\n        \"6039@00310.impulsevoip.net\",\n        \"6040@00310.impulsevoip.net\",\n        \"6041@00310.impulsevoip.net\",\n        \"6042@00310.impulsevoip.net\",\n        \"6043@00310.impulsevoip.net\",\n        \"6044@00310.impulsevoip.net\",\n        \"6045@00310.impulsevoip.net\",\n        \"6046@00310.impulsevoip.net\",\n        \"6047@00310.impulsevoip.net\",\n        \"6048@00310.impulsevoip.net\",\n        \"6049@00310.impulsevoip.net\",\n        \"6050@00310.impulsevoip.net\",\n        \"6051@00310.impulsevoip.net\",\n        \"6052@00310.impulsevoip.net\",\n        \"6053@00310.impulsevoip.net\",\n        \"6054@00310.impulsevoip.net\",\n        \"6055@00310.impulsevoip.net\",\n        \"6056@00310.impulsevoip.net\",\n        \"6057@00310.impulsevoip.net\",\n        \"6058@00310.impulsevoip.net\",\n        \"6059@00310.impulsevoip.net\",\n        \"6060@00310.impulsevoip.net\",\n        \"6061@00310.impulsevoip.net\",\n        \"6062@00310.impulsevoip.net\",\n        \"6063@00310.impulsevoip.net\",\n        \"6064@00310.impulsevoip.net\",\n        \"6065@00310.impulsevoip.net\",\n        \"6066@00310.impulsevoip.net\",\n        \"6067@00310.impulsevoip.net\",\n        \"6068@00310.impulsevoip.net\",\n        \"6069@00310.impulsevoip.net\",\n        \"6070@00310.impulsevoip.net\",\n        \"6071@00310.impulsevoip.net\",\n        \"6072@00310.impulsevoip.net\",\n        \"6073@00310.impulsevoip.net\",\n        \"6074@00310.impulsevoip.net\",\n        \"6075@00310.impulsevoip.net\",\n        \"6076@00310.impulsevoip.net\",\n        \"6077@00310.impulsevoip.net\",\n        \"6078@00310.impulsevoip.net\",\n        \"6079@00310.impulsevoip.net\",\n        \"6080@00310.impulsevoip.net\",\n        \"6081@00310.impulsevoip.net\",\n        \"6082@00310.impulsevoip.net\",\n        \"6083@00310.impulsevoip.net\",\n        \"6084@00310.impulsevoip.net\",\n        \"6085@00310.impulsevoip.net\",\n        \"6086@00310.impulsevoip.net\",\n        \"6087@00310.impulsevoip.net\",\n        \"6088@00310.impulsevoip.net\",\n        \"6089@00310.impulsevoip.net\",\n        \"6090@00310.impulsevoip.net\",\n        \"6091@00310.impulsevoip.net\",\n        \"6092@00310.impulsevoip.net\",\n        \"6093@00310.impulsevoip.net\",\n        \"6094@00310.impulsevoip.net\",\n        \"6095@00310.impulsevoip.net\",\n        \"6096@00310.impulsevoip.net\",\n        \"6097@00310.impulsevoip.net\",\n        \"6098@00310.impulsevoip.net\",\n        \"6099@00310.impulsevoip.net\",\n        \"6100@00310.impulsevoip.net\",\n        \"6101@00310.impulsevoip.net\",\n        \"6102@00310.impulsevoip.net\",\n        \"6103@00310.impulsevoip.net\",\n        \"6104@00310.impulsevoip.net\",\n        \"6105@00310.impulsevoip.net\",\n        \"6106@00310.impulsevoip.net\",\n        \"6107@00310.impulsevoip.net\",\n        \"6108@00310.impulsevoip.net\",\n        \"6109@00310.impulsevoip.net\",\n        \"6110@00310.impulsevoip.net\",\n        \"6111@00310.impulsevoip.net\",\n        \"6112@00310.impulsevoip.net\",\n        \"6113@00310.impulsevoip.net\",\n        \"6114@00310.impulsevoip.net\",\n        \"6115@00310.impulsevoip.net\",\n        \"6116@00310.impulsevoip.net\",\n        \"6117@00310.impulsevoip.net\",\n        \"6118@00310.impulsevoip.net\",\n        \"6119@00310.impulsevoip.net\",\n        \"6120@00310.impulsevoip.net\",\n        \"6121@00310.impulsevoip.net\",\n        \"6122@00310.impulsevoip.net\",\n        \"6123@00310.impulsevoip.net\",\n        \"6124@00310.impulsevoip.net\",\n        \"6125@00310.impulsevoip.net\",\n        \"6126@00310.impulsevoip.net\",\n        \"6127@00310.impulsevoip.net\",\n        \"6128@00310.impulsevoip.net\",\n        \"6129@00310.impulsevoip.net\",\n        \"6130@00310.impulsevoip.net\",\n        \"6131@00310.impulsevoip.net\",\n        \"6132@00310.impulsevoip.net\",\n        \"6133@00310.impulsevoip.net\",\n        \"6134@00310.impulsevoip.net\",\n        \"6135@00310.impulsevoip.net\",\n        \"6136@00310.impulsevoip.net\",\n        \"6137@00310.impulsevoip.net\",\n        \"6138@00310.impulsevoip.net\",\n        \"6139@00310.impulsevoip.net\",\n        \"6140@00310.impulsevoip.net\",\n        \"6141@00310.impulsevoip.net\",\n        \"6142@00310.impulsevoip.net\",\n        \"6143@00310.impulsevoip.net\",\n        \"6144@00310.impulsevoip.net\",\n        \"6145@00310.impulsevoip.net\",\n        \"6146@00310.impulsevoip.net\",\n        \"6147@00310.impulsevoip.net\",\n        \"6148@00310.impulsevoip.net\",\n        \"6149@00310.impulsevoip.net\",\n        \"6150@00310.impulsevoip.net\",\n        \"6151@00310.impulsevoip.net\",\n        \"6152@00310.impulsevoip.net\",\n        \"6153@00310.impulsevoip.net\",\n        \"6154@00310.impulsevoip.net\",\n        \"6155@00310.impulsevoip.net\",\n        \"6156@00310.impulsevoip.net\",\n        \"6157@00310.impulsevoip.net\",\n        \"6158@00310.impulsevoip.net\",\n        \"6159@00310.impulsevoip.net\",\n        \"6160@00310.impulsevoip.net\",\n        \"6161@00310.impulsevoip.net\",\n        \"6162@00310.impulsevoip.net\",\n        \"6163@00310.impulsevoip.net\",\n        \"6164@00310.impulsevoip.net\",\n        \"6165@00310.impulsevoip.net\",\n        \"6166@00310.impulsevoip.net\",\n        \"6167@00310.impulsevoip.net\",\n        \"6680@00310.impulsevoip.net\",\n        \"6681@00310.impulsevoip.net\",\n        \"6682@00310.impulsevoip.net\",\n        \"6683@00310.impulsevoip.net\",\n        \"6684@00310.impulsevoip.net\",\n        \"6685@00310.impulsevoip.net\",\n        \"6686@00310.impulsevoip.net\",\n        \"6687@00310.impulsevoip.net\",\n        \"6688@00310.impulsevoip.net\",\n        \"6689@00310.impulsevoip.net\",\n        \"6690@00310.impulsevoip.net\",\n        \"6691@00310.impulsevoip.net\",\n        \"6692@00310.impulsevoip.net\",\n        \"6693@00310.impulsevoip.net\",\n        \"6694@00310.impulsevoip.net\",\n        \"6695@00310.impulsevoip.net\",\n        \"6696@00310.impulsevoip.net\",\n        \"6697@00310.impulsevoip.net\",\n        \"6698@00310.impulsevoip.net\",\n        \"6699@00310.impulsevoip.net\",\n        \"6700@00310.impulsevoip.net\",\n        \"6701@00310.impulsevoip.net\",\n        \"6702@00310.impulsevoip.net\",\n        \"6703@00310.impulsevoip.net\",\n        \"6704@00310.impulsevoip.net\",\n        \"6705@00310.impulsevoip.net\",\n        \"6706@00310.impulsevoip.net\",\n        \"6707@00310.impulsevoip.net\",\n        \"6708@00310.impulsevoip.net\",\n        \"6709@00310.impulsevoip.net\",\n        \"6710@00310.impulsevoip.net\",\n        \"6711@00310.impulsevoip.net\",\n        \"6712@00310.impulsevoip.net\",\n        \"6713@00310.impulsevoip.net\",\n        \"6714@00310.impulsevoip.net\",\n        \"6715@00310.impulsevoip.net\",\n        \"6716@00310.impulsevoip.net\",\n        \"6717@00310.impulsevoip.net\",\n        \"6718@00310.impulsevoip.net\",\n        \"6719@00310.impulsevoip.net\",\n        \"6720@00310.impulsevoip.net\",\n        \"6721@00310.impulsevoip.net\",\n        \"6722@00310.impulsevoip.net\",\n        \"6723@00310.impulsevoip.net\",\n        \"6724@00310.impulsevoip.net\",\n        \"6725@00310.impulsevoip.net\",\n        \"6726@00310.impulsevoip.net\",\n        \"6727@00310.impulsevoip.net\",\n        \"6728@00310.impulsevoip.net\",\n        \"6729@00310.impulsevoip.net\",\n        \"6730@00310.impulsevoip.net\",\n        \"6731@00310.impulsevoip.net\",\n        \"6732@00310.impulsevoip.net\",\n        \"6733@00310.impulsevoip.net\",\n        \"6734@00310.impulsevoip.net\",\n        \"6735@00310.impulsevoip.net\",\n        \"6736@00310.impulsevoip.net\",\n        \"6737@00310.impulsevoip.net\",\n        \"6738@00310.impulsevoip.net\",\n        \"6739@00310.impulsevoip.net\",\n        \"6740@00310.impulsevoip.net\",\n        \"6741@00310.impulsevoip.net\",\n        \"6742@00310.impulsevoip.net\",\n        \"6743@00310.impulsevoip.net\",\n        \"6744@00310.impulsevoip.net\",\n        \"6745@00310.impulsevoip.net\",\n        \"6746@00310.impulsevoip.net\",\n        \"6747@00310.impulsevoip.net\",\n        \"6748@00310.impulsevoip.net\",\n        \"6749@00310.impulsevoip.net\",\n        \"6750@00310.impulsevoip.net\",\n        \"6751@00310.impulsevoip.net\",\n        \"6752@00310.impulsevoip.net\",\n        \"6753@00310.impulsevoip.net\",\n        \"6754@00310.impulsevoip.net\",\n        \"6755@00310.impulsevoip.net\",\n        \"6756@00310.impulsevoip.net\",\n        \"6757@00310.impulsevoip.net\",\n        \"6758@00310.impulsevoip.net\",\n        \"6759@00310.impulsevoip.net\",\n        \"6760@00310.impulsevoip.net\",\n        \"6761@00310.impulsevoip.net\",\n        \"6762@00310.impulsevoip.net\",\n        \"6763@00310.impulsevoip.net\",\n        \"6764@00310.impulsevoip.net\",\n        \"6765@00310.impulsevoip.net\",\n        \"6766@00310.impulsevoip.net\",\n        \"6767@00310.impulsevoip.net\",\n        \"6768@00310.impulsevoip.net\",\n        \"6769@00310.impulsevoip.net\",\n        \"6770@00310.impulsevoip.net\",\n        \"6771@00310.impulsevoip.net\",\n        \"6772@00310.impulsevoip.net\",\n        \"6773@00310.impulsevoip.net\",\n        \"6774@00310.impulsevoip.net\",\n        \"6775@00310.impulsevoip.net\",\n        \"6776@00310.impulsevoip.net\",\n        \"6777@00310.impulsevoip.net\",\n        \"6778@00310.impulsevoip.net\",\n        \"6779@00310.impulsevoip.net\",\n        \"6780@00310.impulsevoip.net\",\n        \"6781@00310.impulsevoip.net\",\n        \"6782@00310.impulsevoip.net\",\n        \"6783@00310.impulsevoip.net\",\n        \"6784@00310.impulsevoip.net\",\n        \"6785@00310.impulsevoip.net\",\n        \"6786@00310.impulsevoip.net\",\n        \"6787@00310.impulsevoip.net\",\n        \"6788@00310.impulsevoip.net\",\n        \"6789@00310.impulsevoip.net\",\n        \"6790@00310.impulsevoip.net\",\n        \"6791@00310.impulsevoip.net\",\n        \"6792@00310.impulsevoip.net\",\n        \"6793@00310.impulsevoip.net\",\n        \"6794@00310.impulsevoip.net\",\n        \"6795@00310.impulsevoip.net\",\n        \"6796@00310.impulsevoip.net\",\n        \"6797@00310.impulsevoip.net\",\n        \"6798@00310.impulsevoip.net\",\n        \"6799@00310.impulsevoip.net\",\n        \"6800@00310.impulsevoip.net\",\n        \"6801@00310.impulsevoip.net\",\n        \"6802@00310.impulsevoip.net\",\n        \"6803@00310.impulsevoip.net\",\n        \"6804@00310.impulsevoip.net\",\n        \"6805@00310.impulsevoip.net\",\n        \"6806@00310.impulsevoip.net\",\n        \"6807@00310.impulsevoip.net\",\n        \"6808@00310.impulsevoip.net\",\n        \"6809@00310.impulsevoip.net\",\n        \"6810@00310.impulsevoip.net\",\n        \"6811@00310.impulsevoip.net\",\n        \"6812@00310.impulsevoip.net\",\n        \"6813@00310.impulsevoip.net\",\n        \"6814@00310.impulsevoip.net\",\n        \"6815@00310.impulsevoip.net\",\n        \"6816@00310.impulsevoip.net\",\n        \"6817@00310.impulsevoip.net\",\n        \"6818@00310.impulsevoip.net\",\n        \"6819@00310.impulsevoip.net\",\n        \"6820@00310.impulsevoip.net\",\n        \"6821@00310.impulsevoip.net\",\n        \"6822@00310.impulsevoip.net\",\n        \"6823@00310.impulsevoip.net\",\n        \"6824@00310.impulsevoip.net\",\n        \"6825@00310.impulsevoip.net\",\n        \"6826@00310.impulsevoip.net\",\n        \"6827@00310.impulsevoip.net\",\n        \"6828@00310.impulsevoip.net\",\n        \"6829@00310.impulsevoip.net\",\n        \"6830@00310.impulsevoip.net\",\n        \"6831@00310.impulsevoip.net\",\n        \"6832@00310.impulsevoip.net\",\n        \"6833@00310.impulsevoip.net\",\n        \"6834@00310.impulsevoip.net\",\n        \"6835@00310.impulsevoip.net\",\n        \"6836@00310.impulsevoip.net\",\n        \"6837@00310.impulsevoip.net\",\n        \"6838@00310.impulsevoip.net\",\n        \"6839@00310.impulsevoip.net\",\n        \"6840@00310.impulsevoip.net\",\n        \"6841@00310.impulsevoip.net\",\n        \"6842@00310.impulsevoip.net\",\n        \"6843@00310.impulsevoip.net\",\n        \"6844@00310.impulsevoip.net\",\n        \"6845@00310.impulsevoip.net\",\n        \"6846@00310.impulsevoip.net\",\n        \"6847@00310.impulsevoip.net\",\n        \"6848@00310.impulsevoip.net\",\n        \"6849@00310.impulsevoip.net\",\n        \"6850@00310.impulsevoip.net\",\n        \"6851@00310.impulsevoip.net\",\n        \"6852@00310.impulsevoip.net\",\n        \"6853@00310.impulsevoip.net\",\n        \"6854@00310.impulsevoip.net\",\n        \"6855@00310.impulsevoip.net\",\n        \"6856@00310.impulsevoip.net\",\n        \"6857@00310.impulsevoip.net\",\n        \"6858@00310.impulsevoip.net\",\n        \"6859@00310.impulsevoip.net\",\n        \"6860@00310.impulsevoip.net\",\n        \"6861@00310.impulsevoip.net\",\n        \"6862@00310.impulsevoip.net\",\n        \"6863@00310.impulsevoip.net\",\n        \"6864@00310.impulsevoip.net\",\n        \"6865@00310.impulsevoip.net\",\n        \"6866@00310.impulsevoip.net\",\n        \"6867@00310.impulsevoip.net\",\n        \"6868@00310.impulsevoip.net\",\n        \"6869@00310.impulsevoip.net\",\n        \"6870@00310.impulsevoip.net\",\n        \"6871@00310.impulsevoip.net\",\n        \"6872@00310.impulsevoip.net\",\n        \"6873@00310.impulsevoip.net\",\n        \"6874@00310.impulsevoip.net\",\n        \"6875@00310.impulsevoip.net\",\n        \"6876@00310.impulsevoip.net\",\n        \"6877@00310.impulsevoip.net\",\n        \"6878@00310.impulsevoip.net\",\n        \"6879@00310.impulsevoip.net\",\n        \"6880@00310.impulsevoip.net\",\n        \"6881@00310.impulsevoip.net\",\n        \"6882@00310.impulsevoip.net\",\n        \"6883@00310.impulsevoip.net\",\n        \"6884@00310.impulsevoip.net\",\n        \"6885@00310.impulsevoip.net\",\n        \"6886@00310.impulsevoip.net\",\n        \"6887@00310.impulsevoip.net\",\n        \"6888@00310.impulsevoip.net\",\n        \"6889@00310.impulsevoip.net\",\n        \"6890@00310.impulsevoip.net\",\n        \"6891@00310.impulsevoip.net\",\n        \"6892@00310.impulsevoip.net\",\n        \"6893@00310.impulsevoip.net\",\n        \"6894@00310.impulsevoip.net\",\n        \"6895@00310.impulsevoip.net\",\n        \"6896@00310.impulsevoip.net\",\n        \"6897@00310.impulsevoip.net\",\n        \"6898@00310.impulsevoip.net\",\n        \"6899@00310.impulsevoip.net\",\n        \"6900@00310.impulsevoip.net\",\n        \"6901@00310.impulsevoip.net\",\n        \"6902@00310.impulsevoip.net\",\n        \"6903@00310.impulsevoip.net\",\n        \"6904@00310.impulsevoip.net\",\n        \"6905@00310.impulsevoip.net\",\n        \"6906@00310.impulsevoip.net\",\n        \"6907@00310.impulsevoip.net\",\n        \"6908@00310.impulsevoip.net\",\n        \"6909@00310.impulsevoip.net\",\n        \"6910@00310.impulsevoip.net\",\n        \"6912@00310.impulsevoip.net\",\n        \"6913@00310.impulsevoip.net\",\n        \"6914@00310.impulsevoip.net\",\n        \"6915@00310.impulsevoip.net\",\n        \"6916@00310.impulsevoip.net\",\n        \"6917@00310.impulsevoip.net\",\n        \"6918@00310.impulsevoip.net\",\n        \"6919@00310.impulsevoip.net\",\n        \"6920@00310.impulsevoip.net\",\n        \"6921@00310.impulsevoip.net\",\n        \"6922@00310.impulsevoip.net\",\n        \"6923@00310.impulsevoip.net\",\n        \"6924@00310.impulsevoip.net\",\n        \"6925@00310.impulsevoip.net\",\n        \"6926@00310.impulsevoip.net\",\n        \"6927@00310.impulsevoip.net\",\n        \"6928@00310.impulsevoip.net\",\n        \"6929@00310.impulsevoip.net\",\n        \"6930@00310.impulsevoip.net\",\n        \"6931@00310.impulsevoip.net\",\n        \"6932@00310.impulsevoip.net\",\n        \"6933@00310.impulsevoip.net\",\n        \"6934@00310.impulsevoip.net\",\n        \"6935@00310.impulsevoip.net\",\n        \"6936@00310.impulsevoip.net\",\n        \"6937@00310.impulsevoip.net\",\n        \"6938@00310.impulsevoip.net\",\n        \"6939@00310.impulsevoip.net\",\n        \"6940@00310.impulsevoip.net\",\n        \"6941@00310.impulsevoip.net\",\n        \"6942@00310.impulsevoip.net\",\n        \"6943@00310.impulsevoip.net\",\n        \"6944@00310.impulsevoip.net\",\n        \"6945@00310.impulsevoip.net\",\n        \"6946@00310.impulsevoip.net\",\n        \"6947@00310.impulsevoip.net\",\n        \"6948@00310.impulsevoip.net\",\n        \"6949@00310.impulsevoip.net\",\n        \"6950@00310.impulsevoip.net\",\n        \"6951@00310.impulsevoip.net\",\n        \"6952@00310.impulsevoip.net\",\n        \"6953@00310.impulsevoip.net\",\n        \"6954@00310.impulsevoip.net\",\n        \"6955@00310.impulsevoip.net\",\n        \"6956@00310.impulsevoip.net\",\n        \"6957@00310.impulsevoip.net\",\n        \"6958@00310.impulsevoip.net\",\n        \"6959@00310.impulsevoip.net\",\n        \"6960@00310.impulsevoip.net\",\n        \"6961@00310.impulsevoip.net\",\n        \"6962@00310.impulsevoip.net\",\n        \"6963@00310.impulsevoip.net\",\n        \"6964@00310.impulsevoip.net\",\n        \"6965@00310.impulsevoip.net\",\n        \"6966@00310.impulsevoip.net\",\n        \"6967@00310.impulsevoip.net\",\n        \"6968@00310.impulsevoip.net\",\n        \"6969@00310.impulsevoip.net\",\n        \"6970@00310.impulsevoip.net\",\n        \"6971@00310.impulsevoip.net\",\n        \"6972@00310.impulsevoip.net\",\n        \"6973@00310.impulsevoip.net\",\n        \"6974@00310.impulsevoip.net\",\n        \"6975@00310.impulsevoip.net\",\n        \"6976@00310.impulsevoip.net\",\n        \"6977@00310.impulsevoip.net\",\n        \"6978@00310.impulsevoip.net\",\n        \"6979@00310.impulsevoip.net\",\n        \"6980@00310.impulsevoip.net\",\n        \"6981@00310.impulsevoip.net\",\n        \"6982@00310.impulsevoip.net\",\n        \"6983@00310.impulsevoip.net\",\n        \"6984@00310.impulsevoip.net\",\n        \"6985@00310.impulsevoip.net\",\n        \"6986@00310.impulsevoip.net\",\n        \"6987@00310.impulsevoip.net\",\n        \"6988@00310.impulsevoip.net\",\n        \"6989@00310.impulsevoip.net\",\n        \"6990@00310.impulsevoip.net\",\n        \"6991@00310.impulsevoip.net\",\n        \"6992@00310.impulsevoip.net\",\n        \"6993@00310.impulsevoip.net\",\n        \"6994@00310.impulsevoip.net\",\n        \"6995@00310.impulsevoip.net\",\n        \"6996@00310.impulsevoip.net\",\n        \"6997@00310.impulsevoip.net\",\n        \"6998@00310.impulsevoip.net\",\n        \"6999@00310.impulsevoip.net\",\n        \"7000@00310.impulsevoip.net\",\n        \"7001@00310.impulsevoip.net\",\n        \"7002@00310.impulsevoip.net\",\n        \"7003@00310.impulsevoip.net\",\n        \"7004@00310.impulsevoip.net\",\n        \"7005@00310.impulsevoip.net\",\n        \"7006@00310.impulsevoip.net\",\n        \"7007@00310.impulsevoip.net\",\n        \"7008@00310.impulsevoip.net\",\n        \"7009@00310.impulsevoip.net\",\n        \"7010@00310.impulsevoip.net\",\n        \"7011@00310.impulsevoip.net\",\n        \"7012@00310.impulsevoip.net\",\n        \"7013@00310.impulsevoip.net\",\n        \"7014@00310.impulsevoip.net\",\n        \"7015@00310.impulsevoip.net\",\n        \"7016@00310.impulsevoip.net\",\n        \"7017@00310.impulsevoip.net\",\n        \"7018@00310.impulsevoip.net\",\n        \"7019@00310.impulsevoip.net\",\n        \"7020@00310.impulsevoip.net\",\n        \"7021@00310.impulsevoip.net\",\n        \"7022@00310.impulsevoip.net\",\n        \"7023@00310.impulsevoip.net\",\n        \"7024@00310.impulsevoip.net\",\n        \"7025@00310.impulsevoip.net\",\n        \"7026@00310.impulsevoip.net\",\n        \"7027@00310.impulsevoip.net\",\n        \"7028@00310.impulsevoip.net\",\n        \"7029@00310.impulsevoip.net\",\n        \"7030@00310.impulsevoip.net\",\n        \"7031@00310.impulsevoip.net\",\n        \"7032@00310.impulsevoip.net\",\n        \"7033@00310.impulsevoip.net\",\n        \"7034@00310.impulsevoip.net\",\n        \"7035@00310.impulsevoip.net\",\n        \"7036@00310.impulsevoip.net\",\n        \"7037@00310.impulsevoip.net\",\n        \"7038@00310.impulsevoip.net\",\n        \"7039@00310.impulsevoip.net\",\n        \"7040@00310.impulsevoip.net\",\n        \"7041@00310.impulsevoip.net\",\n        \"7042@00310.impulsevoip.net\",\n        \"7043@00310.impulsevoip.net\",\n        \"7044@00310.impulsevoip.net\",\n        \"7045@00310.impulsevoip.net\",\n        \"7046@00310.impulsevoip.net\",\n        \"7047@00310.impulsevoip.net\",\n        \"7048@00310.impulsevoip.net\",\n        \"7049@00310.impulsevoip.net\",\n        \"7050@00310.impulsevoip.net\",\n        \"7051@00310.impulsevoip.net\",\n        \"7052@00310.impulsevoip.net\",\n        \"7053@00310.impulsevoip.net\",\n        \"7054@00310.impulsevoip.net\",\n        \"7055@00310.impulsevoip.net\",\n        \"7056@00310.impulsevoip.net\",\n        \"7057@00310.impulsevoip.net\",\n        \"7058@00310.impulsevoip.net\",\n        \"7059@00310.impulsevoip.net\",\n        \"7060@00310.impulsevoip.net\",\n        \"7061@00310.impulsevoip.net\",\n        \"7062@00310.impulsevoip.net\",\n        \"7063@00310.impulsevoip.net\",\n        \"7064@00310.impulsevoip.net\",\n        \"7065@00310.impulsevoip.net\",\n        \"7066@00310.impulsevoip.net\",\n        \"7067@00310.impulsevoip.net\",\n        \"7068@00310.impulsevoip.net\",\n        \"7069@00310.impulsevoip.net\",\n        \"7070@00310.impulsevoip.net\",\n        \"7071@00310.impulsevoip.net\",\n        \"7072@00310.impulsevoip.net\",\n        \"7073@00310.impulsevoip.net\",\n        \"7074@00310.impulsevoip.net\",\n        \"7075@00310.impulsevoip.net\",\n        \"7076@00310.impulsevoip.net\",\n        \"7077@00310.impulsevoip.net\",\n        \"7078@00310.impulsevoip.net\",\n        \"7079@00310.impulsevoip.net\",\n        \"7080@00310.impulsevoip.net\",\n        \"7081@00310.impulsevoip.net\",\n        \"7082@00310.impulsevoip.net\",\n        \"7083@00310.impulsevoip.net\",\n        \"7084@00310.impulsevoip.net\",\n        \"7085@00310.impulsevoip.net\",\n        \"7086@00310.impulsevoip.net\",\n        \"7087@00310.impulsevoip.net\",\n        \"7088@00310.impulsevoip.net\",\n        \"7089@00310.impulsevoip.net\",\n        \"7090@00310.impulsevoip.net\",\n        \"7091@00310.impulsevoip.net\",\n        \"7092@00310.impulsevoip.net\",\n        \"7093@00310.impulsevoip.net\",\n        \"7094@00310.impulsevoip.net\",\n        \"7095@00310.impulsevoip.net\",\n        \"7096@00310.impulsevoip.net\",\n        \"7097@00310.impulsevoip.net\",\n        \"7098@00310.impulsevoip.net\",\n        \"7099@00310.impulsevoip.net\",\n        \"7100@00310.impulsevoip.net\",\n        \"7101@00310.impulsevoip.net\",\n        \"7102@00310.impulsevoip.net\",\n        \"7103@00310.impulsevoip.net\",\n        \"7104@00310.impulsevoip.net\",\n        \"7105@00310.impulsevoip.net\",\n        \"7106@00310.impulsevoip.net\",\n        \"7107@00310.impulsevoip.net\",\n        \"7108@00310.impulsevoip.net\",\n        \"7109@00310.impulsevoip.net\",\n        \"7110@00310.impulsevoip.net\",\n        \"7111@00310.impulsevoip.net\",\n        \"7112@00310.impulsevoip.net\",\n        \"7113@00310.impulsevoip.net\",\n        \"7114@00310.impulsevoip.net\",\n        \"7115@00310.impulsevoip.net\",\n        \"7116@00310.impulsevoip.net\",\n        \"7117@00310.impulsevoip.net\",\n        \"7118@00310.impulsevoip.net\",\n        \"7119@00310.impulsevoip.net\",\n        \"7120@00310.impulsevoip.net\",\n        \"7121@00310.impulsevoip.net\",\n        \"7122@00310.impulsevoip.net\",\n        \"7123@00310.impulsevoip.net\",\n        \"7124@00310.impulsevoip.net\",\n        \"7125@00310.impulsevoip.net\",\n        \"7126@00310.impulsevoip.net\",\n        \"7127@00310.impulsevoip.net\",\n        \"7128@00310.impulsevoip.net\",\n        \"7129@00310.impulsevoip.net\",\n        \"7130@00310.impulsevoip.net\",\n        \"7131@00310.impulsevoip.net\",\n        \"7132@00310.impulsevoip.net\",\n        \"7133@00310.impulsevoip.net\",\n        \"7134@00310.impulsevoip.net\",\n        \"7135@00310.impulsevoip.net\",\n        \"7136@00310.impulsevoip.net\",\n        \"7137@00310.impulsevoip.net\",\n        \"7138@00310.impulsevoip.net\",\n        \"7139@00310.impulsevoip.net\",\n        \"7140@00310.impulsevoip.net\",\n        \"7141@00310.impulsevoip.net\",\n        \"7142@00310.impulsevoip.net\",\n        \"7143@00310.impulsevoip.net\",\n        \"7144@00310.impulsevoip.net\",\n        \"7145@00310.impulsevoip.net\",\n        \"7146@00310.impulsevoip.net\",\n        \"7147@00310.impulsevoip.net\",\n        \"7148@00310.impulsevoip.net\",\n        \"7149@00310.impulsevoip.net\",\n        \"7150@00310.impulsevoip.net\",\n        \"7151@00310.impulsevoip.net\",\n        \"7152@00310.impulsevoip.net\",\n        \"7153@00310.impulsevoip.net\",\n        \"7154@00310.impulsevoip.net\",\n        \"7155@00310.impulsevoip.net\",\n        \"7156@00310.impulsevoip.net\",\n        \"7157@00310.impulsevoip.net\",\n        \"7158@00310.impulsevoip.net\",\n        \"7159@00310.impulsevoip.net\",\n        \"7160@00310.impulsevoip.net\",\n        \"7161@00310.impulsevoip.net\",\n        \"7162@00310.impulsevoip.net\",\n        \"7163@00310.impulsevoip.net\",\n        \"7164@00310.impulsevoip.net\",\n        \"7165@00310.impulsevoip.net\",\n        \"7166@00310.impulsevoip.net\",\n        \"7167@00310.impulsevoip.net\",\n        \"7168@00310.impulsevoip.net\",\n        \"7169@00310.impulsevoip.net\",\n        \"7170@00310.impulsevoip.net\",\n        \"7171@00310.impulsevoip.net\",\n        \"7172@00310.impulsevoip.net\",\n        \"7173@00310.impulsevoip.net\",\n        \"7174@00310.impulsevoip.net\",\n        \"7175@00310.impulsevoip.net\",\n        \"7176@00310.impulsevoip.net\",\n        \"7177@00310.impulsevoip.net\",\n        \"7178@00310.impulsevoip.net\",\n        \"7179@00310.impulsevoip.net\",\n        \"7180@00310.impulsevoip.net\",\n        \"7181@00310.impulsevoip.net\",\n        \"7182@00310.impulsevoip.net\",\n        \"7183@00310.impulsevoip.net\",\n        \"7184@00310.impulsevoip.net\",\n        \"7185@00310.impulsevoip.net\",\n        \"7186@00310.impulsevoip.net\",\n        \"7187@00310.impulsevoip.net\",\n        \"7188@00310.impulsevoip.net\",\n        \"7189@00310.impulsevoip.net\",\n        \"7190@00310.impulsevoip.net\",\n        \"7191@00310.impulsevoip.net\",\n        \"7192@00310.impulsevoip.net\",\n        \"7193@00310.impulsevoip.net\",\n        \"7194@00310.impulsevoip.net\",\n        \"7195@00310.impulsevoip.net\",\n        \"7196@00310.impulsevoip.net\",\n        \"7197@00310.impulsevoip.net\",\n        \"7198@00310.impulsevoip.net\",\n        \"7199@00310.impulsevoip.net\",\n        \"7200@00310.impulsevoip.net\",\n        \"7201@00310.impulsevoip.net\",\n        \"7202@00310.impulsevoip.net\",\n        \"7203@00310.impulsevoip.net\",\n        \"7204@00310.impulsevoip.net\",\n        \"7205@00310.impulsevoip.net\",\n        \"7206@00310.impulsevoip.net\",\n        \"7207@00310.impulsevoip.net\",\n        \"7208@00310.impulsevoip.net\",\n        \"7209@00310.impulsevoip.net\",\n        \"7210@00310.impulsevoip.net\",\n        \"7211@00310.impulsevoip.net\",\n        \"7212@00310.impulsevoip.net\",\n        \"7213@00310.impulsevoip.net\",\n        \"7214@00310.impulsevoip.net\",\n        \"7215@00310.impulsevoip.net\",\n        \"7216@00310.impulsevoip.net\",\n        \"7217@00310.impulsevoip.net\",\n        \"7218@00310.impulsevoip.net\",\n        \"7219@00310.impulsevoip.net\",\n        \"7220@00310.impulsevoip.net\",\n        \"7221@00310.impulsevoip.net\",\n        \"7222@00310.impulsevoip.net\",\n        \"7223@00310.impulsevoip.net\",\n        \"7224@00310.impulsevoip.net\",\n        \"7225@00310.impulsevoip.net\",\n        \"7226@00310.impulsevoip.net\",\n        \"7227@00310.impulsevoip.net\",\n        \"7228@00310.impulsevoip.net\",\n        \"7229@00310.impulsevoip.net\",\n        \"7230@00310.impulsevoip.net\",\n        \"7231@00310.impulsevoip.net\",\n        \"7232@00310.impulsevoip.net\",\n        \"7233@00310.impulsevoip.net\",\n        \"7234@00310.impulsevoip.net\",\n        \"7235@00310.impulsevoip.net\",\n        \"7236@00310.impulsevoip.net\",\n        \"7237@00310.impulsevoip.net\",\n        \"7238@00310.impulsevoip.net\",\n        \"7239@00310.impulsevoip.net\",\n        \"7240@00310.impulsevoip.net\",\n        \"7241@00310.impulsevoip.net\",\n        \"7242@00310.impulsevoip.net\",\n        \"7243@00310.impulsevoip.net\",\n        \"7244@00310.impulsevoip.net\",\n        \"7245@00310.impulsevoip.net\",\n        \"7246@00310.impulsevoip.net\",\n        \"7247@00310.impulsevoip.net\",\n        \"7248@00310.impulsevoip.net\",\n        \"7249@00310.impulsevoip.net\",\n        \"7250@00310.impulsevoip.net\",\n        \"7251@00310.impulsevoip.net\",\n        \"7252@00310.impulsevoip.net\",\n        \"7253@00310.impulsevoip.net\",\n        \"7254@00310.impulsevoip.net\",\n        \"7255@00310.impulsevoip.net\",\n        \"7256@00310.impulsevoip.net\",\n        \"7257@00310.impulsevoip.net\",\n        \"7258@00310.impulsevoip.net\",\n        \"7259@00310.impulsevoip.net\",\n        \"7260@00310.impulsevoip.net\",\n        \"7261@00310.impulsevoip.net\",\n        \"7262@00310.impulsevoip.net\",\n        \"7263@00310.impulsevoip.net\",\n        \"7264@00310.impulsevoip.net\",\n        \"7265@00310.impulsevoip.net\",\n        \"7266@00310.impulsevoip.net\",\n        \"7267@00310.impulsevoip.net\",\n        \"7268@00310.impulsevoip.net\",\n        \"7269@00310.impulsevoip.net\",\n        \"7270@00310.impulsevoip.net\",\n        \"7271@00310.impulsevoip.net\",\n        \"7272@00310.impulsevoip.net\",\n        \"7273@00310.impulsevoip.net\",\n        \"7274@00310.impulsevoip.net\",\n        \"7275@00310.impulsevoip.net\",\n        \"7276@00310.impulsevoip.net\",\n        \"7277@00310.impulsevoip.net\",\n        \"7278@00310.impulsevoip.net\",\n        \"7279@00310.impulsevoip.net\",\n        \"7280@00310.impulsevoip.net\",\n        \"7281@00310.impulsevoip.net\",\n        \"7282@00310.impulsevoip.net\",\n        \"7283@00310.impulsevoip.net\",\n        \"7284@00310.impulsevoip.net\",\n        \"7285@00310.impulsevoip.net\",\n        \"7286@00310.impulsevoip.net\",\n        \"7287@00310.impulsevoip.net\",\n        \"7288@00310.impulsevoip.net\",\n        \"7289@00310.impulsevoip.net\",\n        \"7290@00310.impulsevoip.net\",\n        \"7291@00310.impulsevoip.net\",\n        \"7292@00310.impulsevoip.net\",\n        \"7293@00310.impulsevoip.net\",\n        \"7294@00310.impulsevoip.net\",\n        \"7295@00310.impulsevoip.net\",\n        \"7296@00310.impulsevoip.net\",\n        \"7297@00310.impulsevoip.net\",\n        \"7298@00310.impulsevoip.net\",\n        \"7299@00310.impulsevoip.net\",\n        \"7300@00310.impulsevoip.net\",\n        \"7301@00310.impulsevoip.net\",\n        \"7302@00310.impulsevoip.net\",\n        \"7303@00310.impulsevoip.net\",\n        \"7304@00310.impulsevoip.net\",\n        \"7305@00310.impulsevoip.net\",\n        \"7306@00310.impulsevoip.net\",\n        \"7307@00310.impulsevoip.net\",\n        \"7308@00310.impulsevoip.net\",\n        \"7309@00310.impulsevoip.net\",\n        \"7310@00310.impulsevoip.net\",\n        \"7311@00310.impulsevoip.net\",\n        \"7312@00310.impulsevoip.net\",\n        \"7313@00310.impulsevoip.net\",\n        \"7314@00310.impulsevoip.net\",\n        \"7315@00310.impulsevoip.net\",\n        \"7316@00310.impulsevoip.net\",\n        \"7317@00310.impulsevoip.net\",\n        \"7318@00310.impulsevoip.net\",\n        \"7319@00310.impulsevoip.net\",\n        \"7320@00310.impulsevoip.net\",\n        \"7321@00310.impulsevoip.net\",\n        \"7322@00310.impulsevoip.net\",\n        \"7323@00310.impulsevoip.net\",\n        \"7324@00310.impulsevoip.net\",\n        \"7325@00310.impulsevoip.net\",\n        \"7326@00310.impulsevoip.net\",\n        \"7327@00310.impulsevoip.net\",\n        \"7328@00310.impulsevoip.net\",\n        \"7329@00310.impulsevoip.net\",\n        \"7330@00310.impulsevoip.net\",\n        \"7331@00310.impulsevoip.net\",\n        \"7332@00310.impulsevoip.net\",\n        \"7333@00310.impulsevoip.net\",\n        \"7334@00310.impulsevoip.net\",\n        \"7335@00310.impulsevoip.net\",\n        \"7336@00310.impulsevoip.net\",\n        \"7337@00310.impulsevoip.net\",\n        \"7338@00310.impulsevoip.net\",\n        \"7339@00310.impulsevoip.net\",\n        \"7340@00310.impulsevoip.net\",\n        \"7341@00310.impulsevoip.net\",\n        \"7342@00310.impulsevoip.net\",\n        \"7343@00310.impulsevoip.net\",\n        \"7344@00310.impulsevoip.net\",\n        \"7345@00310.impulsevoip.net\",\n        \"7346@00310.impulsevoip.net\",\n        \"7347@00310.impulsevoip.net\",\n        \"7348@00310.impulsevoip.net\",\n        \"7349@00310.impulsevoip.net\",\n        \"7350@00310.impulsevoip.net\",\n        \"7351@00310.impulsevoip.net\",\n        \"7352@00310.impulsevoip.net\",\n        \"7353@00310.impulsevoip.net\",\n        \"7354@00310.impulsevoip.net\",\n        \"7355@00310.impulsevoip.net\",\n        \"7356@00310.impulsevoip.net\",\n        \"7357@00310.impulsevoip.net\",\n        \"7358@00310.impulsevoip.net\",\n        \"7359@00310.impulsevoip.net\",\n        \"7360@00310.impulsevoip.net\",\n        \"7361@00310.impulsevoip.net\",\n        \"7362@00310.impulsevoip.net\",\n        \"7363@00310.impulsevoip.net\",\n        \"7364@00310.impulsevoip.net\",\n        \"7365@00310.impulsevoip.net\",\n        \"7366@00310.impulsevoip.net\",\n        \"7367@00310.impulsevoip.net\",\n        \"7368@00310.impulsevoip.net\",\n        \"7369@00310.impulsevoip.net\",\n        \"7370@00310.impulsevoip.net\",\n        \"7371@00310.impulsevoip.net\",\n        \"7372@00310.impulsevoip.net\",\n        \"7373@00310.impulsevoip.net\",\n        \"7374@00310.impulsevoip.net\",\n        \"7375@00310.impulsevoip.net\",\n        \"7376@00310.impulsevoip.net\",\n        \"7377@00310.impulsevoip.net\",\n        \"7378@00310.impulsevoip.net\",\n        \"7379@00310.impulsevoip.net\",\n        \"7380@00310.impulsevoip.net\",\n        \"7381@00310.impulsevoip.net\",\n        \"7382@00310.impulsevoip.net\",\n        \"7383@00310.impulsevoip.net\",\n        \"7384@00310.impulsevoip.net\",\n        \"7385@00310.impulsevoip.net\",\n        \"7386@00310.impulsevoip.net\",\n        \"7387@00310.impulsevoip.net\",\n        \"7388@00310.impulsevoip.net\",\n        \"7389@00310.impulsevoip.net\",\n        \"7390@00310.impulsevoip.net\",\n        \"7391@00310.impulsevoip.net\",\n        \"7392@00310.impulsevoip.net\",\n        \"7393@00310.impulsevoip.net\",\n        \"7394@00310.impulsevoip.net\",\n        \"7395@00310.impulsevoip.net\",\n        \"7396@00310.impulsevoip.net\",\n        \"7397@00310.impulsevoip.net\",\n        \"7398@00310.impulsevoip.net\",\n        \"7399@00310.impulsevoip.net\",\n        \"7400@00310.impulsevoip.net\",\n        \"7401@00310.impulsevoip.net\",\n        \"7402@00310.impulsevoip.net\",\n        \"7403@00310.impulsevoip.net\",\n        \"7404@00310.impulsevoip.net\",\n        \"7405@00310.impulsevoip.net\",\n        \"7406@00310.impulsevoip.net\",\n        \"7407@00310.impulsevoip.net\",\n        \"7408@00310.impulsevoip.net\",\n        \"7409@00310.impulsevoip.net\",\n        \"7410@00310.impulsevoip.net\",\n        \"7411@00310.impulsevoip.net\",\n        \"7412@00310.impulsevoip.net\",\n        \"7413@00310.impulsevoip.net\",\n        \"7414@00310.impulsevoip.net\",\n        \"7415@00310.impulsevoip.net\",\n        \"7416@00310.impulsevoip.net\",\n        \"7417@00310.impulsevoip.net\",\n        \"7418@00310.impulsevoip.net\",\n        \"7419@00310.impulsevoip.net\",\n        \"7420@00310.impulsevoip.net\",\n        \"7421@00310.impulsevoip.net\",\n        \"7422@00310.impulsevoip.net\",\n        \"7423@00310.impulsevoip.net\",\n        \"7424@00310.impulsevoip.net\",\n        \"7425@00310.impulsevoip.net\",\n        \"7426@00310.impulsevoip.net\",\n        \"7427@00310.impulsevoip.net\",\n        \"7428@00310.impulsevoip.net\",\n        \"7429@00310.impulsevoip.net\",\n        \"7430@00310.impulsevoip.net\",\n        \"7431@00310.impulsevoip.net\",\n        \"7432@00310.impulsevoip.net\",\n        \"7433@00310.impulsevoip.net\",\n        \"7434@00310.impulsevoip.net\",\n        \"7435@00310.impulsevoip.net\",\n        \"7436@00310.impulsevoip.net\",\n        \"7437@00310.impulsevoip.net\",\n        \"7438@00310.impulsevoip.net\",\n        \"7439@00310.impulsevoip.net\",\n        \"7440@00310.impulsevoip.net\",\n        \"7441@00310.impulsevoip.net\",\n        \"7442@00310.impulsevoip.net\",\n        \"7443@00310.impulsevoip.net\",\n        \"7444@00310.impulsevoip.net\",\n        \"7445@00310.impulsevoip.net\",\n        \"7446@00310.impulsevoip.net\",\n        \"7447@00310.impulsevoip.net\",\n        \"7448@00310.impulsevoip.net\",\n        \"7449@00310.impulsevoip.net\",\n        \"7450@00310.impulsevoip.net\",\n        \"7451@00310.impulsevoip.net\",\n        \"7452@00310.impulsevoip.net\",\n        \"7453@00310.impulsevoip.net\",\n        \"7454@00310.impulsevoip.net\",\n        \"7455@00310.impulsevoip.net\",\n        \"7456@00310.impulsevoip.net\",\n        \"7457@00310.impulsevoip.net\",\n        \"7458@00310.impulsevoip.net\",\n        \"7459@00310.impulsevoip.net\",\n        \"7460@00310.impulsevoip.net\",\n        \"7461@00310.impulsevoip.net\",\n        \"7462@00310.impulsevoip.net\",\n        \"7463@00310.impulsevoip.net\",\n        \"7464@00310.impulsevoip.net\",\n        \"7465@00310.impulsevoip.net\",\n        \"7466@00310.impulsevoip.net\",\n        \"7467@00310.impulsevoip.net\",\n        \"7468@00310.impulsevoip.net\",\n        \"7469@00310.impulsevoip.net\",\n        \"7470@00310.impulsevoip.net\",\n        \"7471@00310.impulsevoip.net\",\n        \"7472@00310.impulsevoip.net\",\n        \"7473@00310.impulsevoip.net\",\n        \"7474@00310.impulsevoip.net\",\n        \"7475@00310.impulsevoip.net\",\n        \"7476@00310.impulsevoip.net\",\n        \"7477@00310.impulsevoip.net\",\n        \"7478@00310.impulsevoip.net\",\n        \"7479@00310.impulsevoip.net\",\n        \"7480@00310.impulsevoip.net\",\n        \"7481@00310.impulsevoip.net\",\n        \"7482@00310.impulsevoip.net\",\n        \"7483@00310.impulsevoip.net\",\n        \"7484@00310.impulsevoip.net\",\n        \"7485@00310.impulsevoip.net\",\n        \"7486@00310.impulsevoip.net\",\n        \"7487@00310.impulsevoip.net\",\n        \"7488@00310.impulsevoip.net\",\n        \"7489@00310.impulsevoip.net\",\n        \"7490@00310.impulsevoip.net\",\n        \"7491@00310.impulsevoip.net\",\n        \"7492@00310.impulsevoip.net\",\n        \"7493@00310.impulsevoip.net\",\n        \"7494@00310.impulsevoip.net\",\n        \"7495@00310.impulsevoip.net\",\n        \"7496@00310.impulsevoip.net\",\n        \"7497@00310.impulsevoip.net\",\n        \"7498@00310.impulsevoip.net\",\n        \"7499@00310.impulsevoip.net\",\n        \"7500@00310.impulsevoip.net\",\n        \"7501@00310.impulsevoip.net\",\n        \"7502@00310.impulsevoip.net\",\n        \"7503@00310.impulsevoip.net\",\n        \"7504@00310.impulsevoip.net\",\n        \"7505@00310.impulsevoip.net\",\n        \"7506@00310.impulsevoip.net\",\n        \"7507@00310.impulsevoip.net\",\n        \"7508@00310.impulsevoip.net\",\n        \"7509@00310.impulsevoip.net\",\n        \"7510@00310.impulsevoip.net\",\n        \"7511@00310.impulsevoip.net\",\n        \"7512@00310.impulsevoip.net\",\n        \"7513@00310.impulsevoip.net\",\n        \"7514@00310.impulsevoip.net\",\n        \"7515@00310.impulsevoip.net\",\n        \"7516@00310.impulsevoip.net\",\n        \"7517@00310.impulsevoip.net\",\n        \"7518@00310.impulsevoip.net\",\n        \"7519@00310.impulsevoip.net\",\n        \"7520@00310.impulsevoip.net\",\n        \"7521@00310.impulsevoip.net\",\n        \"7522@00310.impulsevoip.net\",\n        \"7523@00310.impulsevoip.net\",\n        \"7524@00310.impulsevoip.net\",\n        \"7525@00310.impulsevoip.net\",\n        \"7526@00310.impulsevoip.net\",\n        \"7527@00310.impulsevoip.net\",\n        \"7528@00310.impulsevoip.net\",\n        \"7529@00310.impulsevoip.net\",\n        \"7530@00310.impulsevoip.net\",\n        \"7531@00310.impulsevoip.net\",\n        \"7532@00310.impulsevoip.net\",\n        \"7533@00310.impulsevoip.net\",\n        \"7534@00310.impulsevoip.net\",\n        \"7535@00310.impulsevoip.net\",\n        \"7536@00310.impulsevoip.net\",\n        \"7537@00310.impulsevoip.net\",\n        \"7538@00310.impulsevoip.net\",\n        \"7539@00310.impulsevoip.net\",\n        \"7540@00310.impulsevoip.net\",\n        \"7541@00310.impulsevoip.net\",\n        \"7542@00310.impulsevoip.net\",\n        \"7543@00310.impulsevoip.net\",\n        \"7544@00310.impulsevoip.net\",\n        \"7545@00310.impulsevoip.net\",\n        \"7546@00310.impulsevoip.net\",\n        \"7547@00310.impulsevoip.net\",\n        \"7548@00310.impulsevoip.net\",\n        \"7549@00310.impulsevoip.net\",\n        \"7550@00310.impulsevoip.net\",\n        \"7551@00310.impulsevoip.net\",\n        \"7552@00310.impulsevoip.net\",\n        \"7553@00310.impulsevoip.net\",\n        \"7554@00310.impulsevoip.net\",\n        \"7555@00310.impulsevoip.net\",\n        \"7556@00310.impulsevoip.net\",\n        \"7557@00310.impulsevoip.net\",\n        \"7558@00310.impulsevoip.net\",\n        \"7559@00310.impulsevoip.net\",\n        \"7560@00310.impulsevoip.net\",\n        \"7561@00310.impulsevoip.net\",\n        \"7562@00310.impulsevoip.net\",\n        \"7563@00310.impulsevoip.net\",\n        \"7564@00310.impulsevoip.net\",\n        \"7565@00310.impulsevoip.net\",\n        \"7566@00310.impulsevoip.net\",\n        \"7567@00310.impulsevoip.net\",\n        \"7568@00310.impulsevoip.net\",\n        \"7569@00310.impulsevoip.net\",\n        \"7570@00310.impulsevoip.net\",\n        \"7571@00310.impulsevoip.net\",\n        \"7572@00310.impulsevoip.net\",\n        \"7573@00310.impulsevoip.net\",\n        \"7574@00310.impulsevoip.net\",\n        \"7575@00310.impulsevoip.net\",\n        \"7576@00310.impulsevoip.net\",\n        \"7577@00310.impulsevoip.net\",\n        \"7578@00310.impulsevoip.net\",\n        \"7579@00310.impulsevoip.net\",\n        \"7580@00310.impulsevoip.net\",\n        \"7581@00310.impulsevoip.net\",\n        \"7582@00310.impulsevoip.net\",\n        \"7583@00310.impulsevoip.net\",\n        \"7584@00310.impulsevoip.net\",\n        \"7585@00310.impulsevoip.net\",\n        \"7586@00310.impulsevoip.net\",\n        \"7587@00310.impulsevoip.net\",\n        \"7588@00310.impulsevoip.net\",\n        \"7589@00310.impulsevoip.net\",\n        \"7590@00310.impulsevoip.net\",\n        \"7591@00310.impulsevoip.net\",\n        \"7592@00310.impulsevoip.net\",\n        \"7593@00310.impulsevoip.net\",\n        \"7594@00310.impulsevoip.net\",\n        \"7595@00310.impulsevoip.net\",\n        \"7596@00310.impulsevoip.net\",\n        \"7597@00310.impulsevoip.net\",\n        \"7598@00310.impulsevoip.net\",\n        \"7599@00310.impulsevoip.net\",\n        \"7600@00310.impulsevoip.net\",\n        \"7601@00310.impulsevoip.net\",\n        \"7602@00310.impulsevoip.net\",\n        \"7603@00310.impulsevoip.net\",\n        \"7604@00310.impulsevoip.net\",\n        \"7605@00310.impulsevoip.net\",\n        \"7606@00310.impulsevoip.net\",\n        \"7607@00310.impulsevoip.net\",\n        \"7608@00310.impulsevoip.net\",\n        \"7609@00310.impulsevoip.net\",\n        \"7610@00310.impulsevoip.net\",\n        \"7611@00310.impulsevoip.net\",\n        \"7612@00310.impulsevoip.net\",\n        \"7613@00310.impulsevoip.net\",\n        \"7614@00310.impulsevoip.net\",\n        \"7615@00310.impulsevoip.net\",\n        \"7616@00310.impulsevoip.net\",\n        \"7617@00310.impulsevoip.net\",\n        \"7618@00310.impulsevoip.net\",\n        \"7619@00310.impulsevoip.net\",\n        \"7620@00310.impulsevoip.net\",\n        \"7621@00310.impulsevoip.net\",\n        \"7622@00310.impulsevoip.net\",\n        \"7623@00310.impulsevoip.net\",\n        \"7624@00310.impulsevoip.net\",\n        \"7625@00310.impulsevoip.net\",\n        \"7626@00310.impulsevoip.net\",\n        \"7627@00310.impulsevoip.net\",\n        \"7628@00310.impulsevoip.net\",\n        \"7629@00310.impulsevoip.net\",\n        \"7630@00310.impulsevoip.net\",\n        \"7631@00310.impulsevoip.net\",\n        \"7632@00310.impulsevoip.net\",\n        \"7633@00310.impulsevoip.net\",\n        \"7634@00310.impulsevoip.net\",\n        \"7635@00310.impulsevoip.net\",\n        \"7636@00310.impulsevoip.net\",\n        \"7637@00310.impulsevoip.net\",\n        \"7638@00310.impulsevoip.net\",\n        \"7639@00310.impulsevoip.net\",\n        \"7640@00310.impulsevoip.net\",\n        \"7641@00310.impulsevoip.net\",\n        \"7642@00310.impulsevoip.net\",\n        \"7643@00310.impulsevoip.net\",\n        \"7644@00310.impulsevoip.net\",\n        \"7645@00310.impulsevoip.net\",\n        \"7646@00310.impulsevoip.net\",\n        \"7647@00310.impulsevoip.net\",\n        \"7648@00310.impulsevoip.net\",\n        \"7649@00310.impulsevoip.net\",\n        \"7650@00310.impulsevoip.net\",\n        \"7651@00310.impulsevoip.net\",\n        \"7652@00310.impulsevoip.net\",\n        \"7653@00310.impulsevoip.net\",\n        \"7654@00310.impulsevoip.net\",\n        \"7655@00310.impulsevoip.net\",\n        \"7656@00310.impulsevoip.net\",\n        \"7657@00310.impulsevoip.net\",\n        \"7658@00310.impulsevoip.net\",\n        \"7659@00310.impulsevoip.net\",\n        \"7660@00310.impulsevoip.net\",\n        \"7661@00310.impulsevoip.net\",\n        \"7662@00310.impulsevoip.net\",\n        \"7663@00310.impulsevoip.net\",\n        \"7664@00310.impulsevoip.net\",\n        \"7665@00310.impulsevoip.net\",\n        \"7666@00310.impulsevoip.net\",\n        \"7667@00310.impulsevoip.net\",\n        \"7668@00310.impulsevoip.net\",\n        \"7669@00310.impulsevoip.net\",\n        \"7670@00310.impulsevoip.net\",\n        \"7671@00310.impulsevoip.net\",\n        \"7672@00310.impulsevoip.net\",\n        \"7673@00310.impulsevoip.net\",\n        \"7674@00310.impulsevoip.net\",\n        \"7675@00310.impulsevoip.net\",\n        \"7676@00310.impulsevoip.net\",\n        \"7677@00310.impulsevoip.net\",\n        \"7678@00310.impulsevoip.net\",\n        \"7679@00310.impulsevoip.net\",\n        \"7680@00310.impulsevoip.net\",\n        \"7681@00310.impulsevoip.net\",\n        \"7682@00310.impulsevoip.net\",\n        \"7683@00310.impulsevoip.net\",\n        \"7684@00310.impulsevoip.net\",\n        \"7685@00310.impulsevoip.net\",\n        \"7686@00310.impulsevoip.net\",\n        \"7687@00310.impulsevoip.net\",\n        \"7688@00310.impulsevoip.net\",\n        \"7689@00310.impulsevoip.net\",\n        \"7690@00310.impulsevoip.net\",\n        \"7691@00310.impulsevoip.net\",\n        \"7692@00310.impulsevoip.net\",\n        \"7693@00310.impulsevoip.net\",\n        \"7694@00310.impulsevoip.net\",\n        \"7695@00310.impulsevoip.net\",\n        \"7696@00310.impulsevoip.net\",\n        \"7697@00310.impulsevoip.net\",\n        \"7698@00310.impulsevoip.net\",\n        \"7699@00310.impulsevoip.net\",\n        \"7700@00310.impulsevoip.net\",\n        \"7701@00310.impulsevoip.net\",\n        \"7702@00310.impulsevoip.net\",\n        \"7703@00310.impulsevoip.net\",\n        \"7704@00310.impulsevoip.net\",\n        \"7705@00310.impulsevoip.net\",\n        \"7706@00310.impulsevoip.net\",\n        \"7707@00310.impulsevoip.net\",\n        \"7708@00310.impulsevoip.net\",\n        \"7709@00310.impulsevoip.net\",\n        \"7710@00310.impulsevoip.net\",\n        \"7711@00310.impulsevoip.net\",\n        \"7712@00310.impulsevoip.net\",\n        \"7713@00310.impulsevoip.net\",\n        \"7714@00310.impulsevoip.net\",\n        \"7715@00310.impulsevoip.net\",\n        \"7716@00310.impulsevoip.net\",\n        \"7717@00310.impulsevoip.net\",\n        \"7718@00310.impulsevoip.net\",\n        \"7719@00310.impulsevoip.net\",\n        \"7720@00310.impulsevoip.net\",\n        \"7721@00310.impulsevoip.net\",\n        \"7722@00310.impulsevoip.net\",\n        \"7723@00310.impulsevoip.net\",\n        \"7724@00310.impulsevoip.net\",\n        \"7725@00310.impulsevoip.net\",\n        \"7726@00310.impulsevoip.net\",\n        \"7727@00310.impulsevoip.net\",\n        \"7728@00310.impulsevoip.net\",\n        \"7729@00310.impulsevoip.net\",\n        \"7730@00310.impulsevoip.net\",\n        \"7731@00310.impulsevoip.net\",\n        \"7732@00310.impulsevoip.net\",\n        \"7733@00310.impulsevoip.net\",\n        \"7734@00310.impulsevoip.net\",\n        \"7735@00310.impulsevoip.net\",\n        \"7736@00310.impulsevoip.net\",\n        \"7737@00310.impulsevoip.net\",\n        \"7738@00310.impulsevoip.net\",\n        \"7739@00310.impulsevoip.net\",\n        \"7740@00310.impulsevoip.net\",\n        \"7741@00310.impulsevoip.net\",\n        \"7742@00310.impulsevoip.net\",\n        \"7743@00310.impulsevoip.net\",\n        \"7744@00310.impulsevoip.net\",\n        \"7745@00310.impulsevoip.net\",\n        \"7746@00310.impulsevoip.net\",\n        \"7747@00310.impulsevoip.net\",\n        \"7748@00310.impulsevoip.net\",\n        \"7749@00310.impulsevoip.net\",\n        \"7750@00310.impulsevoip.net\",\n        \"7751@00310.impulsevoip.net\",\n        \"7752@00310.impulsevoip.net\",\n        \"7753@00310.impulsevoip.net\",\n        \"7754@00310.impulsevoip.net\",\n        \"7755@00310.impulsevoip.net\",\n        \"7756@00310.impulsevoip.net\",\n        \"7757@00310.impulsevoip.net\",\n        \"7758@00310.impulsevoip.net\",\n        \"7759@00310.impulsevoip.net\",\n        \"7760@00310.impulsevoip.net\",\n        \"7761@00310.impulsevoip.net\",\n        \"7762@00310.impulsevoip.net\",\n        \"7763@00310.impulsevoip.net\",\n        \"7764@00310.impulsevoip.net\",\n        \"7765@00310.impulsevoip.net\",\n        \"7766@00310.impulsevoip.net\",\n        \"7767@00310.impulsevoip.net\",\n        \"7768@00310.impulsevoip.net\",\n        \"7769@00310.impulsevoip.net\",\n        \"7770@00310.impulsevoip.net\",\n        \"7771@00310.impulsevoip.net\",\n        \"7772@00310.impulsevoip.net\",\n        \"7773@00310.impulsevoip.net\",\n        \"7774@00310.impulsevoip.net\",\n        \"7775@00310.impulsevoip.net\",\n        \"7776@00310.impulsevoip.net\",\n        \"7777@00310.impulsevoip.net\",\n        \"7778@00310.impulsevoip.net\",\n        \"7779@00310.impulsevoip.net\",\n        \"7780@00310.impulsevoip.net\",\n        \"7781@00310.impulsevoip.net\",\n        \"7782@00310.impulsevoip.net\",\n        \"7783@00310.impulsevoip.net\",\n        \"7784@00310.impulsevoip.net\",\n        \"7785@00310.impulsevoip.net\",\n        \"7786@00310.impulsevoip.net\",\n        \"7787@00310.impulsevoip.net\",\n        \"7788@00310.impulsevoip.net\",\n        \"7789@00310.impulsevoip.net\",\n        \"7790@00310.impulsevoip.net\",\n        \"7791@00310.impulsevoip.net\",\n        \"7792@00310.impulsevoip.net\",\n        \"7793@00310.impulsevoip.net\",\n        \"7794@00310.impulsevoip.net\",\n        \"7795@00310.impulsevoip.net\",\n        \"7796@00310.impulsevoip.net\",\n        \"7797@00310.impulsevoip.net\",\n        \"7798@00310.impulsevoip.net\",\n        \"7799@00310.impulsevoip.net\",\n        \"7800@00310.impulsevoip.net\",\n        \"7801@00310.impulsevoip.net\",\n        \"7802@00310.impulsevoip.net\",\n        \"7803@00310.impulsevoip.net\",\n        \"7804@00310.impulsevoip.net\",\n        \"7805@00310.impulsevoip.net\",\n        \"7806@00310.impulsevoip.net\",\n        \"7807@00310.impulsevoip.net\",\n        \"7808@00310.impulsevoip.net\",\n        \"7809@00310.impulsevoip.net\",\n        \"7810@00310.impulsevoip.net\",\n        \"7811@00310.impulsevoip.net\",\n        \"7812@00310.impulsevoip.net\",\n        \"7813@00310.impulsevoip.net\",\n        \"7814@00310.impulsevoip.net\",\n        \"7815@00310.impulsevoip.net\",\n        \"7816@00310.impulsevoip.net\",\n        \"7817@00310.impulsevoip.net\",\n        \"7818@00310.impulsevoip.net\",\n        \"7819@00310.impulsevoip.net\",\n        \"7820@00310.impulsevoip.net\",\n        \"7821@00310.impulsevoip.net\",\n        \"7822@00310.impulsevoip.net\",\n        \"7823@00310.impulsevoip.net\",\n        \"7824@00310.impulsevoip.net\",\n        \"7825@00310.impulsevoip.net\",\n        \"7826@00310.impulsevoip.net\",\n        \"7827@00310.impulsevoip.net\",\n        \"7828@00310.impulsevoip.net\",\n        \"7829@00310.impulsevoip.net\",\n        \"7830@00310.impulsevoip.net\",\n        \"7831@00310.impulsevoip.net\",\n        \"7832@00310.impulsevoip.net\",\n        \"7833@00310.impulsevoip.net\",\n        \"7834@00310.impulsevoip.net\",\n        \"7835@00310.impulsevoip.net\",\n        \"7836@00310.impulsevoip.net\",\n        \"7837@00310.impulsevoip.net\",\n        \"7838@00310.impulsevoip.net\",\n        \"7839@00310.impulsevoip.net\",\n        \"7840@00310.impulsevoip.net\",\n        \"7841@00310.impulsevoip.net\",\n        \"7842@00310.impulsevoip.net\",\n        \"7843@00310.impulsevoip.net\",\n        \"7844@00310.impulsevoip.net\",\n        \"7845@00310.impulsevoip.net\",\n        \"7846@00310.impulsevoip.net\",\n        \"7847@00310.impulsevoip.net\",\n        \"7848@00310.impulsevoip.net\",\n        \"7849@00310.impulsevoip.net\",\n        \"7850@00310.impulsevoip.net\",\n        \"7851@00310.impulsevoip.net\",\n        \"7852@00310.impulsevoip.net\",\n        \"7853@00310.impulsevoip.net\",\n        \"7854@00310.impulsevoip.net\",\n        \"7855@00310.impulsevoip.net\",\n        \"7856@00310.impulsevoip.net\",\n        \"7857@00310.impulsevoip.net\",\n        \"7858@00310.impulsevoip.net\",\n        \"7859@00310.impulsevoip.net\",\n        \"7860@00310.impulsevoip.net\",\n        \"7861@00310.impulsevoip.net\",\n        \"7862@00310.impulsevoip.net\",\n        \"7863@00310.impulsevoip.net\",\n        \"7864@00310.impulsevoip.net\",\n        \"7865@00310.impulsevoip.net\",\n        \"7866@00310.impulsevoip.net\",\n        \"7867@00310.impulsevoip.net\",\n        \"7868@00310.impulsevoip.net\",\n        \"7869@00310.impulsevoip.net\",\n        \"7870@00310.impulsevoip.net\",\n        \"7871@00310.impulsevoip.net\",\n        \"7872@00310.impulsevoip.net\",\n        \"7873@00310.impulsevoip.net\",\n        \"7874@00310.impulsevoip.net\",\n        \"7875@00310.impulsevoip.net\",\n        \"7876@00310.impulsevoip.net\",\n        \"7877@00310.impulsevoip.net\",\n        \"7878@00310.impulsevoip.net\",\n        \"7879@00310.impulsevoip.net\",\n        \"7880@00310.impulsevoip.net\",\n        \"7881@00310.impulsevoip.net\",\n        \"7882@00310.impulsevoip.net\",\n        \"7883@00310.impulsevoip.net\",\n        \"7884@00310.impulsevoip.net\",\n        \"7885@00310.impulsevoip.net\",\n        \"7886@00310.impulsevoip.net\",\n        \"7887@00310.impulsevoip.net\",\n        \"7888@00310.impulsevoip.net\",\n        \"7889@00310.impulsevoip.net\",\n        \"7890@00310.impulsevoip.net\",\n        \"7891@00310.impulsevoip.net\",\n        \"7892@00310.impulsevoip.net\",\n        \"7893@00310.impulsevoip.net\",\n        \"7894@00310.impulsevoip.net\",\n        \"7895@00310.impulsevoip.net\",\n        \"7896@00310.impulsevoip.net\",\n        \"7897@00310.impulsevoip.net\",\n        \"7898@00310.impulsevoip.net\",\n        \"7899@00310.impulsevoip.net\",\n        \"7900@00310.impulsevoip.net\",\n        \"7901@00310.impulsevoip.net\",\n        \"7902@00310.impulsevoip.net\",\n        \"7903@00310.impulsevoip.net\",\n        \"7904@00310.impulsevoip.net\",\n        \"7905@00310.impulsevoip.net\",\n        \"7906@00310.impulsevoip.net\",\n        \"7907@00310.impulsevoip.net\",\n        \"7908@00310.impulsevoip.net\",\n        \"7909@00310.impulsevoip.net\",\n        \"7910@00310.impulsevoip.net\",\n        \"8168@00310.impulsevoip.net\",\n        \"8169@00310.impulsevoip.net\",\n        \"8170@00310.impulsevoip.net\",\n        \"8171@00310.impulsevoip.net\",\n        \"8172@00310.impulsevoip.net\",\n        \"8173@00310.impulsevoip.net\",\n        \"8174@00310.impulsevoip.net\",\n        \"8175@00310.impulsevoip.net\",\n        \"8176@00310.impulsevoip.net\",\n        \"8177@00310.impulsevoip.net\",\n        \"8178@00310.impulsevoip.net\",\n        \"8179@00310.impulsevoip.net\",\n        \"8180@00310.impulsevoip.net\",\n        \"8181@00310.impulsevoip.net\",\n        \"8182@00310.impulsevoip.net\",\n        \"8183@00310.impulsevoip.net\",\n        \"8184@00310.impulsevoip.net\",\n        \"8185@00310.impulsevoip.net\",\n        \"8186@00310.impulsevoip.net\",\n        \"8187@00310.impulsevoip.net\",\n        \"8188@00310.impulsevoip.net\",\n        \"8189@00310.impulsevoip.net\",\n        \"8190@00310.impulsevoip.net\",\n        \"8191@00310.impulsevoip.net\",\n        \"8192@00310.impulsevoip.net\",\n        \"8193@00310.impulsevoip.net\",\n        \"8194@00310.impulsevoip.net\",\n        \"8195@00310.impulsevoip.net\",\n        \"8196@00310.impulsevoip.net\",\n        \"8197@00310.impulsevoip.net\",\n        \"8198@00310.impulsevoip.net\",\n        \"8199@00310.impulsevoip.net\",\n        \"8200@00310.impulsevoip.net\",\n        \"8201@00310.impulsevoip.net\",\n        \"8202@00310.impulsevoip.net\",\n        \"8203@00310.impulsevoip.net\",\n        \"8204@00310.impulsevoip.net\",\n        \"8205@00310.impulsevoip.net\",\n        \"8206@00310.impulsevoip.net\",\n        \"8207@00310.impulsevoip.net\",\n        \"8208@00310.impulsevoip.net\",\n        \"8209@00310.impulsevoip.net\",\n        \"8210@00310.impulsevoip.net\",\n        \"8211@00310.impulsevoip.net\",\n        \"8212@00310.impulsevoip.net\",\n        \"8213@00310.impulsevoip.net\",\n        \"8214@00310.impulsevoip.net\",\n        \"8215@00310.impulsevoip.net\",\n        \"8216@00310.impulsevoip.net\",\n        \"8217@00310.impulsevoip.net\",\n        \"8218@00310.impulsevoip.net\",\n        \"8219@00310.impulsevoip.net\",\n        \"8220@00310.impulsevoip.net\",\n        \"8221@00310.impulsevoip.net\",\n        \"8222@00310.impulsevoip.net\",\n        \"8223@00310.impulsevoip.net\",\n        \"8224@00310.impulsevoip.net\",\n        \"8225@00310.impulsevoip.net\",\n        \"8226@00310.impulsevoip.net\",\n        \"8227@00310.impulsevoip.net\",\n        \"8228@00310.impulsevoip.net\",\n        \"8229@00310.impulsevoip.net\",\n        \"8230@00310.impulsevoip.net\",\n        \"8231@00310.impulsevoip.net\",\n        \"8232@00310.impulsevoip.net\",\n        \"8233@00310.impulsevoip.net\",\n        \"8234@00310.impulsevoip.net\",\n        \"8235@00310.impulsevoip.net\",\n        \"8236@00310.impulsevoip.net\",\n        \"8237@00310.impulsevoip.net\",\n        \"8238@00310.impulsevoip.net\",\n        \"8239@00310.impulsevoip.net\",\n        \"8240@00310.impulsevoip.net\",\n        \"8241@00310.impulsevoip.net\",\n        \"8242@00310.impulsevoip.net\",\n        \"8243@00310.impulsevoip.net\",\n        \"8244@00310.impulsevoip.net\",\n        \"8245@00310.impulsevoip.net\",\n        \"8246@00310.impulsevoip.net\",\n        \"8247@00310.impulsevoip.net\",\n        \"8248@00310.impulsevoip.net\",\n        \"8249@00310.impulsevoip.net\",\n        \"8250@00310.impulsevoip.net\",\n        \"8251@00310.impulsevoip.net\",\n        \"8252@00310.impulsevoip.net\",\n        \"8253@00310.impulsevoip.net\",\n        \"8254@00310.impulsevoip.net\",\n        \"8255@00310.impulsevoip.net\",\n        \"8256@00310.impulsevoip.net\",\n        \"8257@00310.impulsevoip.net\",\n        \"8258@00310.impulsevoip.net\",\n        \"8259@00310.impulsevoip.net\",\n        \"8260@00310.impulsevoip.net\",\n        \"8261@00310.impulsevoip.net\",\n        \"8262@00310.impulsevoip.net\",\n        \"8263@00310.impulsevoip.net\",\n        \"8264@00310.impulsevoip.net\",\n        \"8265@00310.impulsevoip.net\",\n        \"8266@00310.impulsevoip.net\",\n        \"8267@00310.impulsevoip.net\",\n        \"8268@00310.impulsevoip.net\",\n        \"8269@00310.impulsevoip.net\",\n        \"8270@00310.impulsevoip.net\",\n        \"8271@00310.impulsevoip.net\",\n        \"8272@00310.impulsevoip.net\",\n        \"8273@00310.impulsevoip.net\",\n        \"8274@00310.impulsevoip.net\",\n        \"8275@00310.impulsevoip.net\",\n        \"8276@00310.impulsevoip.net\",\n        \"8277@00310.impulsevoip.net\",\n        \"8278@00310.impulsevoip.net\",\n        \"8279@00310.impulsevoip.net\",\n        \"8280@00310.impulsevoip.net\",\n        \"8281@00310.impulsevoip.net\",\n        \"8282@00310.impulsevoip.net\",\n        \"8283@00310.impulsevoip.net\",\n        \"8284@00310.impulsevoip.net\",\n        \"8285@00310.impulsevoip.net\",\n        \"8286@00310.impulsevoip.net\",\n        \"8287@00310.impulsevoip.net\",\n        \"8288@00310.impulsevoip.net\",\n        \"8289@00310.impulsevoip.net\",\n        \"8290@00310.impulsevoip.net\",\n        \"8291@00310.impulsevoip.net\",\n        \"8292@00310.impulsevoip.net\",\n        \"8293@00310.impulsevoip.net\",\n        \"8294@00310.impulsevoip.net\",\n        \"8295@00310.impulsevoip.net\",\n        \"8296@00310.impulsevoip.net\",\n        \"8297@00310.impulsevoip.net\",\n        \"8298@00310.impulsevoip.net\",\n        \"8299@00310.impulsevoip.net\",\n        \"8300@00310.impulsevoip.net\",\n        \"8301@00310.impulsevoip.net\",\n        \"8302@00310.impulsevoip.net\",\n        \"8303@00310.impulsevoip.net\",\n        \"8304@00310.impulsevoip.net\",\n        \"8305@00310.impulsevoip.net\",\n        \"8306@00310.impulsevoip.net\",\n        \"8307@00310.impulsevoip.net\",\n        \"8308@00310.impulsevoip.net\",\n        \"8309@00310.impulsevoip.net\",\n        \"8310@00310.impulsevoip.net\",\n        \"8311@00310.impulsevoip.net\",\n        \"8312@00310.impulsevoip.net\",\n        \"8313@00310.impulsevoip.net\",\n        \"8314@00310.impulsevoip.net\",\n        \"8315@00310.impulsevoip.net\",\n        \"8316@00310.impulsevoip.net\",\n        \"8317@00310.impulsevoip.net\",\n        \"8318@00310.impulsevoip.net\",\n        \"8319@00310.impulsevoip.net\",\n        \"8320@00310.impulsevoip.net\",\n        \"8321@00310.impulsevoip.net\",\n        \"8322@00310.impulsevoip.net\",\n        \"8323@00310.impulsevoip.net\",\n        \"8324@00310.impulsevoip.net\",\n        \"8325@00310.impulsevoip.net\",\n        \"8326@00310.impulsevoip.net\",\n        \"8327@00310.impulsevoip.net\",\n        \"8328@00310.impulsevoip.net\",\n        \"8329@00310.impulsevoip.net\",\n        \"8330@00310.impulsevoip.net\",\n        \"8331@00310.impulsevoip.net\",\n        \"8332@00310.impulsevoip.net\",\n        \"8333@00310.impulsevoip.net\",\n        \"8334@00310.impulsevoip.net\",\n        \"8335@00310.impulsevoip.net\",\n        \"8336@00310.impulsevoip.net\",\n        \"8337@00310.impulsevoip.net\",\n        \"8338@00310.impulsevoip.net\",\n        \"8339@00310.impulsevoip.net\",\n        \"8340@00310.impulsevoip.net\",\n        \"8341@00310.impulsevoip.net\",\n        \"8342@00310.impulsevoip.net\",\n        \"8343@00310.impulsevoip.net\",\n        \"8344@00310.impulsevoip.net\",\n        \"8345@00310.impulsevoip.net\",\n        \"8346@00310.impulsevoip.net\",\n        \"8347@00310.impulsevoip.net\",\n        \"8348@00310.impulsevoip.net\",\n        \"8349@00310.impulsevoip.net\",\n        \"8350@00310.impulsevoip.net\",\n        \"8351@00310.impulsevoip.net\",\n        \"8352@00310.impulsevoip.net\",\n        \"8353@00310.impulsevoip.net\",\n        \"8354@00310.impulsevoip.net\",\n        \"8355@00310.impulsevoip.net\",\n        \"8356@00310.impulsevoip.net\",\n        \"8357@00310.impulsevoip.net\",\n        \"8358@00310.impulsevoip.net\",\n        \"8359@00310.impulsevoip.net\",\n        \"8360@00310.impulsevoip.net\",\n        \"8361@00310.impulsevoip.net\",\n        \"8362@00310.impulsevoip.net\",\n        \"8363@00310.impulsevoip.net\",\n        \"8364@00310.impulsevoip.net\",\n        \"8365@00310.impulsevoip.net\",\n        \"8366@00310.impulsevoip.net\",\n        \"8367@00310.impulsevoip.net\",\n        \"8368@00310.impulsevoip.net\",\n        \"8369@00310.impulsevoip.net\",\n        \"8370@00310.impulsevoip.net\",\n        \"8371@00310.impulsevoip.net\",\n        \"8372@00310.impulsevoip.net\",\n        \"8373@00310.impulsevoip.net\",\n        \"8374@00310.impulsevoip.net\",\n        \"8375@00310.impulsevoip.net\",\n        \"8376@00310.impulsevoip.net\",\n        \"8377@00310.impulsevoip.net\",\n        \"8378@00310.impulsevoip.net\",\n        \"8379@00310.impulsevoip.net\",\n        \"8380@00310.impulsevoip.net\",\n        \"8381@00310.impulsevoip.net\",\n        \"8382@00310.impulsevoip.net\",\n        \"8383@00310.impulsevoip.net\",\n        \"8384@00310.impulsevoip.net\",\n        \"8385@00310.impulsevoip.net\",\n        \"8386@00310.impulsevoip.net\",\n        \"8387@00310.impulsevoip.net\",\n        \"8388@00310.impulsevoip.net\",\n        \"8389@00310.impulsevoip.net\",\n        \"8390@00310.impulsevoip.net\",\n        \"8391@00310.impulsevoip.net\",\n        \"8392@00310.impulsevoip.net\",\n        \"8393@00310.impulsevoip.net\",\n        \"8394@00310.impulsevoip.net\",\n        \"8395@00310.impulsevoip.net\",\n        \"8396@00310.impulsevoip.net\",\n        \"8397@00310.impulsevoip.net\",\n        \"8398@00310.impulsevoip.net\",\n        \"8399@00310.impulsevoip.net\",\n        \"8400@00310.impulsevoip.net\",\n        \"8401@00310.impulsevoip.net\",\n        \"8402@00310.impulsevoip.net\",\n        \"8403@00310.impulsevoip.net\",\n        \"8404@00310.impulsevoip.net\",\n        \"8405@00310.impulsevoip.net\",\n        \"8406@00310.impulsevoip.net\",\n        \"8407@00310.impulsevoip.net\",\n        \"8408@00310.impulsevoip.net\",\n        \"8409@00310.impulsevoip.net\",\n        \"8410@00310.impulsevoip.net\",\n        \"8411@00310.impulsevoip.net\",\n        \"8412@00310.impulsevoip.net\",\n        \"8413@00310.impulsevoip.net\",\n        \"8414@00310.impulsevoip.net\",\n        \"8415@00310.impulsevoip.net\",\n        \"8416@00310.impulsevoip.net\",\n        \"8417@00310.impulsevoip.net\",\n        \"8418@00310.impulsevoip.net\",\n        \"8419@00310.impulsevoip.net\",\n        \"8420@00310.impulsevoip.net\",\n        \"8421@00310.impulsevoip.net\",\n        \"8422@00310.impulsevoip.net\",\n        \"8423@00310.impulsevoip.net\",\n        \"8424@00310.impulsevoip.net\",\n        \"8425@00310.impulsevoip.net\",\n        \"8426@00310.impulsevoip.net\",\n        \"8427@00310.impulsevoip.net\",\n        \"8428@00310.impulsevoip.net\",\n        \"8429@00310.impulsevoip.net\",\n        \"8430@00310.impulsevoip.net\",\n        \"8431@00310.impulsevoip.net\",\n        \"8432@00310.impulsevoip.net\",\n        \"8433@00310.impulsevoip.net\",\n        \"8434@00310.impulsevoip.net\",\n        \"8435@00310.impulsevoip.net\",\n        \"8436@00310.impulsevoip.net\",\n        \"8437@00310.impulsevoip.net\",\n        \"8438@00310.impulsevoip.net\",\n        \"8439@00310.impulsevoip.net\",\n        \"8440@00310.impulsevoip.net\",\n        \"8441@00310.impulsevoip.net\",\n        \"8442@00310.impulsevoip.net\",\n        \"8443@00310.impulsevoip.net\",\n        \"8444@00310.impulsevoip.net\",\n        \"8445@00310.impulsevoip.net\",\n        \"8446@00310.impulsevoip.net\",\n        \"8447@00310.impulsevoip.net\",\n        \"8448@00310.impulsevoip.net\",\n        \"8449@00310.impulsevoip.net\",\n        \"8450@00310.impulsevoip.net\",\n        \"8451@00310.impulsevoip.net\",\n        \"8452@00310.impulsevoip.net\",\n        \"8453@00310.impulsevoip.net\",\n        \"8454@00310.impulsevoip.net\",\n        \"8455@00310.impulsevoip.net\",\n        \"8456@00310.impulsevoip.net\",\n        \"8457@00310.impulsevoip.net\",\n        \"8458@00310.impulsevoip.net\",\n        \"8459@00310.impulsevoip.net\",\n        \"8460@00310.impulsevoip.net\",\n        \"8461@00310.impulsevoip.net\",\n        \"8462@00310.impulsevoip.net\",\n        \"8463@00310.impulsevoip.net\",\n        \"8464@00310.impulsevoip.net\",\n        \"8465@00310.impulsevoip.net\",\n        \"8466@00310.impulsevoip.net\",\n        \"8467@00310.impulsevoip.net\",\n        \"8468@00310.impulsevoip.net\",\n        \"8469@00310.impulsevoip.net\",\n        \"8470@00310.impulsevoip.net\",\n        \"8471@00310.impulsevoip.net\",\n        \"8472@00310.impulsevoip.net\",\n        \"8473@00310.impulsevoip.net\",\n        \"8474@00310.impulsevoip.net\",\n        \"8475@00310.impulsevoip.net\",\n        \"8476@00310.impulsevoip.net\",\n        \"8477@00310.impulsevoip.net\",\n        \"8478@00310.impulsevoip.net\",\n        \"8479@00310.impulsevoip.net\",\n        \"8480@00310.impulsevoip.net\",\n        \"8481@00310.impulsevoip.net\",\n        \"8482@00310.impulsevoip.net\",\n        \"8483@00310.impulsevoip.net\",\n        \"8484@00310.impulsevoip.net\",\n        \"8485@00310.impulsevoip.net\",\n        \"8486@00310.impulsevoip.net\",\n        \"8487@00310.impulsevoip.net\",\n        \"8488@00310.impulsevoip.net\",\n        \"8489@00310.impulsevoip.net\",\n        \"8490@00310.impulsevoip.net\",\n        \"8491@00310.impulsevoip.net\",\n        \"8492@00310.impulsevoip.net\",\n        \"8493@00310.impulsevoip.net\",\n        \"8494@00310.impulsevoip.net\",\n        \"8495@00310.impulsevoip.net\",\n        \"8496@00310.impulsevoip.net\",\n        \"8497@00310.impulsevoip.net\",\n        \"8498@00310.impulsevoip.net\",\n        \"8499@00310.impulsevoip.net\",\n        \"8500@00310.impulsevoip.net\",\n        \"8501@00310.impulsevoip.net\",\n        \"8502@00310.impulsevoip.net\",\n        \"8503@00310.impulsevoip.net\",\n        \"8504@00310.impulsevoip.net\",\n        \"8505@00310.impulsevoip.net\",\n        \"8506@00310.impulsevoip.net\",\n        \"8507@00310.impulsevoip.net\",\n        \"8508@00310.impulsevoip.net\",\n        \"8509@00310.impulsevoip.net\",\n        \"8510@00310.impulsevoip.net\",\n        \"8511@00310.impulsevoip.net\",\n        \"8512@00310.impulsevoip.net\",\n        \"8513@00310.impulsevoip.net\",\n        \"8514@00310.impulsevoip.net\",\n        \"8515@00310.impulsevoip.net\",\n        \"8516@00310.impulsevoip.net\",\n        \"8517@00310.impulsevoip.net\",\n        \"8518@00310.impulsevoip.net\",\n        \"8519@00310.impulsevoip.net\",\n        \"8520@00310.impulsevoip.net\",\n        \"8521@00310.impulsevoip.net\",\n        \"8522@00310.impulsevoip.net\",\n        \"8523@00310.impulsevoip.net\",\n        \"8524@00310.impulsevoip.net\",\n        \"8525@00310.impulsevoip.net\",\n        \"8526@00310.impulsevoip.net\",\n        \"8527@00310.impulsevoip.net\",\n        \"8528@00310.impulsevoip.net\",\n        \"8529@00310.impulsevoip.net\",\n        \"8530@00310.impulsevoip.net\",\n        \"8531@00310.impulsevoip.net\",\n        \"8532@00310.impulsevoip.net\",\n        \"8533@00310.impulsevoip.net\",\n        \"8534@00310.impulsevoip.net\",\n        \"8535@00310.impulsevoip.net\",\n        \"8536@00310.impulsevoip.net\",\n        \"8537@00310.impulsevoip.net\",\n        \"8538@00310.impulsevoip.net\",\n        \"8539@00310.impulsevoip.net\",\n        \"8540@00310.impulsevoip.net\",\n        \"8541@00310.impulsevoip.net\",\n        \"8542@00310.impulsevoip.net\",\n        \"8543@00310.impulsevoip.net\",\n        \"8544@00310.impulsevoip.net\",\n        \"8545@00310.impulsevoip.net\",\n        \"8546@00310.impulsevoip.net\",\n        \"8547@00310.impulsevoip.net\",\n        \"8548@00310.impulsevoip.net\",\n        \"8549@00310.impulsevoip.net\",\n        \"8550@00310.impulsevoip.net\",\n        \"8551@00310.impulsevoip.net\",\n        \"8552@00310.impulsevoip.net\",\n        \"8553@00310.impulsevoip.net\",\n        \"8554@00310.impulsevoip.net\",\n        \"8555@00310.impulsevoip.net\",\n        \"8556@00310.impulsevoip.net\",\n        \"8557@00310.impulsevoip.net\",\n        \"8558@00310.impulsevoip.net\",\n        \"8559@00310.impulsevoip.net\",\n        \"8560@00310.impulsevoip.net\",\n        \"8561@00310.impulsevoip.net\",\n        \"8562@00310.impulsevoip.net\",\n        \"8563@00310.impulsevoip.net\",\n        \"8564@00310.impulsevoip.net\",\n        \"8565@00310.impulsevoip.net\",\n        \"8566@00310.impulsevoip.net\",\n        \"8567@00310.impulsevoip.net\",\n        \"8568@00310.impulsevoip.net\",\n        \"8569@00310.impulsevoip.net\",\n        \"8570@00310.impulsevoip.net\",\n        \"8571@00310.impulsevoip.net\",\n        \"8572@00310.impulsevoip.net\",\n        \"8573@00310.impulsevoip.net\",\n        \"8574@00310.impulsevoip.net\",\n        \"8575@00310.impulsevoip.net\",\n        \"8576@00310.impulsevoip.net\",\n        \"8577@00310.impulsevoip.net\",\n        \"8578@00310.impulsevoip.net\",\n        \"8579@00310.impulsevoip.net\",\n        \"8580@00310.impulsevoip.net\",\n        \"8581@00310.impulsevoip.net\",\n        \"8582@00310.impulsevoip.net\",\n        \"8583@00310.impulsevoip.net\",\n        \"8584@00310.impulsevoip.net\",\n        \"8585@00310.impulsevoip.net\",\n        \"8586@00310.impulsevoip.net\",\n        \"8587@00310.impulsevoip.net\",\n        \"8588@00310.impulsevoip.net\",\n        \"8589@00310.impulsevoip.net\",\n        \"8590@00310.impulsevoip.net\",\n        \"8591@00310.impulsevoip.net\",\n        \"8592@00310.impulsevoip.net\",\n        \"8593@00310.impulsevoip.net\",\n        \"8594@00310.impulsevoip.net\",\n        \"8595@00310.impulsevoip.net\",\n        \"8596@00310.impulsevoip.net\",\n        \"8597@00310.impulsevoip.net\",\n        \"8598@00310.impulsevoip.net\",\n        \"8599@00310.impulsevoip.net\",\n        \"8600@00310.impulsevoip.net\",\n        \"8601@00310.impulsevoip.net\",\n        \"8602@00310.impulsevoip.net\",\n        \"8603@00310.impulsevoip.net\",\n        \"8604@00310.impulsevoip.net\",\n        \"8605@00310.impulsevoip.net\",\n        \"8606@00310.impulsevoip.net\",\n        \"8607@00310.impulsevoip.net\",\n        \"8608@00310.impulsevoip.net\",\n        \"8609@00310.impulsevoip.net\",\n        \"8610@00310.impulsevoip.net\",\n        \"8611@00310.impulsevoip.net\",\n        \"8612@00310.impulsevoip.net\",\n        \"8613@00310.impulsevoip.net\",\n        \"8614@00310.impulsevoip.net\",\n        \"8615@00310.impulsevoip.net\",\n        \"8616@00310.impulsevoip.net\",\n        \"8617@00310.impulsevoip.net\",\n        \"8618@00310.impulsevoip.net\",\n        \"8619@00310.impulsevoip.net\",\n        \"8620@00310.impulsevoip.net\",\n        \"8621@00310.impulsevoip.net\",\n        \"8622@00310.impulsevoip.net\",\n        \"8623@00310.impulsevoip.net\",\n        \"8624@00310.impulsevoip.net\",\n        \"8625@00310.impulsevoip.net\",\n        \"8626@00310.impulsevoip.net\",\n        \"8627@00310.impulsevoip.net\",\n        \"8628@00310.impulsevoip.net\",\n        \"8629@00310.impulsevoip.net\",\n        \"8630@00310.impulsevoip.net\",\n        \"8631@00310.impulsevoip.net\",\n        \"8632@00310.impulsevoip.net\",\n        \"8633@00310.impulsevoip.net\",\n        \"8634@00310.impulsevoip.net\",\n        \"8635@00310.impulsevoip.net\",\n        \"8636@00310.impulsevoip.net\",\n        \"8637@00310.impulsevoip.net\",\n        \"8638@00310.impulsevoip.net\",\n        \"8639@00310.impulsevoip.net\",\n        \"8640@00310.impulsevoip.net\",\n        \"8641@00310.impulsevoip.net\",\n        \"8642@00310.impulsevoip.net\",\n        \"8643@00310.impulsevoip.net\",\n        \"8644@00310.impulsevoip.net\",\n        \"8645@00310.impulsevoip.net\",\n        \"8646@00310.impulsevoip.net\",\n        \"8647@00310.impulsevoip.net\",\n        \"8648@00310.impulsevoip.net\",\n        \"8649@00310.impulsevoip.net\",\n        \"8650@00310.impulsevoip.net\",\n        \"8651@00310.impulsevoip.net\",\n        \"8652@00310.impulsevoip.net\",\n        \"8653@00310.impulsevoip.net\",\n        \"8654@00310.impulsevoip.net\",\n        \"8655@00310.impulsevoip.net\",\n        \"8656@00310.impulsevoip.net\",\n        \"8657@00310.impulsevoip.net\",\n        \"8658@00310.impulsevoip.net\",\n        \"8659@00310.impulsevoip.net\",\n        \"8660@00310.impulsevoip.net\",\n        \"8661@00310.impulsevoip.net\",\n        \"8662@00310.impulsevoip.net\",\n        \"8663@00310.impulsevoip.net\",\n        \"8664@00310.impulsevoip.net\",\n        \"8665@00310.impulsevoip.net\",\n        \"8666@00310.impulsevoip.net\",\n        \"8667@00310.impulsevoip.net\",\n        \"8668@00310.impulsevoip.net\",\n        \"8669@00310.impulsevoip.net\",\n        \"8670@00310.impulsevoip.net\",\n        \"8671@00310.impulsevoip.net\",\n        \"8672@00310.impulsevoip.net\",\n        \"8673@00310.impulsevoip.net\",\n        \"8674@00310.impulsevoip.net\",\n        \"8675@00310.impulsevoip.net\",\n        \"8676@00310.impulsevoip.net\",\n        \"8677@00310.impulsevoip.net\",\n        \"8678@00310.impulsevoip.net\",\n        \"8679@00310.impulsevoip.net\",\n        \"8680@00310.impulsevoip.net\",\n        \"8681@00310.impulsevoip.net\",\n        \"8682@00310.impulsevoip.net\",\n        \"8683@00310.impulsevoip.net\",\n        \"8684@00310.impulsevoip.net\",\n        \"8685@00310.impulsevoip.net\",\n        \"8686@00310.impulsevoip.net\",\n        \"8687@00310.impulsevoip.net\",\n        \"8688@00310.impulsevoip.net\",\n        \"8689@00310.impulsevoip.net\",\n        \"8690@00310.impulsevoip.net\",\n        \"8691@00310.impulsevoip.net\",\n        \"8692@00310.impulsevoip.net\",\n        \"8693@00310.impulsevoip.net\",\n        \"8694@00310.impulsevoip.net\",\n        \"8695@00310.impulsevoip.net\",\n        \"8696@00310.impulsevoip.net\",\n        \"8697@00310.impulsevoip.net\",\n        \"8698@00310.impulsevoip.net\",\n        \"8699@00310.impulsevoip.net\",\n        \"8700@00310.impulsevoip.net\",\n        \"8701@00310.impulsevoip.net\",\n        \"8702@00310.impulsevoip.net\",\n        \"8703@00310.impulsevoip.net\",\n        \"8704@00310.impulsevoip.net\",\n        \"8705@00310.impulsevoip.net\",\n        \"8706@00310.impulsevoip.net\",\n        \"8707@00310.impulsevoip.net\",\n        \"8708@00310.impulsevoip.net\",\n        \"8709@00310.impulsevoip.net\",\n        \"8710@00310.impulsevoip.net\",\n        \"8711@00310.impulsevoip.net\",\n        \"8712@00310.impulsevoip.net\",\n        \"8713@00310.impulsevoip.net\",\n        \"8714@00310.impulsevoip.net\",\n        \"8715@00310.impulsevoip.net\",\n        \"8716@00310.impulsevoip.net\",\n        \"8717@00310.impulsevoip.net\",\n        \"8718@00310.impulsevoip.net\",\n        \"8719@00310.impulsevoip.net\",\n        \"8720@00310.impulsevoip.net\",\n        \"8721@00310.impulsevoip.net\",\n        \"8722@00310.impulsevoip.net\",\n        \"8723@00310.impulsevoip.net\",\n        \"8724@00310.impulsevoip.net\",\n        \"8725@00310.impulsevoip.net\",\n        \"8726@00310.impulsevoip.net\",\n        \"8727@00310.impulsevoip.net\",\n        \"8728@00310.impulsevoip.net\",\n        \"8729@00310.impulsevoip.net\",\n        \"8730@00310.impulsevoip.net\",\n        \"8731@00310.impulsevoip.net\",\n        \"8732@00310.impulsevoip.net\",\n        \"8733@00310.impulsevoip.net\",\n        \"8734@00310.impulsevoip.net\",\n        \"8735@00310.impulsevoip.net\",\n        \"8736@00310.impulsevoip.net\",\n        \"8737@00310.impulsevoip.net\",\n        \"8738@00310.impulsevoip.net\",\n        \"8739@00310.impulsevoip.net\",\n        \"8740@00310.impulsevoip.net\",\n        \"8741@00310.impulsevoip.net\",\n        \"8742@00310.impulsevoip.net\",\n        \"8743@00310.impulsevoip.net\",\n        \"8744@00310.impulsevoip.net\",\n        \"8745@00310.impulsevoip.net\",\n        \"8746@00310.impulsevoip.net\",\n        \"8747@00310.impulsevoip.net\",\n        \"8748@00310.impulsevoip.net\",\n        \"8749@00310.impulsevoip.net\",\n        \"8750@00310.impulsevoip.net\",\n        \"8751@00310.impulsevoip.net\",\n        \"8752@00310.impulsevoip.net\",\n        \"8753@00310.impulsevoip.net\",\n        \"8754@00310.impulsevoip.net\",\n        \"8755@00310.impulsevoip.net\",\n        \"8756@00310.impulsevoip.net\",\n        \"8757@00310.impulsevoip.net\",\n        \"8758@00310.impulsevoip.net\",\n        \"8759@00310.impulsevoip.net\",\n        \"8760@00310.impulsevoip.net\",\n        \"8761@00310.impulsevoip.net\",\n        \"8762@00310.impulsevoip.net\",\n        \"8763@00310.impulsevoip.net\",\n        \"8764@00310.impulsevoip.net\",\n        \"8765@00310.impulsevoip.net\",\n        \"8766@00310.impulsevoip.net\",\n        \"8767@00310.impulsevoip.net\",\n        \"8768@00310.impulsevoip.net\",\n        \"8769@00310.impulsevoip.net\",\n        \"8770@00310.impulsevoip.net\",\n        \"8771@00310.impulsevoip.net\",\n        \"8772@00310.impulsevoip.net\",\n        \"8773@00310.impulsevoip.net\",\n        \"8774@00310.impulsevoip.net\",\n        \"8775@00310.impulsevoip.net\",\n        \"8776@00310.impulsevoip.net\",\n        \"8777@00310.impulsevoip.net\",\n        \"8778@00310.impulsevoip.net\",\n        \"8779@00310.impulsevoip.net\",\n        \"8780@00310.impulsevoip.net\",\n        \"8781@00310.impulsevoip.net\",\n        \"8782@00310.impulsevoip.net\",\n        \"8783@00310.impulsevoip.net\",\n        \"8784@00310.impulsevoip.net\",\n        \"8785@00310.impulsevoip.net\",\n        \"8786@00310.impulsevoip.net\",\n        \"8787@00310.impulsevoip.net\",\n        \"8788@00310.impulsevoip.net\",\n        \"8789@00310.impulsevoip.net\",\n        \"8790@00310.impulsevoip.net\",\n        \"8791@00310.impulsevoip.net\",\n        \"8792@00310.impulsevoip.net\",\n        \"8793@00310.impulsevoip.net\",\n        \"8794@00310.impulsevoip.net\",\n        \"8795@00310.impulsevoip.net\",\n        \"8796@00310.impulsevoip.net\",\n        \"8797@00310.impulsevoip.net\",\n        \"8798@00310.impulsevoip.net\",\n        \"8799@00310.impulsevoip.net\",\n        \"8800@00310.impulsevoip.net\",\n        \"8801@00310.impulsevoip.net\",\n        \"8802@00310.impulsevoip.net\",\n        \"8803@00310.impulsevoip.net\",\n        \"8804@00310.impulsevoip.net\",\n        \"8805@00310.impulsevoip.net\",\n        \"8806@00310.impulsevoip.net\",\n        \"8807@00310.impulsevoip.net\",\n        \"8808@00310.impulsevoip.net\",\n        \"8809@00310.impulsevoip.net\",\n        \"8810@00310.impulsevoip.net\",\n        \"8811@00310.impulsevoip.net\",\n        \"8812@00310.impulsevoip.net\",\n        \"8813@00310.impulsevoip.net\",\n        \"8814@00310.impulsevoip.net\",\n        \"8815@00310.impulsevoip.net\",\n        \"8816@00310.impulsevoip.net\",\n        \"8817@00310.impulsevoip.net\",\n        \"8818@00310.impulsevoip.net\",\n        \"8819@00310.impulsevoip.net\",\n        \"8820@00310.impulsevoip.net\",\n        \"8821@00310.impulsevoip.net\",\n        \"8822@00310.impulsevoip.net\",\n        \"8823@00310.impulsevoip.net\",\n        \"8824@00310.impulsevoip.net\",\n        \"8825@00310.impulsevoip.net\",\n        \"8826@00310.impulsevoip.net\",\n        \"8827@00310.impulsevoip.net\",\n        \"8828@00310.impulsevoip.net\",\n        \"8829@00310.impulsevoip.net\",\n        \"8830@00310.impulsevoip.net\",\n        \"8831@00310.impulsevoip.net\",\n        \"8832@00310.impulsevoip.net\",\n        \"8833@00310.impulsevoip.net\",\n        \"8834@00310.impulsevoip.net\",\n        \"8835@00310.impulsevoip.net\",\n        \"8836@00310.impulsevoip.net\",\n        \"8837@00310.impulsevoip.net\",\n        \"8838@00310.impulsevoip.net\",\n        \"8839@00310.impulsevoip.net\",\n        \"8840@00310.impulsevoip.net\",\n        \"8841@00310.impulsevoip.net\",\n        \"8842@00310.impulsevoip.net\",\n        \"8843@00310.impulsevoip.net\",\n        \"8844@00310.impulsevoip.net\",\n        \"8845@00310.impulsevoip.net\",\n        \"8846@00310.impulsevoip.net\",\n        \"8847@00310.impulsevoip.net\",\n        \"8848@00310.impulsevoip.net\",\n        \"8849@00310.impulsevoip.net\",\n        \"8850@00310.impulsevoip.net\",\n        \"8851@00310.impulsevoip.net\",\n        \"8852@00310.impulsevoip.net\",\n        \"8853@00310.impulsevoip.net\",\n        \"8854@00310.impulsevoip.net\",\n        \"8855@00310.impulsevoip.net\",\n        \"8856@00310.impulsevoip.net\",\n        \"8857@00310.impulsevoip.net\",\n        \"8858@00310.impulsevoip.net\",\n        \"8859@00310.impulsevoip.net\",\n        \"8860@00310.impulsevoip.net\",\n        \"8861@00310.impulsevoip.net\",\n        \"8862@00310.impulsevoip.net\",\n        \"8863@00310.impulsevoip.net\",\n        \"8864@00310.impulsevoip.net\",\n        \"8865@00310.impulsevoip.net\",\n        \"8866@00310.impulsevoip.net\",\n        \"8867@00310.impulsevoip.net\",\n        \"8868@00310.impulsevoip.net\",\n        \"8869@00310.impulsevoip.net\",\n        \"8870@00310.impulsevoip.net\",\n        \"8871@00310.impulsevoip.net\",\n        \"8872@00310.impulsevoip.net\",\n        \"8873@00310.impulsevoip.net\",\n        \"8874@00310.impulsevoip.net\",\n        \"8875@00310.impulsevoip.net\",\n        \"8876@00310.impulsevoip.net\",\n        \"8877@00310.impulsevoip.net\",\n        \"8878@00310.impulsevoip.net\",\n        \"8879@00310.impulsevoip.net\",\n        \"8880@00310.impulsevoip.net\",\n        \"8881@00310.impulsevoip.net\",\n        \"8882@00310.impulsevoip.net\",\n        \"8883@00310.impulsevoip.net\",\n        \"8884@00310.impulsevoip.net\",\n        \"8885@00310.impulsevoip.net\",\n        \"8886@00310.impulsevoip.net\",\n        \"8887@00310.impulsevoip.net\",\n        \"8888@00310.impulsevoip.net\",\n        \"8889@00310.impulsevoip.net\",\n        \"8890@00310.impulsevoip.net\",\n        \"8891@00310.impulsevoip.net\",\n        \"8892@00310.impulsevoip.net\",\n        \"8893@00310.impulsevoip.net\",\n        \"8894@00310.impulsevoip.net\",\n        \"8895@00310.impulsevoip.net\",\n        \"8896@00310.impulsevoip.net\",\n        \"8897@00310.impulsevoip.net\",\n        \"8898@00310.impulsevoip.net\",\n        \"8899@00310.impulsevoip.net\",\n        \"8900@00310.impulsevoip.net\",\n        \"8901@00310.impulsevoip.net\",\n        \"8902@00310.impulsevoip.net\",\n        \"8903@00310.impulsevoip.net\",\n        \"8904@00310.impulsevoip.net\",\n        \"8905@00310.impulsevoip.net\",\n        \"8906@00310.impulsevoip.net\",\n        \"8907@00310.impulsevoip.net\",\n        \"8908@00310.impulsevoip.net\",\n        \"8909@00310.impulsevoip.net\",\n        \"8910@00310.impulsevoip.net\",\n        \"7912@00310.impulsevoip.net\",\n        \"7913@00310.impulsevoip.net\",\n        \"7914@00310.impulsevoip.net\",\n        \"7915@00310.impulsevoip.net\",\n        \"7916@00310.impulsevoip.net\",\n        \"7917@00310.impulsevoip.net\",\n        \"7918@00310.impulsevoip.net\",\n        \"7919@00310.impulsevoip.net\",\n        \"7920@00310.impulsevoip.net\",\n        \"7921@00310.impulsevoip.net\",\n        \"7922@00310.impulsevoip.net\",\n        \"7923@00310.impulsevoip.net\",\n        \"7924@00310.impulsevoip.net\",\n        \"7925@00310.impulsevoip.net\",\n        \"7926@00310.impulsevoip.net\",\n        \"7927@00310.impulsevoip.net\",\n        \"7928@00310.impulsevoip.net\",\n        \"7929@00310.impulsevoip.net\",\n        \"7930@00310.impulsevoip.net\",\n        \"7931@00310.impulsevoip.net\",\n        \"7932@00310.impulsevoip.net\",\n        \"7933@00310.impulsevoip.net\",\n        \"7934@00310.impulsevoip.net\",\n        \"7935@00310.impulsevoip.net\",\n        \"7936@00310.impulsevoip.net\",\n        \"7937@00310.impulsevoip.net\",\n        \"7938@00310.impulsevoip.net\",\n        \"7939@00310.impulsevoip.net\",\n        \"7940@00310.impulsevoip.net\",\n        \"7941@00310.impulsevoip.net\",\n        \"7942@00310.impulsevoip.net\",\n        \"7943@00310.impulsevoip.net\",\n        \"7944@00310.impulsevoip.net\",\n        \"7945@00310.impulsevoip.net\",\n        \"7946@00310.impulsevoip.net\",\n        \"7947@00310.impulsevoip.net\",\n        \"7948@00310.impulsevoip.net\",\n        \"7949@00310.impulsevoip.net\",\n        \"7950@00310.impulsevoip.net\",\n        \"7951@00310.impulsevoip.net\",\n        \"7952@00310.impulsevoip.net\",\n        \"7953@00310.impulsevoip.net\",\n        \"7954@00310.impulsevoip.net\",\n        \"7955@00310.impulsevoip.net\",\n        \"7956@00310.impulsevoip.net\",\n        \"7957@00310.impulsevoip.net\",\n        \"7958@00310.impulsevoip.net\",\n        \"7959@00310.impulsevoip.net\",\n        \"7960@00310.impulsevoip.net\",\n        \"7961@00310.impulsevoip.net\",\n        \"7962@00310.impulsevoip.net\",\n        \"7963@00310.impulsevoip.net\",\n        \"7964@00310.impulsevoip.net\",\n        \"7965@00310.impulsevoip.net\",\n        \"7966@00310.impulsevoip.net\",\n        \"7967@00310.impulsevoip.net\",\n        \"7968@00310.impulsevoip.net\",\n        \"7969@00310.impulsevoip.net\",\n        \"7970@00310.impulsevoip.net\",\n        \"7971@00310.impulsevoip.net\",\n        \"7972@00310.impulsevoip.net\",\n        \"7973@00310.impulsevoip.net\",\n        \"7974@00310.impulsevoip.net\",\n        \"7975@00310.impulsevoip.net\",\n        \"7976@00310.impulsevoip.net\",\n        \"7977@00310.impulsevoip.net\",\n        \"7978@00310.impulsevoip.net\",\n        \"7979@00310.impulsevoip.net\",\n        \"7980@00310.impulsevoip.net\",\n        \"7981@00310.impulsevoip.net\",\n        \"7982@00310.impulsevoip.net\",\n        \"7983@00310.impulsevoip.net\",\n        \"7984@00310.impulsevoip.net\",\n        \"7985@00310.impulsevoip.net\",\n        \"7986@00310.impulsevoip.net\",\n        \"7987@00310.impulsevoip.net\",\n        \"7988@00310.impulsevoip.net\",\n        \"7989@00310.impulsevoip.net\",\n        \"7990@00310.impulsevoip.net\",\n        \"7991@00310.impulsevoip.net\",\n        \"7992@00310.impulsevoip.net\",\n        \"7993@00310.impulsevoip.net\",\n        \"7994@00310.impulsevoip.net\",\n        \"7995@00310.impulsevoip.net\",\n        \"7996@00310.impulsevoip.net\",\n        \"7997@00310.impulsevoip.net\",\n        \"7998@00310.impulsevoip.net\",\n        \"7999@00310.impulsevoip.net\",\n        \"8000@00310.impulsevoip.net\",\n        \"8001@00310.impulsevoip.net\",\n        \"8002@00310.impulsevoip.net\",\n        \"8003@00310.impulsevoip.net\",\n        \"8004@00310.impulsevoip.net\",\n        \"8005@00310.impulsevoip.net\",\n        \"8006@00310.impulsevoip.net\",\n        \"8007@00310.impulsevoip.net\",\n        \"8008@00310.impulsevoip.net\",\n        \"8009@00310.impulsevoip.net\",\n        \"8010@00310.impulsevoip.net\",\n        \"8011@00310.impulsevoip.net\",\n        \"8012@00310.impulsevoip.net\",\n        \"8013@00310.impulsevoip.net\",\n        \"8014@00310.impulsevoip.net\",\n        \"8015@00310.impulsevoip.net\",\n        \"8016@00310.impulsevoip.net\",\n        \"8017@00310.impulsevoip.net\",\n        \"8018@00310.impulsevoip.net\",\n        \"8019@00310.impulsevoip.net\",\n        \"8020@00310.impulsevoip.net\",\n        \"8021@00310.impulsevoip.net\",\n        \"8022@00310.impulsevoip.net\",\n        \"8023@00310.impulsevoip.net\",\n        \"8024@00310.impulsevoip.net\",\n        \"8025@00310.impulsevoip.net\",\n        \"8026@00310.impulsevoip.net\",\n        \"8027@00310.impulsevoip.net\",\n        \"8028@00310.impulsevoip.net\",\n        \"8029@00310.impulsevoip.net\",\n        \"8030@00310.impulsevoip.net\",\n        \"8031@00310.impulsevoip.net\",\n        \"8032@00310.impulsevoip.net\",\n        \"8033@00310.impulsevoip.net\",\n        \"8034@00310.impulsevoip.net\",\n        \"8035@00310.impulsevoip.net\",\n        \"8036@00310.impulsevoip.net\",\n        \"8037@00310.impulsevoip.net\",\n        \"8038@00310.impulsevoip.net\",\n        \"8039@00310.impulsevoip.net\",\n        \"8040@00310.impulsevoip.net\",\n        \"8041@00310.impulsevoip.net\",\n        \"8042@00310.impulsevoip.net\",\n        \"8043@00310.impulsevoip.net\",\n        \"8044@00310.impulsevoip.net\",\n        \"8045@00310.impulsevoip.net\",\n        \"8046@00310.impulsevoip.net\",\n        \"8047@00310.impulsevoip.net\",\n        \"8048@00310.impulsevoip.net\",\n        \"8049@00310.impulsevoip.net\",\n        \"8050@00310.impulsevoip.net\",\n        \"8051@00310.impulsevoip.net\",\n        \"8052@00310.impulsevoip.net\",\n        \"8053@00310.impulsevoip.net\",\n        \"8054@00310.impulsevoip.net\",\n        \"8055@00310.impulsevoip.net\",\n        \"8056@00310.impulsevoip.net\",\n        \"8057@00310.impulsevoip.net\",\n        \"8058@00310.impulsevoip.net\",\n        \"8059@00310.impulsevoip.net\",\n        \"8060@00310.impulsevoip.net\",\n        \"8061@00310.impulsevoip.net\",\n        \"8062@00310.impulsevoip.net\",\n        \"8063@00310.impulsevoip.net\",\n        \"8064@00310.impulsevoip.net\",\n        \"8065@00310.impulsevoip.net\",\n        \"8066@00310.impulsevoip.net\",\n        \"8067@00310.impulsevoip.net\",\n        \"8068@00310.impulsevoip.net\",\n        \"8069@00310.impulsevoip.net\",\n        \"8070@00310.impulsevoip.net\",\n        \"8071@00310.impulsevoip.net\",\n        \"8072@00310.impulsevoip.net\",\n        \"8073@00310.impulsevoip.net\",\n        \"8074@00310.impulsevoip.net\",\n        \"8075@00310.impulsevoip.net\",\n        \"8076@00310.impulsevoip.net\",\n        \"8077@00310.impulsevoip.net\",\n        \"8078@00310.impulsevoip.net\",\n        \"8079@00310.impulsevoip.net\",\n        \"8080@00310.impulsevoip.net\",\n        \"8081@00310.impulsevoip.net\",\n        \"8082@00310.impulsevoip.net\",\n        \"8083@00310.impulsevoip.net\",\n        \"8084@00310.impulsevoip.net\",\n        \"8085@00310.impulsevoip.net\",\n        \"8086@00310.impulsevoip.net\",\n        \"8087@00310.impulsevoip.net\",\n        \"8088@00310.impulsevoip.net\",\n        \"8089@00310.impulsevoip.net\",\n        \"8090@00310.impulsevoip.net\",\n        \"8091@00310.impulsevoip.net\",\n        \"8092@00310.impulsevoip.net\",\n        \"8093@00310.impulsevoip.net\",\n        \"8094@00310.impulsevoip.net\",\n        \"8095@00310.impulsevoip.net\",\n        \"8096@00310.impulsevoip.net\",\n        \"8097@00310.impulsevoip.net\",\n        \"8098@00310.impulsevoip.net\",\n        \"8099@00310.impulsevoip.net\",\n        \"8100@00310.impulsevoip.net\",\n        \"8101@00310.impulsevoip.net\",\n        \"8102@00310.impulsevoip.net\",\n        \"8103@00310.impulsevoip.net\",\n        \"8104@00310.impulsevoip.net\",\n        \"8105@00310.impulsevoip.net\",\n        \"8106@00310.impulsevoip.net\",\n        \"8107@00310.impulsevoip.net\",\n        \"8108@00310.impulsevoip.net\",\n        \"8109@00310.impulsevoip.net\",\n        \"8110@00310.impulsevoip.net\",\n        \"8111@00310.impulsevoip.net\",\n        \"8112@00310.impulsevoip.net\",\n        \"8113@00310.impulsevoip.net\",\n        \"8114@00310.impulsevoip.net\",\n        \"8115@00310.impulsevoip.net\",\n        \"8116@00310.impulsevoip.net\",\n        \"8117@00310.impulsevoip.net\",\n        \"8118@00310.impulsevoip.net\",\n        \"8119@00310.impulsevoip.net\",\n        \"8120@00310.impulsevoip.net\",\n        \"8121@00310.impulsevoip.net\",\n        \"8122@00310.impulsevoip.net\",\n        \"8123@00310.impulsevoip.net\",\n        \"8124@00310.impulsevoip.net\",\n        \"8125@00310.impulsevoip.net\",\n        \"8126@00310.impulsevoip.net\",\n        \"8127@00310.impulsevoip.net\",\n        \"8128@00310.impulsevoip.net\",\n        \"8129@00310.impulsevoip.net\",\n        \"8130@00310.impulsevoip.net\",\n        \"8131@00310.impulsevoip.net\",\n        \"8132@00310.impulsevoip.net\",\n        \"8133@00310.impulsevoip.net\",\n        \"8134@00310.impulsevoip.net\",\n        \"8135@00310.impulsevoip.net\",\n        \"8136@00310.impulsevoip.net\",\n        \"8137@00310.impulsevoip.net\",\n        \"8138@00310.impulsevoip.net\",\n        \"8139@00310.impulsevoip.net\",\n        \"8140@00310.impulsevoip.net\",\n        \"8141@00310.impulsevoip.net\",\n        \"8142@00310.impulsevoip.net\",\n        \"8143@00310.impulsevoip.net\",\n        \"8144@00310.impulsevoip.net\",\n        \"8145@00310.impulsevoip.net\",\n        \"8146@00310.impulsevoip.net\",\n        \"8147@00310.impulsevoip.net\",\n        \"8148@00310.impulsevoip.net\",\n        \"8149@00310.impulsevoip.net\",\n        \"8150@00310.impulsevoip.net\",\n        \"8151@00310.impulsevoip.net\",\n        \"8152@00310.impulsevoip.net\",\n        \"8153@00310.impulsevoip.net\",\n        \"8154@00310.impulsevoip.net\",\n        \"8155@00310.impulsevoip.net\",\n        \"8156@00310.impulsevoip.net\",\n        \"8157@00310.impulsevoip.net\",\n        \"8158@00310.impulsevoip.net\",\n        \"8159@00310.impulsevoip.net\",\n        \"8160@00310.impulsevoip.net\",\n        \"8161@00310.impulsevoip.net\",\n        \"8162@00310.impulsevoip.net\",\n        \"8163@00310.impulsevoip.net\",\n        \"8164@00310.impulsevoip.net\",\n        \"8165@00310.impulsevoip.net\",\n        \"8166@00310.impulsevoip.net\",\n        \"8167@00310.impulsevoip.net\",\n        \"8912@00310.impulsevoip.net\",\n        \"8913@00310.impulsevoip.net\",\n        \"8914@00310.impulsevoip.net\",\n        \"8915@00310.impulsevoip.net\",\n        \"8916@00310.impulsevoip.net\",\n        \"8917@00310.impulsevoip.net\",\n        \"8918@00310.impulsevoip.net\",\n        \"8919@00310.impulsevoip.net\",\n        \"8920@00310.impulsevoip.net\",\n        \"8921@00310.impulsevoip.net\",\n        \"8922@00310.impulsevoip.net\",\n        \"8923@00310.impulsevoip.net\",\n        \"8924@00310.impulsevoip.net\",\n        \"8925@00310.impulsevoip.net\",\n        \"8926@00310.impulsevoip.net\",\n        \"8927@00310.impulsevoip.net\",\n        \"8928@00310.impulsevoip.net\",\n        \"8929@00310.impulsevoip.net\",\n        \"8930@00310.impulsevoip.net\",\n        \"8931@00310.impulsevoip.net\",\n        \"8932@00310.impulsevoip.net\",\n        \"8933@00310.impulsevoip.net\",\n        \"8934@00310.impulsevoip.net\",\n        \"8935@00310.impulsevoip.net\",\n        \"8936@00310.impulsevoip.net\",\n        \"8937@00310.impulsevoip.net\",\n        \"8938@00310.impulsevoip.net\",\n        \"8939@00310.impulsevoip.net\",\n        \"8940@00310.impulsevoip.net\",\n        \"8941@00310.impulsevoip.net\",\n        \"8942@00310.impulsevoip.net\",\n        \"8943@00310.impulsevoip.net\",\n        \"8944@00310.impulsevoip.net\",\n        \"8945@00310.impulsevoip.net\",\n        \"8946@00310.impulsevoip.net\",\n        \"8947@00310.impulsevoip.net\",\n        \"8948@00310.impulsevoip.net\",\n        \"8949@00310.impulsevoip.net\",\n        \"8950@00310.impulsevoip.net\",\n        \"8951@00310.impulsevoip.net\",\n        \"8952@00310.impulsevoip.net\",\n        \"8953@00310.impulsevoip.net\",\n        \"8954@00310.impulsevoip.net\",\n        \"8955@00310.impulsevoip.net\",\n        \"8956@00310.impulsevoip.net\",\n        \"8957@00310.impulsevoip.net\",\n        \"8958@00310.impulsevoip.net\",\n        \"8959@00310.impulsevoip.net\",\n        \"8960@00310.impulsevoip.net\",\n        \"8961@00310.impulsevoip.net\",\n        \"8962@00310.impulsevoip.net\",\n        \"8963@00310.impulsevoip.net\",\n        \"8964@00310.impulsevoip.net\",\n        \"8965@00310.impulsevoip.net\",\n        \"8966@00310.impulsevoip.net\",\n        \"8967@00310.impulsevoip.net\",\n        \"8968@00310.impulsevoip.net\",\n        \"8969@00310.impulsevoip.net\",\n        \"8970@00310.impulsevoip.net\",\n        \"8971@00310.impulsevoip.net\",\n        \"8972@00310.impulsevoip.net\",\n        \"8973@00310.impulsevoip.net\",\n        \"8974@00310.impulsevoip.net\",\n        \"8975@00310.impulsevoip.net\",\n        \"8976@00310.impulsevoip.net\",\n        \"8977@00310.impulsevoip.net\",\n        \"8978@00310.impulsevoip.net\",\n        \"8979@00310.impulsevoip.net\",\n        \"8980@00310.impulsevoip.net\",\n        \"8981@00310.impulsevoip.net\",\n        \"8982@00310.impulsevoip.net\",\n        \"8983@00310.impulsevoip.net\",\n        \"8984@00310.impulsevoip.net\",\n        \"8985@00310.impulsevoip.net\",\n        \"8986@00310.impulsevoip.net\",\n        \"8987@00310.impulsevoip.net\",\n        \"8988@00310.impulsevoip.net\",\n        \"8989@00310.impulsevoip.net\",\n        \"8990@00310.impulsevoip.net\",\n        \"8991@00310.impulsevoip.net\",\n        \"8992@00310.impulsevoip.net\",\n        \"8993@00310.impulsevoip.net\",\n        \"8994@00310.impulsevoip.net\",\n        \"8995@00310.impulsevoip.net\",\n        \"8996@00310.impulsevoip.net\",\n        \"8997@00310.impulsevoip.net\",\n        \"8998@00310.impulsevoip.net\",\n        \"8999@00310.impulsevoip.net\",\n        \"9001@00310.impulsevoip.net\",\n        \"9002@00310.impulsevoip.net\",\n        \"9003@00310.impulsevoip.net\",\n        \"9004@00310.impulsevoip.net\",\n        \"9005@00310.impulsevoip.net\",\n        \"9006@00310.impulsevoip.net\",\n        \"9007@00310.impulsevoip.net\",\n        \"9008@00310.impulsevoip.net\",\n        \"9009@00310.impulsevoip.net\",\n        \"9010@00310.impulsevoip.net\",\n        \"9011@00310.impulsevoip.net\",\n        \"9012@00310.impulsevoip.net\",\n        \"9013@00310.impulsevoip.net\",\n        \"9014@00310.impulsevoip.net\",\n        \"9015@00310.impulsevoip.net\",\n        \"9016@00310.impulsevoip.net\",\n        \"9017@00310.impulsevoip.net\",\n        \"9018@00310.impulsevoip.net\",\n        \"9019@00310.impulsevoip.net\",\n        \"9020@00310.impulsevoip.net\",\n        \"9021@00310.impulsevoip.net\",\n        \"9022@00310.impulsevoip.net\",\n        \"9023@00310.impulsevoip.net\",\n        \"9024@00310.impulsevoip.net\",\n        \"9025@00310.impulsevoip.net\",\n        \"9026@00310.impulsevoip.net\",\n        \"9027@00310.impulsevoip.net\",\n        \"9028@00310.impulsevoip.net\",\n        \"9029@00310.impulsevoip.net\",\n        \"9030@00310.impulsevoip.net\",\n        \"9031@00310.impulsevoip.net\",\n        \"9032@00310.impulsevoip.net\",\n        \"9033@00310.impulsevoip.net\",\n        \"9034@00310.impulsevoip.net\",\n        \"9035@00310.impulsevoip.net\",\n        \"9036@00310.impulsevoip.net\",\n        \"9037@00310.impulsevoip.net\",\n        \"9038@00310.impulsevoip.net\",\n        \"9039@00310.impulsevoip.net\",\n        \"9040@00310.impulsevoip.net\",\n        \"9041@00310.impulsevoip.net\",\n        \"9042@00310.impulsevoip.net\",\n        \"9043@00310.impulsevoip.net\",\n        \"9044@00310.impulsevoip.net\",\n        \"9045@00310.impulsevoip.net\",\n        \"9046@00310.impulsevoip.net\",\n        \"9047@00310.impulsevoip.net\",\n        \"9048@00310.impulsevoip.net\",\n        \"9049@00310.impulsevoip.net\",\n        \"9050@00310.impulsevoip.net\",\n        \"9051@00310.impulsevoip.net\",\n        \"9052@00310.impulsevoip.net\",\n        \"9053@00310.impulsevoip.net\",\n        \"9054@00310.impulsevoip.net\",\n        \"9055@00310.impulsevoip.net\",\n        \"9056@00310.impulsevoip.net\",\n        \"9057@00310.impulsevoip.net\",\n        \"9058@00310.impulsevoip.net\",\n        \"9059@00310.impulsevoip.net\",\n        \"9060@00310.impulsevoip.net\",\n        \"9061@00310.impulsevoip.net\",\n        \"9062@00310.impulsevoip.net\",\n        \"9063@00310.impulsevoip.net\",\n        \"9064@00310.impulsevoip.net\",\n        \"9065@00310.impulsevoip.net\",\n        \"9066@00310.impulsevoip.net\",\n        \"9067@00310.impulsevoip.net\",\n        \"9068@00310.impulsevoip.net\",\n        \"9069@00310.impulsevoip.net\",\n        \"9070@00310.impulsevoip.net\",\n        \"9071@00310.impulsevoip.net\",\n        \"9072@00310.impulsevoip.net\",\n        \"9073@00310.impulsevoip.net\",\n        \"9074@00310.impulsevoip.net\",\n        \"9075@00310.impulsevoip.net\",\n        \"9076@00310.impulsevoip.net\",\n        \"9077@00310.impulsevoip.net\",\n        \"9078@00310.impulsevoip.net\",\n        \"9079@00310.impulsevoip.net\",\n        \"9080@00310.impulsevoip.net\",\n        \"9081@00310.impulsevoip.net\",\n        \"9082@00310.impulsevoip.net\",\n        \"9083@00310.impulsevoip.net\",\n        \"9084@00310.impulsevoip.net\",\n        \"9085@00310.impulsevoip.net\",\n        \"9086@00310.impulsevoip.net\",\n        \"9087@00310.impulsevoip.net\",\n        \"9088@00310.impulsevoip.net\",\n        \"9089@00310.impulsevoip.net\",\n        \"9090@00310.impulsevoip.net\",\n        \"9091@00310.impulsevoip.net\",\n        \"9092@00310.impulsevoip.net\",\n        \"9093@00310.impulsevoip.net\",\n        \"9094@00310.impulsevoip.net\",\n        \"9095@00310.impulsevoip.net\",\n        \"9096@00310.impulsevoip.net\",\n        \"9097@00310.impulsevoip.net\",\n        \"9098@00310.impulsevoip.net\",\n        \"9099@00310.impulsevoip.net\",\n        \"9100@00310.impulsevoip.net\",\n        \"9101@00310.impulsevoip.net\",\n        \"9102@00310.impulsevoip.net\",\n        \"9103@00310.impulsevoip.net\",\n        \"9104@00310.impulsevoip.net\",\n        \"9105@00310.impulsevoip.net\",\n        \"9106@00310.impulsevoip.net\",\n        \"9107@00310.impulsevoip.net\",\n        \"9108@00310.impulsevoip.net\",\n        \"9109@00310.impulsevoip.net\",\n        \"9110@00310.impulsevoip.net\",\n        \"9111@00310.impulsevoip.net\",\n        \"9112@00310.impulsevoip.net\",\n        \"9113@00310.impulsevoip.net\",\n        \"9114@00310.impulsevoip.net\",\n        \"9115@00310.impulsevoip.net\",\n        \"9116@00310.impulsevoip.net\",\n        \"9117@00310.impulsevoip.net\",\n        \"9118@00310.impulsevoip.net\",\n        \"9119@00310.impulsevoip.net\",\n        \"9120@00310.impulsevoip.net\",\n        \"9121@00310.impulsevoip.net\",\n        \"9122@00310.impulsevoip.net\",\n        \"9123@00310.impulsevoip.net\",\n        \"9124@00310.impulsevoip.net\",\n        \"9125@00310.impulsevoip.net\",\n        \"9126@00310.impulsevoip.net\",\n        \"9127@00310.impulsevoip.net\",\n        \"9128@00310.impulsevoip.net\",\n        \"9129@00310.impulsevoip.net\",\n        \"9130@00310.impulsevoip.net\",\n        \"9131@00310.impulsevoip.net\",\n        \"9132@00310.impulsevoip.net\",\n        \"9133@00310.impulsevoip.net\",\n        \"9134@00310.impulsevoip.net\",\n        \"9135@00310.impulsevoip.net\",\n        \"9136@00310.impulsevoip.net\",\n        \"9137@00310.impulsevoip.net\",\n        \"9138@00310.impulsevoip.net\",\n        \"9139@00310.impulsevoip.net\",\n        \"9140@00310.impulsevoip.net\",\n        \"9141@00310.impulsevoip.net\",\n        \"9142@00310.impulsevoip.net\",\n        \"9143@00310.impulsevoip.net\",\n        \"9144@00310.impulsevoip.net\",\n        \"9145@00310.impulsevoip.net\",\n        \"9146@00310.impulsevoip.net\",\n        \"9147@00310.impulsevoip.net\",\n        \"9148@00310.impulsevoip.net\",\n        \"9149@00310.impulsevoip.net\",\n        \"9150@00310.impulsevoip.net\",\n        \"9151@00310.impulsevoip.net\",\n        \"9152@00310.impulsevoip.net\",\n        \"9153@00310.impulsevoip.net\",\n        \"9154@00310.impulsevoip.net\",\n        \"9155@00310.impulsevoip.net\",\n        \"9156@00310.impulsevoip.net\",\n        \"9157@00310.impulsevoip.net\",\n        \"9158@00310.impulsevoip.net\",\n        \"9159@00310.impulsevoip.net\",\n        \"9160@00310.impulsevoip.net\",\n        \"9161@00310.impulsevoip.net\",\n        \"9162@00310.impulsevoip.net\",\n        \"9163@00310.impulsevoip.net\",\n        \"9164@00310.impulsevoip.net\",\n        \"9165@00310.impulsevoip.net\",\n        \"9166@00310.impulsevoip.net\",\n        \"9167@00310.impulsevoip.net\",\n        \"9424@00310.impulsevoip.net\",\n        \"9425@00310.impulsevoip.net\",\n        \"9426@00310.impulsevoip.net\",\n        \"9427@00310.impulsevoip.net\",\n        \"9428@00310.impulsevoip.net\",\n        \"9429@00310.impulsevoip.net\",\n        \"9430@00310.impulsevoip.net\",\n        \"9431@00310.impulsevoip.net\",\n        \"9432@00310.impulsevoip.net\",\n        \"9433@00310.impulsevoip.net\",\n        \"9434@00310.impulsevoip.net\",\n        \"9435@00310.impulsevoip.net\",\n        \"9436@00310.impulsevoip.net\",\n        \"9437@00310.impulsevoip.net\",\n        \"9438@00310.impulsevoip.net\",\n        \"9439@00310.impulsevoip.net\",\n        \"9440@00310.impulsevoip.net\",\n        \"9441@00310.impulsevoip.net\",\n        \"9442@00310.impulsevoip.net\",\n        \"9443@00310.impulsevoip.net\",\n        \"9444@00310.impulsevoip.net\",\n        \"9445@00310.impulsevoip.net\",\n        \"9446@00310.impulsevoip.net\",\n        \"9447@00310.impulsevoip.net\",\n        \"9448@00310.impulsevoip.net\",\n        \"9449@00310.impulsevoip.net\",\n        \"9450@00310.impulsevoip.net\",\n        \"9451@00310.impulsevoip.net\",\n        \"9452@00310.impulsevoip.net\",\n        \"9453@00310.impulsevoip.net\",\n        \"9454@00310.impulsevoip.net\",\n        \"9455@00310.impulsevoip.net\",\n        \"9456@00310.impulsevoip.net\",\n        \"9457@00310.impulsevoip.net\",\n        \"9458@00310.impulsevoip.net\",\n        \"9459@00310.impulsevoip.net\",\n        \"9460@00310.impulsevoip.net\",\n        \"9461@00310.impulsevoip.net\",\n        \"9462@00310.impulsevoip.net\",\n        \"9463@00310.impulsevoip.net\",\n        \"9464@00310.impulsevoip.net\",\n        \"9465@00310.impulsevoip.net\",\n        \"9466@00310.impulsevoip.net\",\n        \"9467@00310.impulsevoip.net\",\n        \"9468@00310.impulsevoip.net\",\n        \"9469@00310.impulsevoip.net\",\n        \"9470@00310.impulsevoip.net\",\n        \"9471@00310.impulsevoip.net\",\n        \"9472@00310.impulsevoip.net\",\n        \"9473@00310.impulsevoip.net\",\n        \"9474@00310.impulsevoip.net\",\n        \"9475@00310.impulsevoip.net\",\n        \"9476@00310.impulsevoip.net\",\n        \"9477@00310.impulsevoip.net\",\n        \"9478@00310.impulsevoip.net\",\n        \"9479@00310.impulsevoip.net\",\n        \"9480@00310.impulsevoip.net\",\n        \"9481@00310.impulsevoip.net\",\n        \"9482@00310.impulsevoip.net\",\n        \"9483@00310.impulsevoip.net\",\n        \"9484@00310.impulsevoip.net\",\n        \"9485@00310.impulsevoip.net\",\n        \"9486@00310.impulsevoip.net\",\n        \"9487@00310.impulsevoip.net\",\n        \"9488@00310.impulsevoip.net\",\n        \"9489@00310.impulsevoip.net\",\n        \"9490@00310.impulsevoip.net\",\n        \"9491@00310.impulsevoip.net\",\n        \"9492@00310.impulsevoip.net\",\n        \"9493@00310.impulsevoip.net\",\n        \"9494@00310.impulsevoip.net\",\n        \"9495@00310.impulsevoip.net\",\n        \"9496@00310.impulsevoip.net\",\n        \"9497@00310.impulsevoip.net\",\n        \"9498@00310.impulsevoip.net\",\n        \"9499@00310.impulsevoip.net\",\n        \"9500@00310.impulsevoip.net\",\n        \"9501@00310.impulsevoip.net\",\n        \"9502@00310.impulsevoip.net\",\n        \"9503@00310.impulsevoip.net\",\n        \"9504@00310.impulsevoip.net\",\n        \"9505@00310.impulsevoip.net\",\n        \"9506@00310.impulsevoip.net\",\n        \"9507@00310.impulsevoip.net\",\n        \"9508@00310.impulsevoip.net\",\n        \"9509@00310.impulsevoip.net\",\n        \"9510@00310.impulsevoip.net\",\n        \"9511@00310.impulsevoip.net\",\n        \"9512@00310.impulsevoip.net\",\n        \"9513@00310.impulsevoip.net\",\n        \"9514@00310.impulsevoip.net\",\n        \"9515@00310.impulsevoip.net\",\n        \"9516@00310.impulsevoip.net\",\n        \"9517@00310.impulsevoip.net\",\n        \"9518@00310.impulsevoip.net\",\n        \"9519@00310.impulsevoip.net\",\n        \"9520@00310.impulsevoip.net\",\n        \"9521@00310.impulsevoip.net\",\n        \"9522@00310.impulsevoip.net\",\n        \"9523@00310.impulsevoip.net\",\n        \"9524@00310.impulsevoip.net\",\n        \"9525@00310.impulsevoip.net\",\n        \"9526@00310.impulsevoip.net\",\n        \"9527@00310.impulsevoip.net\",\n        \"9528@00310.impulsevoip.net\",\n        \"9529@00310.impulsevoip.net\",\n        \"9530@00310.impulsevoip.net\",\n        \"9531@00310.impulsevoip.net\",\n        \"9532@00310.impulsevoip.net\",\n        \"9533@00310.impulsevoip.net\",\n        \"9534@00310.impulsevoip.net\",\n        \"9535@00310.impulsevoip.net\",\n        \"9536@00310.impulsevoip.net\",\n        \"9537@00310.impulsevoip.net\",\n        \"9538@00310.impulsevoip.net\",\n        \"9539@00310.impulsevoip.net\",\n        \"9540@00310.impulsevoip.net\",\n        \"9541@00310.impulsevoip.net\",\n        \"9542@00310.impulsevoip.net\",\n        \"9543@00310.impulsevoip.net\",\n        \"9544@00310.impulsevoip.net\",\n        \"9545@00310.impulsevoip.net\",\n        \"9546@00310.impulsevoip.net\",\n        \"9547@00310.impulsevoip.net\",\n        \"9548@00310.impulsevoip.net\",\n        \"9549@00310.impulsevoip.net\",\n        \"9550@00310.impulsevoip.net\",\n        \"9551@00310.impulsevoip.net\",\n        \"9552@00310.impulsevoip.net\",\n        \"9553@00310.impulsevoip.net\",\n        \"9554@00310.impulsevoip.net\",\n        \"9555@00310.impulsevoip.net\",\n        \"9556@00310.impulsevoip.net\",\n        \"9557@00310.impulsevoip.net\",\n        \"9558@00310.impulsevoip.net\",\n        \"9559@00310.impulsevoip.net\",\n        \"9560@00310.impulsevoip.net\",\n        \"9561@00310.impulsevoip.net\",\n        \"9562@00310.impulsevoip.net\",\n        \"9563@00310.impulsevoip.net\",\n        \"9564@00310.impulsevoip.net\",\n        \"9565@00310.impulsevoip.net\",\n        \"9566@00310.impulsevoip.net\",\n        \"9567@00310.impulsevoip.net\",\n        \"9568@00310.impulsevoip.net\",\n        \"9569@00310.impulsevoip.net\",\n        \"9570@00310.impulsevoip.net\",\n        \"9571@00310.impulsevoip.net\",\n        \"9572@00310.impulsevoip.net\",\n        \"9573@00310.impulsevoip.net\",\n        \"9574@00310.impulsevoip.net\",\n        \"9575@00310.impulsevoip.net\",\n        \"9576@00310.impulsevoip.net\",\n        \"9577@00310.impulsevoip.net\",\n        \"9578@00310.impulsevoip.net\",\n        \"9579@00310.impulsevoip.net\",\n        \"9580@00310.impulsevoip.net\",\n        \"9581@00310.impulsevoip.net\",\n        \"9582@00310.impulsevoip.net\",\n        \"9583@00310.impulsevoip.net\",\n        \"9584@00310.impulsevoip.net\",\n        \"9585@00310.impulsevoip.net\",\n        \"9586@00310.impulsevoip.net\",\n        \"9587@00310.impulsevoip.net\",\n        \"9588@00310.impulsevoip.net\",\n        \"9589@00310.impulsevoip.net\",\n        \"9590@00310.impulsevoip.net\",\n        \"9591@00310.impulsevoip.net\",\n        \"9592@00310.impulsevoip.net\",\n        \"9593@00310.impulsevoip.net\",\n        \"9594@00310.impulsevoip.net\",\n        \"9595@00310.impulsevoip.net\",\n        \"9596@00310.impulsevoip.net\",\n        \"9597@00310.impulsevoip.net\",\n        \"9598@00310.impulsevoip.net\",\n        \"9599@00310.impulsevoip.net\",\n        \"9600@00310.impulsevoip.net\",\n        \"9601@00310.impulsevoip.net\",\n        \"9602@00310.impulsevoip.net\",\n        \"9603@00310.impulsevoip.net\",\n        \"9604@00310.impulsevoip.net\",\n        \"9605@00310.impulsevoip.net\",\n        \"9606@00310.impulsevoip.net\",\n        \"9607@00310.impulsevoip.net\",\n        \"9608@00310.impulsevoip.net\",\n        \"9609@00310.impulsevoip.net\",\n        \"9610@00310.impulsevoip.net\",\n        \"9611@00310.impulsevoip.net\",\n        \"9612@00310.impulsevoip.net\",\n        \"9613@00310.impulsevoip.net\",\n        \"9614@00310.impulsevoip.net\",\n        \"9615@00310.impulsevoip.net\",\n        \"9616@00310.impulsevoip.net\",\n        \"9617@00310.impulsevoip.net\",\n        \"9618@00310.impulsevoip.net\",\n        \"9619@00310.impulsevoip.net\",\n        \"9620@00310.impulsevoip.net\",\n        \"9621@00310.impulsevoip.net\",\n        \"9622@00310.impulsevoip.net\",\n        \"9623@00310.impulsevoip.net\",\n        \"9624@00310.impulsevoip.net\",\n        \"9625@00310.impulsevoip.net\",\n        \"9626@00310.impulsevoip.net\",\n        \"9627@00310.impulsevoip.net\",\n        \"9628@00310.impulsevoip.net\",\n        \"9629@00310.impulsevoip.net\",\n        \"9630@00310.impulsevoip.net\",\n        \"9631@00310.impulsevoip.net\",\n        \"9632@00310.impulsevoip.net\",\n        \"9633@00310.impulsevoip.net\",\n        \"9634@00310.impulsevoip.net\",\n        \"9635@00310.impulsevoip.net\",\n        \"9636@00310.impulsevoip.net\",\n        \"9637@00310.impulsevoip.net\",\n        \"9638@00310.impulsevoip.net\",\n        \"9639@00310.impulsevoip.net\",\n        \"9640@00310.impulsevoip.net\",\n        \"9641@00310.impulsevoip.net\",\n        \"9642@00310.impulsevoip.net\",\n        \"9643@00310.impulsevoip.net\",\n        \"9644@00310.impulsevoip.net\",\n        \"9645@00310.impulsevoip.net\",\n        \"9646@00310.impulsevoip.net\",\n        \"9647@00310.impulsevoip.net\",\n        \"9648@00310.impulsevoip.net\",\n        \"9649@00310.impulsevoip.net\",\n        \"9650@00310.impulsevoip.net\",\n        \"9651@00310.impulsevoip.net\",\n        \"9652@00310.impulsevoip.net\",\n        \"9653@00310.impulsevoip.net\",\n        \"9654@00310.impulsevoip.net\",\n        \"9655@00310.impulsevoip.net\",\n        \"9656@00310.impulsevoip.net\",\n        \"9657@00310.impulsevoip.net\",\n        \"9658@00310.impulsevoip.net\",\n        \"9659@00310.impulsevoip.net\",\n        \"9660@00310.impulsevoip.net\",\n        \"9661@00310.impulsevoip.net\",\n        \"9662@00310.impulsevoip.net\",\n        \"9663@00310.impulsevoip.net\",\n        \"9664@00310.impulsevoip.net\",\n        \"9665@00310.impulsevoip.net\",\n        \"9666@00310.impulsevoip.net\",\n        \"9667@00310.impulsevoip.net\",\n        \"9668@00310.impulsevoip.net\",\n        \"9669@00310.impulsevoip.net\",\n        \"9670@00310.impulsevoip.net\",\n        \"9671@00310.impulsevoip.net\",\n        \"9672@00310.impulsevoip.net\",\n        \"9673@00310.impulsevoip.net\",\n        \"9674@00310.impulsevoip.net\",\n        \"9675@00310.impulsevoip.net\",\n        \"9676@00310.impulsevoip.net\",\n        \"9677@00310.impulsevoip.net\",\n        \"9678@00310.impulsevoip.net\",\n        \"9679@00310.impulsevoip.net\",\n        \"9168@00310.impulsevoip.net\",\n        \"9169@00310.impulsevoip.net\",\n        \"9170@00310.impulsevoip.net\",\n        \"9171@00310.impulsevoip.net\",\n        \"9172@00310.impulsevoip.net\",\n        \"9173@00310.impulsevoip.net\",\n        \"9174@00310.impulsevoip.net\",\n        \"9175@00310.impulsevoip.net\",\n        \"9176@00310.impulsevoip.net\",\n        \"9177@00310.impulsevoip.net\",\n        \"9178@00310.impulsevoip.net\",\n        \"9179@00310.impulsevoip.net\",\n        \"9180@00310.impulsevoip.net\",\n        \"9181@00310.impulsevoip.net\",\n        \"9182@00310.impulsevoip.net\",\n        \"9183@00310.impulsevoip.net\",\n        \"9184@00310.impulsevoip.net\",\n        \"9185@00310.impulsevoip.net\",\n        \"9186@00310.impulsevoip.net\",\n        \"9187@00310.impulsevoip.net\",\n        \"9188@00310.impulsevoip.net\",\n        \"9189@00310.impulsevoip.net\",\n        \"9190@00310.impulsevoip.net\",\n        \"9191@00310.impulsevoip.net\",\n        \"9192@00310.impulsevoip.net\",\n        \"9193@00310.impulsevoip.net\",\n        \"9194@00310.impulsevoip.net\",\n        \"9195@00310.impulsevoip.net\",\n        \"9196@00310.impulsevoip.net\",\n        \"9197@00310.impulsevoip.net\",\n        \"9198@00310.impulsevoip.net\",\n        \"9199@00310.impulsevoip.net\",\n        \"9200@00310.impulsevoip.net\",\n        \"9201@00310.impulsevoip.net\",\n        \"9202@00310.impulsevoip.net\",\n        \"9203@00310.impulsevoip.net\",\n        \"9204@00310.impulsevoip.net\",\n        \"9205@00310.impulsevoip.net\",\n        \"9206@00310.impulsevoip.net\",\n        \"9207@00310.impulsevoip.net\",\n        \"9208@00310.impulsevoip.net\",\n        \"9209@00310.impulsevoip.net\",\n        \"9210@00310.impulsevoip.net\",\n        \"9211@00310.impulsevoip.net\",\n        \"9212@00310.impulsevoip.net\",\n        \"9213@00310.impulsevoip.net\",\n        \"9214@00310.impulsevoip.net\",\n        \"9215@00310.impulsevoip.net\",\n        \"9216@00310.impulsevoip.net\",\n        \"9217@00310.impulsevoip.net\",\n        \"9218@00310.impulsevoip.net\",\n        \"9219@00310.impulsevoip.net\",\n        \"9220@00310.impulsevoip.net\",\n        \"9221@00310.impulsevoip.net\",\n        \"9222@00310.impulsevoip.net\",\n        \"9223@00310.impulsevoip.net\",\n        \"9224@00310.impulsevoip.net\",\n        \"9225@00310.impulsevoip.net\",\n        \"9226@00310.impulsevoip.net\",\n        \"9227@00310.impulsevoip.net\",\n        \"9228@00310.impulsevoip.net\",\n        \"9229@00310.impulsevoip.net\",\n        \"9230@00310.impulsevoip.net\",\n        \"9231@00310.impulsevoip.net\",\n        \"9232@00310.impulsevoip.net\",\n        \"9233@00310.impulsevoip.net\",\n        \"9234@00310.impulsevoip.net\",\n        \"9235@00310.impulsevoip.net\",\n        \"9236@00310.impulsevoip.net\",\n        \"9237@00310.impulsevoip.net\",\n        \"9238@00310.impulsevoip.net\",\n        \"9239@00310.impulsevoip.net\",\n        \"9240@00310.impulsevoip.net\",\n        \"9241@00310.impulsevoip.net\",\n        \"9242@00310.impulsevoip.net\",\n        \"9243@00310.impulsevoip.net\",\n        \"9244@00310.impulsevoip.net\",\n        \"9245@00310.impulsevoip.net\",\n        \"9246@00310.impulsevoip.net\",\n        \"9247@00310.impulsevoip.net\",\n        \"9248@00310.impulsevoip.net\",\n        \"9249@00310.impulsevoip.net\",\n        \"9250@00310.impulsevoip.net\",\n        \"9251@00310.impulsevoip.net\",\n        \"9252@00310.impulsevoip.net\",\n        \"9253@00310.impulsevoip.net\",\n        \"9254@00310.impulsevoip.net\",\n        \"9255@00310.impulsevoip.net\",\n        \"9256@00310.impulsevoip.net\",\n        \"9257@00310.impulsevoip.net\",\n        \"9258@00310.impulsevoip.net\",\n        \"9259@00310.impulsevoip.net\",\n        \"9260@00310.impulsevoip.net\",\n        \"9261@00310.impulsevoip.net\",\n        \"9262@00310.impulsevoip.net\",\n        \"9263@00310.impulsevoip.net\",\n        \"9264@00310.impulsevoip.net\",\n        \"9265@00310.impulsevoip.net\",\n        \"9266@00310.impulsevoip.net\",\n        \"9267@00310.impulsevoip.net\",\n        \"9268@00310.impulsevoip.net\",\n        \"9269@00310.impulsevoip.net\",\n        \"9270@00310.impulsevoip.net\",\n        \"9271@00310.impulsevoip.net\",\n        \"9272@00310.impulsevoip.net\",\n        \"9273@00310.impulsevoip.net\",\n        \"9274@00310.impulsevoip.net\",\n        \"9275@00310.impulsevoip.net\",\n        \"9276@00310.impulsevoip.net\",\n        \"9277@00310.impulsevoip.net\",\n        \"9278@00310.impulsevoip.net\",\n        \"9279@00310.impulsevoip.net\",\n        \"9280@00310.impulsevoip.net\",\n        \"9281@00310.impulsevoip.net\",\n        \"9282@00310.impulsevoip.net\",\n        \"9283@00310.impulsevoip.net\",\n        \"9284@00310.impulsevoip.net\",\n        \"9285@00310.impulsevoip.net\",\n        \"9286@00310.impulsevoip.net\",\n        \"9287@00310.impulsevoip.net\",\n        \"9288@00310.impulsevoip.net\",\n        \"9289@00310.impulsevoip.net\",\n        \"9290@00310.impulsevoip.net\",\n        \"9291@00310.impulsevoip.net\",\n        \"9292@00310.impulsevoip.net\",\n        \"9293@00310.impulsevoip.net\",\n        \"9294@00310.impulsevoip.net\",\n        \"9295@00310.impulsevoip.net\",\n        \"9296@00310.impulsevoip.net\",\n        \"9297@00310.impulsevoip.net\",\n        \"9298@00310.impulsevoip.net\",\n        \"9299@00310.impulsevoip.net\",\n        \"9300@00310.impulsevoip.net\",\n        \"9301@00310.impulsevoip.net\",\n        \"9302@00310.impulsevoip.net\",\n        \"9303@00310.impulsevoip.net\",\n        \"9304@00310.impulsevoip.net\",\n        \"9305@00310.impulsevoip.net\",\n        \"9306@00310.impulsevoip.net\",\n        \"9307@00310.impulsevoip.net\",\n        \"9308@00310.impulsevoip.net\",\n        \"9309@00310.impulsevoip.net\",\n        \"9310@00310.impulsevoip.net\",\n        \"9311@00310.impulsevoip.net\",\n        \"9312@00310.impulsevoip.net\",\n        \"9313@00310.impulsevoip.net\",\n        \"9314@00310.impulsevoip.net\",\n        \"9315@00310.impulsevoip.net\",\n        \"9316@00310.impulsevoip.net\",\n        \"9317@00310.impulsevoip.net\",\n        \"9318@00310.impulsevoip.net\",\n        \"9319@00310.impulsevoip.net\",\n        \"9320@00310.impulsevoip.net\",\n        \"9321@00310.impulsevoip.net\",\n        \"9322@00310.impulsevoip.net\",\n        \"9323@00310.impulsevoip.net\",\n        \"9324@00310.impulsevoip.net\",\n        \"9325@00310.impulsevoip.net\",\n        \"9326@00310.impulsevoip.net\",\n        \"9327@00310.impulsevoip.net\",\n        \"9328@00310.impulsevoip.net\",\n        \"9329@00310.impulsevoip.net\",\n        \"9330@00310.impulsevoip.net\",\n        \"9331@00310.impulsevoip.net\",\n        \"9332@00310.impulsevoip.net\",\n        \"9333@00310.impulsevoip.net\",\n        \"9334@00310.impulsevoip.net\",\n        \"9335@00310.impulsevoip.net\",\n        \"9336@00310.impulsevoip.net\",\n        \"9337@00310.impulsevoip.net\",\n        \"9338@00310.impulsevoip.net\",\n        \"9339@00310.impulsevoip.net\",\n        \"9340@00310.impulsevoip.net\",\n        \"9341@00310.impulsevoip.net\",\n        \"9342@00310.impulsevoip.net\",\n        \"9343@00310.impulsevoip.net\",\n        \"9344@00310.impulsevoip.net\",\n        \"9345@00310.impulsevoip.net\",\n        \"9346@00310.impulsevoip.net\",\n        \"9347@00310.impulsevoip.net\",\n        \"9348@00310.impulsevoip.net\",\n        \"9349@00310.impulsevoip.net\",\n        \"9350@00310.impulsevoip.net\",\n        \"9351@00310.impulsevoip.net\",\n        \"9352@00310.impulsevoip.net\",\n        \"9353@00310.impulsevoip.net\",\n        \"9354@00310.impulsevoip.net\",\n        \"9355@00310.impulsevoip.net\",\n        \"9356@00310.impulsevoip.net\",\n        \"9357@00310.impulsevoip.net\",\n        \"9358@00310.impulsevoip.net\",\n        \"9359@00310.impulsevoip.net\",\n        \"9360@00310.impulsevoip.net\",\n        \"9361@00310.impulsevoip.net\",\n        \"9362@00310.impulsevoip.net\",\n        \"9363@00310.impulsevoip.net\",\n        \"9364@00310.impulsevoip.net\",\n        \"9365@00310.impulsevoip.net\",\n        \"9366@00310.impulsevoip.net\",\n        \"9367@00310.impulsevoip.net\",\n        \"9368@00310.impulsevoip.net\",\n        \"9369@00310.impulsevoip.net\",\n        \"9370@00310.impulsevoip.net\",\n        \"9371@00310.impulsevoip.net\",\n        \"9372@00310.impulsevoip.net\",\n        \"9373@00310.impulsevoip.net\",\n        \"9374@00310.impulsevoip.net\",\n        \"9375@00310.impulsevoip.net\",\n        \"9376@00310.impulsevoip.net\",\n        \"9377@00310.impulsevoip.net\",\n        \"9378@00310.impulsevoip.net\",\n        \"9379@00310.impulsevoip.net\",\n        \"9380@00310.impulsevoip.net\",\n        \"9381@00310.impulsevoip.net\",\n        \"9382@00310.impulsevoip.net\",\n        \"9383@00310.impulsevoip.net\",\n        \"9384@00310.impulsevoip.net\",\n        \"9385@00310.impulsevoip.net\",\n        \"9386@00310.impulsevoip.net\",\n        \"9387@00310.impulsevoip.net\",\n        \"9388@00310.impulsevoip.net\",\n        \"9389@00310.impulsevoip.net\",\n        \"9390@00310.impulsevoip.net\",\n        \"9391@00310.impulsevoip.net\",\n        \"9392@00310.impulsevoip.net\",\n        \"9393@00310.impulsevoip.net\",\n        \"9394@00310.impulsevoip.net\",\n        \"9395@00310.impulsevoip.net\",\n        \"9396@00310.impulsevoip.net\",\n        \"9397@00310.impulsevoip.net\",\n        \"9398@00310.impulsevoip.net\",\n        \"9399@00310.impulsevoip.net\",\n        \"9400@00310.impulsevoip.net\",\n        \"9401@00310.impulsevoip.net\",\n        \"9402@00310.impulsevoip.net\",\n        \"9403@00310.impulsevoip.net\",\n        \"9404@00310.impulsevoip.net\",\n        \"9405@00310.impulsevoip.net\",\n        \"9406@00310.impulsevoip.net\",\n        \"9407@00310.impulsevoip.net\",\n        \"9408@00310.impulsevoip.net\",\n        \"9409@00310.impulsevoip.net\",\n        \"9410@00310.impulsevoip.net\",\n        \"9411@00310.impulsevoip.net\",\n        \"9412@00310.impulsevoip.net\",\n        \"9413@00310.impulsevoip.net\",\n        \"9414@00310.impulsevoip.net\",\n        \"9415@00310.impulsevoip.net\",\n        \"9416@00310.impulsevoip.net\",\n        \"9417@00310.impulsevoip.net\",\n        \"9418@00310.impulsevoip.net\",\n        \"9419@00310.impulsevoip.net\",\n        \"9420@00310.impulsevoip.net\",\n        \"9421@00310.impulsevoip.net\",\n        \"9422@00310.impulsevoip.net\",\n        \"9423@00310.impulsevoip.net\",\n        \"9680@00310.impulsevoip.net\",\n        \"9681@00310.impulsevoip.net\",\n        \"9682@00310.impulsevoip.net\",\n        \"9683@00310.impulsevoip.net\",\n        \"9684@00310.impulsevoip.net\",\n        \"9685@00310.impulsevoip.net\",\n        \"9686@00310.impulsevoip.net\",\n        \"9687@00310.impulsevoip.net\",\n        \"9688@00310.impulsevoip.net\",\n        \"9689@00310.impulsevoip.net\",\n        \"9690@00310.impulsevoip.net\",\n        \"9691@00310.impulsevoip.net\",\n        \"9692@00310.impulsevoip.net\",\n        \"9693@00310.impulsevoip.net\",\n        \"9694@00310.impulsevoip.net\",\n        \"9695@00310.impulsevoip.net\",\n        \"9696@00310.impulsevoip.net\",\n        \"9697@00310.impulsevoip.net\",\n        \"9698@00310.impulsevoip.net\",\n        \"9699@00310.impulsevoip.net\",\n        \"9700@00310.impulsevoip.net\",\n        \"9701@00310.impulsevoip.net\",\n        \"9702@00310.impulsevoip.net\",\n        \"9703@00310.impulsevoip.net\",\n        \"9704@00310.impulsevoip.net\",\n        \"9705@00310.impulsevoip.net\",\n        \"9706@00310.impulsevoip.net\",\n        \"9707@00310.impulsevoip.net\",\n        \"9708@00310.impulsevoip.net\",\n        \"9709@00310.impulsevoip.net\",\n        \"9710@00310.impulsevoip.net\",\n        \"9711@00310.impulsevoip.net\",\n        \"9712@00310.impulsevoip.net\",\n        \"9713@00310.impulsevoip.net\",\n        \"9714@00310.impulsevoip.net\",\n        \"9715@00310.impulsevoip.net\",\n        \"9716@00310.impulsevoip.net\",\n        \"9717@00310.impulsevoip.net\",\n        \"9718@00310.impulsevoip.net\",\n        \"9719@00310.impulsevoip.net\",\n        \"9720@00310.impulsevoip.net\",\n        \"9721@00310.impulsevoip.net\",\n        \"9722@00310.impulsevoip.net\",\n        \"9723@00310.impulsevoip.net\",\n        \"9724@00310.impulsevoip.net\",\n        \"9725@00310.impulsevoip.net\",\n        \"9726@00310.impulsevoip.net\",\n        \"9727@00310.impulsevoip.net\",\n        \"9728@00310.impulsevoip.net\",\n        \"9729@00310.impulsevoip.net\",\n        \"9730@00310.impulsevoip.net\",\n        \"9731@00310.impulsevoip.net\",\n        \"9732@00310.impulsevoip.net\",\n        \"9733@00310.impulsevoip.net\",\n        \"9734@00310.impulsevoip.net\",\n        \"9735@00310.impulsevoip.net\",\n        \"9736@00310.impulsevoip.net\",\n        \"9737@00310.impulsevoip.net\",\n        \"9738@00310.impulsevoip.net\",\n        \"9739@00310.impulsevoip.net\",\n        \"9740@00310.impulsevoip.net\",\n        \"9741@00310.impulsevoip.net\",\n        \"9742@00310.impulsevoip.net\",\n        \"9743@00310.impulsevoip.net\",\n        \"9744@00310.impulsevoip.net\",\n        \"9745@00310.impulsevoip.net\",\n        \"9746@00310.impulsevoip.net\",\n        \"9747@00310.impulsevoip.net\",\n        \"9748@00310.impulsevoip.net\",\n        \"9749@00310.impulsevoip.net\",\n        \"9750@00310.impulsevoip.net\",\n        \"9751@00310.impulsevoip.net\",\n        \"9752@00310.impulsevoip.net\",\n        \"9753@00310.impulsevoip.net\",\n        \"9754@00310.impulsevoip.net\",\n        \"9755@00310.impulsevoip.net\",\n        \"9756@00310.impulsevoip.net\",\n        \"9757@00310.impulsevoip.net\",\n        \"9758@00310.impulsevoip.net\",\n        \"9759@00310.impulsevoip.net\",\n        \"9760@00310.impulsevoip.net\",\n        \"9761@00310.impulsevoip.net\",\n        \"9762@00310.impulsevoip.net\",\n        \"9763@00310.impulsevoip.net\",\n        \"9764@00310.impulsevoip.net\",\n        \"9765@00310.impulsevoip.net\",\n        \"9766@00310.impulsevoip.net\",\n        \"9767@00310.impulsevoip.net\",\n        \"9768@00310.impulsevoip.net\",\n        \"9769@00310.impulsevoip.net\",\n        \"9770@00310.impulsevoip.net\",\n        \"9771@00310.impulsevoip.net\",\n        \"9772@00310.impulsevoip.net\",\n        \"9773@00310.impulsevoip.net\",\n        \"9774@00310.impulsevoip.net\",\n        \"9775@00310.impulsevoip.net\",\n        \"9776@00310.impulsevoip.net\",\n        \"9777@00310.impulsevoip.net\",\n        \"9778@00310.impulsevoip.net\",\n        \"9779@00310.impulsevoip.net\",\n        \"9780@00310.impulsevoip.net\",\n        \"9781@00310.impulsevoip.net\",\n        \"9782@00310.impulsevoip.net\",\n        \"9783@00310.impulsevoip.net\",\n        \"9784@00310.impulsevoip.net\",\n        \"9785@00310.impulsevoip.net\",\n        \"9786@00310.impulsevoip.net\",\n        \"9787@00310.impulsevoip.net\",\n        \"9788@00310.impulsevoip.net\",\n        \"9789@00310.impulsevoip.net\",\n        \"9790@00310.impulsevoip.net\",\n        \"9791@00310.impulsevoip.net\",\n        \"9792@00310.impulsevoip.net\",\n        \"9793@00310.impulsevoip.net\",\n        \"9794@00310.impulsevoip.net\",\n        \"9795@00310.impulsevoip.net\",\n        \"9796@00310.impulsevoip.net\",\n        \"9797@00310.impulsevoip.net\",\n        \"9798@00310.impulsevoip.net\",\n        \"9799@00310.impulsevoip.net\",\n        \"9800@00310.impulsevoip.net\",\n        \"9801@00310.impulsevoip.net\",\n        \"9802@00310.impulsevoip.net\",\n        \"9803@00310.impulsevoip.net\",\n        \"9804@00310.impulsevoip.net\",\n        \"9805@00310.impulsevoip.net\",\n        \"9806@00310.impulsevoip.net\",\n        \"9807@00310.impulsevoip.net\",\n        \"9808@00310.impulsevoip.net\",\n        \"9809@00310.impulsevoip.net\",\n        \"9810@00310.impulsevoip.net\",\n        \"9811@00310.impulsevoip.net\",\n        \"9812@00310.impulsevoip.net\",\n        \"9813@00310.impulsevoip.net\",\n        \"9814@00310.impulsevoip.net\",\n        \"9815@00310.impulsevoip.net\",\n        \"9816@00310.impulsevoip.net\",\n        \"9817@00310.impulsevoip.net\",\n        \"9818@00310.impulsevoip.net\",\n        \"9819@00310.impulsevoip.net\",\n        \"9820@00310.impulsevoip.net\",\n        \"9821@00310.impulsevoip.net\",\n        \"9822@00310.impulsevoip.net\",\n        \"9823@00310.impulsevoip.net\",\n        \"9824@00310.impulsevoip.net\",\n        \"9825@00310.impulsevoip.net\",\n        \"9826@00310.impulsevoip.net\",\n        \"9827@00310.impulsevoip.net\",\n        \"9828@00310.impulsevoip.net\",\n        \"9829@00310.impulsevoip.net\",\n        \"9830@00310.impulsevoip.net\",\n        \"9831@00310.impulsevoip.net\",\n        \"9832@00310.impulsevoip.net\",\n        \"9833@00310.impulsevoip.net\",\n        \"9834@00310.impulsevoip.net\",\n        \"9835@00310.impulsevoip.net\",\n        \"9836@00310.impulsevoip.net\",\n        \"9837@00310.impulsevoip.net\",\n        \"9838@00310.impulsevoip.net\",\n        \"9839@00310.impulsevoip.net\",\n        \"9840@00310.impulsevoip.net\",\n        \"9841@00310.impulsevoip.net\",\n        \"9842@00310.impulsevoip.net\",\n        \"9843@00310.impulsevoip.net\",\n        \"9844@00310.impulsevoip.net\",\n        \"9845@00310.impulsevoip.net\",\n        \"9846@00310.impulsevoip.net\",\n        \"9847@00310.impulsevoip.net\",\n        \"9848@00310.impulsevoip.net\",\n        \"9849@00310.impulsevoip.net\",\n        \"9850@00310.impulsevoip.net\",\n        \"9851@00310.impulsevoip.net\",\n        \"9852@00310.impulsevoip.net\",\n        \"9853@00310.impulsevoip.net\",\n        \"9854@00310.impulsevoip.net\",\n        \"9855@00310.impulsevoip.net\",\n        \"9856@00310.impulsevoip.net\",\n        \"9857@00310.impulsevoip.net\",\n        \"9858@00310.impulsevoip.net\",\n        \"9859@00310.impulsevoip.net\",\n        \"9860@00310.impulsevoip.net\",\n        \"9861@00310.impulsevoip.net\",\n        \"9862@00310.impulsevoip.net\",\n        \"9863@00310.impulsevoip.net\",\n        \"9864@00310.impulsevoip.net\",\n        \"9865@00310.impulsevoip.net\",\n        \"9866@00310.impulsevoip.net\",\n        \"9867@00310.impulsevoip.net\",\n        \"9868@00310.impulsevoip.net\",\n        \"9869@00310.impulsevoip.net\",\n        \"9870@00310.impulsevoip.net\",\n        \"9871@00310.impulsevoip.net\",\n        \"9872@00310.impulsevoip.net\",\n        \"9873@00310.impulsevoip.net\",\n        \"9874@00310.impulsevoip.net\",\n        \"9875@00310.impulsevoip.net\",\n        \"9876@00310.impulsevoip.net\",\n        \"9877@00310.impulsevoip.net\",\n        \"9878@00310.impulsevoip.net\",\n        \"9879@00310.impulsevoip.net\",\n        \"9880@00310.impulsevoip.net\",\n        \"9881@00310.impulsevoip.net\",\n        \"9882@00310.impulsevoip.net\",\n        \"9883@00310.impulsevoip.net\",\n        \"9884@00310.impulsevoip.net\",\n        \"9885@00310.impulsevoip.net\",\n        \"9886@00310.impulsevoip.net\",\n        \"9887@00310.impulsevoip.net\",\n        \"9888@00310.impulsevoip.net\",\n        \"9889@00310.impulsevoip.net\",\n        \"9890@00310.impulsevoip.net\",\n        \"9891@00310.impulsevoip.net\",\n        \"9892@00310.impulsevoip.net\",\n        \"9893@00310.impulsevoip.net\",\n        \"9894@00310.impulsevoip.net\",\n        \"9895@00310.impulsevoip.net\",\n        \"9896@00310.impulsevoip.net\",\n        \"9897@00310.impulsevoip.net\",\n        \"9898@00310.impulsevoip.net\",\n        \"9899@00310.impulsevoip.net\",\n        \"9900@00310.impulsevoip.net\",\n        \"9901@00310.impulsevoip.net\",\n        \"9902@00310.impulsevoip.net\",\n        \"9903@00310.impulsevoip.net\",\n        \"9904@00310.impulsevoip.net\",\n        \"9905@00310.impulsevoip.net\",\n        \"9906@00310.impulsevoip.net\",\n        \"9907@00310.impulsevoip.net\",\n        \"9908@00310.impulsevoip.net\",\n        \"9909@00310.impulsevoip.net\",\n        \"9910@00310.impulsevoip.net\",\n        \"imp8057554412\",\n        \"imp8057554416\",\n        \"imp8057554449\",\n        \"imp8057554401\",\n        \"imp8057554475\",\n        \"imp8057554417\",\n        \"imp8057554432\",\n        \"imp8057554405\",\n        \"imp8057554477\",\n        \"imp8057554444\",\n        \"imp8058803406\",\n        \"imp8057554446\",\n        \"imp8057554442\",\n        \"imp8057554431\",\n        \"imp8057554447\",\n        \"imp8057554414\",\n        \"imp8057554455\",\n        \"imp8057554476\",\n        \"imp8057554438\",\n        \"imp8057554448\",\n        \"imp8057554400\",\n        \"imp8057554441\",\n        \"imp8057554413\",\n        \"imp8057554451\",\n        \"imp8057554408\",\n        \"imp8057554443\",\n        \"imp8058803409\",\n        \"imp8058803402\",\n        \"imp8057554430\",\n        \"imp8057554403\",\n        \"imp00310-02555\",\n        \"imp00310-02519\",\n        \"imp00310-02450\",\n        \"imp8057554404\",\n        \"imp8057554422\",\n        \"imp8058803415\",\n        \"imp8057554445\",\n        \"imp8057554418\",\n        \"imp8057554407\",\n        \"imp8057554410\",\n        \"imp8057554458\",\n        \"imp8057554466\",\n        \"imp6307627347\",\n        \"imp6306862980\",\n        \"imp00311-024367\",\n        \"imp00311-024368\",\n        \"imp6306862959\",\n        \"imp00311-024369\",\n        \"imp6307627351\",\n        \"imp00311-024308\",\n        \"imp00311-024342\",\n        \"imp00311-024370\",\n        \"imp00311-024371\",\n        \"imp00311-024394\",\n        \"imp6306862982\",\n        \"imp6307974159\",\n        \"imp6306862967\",\n        \"imp00311-024372\",\n        \"imp00311-024373\",\n        \"imp00311-024374\",\n        \"imp00311-024375\",\n        \"imp00311-024376\",\n        \"imp00311-024377\",\n        \"imp00311-024378\",\n        \"imp00311-024379\",\n        \"imp00311-024380\",\n        \"imp00311-024381\",\n        \"imp00311-024382\",\n        \"imp00311-024313\",\n        \"imp00311-024348\",\n        \"imp00311-024383\",\n        \"imp00311-024384\",\n        \"imp6307974157\",\n        \"imp00311-024385\",\n        \"imp6307627363\",\n        \"imp00311-024386\",\n        \"imp00311-024387\",\n        \"imp6307627358\",\n        \"imp00311-024388\",\n        \"imp6306862954\",\n        \"imp00311-024389\",\n        \"imp00311-024390\",\n        \"imp00311-024391\",\n        \"imp00311-024392\",\n        \"imp00311-024393\",\n        \"imp00311-024349\",\n        \"imp00311-024350\",\n        \"imp6306862970\",\n        \"imp00311-024395\",\n        \"imp00311-024351\",\n        \"imp00311-024352\",\n        \"imp6306862971\",\n        \"imp00311-022717\",\n        \"imp00311-024353\",\n        \"imp00311-024354\",\n        \"imp00311-024355\",\n        \"imp00311-024356\",\n        \"imp6307627344\",\n        \"imp00311-024357\",\n        \"imp00311-024358\",\n        \"imp00311-024359\",\n        \"imp00311-024360\",\n        \"imp00311-024361\",\n        \"imp6306862978\",\n        \"imp00311-024362\",\n        \"imp00311-024363\",\n        \"imp00311-024364\",\n        \"imp6306862944\",\n        \"imp6306862977\",\n        \"imp00311-024334\",\n        \"imp00311-024281\",\n        \"imp00311-024254\",\n        \"imp6306862950\",\n        \"imp6307974152\",\n        \"imp6307974174\",\n        \"imp6307974172\",\n        \"imp00311-024202\",\n        \"imp00311-024000\",\n        \"imp6307974165\",\n        \"imp8053170417\",\n        \"imp8053170418\",\n        \"imp6306862949\",\n        \"imp00311-027475\",\n        \"imp00311-022613\",\n        \"imp6307627369\",\n        \"imp00311-022120\",\n        \"imp6303771193\",\n        \"imp6306862953\",\n        \"imp6307627365\",\n        \"imp6307627368\",\n        \"imp6306862951\",\n        \"imp00311-024365\",\n        \"imp6306862969\",\n        \"imp00311-024366\",\n        \"imp6306862962\",\n        \"imp6305242870\",\n        \"imp00311-023144\",\n        \"imp00311-024406\",\n        \"imp00311-022664\",\n        \"imp00311-024234\",\n        \"imp00311-024407\",\n        \"imp00311-024408\",\n        \"imp00311-024409\",\n        \"imp00311-024318\",\n        \"imp00311-024344\",\n        \"imp00311-024021\",\n        \"imp00311-024319\",\n        \"imp00311-024025\",\n        \"imp00311-024071\",\n        \"imp00311-024297\",\n        \"imp6307627366\",\n        \"imp00311-024322\",\n        \"imp00311-024256\",\n        \"imp00311-024346\",\n        \"imp00311-024347\",\n        \"imp00311-028997\",\n        \"imp00311-022682\",\n        \"imp00311-024293\",\n        \"imp00311-022698\",\n        \"imp00311-024325\",\n        \"imp00311-024264\",\n        \"imp00311-024314\",\n        \"imp00311-024182\",\n        \"imp00311-022626\",\n        \"imp00311-024286\",\n        \"imp00311-027509\",\n        \"imp00311-024316\",\n        \"imp00311-024189\",\n        \"imp00311-022294\",\n        \"imp00311-022617\",\n        \"imp8053170415\",\n        \"imp00311-024274\",\n        \"imp00311-024396\",\n        \"imp00311-024397\",\n        \"imp00311-024398\",\n        \"imp00311-024399\",\n        \"imp00311-024400\",\n        \"imp00311-022248\",\n        \"imp00311-024401\",\n        \"imp00311-024402\",\n        \"imp8053170414\",\n        \"imp00311-024403\",\n        \"imp00311-024404\",\n        \"imp00311-024341\",\n        \"imp00311-024405\",\n        \"imp8053170412\",\n        \"imp8053170413\",\n        \"imp6307974163\",\n        \"imp00311-024280\",\n        \"imp00311-024209\",\n        \"imp00311-024195\",\n        \"imp00311-022285\",\n        \"imp00311-029901\",\n        \"imp6307974135\",\n        \"imp00311-029902\",\n        \"imp00311-029903\",\n        \"imp00311-029904\",\n        \"imp00311-024336\",\n        \"imp00311-028999\",\n        \"imp00311-024339\",\n        \"imp00311-028998\",\n        \"imp00311-021374\",\n        \"imp00311-021217\",\n        \"00311-027468\",\n        \"imp00311-029900\",\n        \"imp6307974161\",\n        \"imp6307627348\",\n        \"imp00311-024301\",\n        \"imp00311-029905\",\n        \"imp6307974147\",\n        \"imp00311-029906\",\n        \"imp00311-029907\",\n        \"imp6307627345\",\n        \"imp00311-029908\",\n        \"imp00311-029909\",\n        \"imp6307974154\",\n        \"imp00311-024331\",\n        \"imp6306862955\",\n        \"imp00311-024298\",\n        \"imp00311-024002\",\n        \"imp6307974182\",\n        \"imp00311-024299\",\n        \"imp00311-024332\",\n        \"imp6307627354\",\n        \"imp6306862960\",\n        \"imp6307627362\",\n        \"imp6307627356\",\n        \"imp00311-029956\",\n        \"imp6307974167\",\n        \"imp6307627370\",\n        \"imp00311-029957\",\n        \"imp00311-029958\",\n        \"imp00311-024246\",\n        \"imp00311-029950\",\n        \"imp00311-029951\",\n        \"imp00311-029952\",\n        \"imp6307974186\",\n        \"imp00311-024001\",\n        \"imp6307974164\",\n        \"imp6307974156\",\n        \"imp6307974149\",\n        \"imp6307974146\",\n        \"imp6307974166\",\n        \"imp00311-022819\",\n        \"imp6306862958\",\n        \"imp6307627346\",\n        \"imp6307974162\",\n        \"imp6306862979\",\n        \"imp00311-029497\",\n        \"imp6307974145\",\n        \"imp6307974143\",\n        \"imp6307627371\",\n        \"imp6307974137\",\n        \"imp6307974188\",\n        \"imp6307627340\",\n        \"imp6306862941\",\n        \"imp6306862942\",\n        \"imp6306862943\",\n        \"imp6306862945\",\n        \"imp6306862947\",\n        \"imp6306862948\",\n        \"imp6306862940\",\n        \"imp6306862952\",\n        \"imp6306862956\",\n        \"imp6306862957\",\n        \"imp6307627341\",\n        \"imp6307974144\",\n        \"imp6307627360\",\n        \"imp6306862965\",\n        \"imp6306862966\",\n        \"imp00311-027508\",\n        \"imp6306862968\",\n        \"imp6307974175\",\n        \"imp6306862972\",\n        \"imp6306862974\",\n        \"imp6306862975\",\n        \"imp6306862976\",\n        \"imp00311-027267\",\n        \"imp00311-027281\",\n        \"imp00311-027409\",\n        \"imp00311-027541\",\n        \"imp00311-027548\",\n        \"imp00311-027567\",\n        \"imp00311-027837\",\n        \"imp00311-027899\",\n        \"imp00311-021237\",\n        \"imp00311-021387\",\n        \"imp00311-021469\",\n        \"imp00311-021489\",\n        \"imp00311-021498\",\n        \"imp00311-021626\",\n        \"imp00311-021662\",\n        \"imp00311-021690\",\n        \"imp00311-021723\",\n        \"imp00311-022016\",\n        \"imp00311-022026\",\n        \"imp00311-022032\",\n        \"imp00311-022121\",\n        \"imp00311-022129\",\n        \"imp00311-022515\",\n        \"imp00311-022517\",\n        \"imp00311-022558\",\n        \"imp00311-022614\",\n        \"imp00311-022973\",\n        \"imp00311-024066\",\n        \"imp00311-024126\",\n        \"imp00311-024338\",\n        \"imp00311-024456\",\n        \"imp00311-024479\",\n        \"imp00311-024480\",\n        \"imp00311-024674\",\n        \"imp00311-024944\",\n        \"imp00311-025144\",\n        \"imp00311-025662\",\n        \"imp00311-026380\",\n        \"imp00311-026555\",\n        \"imp00311-026599\",\n        \"imp00311-026714\",\n        \"imp00311-026814\",\n        \"imp00311-026831\",\n        \"imp00311-026839\",\n        \"imp00311-026982\",\n        \"imp6307627364\",\n        \"imp00311-027401\",\n        \"imp00311-027427\",\n        \"imp00311-027527\",\n        \"imp00311-027565\",\n        \"imp00311-029044\",\n        \"imp00311-029178\",\n        \"imp00311-029330\",\n        \"imp00311-029351\",\n        \"imp00311-029757\",\n        \"imp00311-029850\",\n        \"imp6307627350\",\n        \"imp6307974151\",\n        \"imp00311-029953\",\n        \"imp00311-029954\",\n        \"imp00311-029955\",\n        \"imp6307974136\",\n        \"imp8053170416\",\n        \"imp6307974140\",\n        \"imp6307974132\",\n        \"imp00311-022044\",\n        \"imp00311-024080\",\n        \"imp6306862973\",\n        \"imp00311-022094\",\n        \"imp6307974155\",\n        \"imp00311-024307\",\n        \"imp00311-022160\",\n        \"imp00311-022164\",\n        \"imp6307974134\",\n        \"imp6307627349\",\n        \"imp00311-022202\",\n        \"imp00311-024333\",\n        \"imp6307974142\",\n        \"imp6307974131\",\n        \"imp6307974153\",\n        \"imp6307627355\",\n        \"imp6307974189\",\n        \"imp00311-025500\",\n        \"imp00311-022411\",\n        \"imp00311-022470\",\n        \"imp6306862964\",\n        \"imp6305242936\",\n        \"imp6307974181\",\n        \"imp00311-022536\",\n        \"imp00311-022564\",\n        \"imp00311-022565\",\n        \"imp6307974138\",\n        \"imp6307974170\",\n        \"imp00311-022758\",\n        \"imp00311-022759\",\n        \"imp00311-022760\",\n        \"imp00311-022761\",\n        \"imp00311-022762\",\n        \"imp6306862963\",\n        \"imp00311-024159\",\n        \"imp00311-024199\",\n        \"imp00311-024329\",\n        \"imp00311-024142\",\n        \"imp4707857606\",\n        \"imp4707857604\",\n        \"imp4707857602\",\n        \"imp4707857601\",\n        \"imp4707857607\",\n        \"imp4707857621\",\n        \"imp4707857617\",\n        \"imp4707857611\",\n        \"imp4707857605\",\n        \"imp4707857608\",\n        \"imp00311-011111\",\n        \"imp7736383929\",\n        \"imp8476358160\",\n        \"imp6063029560\",\n        \"imp7736385597\",\n        \"imp7736383827\",\n        \"imp4707857603\",\n        \"imp4707857620\",\n        \"imp6304437137\",\n        \"imp6305872820\",\n        \"imp6614275020\",\n        \"imp6614275021\",\n        \"imp6614275022\",\n        \"imp6614275023\",\n        \"imp6614275024\",\n        \"imp00319-02502\",\n        \"imp00319-02500\",\n        \"imp00319-02501\",\n        \"imp8057554513\",\n        \"imp8057554514\",\n        \"imp00324-02602\",\n        \"imp8057554512\",\n        \"imp8057554516\",\n        \"imp8057554515\",\n        \"imp8057554590\",\n        \"imp8057554517\",\n        \"imp8058803327\",\n        \"imp8053221604\",\n        \"imp8052611100\",\n        \"imp8053221606\",\n        \"imp8053221607\",\n        \"imp8053221608\",\n        \"imp8053221609\",\n        \"imp8053221610\",\n        \"imp8053221611\",\n        \"imp8053221612\",\n        \"imp8053221613\",\n        \"imp8053221614\",\n        \"imp00330-026543\",\n        \"imp8059262205\",\n        \"imp8059262206\",\n        \"imp8053221603\",\n        \"imp8052611121\",\n        \"imp5594495939\",\n        \"imp5594495927\",\n        \"imp5594495840\",\n        \"imp5594495978\",\n        \"imp5594495944\",\n        \"imp5594495890\",\n        \"imp5594495864\",\n        \"imp5594495938\",\n        \"imp5594495802\",\n        \"imp5594495803\",\n        \"imp5594495887\",\n        \"imp5594495856\",\n        \"imp5594495934\",\n        \"imp5594495940\",\n        \"imp5594495877\",\n        \"imp5594495860\",\n        \"imp5594495898\",\n        \"imp5594495917\",\n        \"imp5594495838\",\n        \"imp5594495813\",\n        \"imp5594495925\",\n        \"imp5594495920\",\n        \"imp5594495936\",\n        \"imp5594495899\",\n        \"imp5594495853\",\n        \"imp5594495831\",\n        \"imp5594495880\",\n        \"imp5594495835\",\n        \"imp5594495836\",\n        \"imp9497165101\",\n        \"imp5594495929\",\n        \"imp5594495893\",\n        \"imp5594495916\",\n        \"imp5594495824\",\n        \"imp00334-027006\",\n        \"imp5594495806\",\n        \"imp5594495964\",\n        \"imp5594495967\",\n        \"imp5594495968\",\n        \"imp5594495866\",\n        \"imp5594495969\",\n        \"imp5594495847\",\n        \"imp5594495977\",\n        \"imp5594495862\",\n        \"imp5594495849\",\n        \"imp5594495970\",\n        \"imp00334-029000\",\n        \"imp5594495971\",\n        \"imp5594495822\",\n        \"imp5594495955\",\n        \"imp5594495975\",\n        \"imp5594495829\",\n        \"imp5594495980\",\n        \"imp5594495962\",\n        \"imp5594495828\",\n        \"imp5594495888\",\n        \"imp5594495919\",\n        \"imp5594495952\",\n        \"imp5594495833\",\n        \"imp5594495825\",\n        \"imp5594312010\",\n        \"imp5594495842\",\n        \"imp5594495848\",\n        \"imp5594495872\",\n        \"imp5594495821\",\n        \"imp5594495979\",\n        \"5594324371\",\n        \"imp5594495809\",\n        \"5594764026\",\n        \"imp5594495875\",\n        \"imp5594495981\",\n        \"imp5594495846\",\n        \"imp5594495827\",\n        \"imp5594495943\",\n        \"imp5594495816\",\n        \"imp5594495937\",\n        \"imp5594495889\",\n        \"imp5594495863\",\n        \"imp5594495819\",\n        \"imp5594495820\",\n        \"imp5594495947\",\n        \"imp5594495812\",\n        \"imp5594495951\",\n        \"imp5594495858\",\n        \"imp5594495895\",\n        \"imp5594495963\",\n        \"imp5594495801\",\n        \"imp5594495894\",\n        \"imp5594495966\",\n        \"imp5594495807\",\n        \"imp5594495841\",\n        \"imp5594495959\",\n        \"imp5594495815\",\n        \"imp5594495960\",\n        \"imp5594495851\",\n        \"imp5594495818\",\n        \"imp5594495823\",\n        \"imp5594495843\",\n        \"imp5594495884\",\n        \"imp5594495870\",\n        \"imp5594495839\",\n        \"imp5594495933\",\n        \"imp5594495928\",\n        \"imp5594495926\",\n        \"imp5594495879\",\n        \"imp5594495883\",\n        \"imp5594495885\",\n        \"imp5594495914\",\n        \"imp5594495915\",\n        \"imp5594495909\",\n        \"imp5594495881\",\n        \"imp5594495923\",\n        \"imp5594495924\",\n        \"imp5594495850\",\n        \"imp5594495935\",\n        \"imp00334-027001\",\n        \"imp00334-027003\",\n        \"imp00334-027004\",\n        \"imp00334-027005\",\n        \"imp5594495956\",\n        \"imp5594495957\",\n        \"imp5594495804\",\n        \"imp5594495810\",\n        \"imp5594495941\",\n        \"imp5594495942\",\n        \"imp5594495945\",\n        \"imp5594495948\",\n        \"imp5594495949\",\n        \"imp5594495855\",\n        \"imp5594495826\",\n        \"imp5594495958\",\n        \"imp5594495845\",\n        \"imp5594495878\",\n        \"imp5594495953\",\n        \"imp5594495857\",\n        \"imp5594495886\",\n        \"imp00334-026505\",\n        \"imp5594495861\",\n        \"imp5594495965\",\n        \"imp5594495921\",\n        \"imp5594495871\",\n        \"imp5594495865\",\n        \"imp5594495946\",\n        \"imp5594495976\",\n        \"imp5594495817\",\n        \"imp5594495811\",\n        \"imp5594495832\",\n        \"imp5594495974\",\n        \"imp5594495961\",\n        \"imp5594495844\",\n        \"imp5594495830\",\n        \"imp5594495814\",\n        \"imp5594495837\",\n        \"imp5594495808\",\n        \"imp5594495972\",\n        \"imp5594495973\",\n        \"imp00334-directory\",\n        \"imp00334-013000\",\n        \"imp8058809441\",\n        \"imp8058803391\",\n        \"imp2674574492\",\n        \"imp2674574479\",\n        \"imp2674574478\",\n        \"imp2674574457\",\n        \"imp9253645500\",\n        \"imp8138886330\",\n        \"imp3462987931\",\n        \"imp6615233511\",\n        \"imp9092431037\",\n        \"imp8058803378\",\n        \"imp8058803379\",\n        \"imp-2-00345-02-trunk@pilot.impulsevoip.net\",\n        \"imp-1-00345-02-trunk@pilot.impulsevoip.net\",\n        \"8052212633@pilot.impulsevoip.net\",\n        \"8059627014@pilot.impulsevoip.net\",\n        \"8059620186@pilot.impulsevoip.net\",\n        \"8059622118@pilot.impulsevoip.net\",\n        \"8059622225@pilot.impulsevoip.net\",\n        \"8052840346@pilot.impulsevoip.net\",\n        \"8059627101@pilot.impulsevoip.net\",\n        \"8059627179@pilot.impulsevoip.net\",\n        \"8059627181@pilot.impulsevoip.net\",\n        \"8059627185@pilot.impulsevoip.net\",\n        \"8059627197@pilot.impulsevoip.net\",\n        \"00349-02-directory\",\n        \"imp8058880397\",\n        \"imp8058880399\",\n        \"imp8058880398\",\n        \"imp00351-01100\",\n        \"00351-directory\",\n        \"imp8058880326\",\n        \"imp8058880378\",\n        \"imp8058880348\",\n        \"imp8058880344\",\n        \"imp8058880374\",\n        \"imp8058880304\",\n        \"imp8058880370\",\n        \"imp8058880346\",\n        \"imp8058880396\",\n        \"imp8058880331\",\n        \"imp8058880362\",\n        \"imp8058880330\",\n        \"imp8058880392\",\n        \"imp8058880356\",\n        \"imp8058880389\",\n        \"imp8058880371\",\n        \"imp8058880365\",\n        \"imp8058880384\",\n        \"imp8058880366\",\n        \"imp8058880317\",\n        \"imp8058880306\",\n        \"imp8058880327\",\n        \"imp8058880364\",\n        \"imp8058880386\",\n        \"imp8058880382\",\n        \"imp8058880308\",\n        \"imp8058880335\",\n        \"imp8058880338\",\n        \"imp8058880318\",\n        \"imp8058880363\",\n        \"imp8058880305\",\n        \"imp8058880341\",\n        \"imp8058880360\",\n        \"imp8058880307\",\n        \"imp8058880354\",\n        \"imp8058880312\",\n        \"imp8058880394\",\n        \"imp8058880395\",\n        \"imp8058880347\",\n        \"imp8058880379\",\n        \"imp8058880325\",\n        \"imp8058880314\",\n        \"imp8058880313\",\n        \"imp8058880369\",\n        \"imp8058880380\",\n        \"imp8058880381\",\n        \"imp8058880339\",\n        \"imp8058880358\",\n        \"imp8058880372\",\n        \"imp8058880302\",\n        \"imp8058880328\",\n        \"imp8058880349\",\n        \"imp8058880359\",\n        \"imp8058880303\",\n        \"imp8058880333\",\n        \"imp00351-02660\",\n        \"imp8058880353\",\n        \"imp8058880321\",\n        \"imp8058880329\",\n        \"imp8058880391\",\n        \"imp8058880343\",\n        \"imp8058880332\",\n        \"imp8058880300\",\n        \"imp8058880367\",\n        \"imp8058880361\",\n        \"imp8058880320\",\n        \"imp8058880324\",\n        \"imp8058880393\",\n        \"imp8058880316\",\n        \"imp8058880322\",\n        \"imp8058880373\",\n        \"imp8058880375\",\n        \"imp8058880355\",\n        \"imp8058880310\",\n        \"imp8058880315\",\n        \"imp8058880337\",\n        \"imp8058880336\",\n        \"imp8058880368\",\n        \"imp8058880390\",\n        \"imp8058880319\",\n        \"imp8058880340\",\n        \"imp8058880387\",\n        \"imp8058880352\",\n        \"imp8058880309\",\n        \"imp8058880351\",\n        \"imp8058880376\",\n        \"imp8058880323\",\n        \"imp8058880334\",\n        \"imp8058880345\",\n        \"imp8058880301\",\n        \"imp8058880385\",\n        \"imp8058880342\",\n        \"imp8058880357\",\n        \"imp8058880377\",\n        \"imp8058880383\",\n        \"imp8058880350\",\n        \"imp9514070558\",\n        \"imp9514070554\",\n        \"imp9514070562\",\n        \"imp9514070551\",\n        \"imp9514070555\",\n        \"imp9514070550\",\n        \"imp9514070553\",\n        \"imp00353-02151\",\n        \"imp9514070561\",\n        \"imp9514070556\",\n        \"imp9514070552\",\n        \"imp00353-02252\",\n        \"imp00353-02353\",\n        \"imp7608487011\",\n        \"imp7608487012\",\n        \"imp7608487013\",\n        \"imp00353-03454\",\n        \"imp8059644791\",\n        \"imp8059678199\",\n        \"imp00355-directory\",\n        \"imp00355-01200\",\n        \"imp8059667277\",\n        \"imp8059667599\",\n        \"imp8059667715\",\n        \"imp8058803356\",\n        \"imp8058803351\",\n        \"imp8058803353\",\n        \"imp8058803354\",\n        \"imp8059667199\",\n        \"imp8058803352\",\n        \"imp8058803360\",\n        \"imp8059667511\",\n        \"imp8059667716\",\n        \"imp8059669071\",\n        \"imp00355-02309\",\n        \"imp00355-02310\",\n        \"imp8059667575\",\n        \"imp8059664225\",\n        \"imp8059667499\",\n        \"imp8059667757\",\n        \"imp8058803350\",\n        \"imp8058803359\",\n        \"imp8058803357\",\n        \"imp00356-directory\",\n        \"imp00356-01101\",\n        \"imp8054567294\",\n        \"imp8054566968\",\n        \"imp8054566979\",\n        \"imp8054567296\",\n        \"imp8054567298\",\n        \"imp8056837758\",\n        \"sip8054566971\",\n        \"imp8054566980\",\n        \"imp8054567293\",\n        \"imp8054566977\",\n        \"imp8054566970\",\n        \"imp8054567295\",\n        \"imp8054566975\",\n        \"imp8054566966\",\n        \"imp8054566976\",\n        \"imp8054566967\",\n        \"imp8054566978\",\n        \"imp8054567235\",\n        \"imp8054566969\",\n        \"imp8056837746\",\n        \"imp8054566972\",\n        \"imp8056837750\",\n        \"imp8054566974\",\n        \"imp8054567291\",\n        \"imp8054566973\",\n        \"imp00294-3301\",\n        \"imp00294-3303\",\n        \"imp00294-3306\",\n        \"imp00294-3307\",\n        \"imp00294-3319\",\n        \"imp00294-3320\",\n        \"imp00294-3321\",\n        \"imp00294-3323\",\n        \"imp00294-3336\",\n        \"imp00294-3343\",\n        \"00294-01-directory\",\n        \"imp8059692300\",\n        \"imp8055658010\",\n        \"imp00294-02802\",\n        \"imp8059694173\",\n        \"imp8055658018\",\n        \"imp8059694332\",\n        \"imp00294-02801\",\n        \"imp8059692983\",\n        \"imp8055658024\",\n        \"imp8055658011\",\n        \"imp8055658022\",\n        \"imp8059697763\",\n        \"imp8055658013\",\n        \"imp8055658023\",\n        \"imp8055658012\",\n        \"imp8055658015\",\n        \"imp8055658016\",\n        \"imp8055658021\",\n        \"imp8055658007\",\n        \"imp8059691445\",\n        \"imp8055658020\",\n        \"imp8059692242\",\n        \"imp8059697764\",\n        \"imp8055658017\",\n        \"imp8055658014\",\n        \"imp8055658009\",\n        \"imp8059692537\",\n        \"imp8059697762\",\n        \"imp8055658032\",\n        \"imp8055658029\",\n        \"imp8055658030\",\n        \"imp8055658028\",\n        \"imp8055658031\",\n        \"imp8055658034\",\n        \"imp8055658027\",\n        \"imp8055658036\",\n        \"imp8055658033\",\n        \"imp8055658035\",\n        \"imp00360-08695\",\n        \"imp00360-08602\",\n        \"imp00360-089979\",\n        \"imp00360-089951\",\n        \"imp00360-089980\",\n        \"imp00360-089933\",\n        \"imp00360-08694\",\n        \"imp00360-089955\",\n        \"imp00360-08612\",\n        \"imp8056460885\",\n        \"imp00360-08604\",\n        \"imp00360-08603\",\n        \"imp00360-089973\",\n        \"imp00360-089934\",\n        \"imp00360-089939\",\n        \"imp00360-08610\",\n        \"imp00360-08601\",\n        \"imp00360-08619\",\n        \"imp00360-089932\",\n        \"imp00360-08691\",\n        \"imp00360-08692\",\n        \"imp00360-08693\",\n        \"imp00360-01111\",\n        \"imp00360-05410\",\n        \"imp8056796201\",\n        \"imp8056796203\",\n        \"imp8056796209\",\n        \"imp8056796202\",\n        \"imp00360-05408\",\n        \"imp8056796208\",\n        \"imp8056796204\",\n        \"imp00360-05407\",\n        \"imp00360-05491\",\n        \"imp00360-05492\",\n        \"imp00360-05493\",\n        \"imp00360-05494\",\n        \"imp00360-05495\",\n        \"imp3108736988\",\n        \"imp3108736984\",\n        \"imp00360-041009\",\n        \"imp3108736981\",\n        \"imp3108736985\",\n        \"imp3108736982\",\n        \"imp3103153895\",\n        \"imp00360-049938\",\n        \"imp3108736987\",\n        \"imp3108736983\",\n        \"imp00360-041010\",\n        \"imp00360-049975\",\n        \"imp00360-049976\",\n        \"imp00360-041019\",\n        \"imp00360-041091\",\n        \"imp00360-041092\",\n        \"imp00360-041093\",\n        \"imp00360-041094\",\n        \"imp00360-041095\",\n        \"imp00360-10704\",\n        \"imp00360-109977\",\n        \"imp00360-10710\",\n        \"imp00360-10702\",\n        \"imp00360-10706\",\n        \"imp00360-10719\",\n        \"imp00360-10705\",\n        \"imp00360-10703\",\n        \"imp00360-10791\",\n        \"imp00360-10792\",\n        \"imp00360-10701\",\n        \"imp00360-10793\",\n        \"imp6612583014\",\n        \"imp6612572017\",\n        \"imp6612572323\",\n        \"imp6612583013\",\n        \"imp00360-09553\",\n        \"imp00360-09552\",\n        \"imp6617051762\",\n        \"imp6612583012\",\n        \"imp6612571762\",\n        \"imp6612572954\",\n        \"imp00360-09551\",\n        \"imp6617051763\",\n        \"imp7472423805\",\n        \"imp7472423806\",\n        \"imp00360-02981\",\n        \"imp7472423803\",\n        \"imp00360-02901\",\n        \"imp00360-02905\",\n        \"imp7472423804\",\n        \"imp00360-029936\",\n        \"imp7472423802\",\n        \"imp00360-02982\",\n        \"imp00360-02983\",\n        \"imp00360-02984\",\n        \"imp8057072714\",\n        \"imp00360-06204\",\n        \"imp8056467245\",\n        \"imp00360-06291\",\n        \"imp00360-06205\",\n        \"imp8056467254\",\n        \"imp8056469030\",\n        \"imp00360-06292\",\n        \"imp00360-06293\",\n        \"imp00360-06294\",\n        \"imp00360-039961\",\n        \"imp8052981895\",\n        \"imp8052981893\",\n        \"imp8052981891\",\n        \"imp8052981894\",\n        \"imp8052981892\",\n        \"imp00360-03806\",\n        \"imp00360-03881\",\n        \"imp00360-03882\",\n        \"imp00360-03883\",\n        \"imp00360-03884\",\n        \"imp00360-03810\",\n        \"imp00360-03805\",\n        \"imp00360-07106\",\n        \"imp00360-079999\",\n        \"imp00360-07105\",\n        \"imp00360-07102\",\n        \"imp00360-079907\",\n        \"imp00360-079903\",\n        \"imp00360-079905\",\n        \"imp8059678670\",\n        \"imp00360-079942\",\n        \"imp00360-07182\",\n        \"imp00360-07122\",\n        \"imp00360-079978\",\n        \"imp00360-07181\",\n        \"imp00360-07104\",\n        \"imp00360-079952\",\n        \"imp00360-07183\",\n        \"imp00360-07119\",\n        \"imp00360-079941\",\n        \"imp8056796206\",\n        \"imp00360-079906\",\n        \"imp00360-07121\",\n        \"imp00360-07123\",\n        \"imp00360-079901\",\n        \"imp00360-079943\",\n        \"imp003660-079971\",\n        \"imp00360-079902\",\n        \"imp00360-079963\",\n        \"imp00360-07124\",\n        \"imp00360-07101\",\n        \"imp00360-07103\",\n        \"imp8057244664\",\n        \"imp00360-079904\",\n        \"imp00360-111101\",\n        \"imp00360-111104\",\n        \"imp00360-111105\",\n        \"imp00360-111106\",\n        \"imp00360-111110\",\n        \"imp00360-111103\",\n        \"imp00360-111102\",\n        \"imp00360-111191\",\n        \"imp00360-111192\",\n        \"imp00360-111193\",\n        \"imp2039262772\",\n        \"imp2039257926\",\n        \"imp2039262720\",\n        \"imp2039262715\",\n        \"imp2034561189\",\n        \"imp2039262719\",\n        \"imp2034561206\",\n        \"imp2039262730\",\n        \"imp2039262711\",\n        \"imp2039262751\",\n        \"imp2039262708\",\n        \"imp2039262748\",\n        \"imp2039262756\",\n        \"imp2039263063\",\n        \"imp2039262717\",\n        \"imp2039262718\",\n        \"imp2039262724\",\n        \"imp2039262742\",\n        \"imp2034561187\",\n        \"imp2039262795\",\n        \"imp2039262798\",\n        \"imp2039262705\",\n        \"imp2039262773\",\n        \"imp2039262776\",\n        \"imp2039262777\",\n        \"imp2039262761\",\n        \"imp2039262765\",\n        \"imp2034561190\",\n        \"imp2039262713\",\n        \"imp2039262738\",\n        \"imp2039262774\",\n        \"imp2039262789\",\n        \"imp2039262797\",\n        \"imp2039262741\",\n        \"imp2039262770\",\n        \"imp2039262775\",\n        \"imp2039257947\",\n        \"imp2039263062\",\n        \"imp2039262740\",\n        \"imp2039257930\",\n        \"imp2039262726\",\n        \"imp2039262716\",\n        \"imp2039262754\",\n        \"imp2039257939\",\n        \"imp2039262752\",\n        \"imp2039262749\",\n        \"imp2039263068\",\n        \"imp2034561188\",\n        \"imp2039262703\",\n        \"imp7654645549\",\n        \"imp7654645594\",\n        \"imp7654645577\",\n        \"imp7654645755\",\n        \"imp7654645568\",\n        \"imp7654645538\",\n        \"imp7654645526\",\n        \"imp7654645772\",\n        \"imp7654645589\",\n        \"imp7654645714\",\n        \"imp7654645743\",\n        \"imp7654645599\",\n        \"imp7654645550\",\n        \"imp7654645756\",\n        \"imp7654645791\",\n        \"imp7654645799\",\n        \"imp7654645742\",\n        \"imp7654645543\",\n        \"imp7654645716\",\n        \"imp7654645724\",\n        \"imp7654645706\",\n        \"imp7654645769\",\n        \"imp7654645753\",\n        \"imp00362-075445\",\n        \"imp7654645705\",\n        \"imp7654645741\",\n        \"imp7654645787\",\n        \"imp7654645529\",\n        \"imp7654645776\",\n        \"imp7654645796\",\n        \"imp7654645507\",\n        \"imp7654645759\",\n        \"imp7654645511\",\n        \"imp7654645719\",\n        \"imp00362-075447\",\n        \"imp7654645751\",\n        \"imp7654645728\",\n        \"imp7654645781\",\n        \"imp7654645567\",\n        \"imp7654645555\",\n        \"imp7654645581\",\n        \"imp7654645757\",\n        \"imp7654645521\",\n        \"imp7654645541\",\n        \"imp7654645536\",\n        \"imp7654645519\",\n        \"imp7654645569\",\n        \"imp7654645561\",\n        \"imp7654645777\",\n        \"imp7654645738\",\n        \"imp7654645748\",\n        \"imp7654645513\",\n        \"imp7654645548\",\n        \"imp7654645503\",\n        \"imp7654645713\",\n        \"imp7654645557\",\n        \"imp7654645704\",\n        \"imp7654645546\",\n        \"imp7654645790\",\n        \"imp7654645765\",\n        \"imp7654645558\",\n        \"imp7654645531\",\n        \"imp7654645734\",\n        \"imp7654645544\",\n        \"imp7654645782\",\n        \"imp7654645551\",\n        \"imp7654645767\",\n        \"imp7654645727\",\n        \"imp7654645540\",\n        \"imp7654645525\",\n        \"imp7654645545\",\n        \"imp7654645571\",\n        \"imp7654645583\",\n        \"imp7654645737\",\n        \"imp7654645731\",\n        \"imp4697069040\",\n        \"imp7654645701\",\n        \"imp7654645764\",\n        \"imp7654645510\",\n        \"imp7654645573\",\n        \"imp7654645702\",\n        \"imp7654645730\",\n        \"imp7654645750\",\n        \"imp7654645736\",\n        \"imp7654645537\",\n        \"imp7654645575\",\n        \"imp7654645520\",\n        \"imp7654645591\",\n        \"imp7654645542\",\n        \"imp7654645595\",\n        \"imp7654645508\",\n        \"imp7654645707\",\n        \"imp7654645518\",\n        \"imp7654645515\",\n        \"imp00362-071230\",\n        \"imp4697069018\",\n        \"imp4697069046\",\n        \"imp4697069022\",\n        \"imp4697069023\",\n        \"imp4697069027\",\n        \"imp4697069036\",\n        \"imp00362-029051\",\n        \"imp4697069019\",\n        \"imp4697069048\",\n        \"imp4697069016\",\n        \"imp4697069038\",\n        \"imp4697069053\",\n        \"imp2567014034\",\n        \"imp8435369162\",\n        \"imp2039262794\",\n        \"imp2039262747\",\n        \"imp2039262769\",\n        \"imp9499426770\",\n        \"imp6304397249\",\n        \"imp2567014033\",\n        \"imp2563448918\",\n        \"imp6365911985\",\n        \"imp7869238776\",\n        \"imp2034561198\",\n        \"imp2039257943\",\n        \"imp2034561203\",\n        \"imp2567014018\",\n        \"imp2566848868\",\n        \"imp2039262707\",\n        \"imp2167706191\",\n        \"imp2034561213\",\n        \"imp2039262732\",\n        \"imp2039262736\",\n        \"imp9496297507\",\n        \"imp2034561216\",\n        \"imp8186981763\",\n        \"imp7869238779\",\n        \"imp8028708119\",\n        \"imp2034561208\",\n        \"imp2039262702\",\n        \"imp2034561210\",\n        \"imp5618671552\",\n        \"imp4697069015\",\n        \"imp2034561201\",\n        \"imp8644791934\",\n        \"imp8644791933\",\n        \"imp2568868844\",\n        \"imp9713454286\",\n        \"imp4697069041\",\n        \"imp9494327514\",\n        \"imp4697069049\",\n        \"imp2674153621\",\n        \"imp2039257954\",\n        \"imp2034561207\",\n        \"imp2522891942\",\n        \"imp2034561214\",\n        \"imp7046844203\",\n        \"imp2034561202\",\n        \"imp2034561205\",\n        \"imp2039257941\",\n        \"imp9494327516\",\n        \"imp4697069017\",\n        \"imp3152808986\",\n        \"imp9849837004\",\n        \"imp2566848877\",\n        \"imp4697069025\",\n        \"imp00362-047077\",\n        \"imp4697069021\",\n        \"imp4697069020\",\n        \"imp2566938898\",\n        \"imp2568868824\",\n        \"imp9496297501\",\n        \"imp3152808985\",\n        \"imp2674153620\",\n        \"imp9494327511\",\n        \"imp9494327517\",\n        \"imp9494327518\",\n        \"imp2564958389\",\n        \"imp9496297567\",\n        \"imp6195351282\",\n        \"imp9494327515\",\n        \"imp9713454287\",\n        \"imp6198161622\",\n        \"imp7869238771\",\n        \"imp5618671553\",\n        \"imp4704813151\",\n        \"imp7654645763\",\n        \"imp7654645774\",\n        \"imp8435369161\",\n        \"imp2034561209\",\n        \"imp7654645758\",\n        \"imp9494327513\",\n        \"imp2039262779\",\n        \"imp9013167013\",\n        \"imp9417774745\",\n        \"imp9494327512\",\n        \"imp8186981764\",\n        \"imp2568868778\",\n        \"imp8056839440\",\n        \"imp8058804247\",\n        \"imp8057244273\",\n        \"imp8057244274\",\n        \"imp8057244275\",\n        \"imp8054561299\",\n        \"imp8056867361\",\n        \"imp8056867344\",\n        \"imp8056867322\",\n        \"imp8056867369\",\n        \"imp8056867367\",\n        \"imp8056867347\",\n        \"imp8056867349\",\n        \"imp8056867351\",\n        \"8807\",\n        \"8808\",\n        \"imp8056867353\",\n        \"8809\",\n        \"8810\",\n        \"8811\",\n        \"8812\",\n        \"8813\",\n        \"8814\",\n        \"8815\",\n        \"8802\",\n        \"8803\",\n        \"imp8056867350\",\n        \"imp8056867302\",\n        \"8804\",\n        \"8805\",\n        \"8806\",\n        \"imp8056867362\",\n        \"imp8056867356\",\n        \"imp8056867371\",\n        \"imp8056867373\",\n        \"imp8056867338\",\n        \"imp8056867395\",\n        \"imp8056867318\",\n        \"imp8056867336\",\n        \"imp00373-028800\",\n        \"8801\",\n        \"imp8056867386\",\n        \"imp8056867366\",\n        \"imp8056867319\",\n        \"imp8056867331\",\n        \"imp8056867335\",\n        \"imp8056867325\",\n        \"imp8056867396\",\n        \"imp8056867355\",\n        \"imp8056867365\",\n        \"imp8056867397\",\n        \"imp8056867333\",\n        \"imp8056867327\",\n        \"imp8056867379\",\n        \"imp8056867346\",\n        \"imp8056867364\",\n        \"imp8056867368\",\n        \"imp8056867358\",\n        \"imp8056867375\",\n        \"imp8056867341\",\n        \"imp8056867394\",\n        \"imp8056867337\",\n        \"imp8056867345\",\n        \"imp8056867380\",\n        \"imp8056867343\",\n        \"imp00373-027299\",\n        \"imp8056867308\",\n        \"imp8056867393\",\n        \"imp8056867301\",\n        \"imp8056867332\",\n        \"imp8056867303\",\n        \"imp8056867329\",\n        \"imp8056867339\",\n        \"imp8056867316\",\n        \"imp8056867374\",\n        \"imp8056867328\",\n        \"imp8056867317\",\n        \"imp8056867315\",\n        \"imp8056867324\",\n        \"imp00373-02-trunk\",\n        \"imp00373-027297\",\n        \"imp8056867326\",\n        \"imp8056867311\",\n        \"imp8056867348\",\n        \"imp8056867320\",\n        \"imp8056867342\",\n        \"imp8056867359\",\n        \"imp8056867334\",\n        \"imp8056867330\",\n        \"imp8056867312\",\n        \"imp8056867309\",\n        \"imp8056867306\",\n        \"imp8056867363\",\n        \"imp00373-011000\",\n        \"00373-01-directory\",\n        \"00377-01-directory\",\n        \"imp8059615378\",\n        \"imp8059615367\",\n        \"imp8059615379\",\n        \"imp8059615376\",\n        \"imp8059615374\",\n        \"imp8059666961\",\n        \"imp8059615360\",\n        \"imp8059622101\",\n        \"imp8059615368\",\n        \"imp8059665073\",\n        \"imp8059615362\",\n        \"imp8059615365\",\n        \"imp8059615369\",\n        \"imp8059615377\",\n        \"imp9516146313\",\n        \"imp9516146314\",\n        \"imp9516146315\",\n        \"imp8054570377\",\n        \"imp7738315521\",\n        \"imp7738315307\",\n        \"imp7738315649\",\n        \"imp7738315519\",\n        \"00386-02500\",\n        \"imp7738315542\",\n        \"imp8058563445\",\n        \"imp7738315513\",\n        \"imp8056997312\",\n        \"imp8056997307\",\n        \"imp8056997304\",\n        \"imp8056997309\",\n        \"imp8056975202\",\n        \"imp00389-02501\",\n        \"imp00389-02502\",\n        \"imp8056975201\",\n        \"imp8056997313\",\n        \"imp8056997311\",\n        \"imp8056997303\",\n        \"imp8056997301\",\n        \"imp8056997305\",\n        \"imp8056997310\",\n        \"imp00389-02320\",\n        \"imp8056997306\",\n        \"imp8056997308\",\n        \"imp8056997302\",\n        \"imp8056903653\",\n        \"imp8056903652\",\n        \"imp8054374899\",\n        \"z-dir-00393-01\",\n        \"imp2065043645\",\n        \"imp8057414200\",\n        \"imp8057414203\",\n        \"imp8057414202\",\n        \"imp8057414201\",\n        \"imp8057414204\",\n        \"imp8057414206\",\n        \"imp8057414205\",\n        \"imp8056864707\",\n        \"imp8056864706\",\n        \"imp8059674568\",\n        \"imp8059674569\",\n        \"imp8059675399\",\n        \"imp8057300953\",\n        \"imp8057300950\",\n        \"imp8057300954\",\n        \"imp8057300959\",\n        \"imp8057300951\",\n        \"imp8057300958\",\n        \"imp8057300952\",\n        \"imp8057300955\",\n        \"imp8057300956\",\n        \"imp8057300963\",\n        \"imp8057300961\",\n        \"imp8057300960\",\n        \"imp8057300962\",\n        \"imp8057554626\",\n        \"imp8057554624\",\n        \"imp8057554621\",\n        \"imp8057554620\",\n        \"imp8057554622\",\n        \"imp8057554625\",\n        \"imp8057300965\",\n        \"imp8057300966\",\n        \"imp00282-02-trunk\",\n        \"8005137455\",\n        \"8055629120\",\n        \"8054567151@00282.impulsevoip.net\",\n        \"8054567152@00282.impulsevoip.net\",\n        \"8054567153@00282.impulsevoip.net\",\n        \"8054567154@00282.impulsevoip.net\",\n        \"8054567155@00282.impulsevoip.net\",\n        \"8054567156@00282.impulsevoip.net\",\n        \"8054567157@00282.impulsevoip.net\",\n        \"8054567158@00282.impulsevoip.net\",\n        \"8054567159@00282.impulsevoip.net\",\n        \"8054567160@00282.impulsevoip.net\",\n        \"8054567161@00282.impulsevoip.net\",\n        \"8054567162@00282.impulsevoip.net\",\n        \"8054567163@00282.impulsevoip.net\",\n        \"8054567164@00282.impulsevoip.net\",\n        \"8054567165@00282.impulsevoip.net\",\n        \"8054567166@00282.impulsevoip.net\",\n        \"8054567187@00282.impulsevoip.net\",\n        \"8054567188@00282.impulsevoip.net\",\n        \"8054567189@00282.impulsevoip.net\",\n        \"8054567194@00282.impulsevoip.net\",\n        \"8055629860@00282.impulsevoip.net\",\n        \"8056173453@00282.impulsevoip.net\",\n        \"8056181482@00282.impulsevoip.net\",\n        \"8058807550@00282.impulsevoip.net\",\n        \"8058807551@00282.impulsevoip.net\",\n        \"8058807552@00282.impulsevoip.net\",\n        \"8058807553@00282.impulsevoip.net\",\n        \"8058807554@00282.impulsevoip.net\",\n        \"8058807555@00282.impulsevoip.net\",\n        \"8058807556@00282.impulsevoip.net\",\n        \"8058807557@00282.impulsevoip.net\",\n        \"8058807558@00282.impulsevoip.net\",\n        \"8058807559@00282.impulsevoip.net\",\n        \"8058807560@00282.impulsevoip.net\",\n        \"8058807561@00282.impulsevoip.net\",\n        \"8058807562@00282.impulsevoip.net\",\n        \"8058807563@00282.impulsevoip.net\",\n        \"8058807564@00282.impulsevoip.net\",\n        \"8058807565@00282.impulsevoip.net\",\n        \"8058807566@00282.impulsevoip.net\",\n        \"8058807567@00282.impulsevoip.net\",\n        \"8058807568@00282.impulsevoip.net\",\n        \"8058807569@00282.impulsevoip.net\",\n        \"8058807570@00282.impulsevoip.net\",\n        \"8058807571@00282.impulsevoip.net\",\n        \"8058807572@00282.impulsevoip.net\",\n        \"8058807573@00282.impulsevoip.net\",\n        \"8058807574@00282.impulsevoip.net\",\n        \"8058807575@00282.impulsevoip.net\",\n        \"8058807576@00282.impulsevoip.net\",\n        \"8058807577@00282.impulsevoip.net\",\n        \"8058807578@00282.impulsevoip.net\",\n        \"8058807579@00282.impulsevoip.net\",\n        \"8058807580@00282.impulsevoip.net\",\n        \"8058807581@00282.impulsevoip.net\",\n        \"8058807582@00282.impulsevoip.net\",\n        \"8058807583@00282.impulsevoip.net\",\n        \"8058807584@00282.impulsevoip.net\",\n        \"8058807585@00282.impulsevoip.net\",\n        \"8058807586@00282.impulsevoip.net\",\n        \"8058807587@00282.impulsevoip.net\",\n        \"8058807588@00282.impulsevoip.net\",\n        \"8058807589@00282.impulsevoip.net\",\n        \"8058807590@00282.impulsevoip.net\",\n        \"8058807591@00282.impulsevoip.net\",\n        \"8058807592@00282.impulsevoip.net\",\n        \"8058807593@00282.impulsevoip.net\",\n        \"8058807594@00282.impulsevoip.net\",\n        \"8058807595@00282.impulsevoip.net\",\n        \"8058807596@00282.impulsevoip.net\",\n        \"8058807597@00282.impulsevoip.net\",\n        \"8058807598@00282.impulsevoip.net\",\n        \"8058807599@00282.impulsevoip.net\",\n        \"8059611612@00282.impulsevoip.net\",\n        \"8059611613@00282.impulsevoip.net\",\n        \"8059611614@00282.impulsevoip.net\",\n        \"8059611615@00282.impulsevoip.net\",\n        \"8059611621@00282.impulsevoip.net\",\n        \"8059611622@00282.impulsevoip.net\",\n        \"8059611623@00282.impulsevoip.net\",\n        \"8059611641@00282.impulsevoip.net\",\n        \"8059611642@00282.impulsevoip.net\",\n        \"8059611643@00282.impulsevoip.net\",\n        \"8059611651@00282.impulsevoip.net\",\n        \"8059611652@00282.impulsevoip.net\",\n        \"8059611654@00282.impulsevoip.net\",\n        \"8059611655@00282.impulsevoip.net\",\n        \"8059611661@00282.impulsevoip.net\",\n        \"8059611662@00282.impulsevoip.net\",\n        \"8059611681@00282.impulsevoip.net\",\n        \"8059611682@00282.impulsevoip.net\",\n        \"8182493290@00282.impulsevoip.net\",\n        \"8442206217@00282.impulsevoip.net\",\n        \"8442206502@00282.impulsevoip.net\",\n        \"8442206503@00282.impulsevoip.net\",\n        \"8442206504@00282.impulsevoip.net\",\n        \"8442206505@00282.impulsevoip.net\",\n        \"8442206506@00282.impulsevoip.net\",\n        \"8442206507@00282.impulsevoip.net\",\n        \"8442206508@00282.impulsevoip.net\",\n        \"8442206509@00282.impulsevoip.net\",\n        \"8442206510@00282.impulsevoip.net\",\n        \"8775060946@00282.impulsevoip.net\",\n        \"8775964340@00282.impulsevoip.net\",\n        \"8059611611@00282.impulsevoip.net\",\n        \"8773407911@00282.impulsevoip.net\",\n        \"imp4242013773\",\n        \"imp4242013748\",\n        \"imp4242013740\",\n        \"imp4242013743\",\n        \"imp4242013777\",\n        \"imp4242013749\",\n        \"imp4242013759\",\n        \"imp4242013766\",\n        \"imp4242013769\",\n        \"imp4242013771\",\n        \"imp4242013751\",\n        \"imp4242013758\",\n        \"imp4242013750\",\n        \"imp4242013761\",\n        \"imp4242013745\",\n        \"imp4242013757\",\n        \"imp00404-01100\",\n        \"imp4242013760\",\n        \"imp4242013767\",\n        \"imp4242013763\",\n        \"imp4242013741\",\n        \"imp4242013746\",\n        \"imp4242013752\",\n        \"imp4242013742\",\n        \"imp4242013675\",\n        \"imp4242013747\",\n        \"imp4242013755\",\n        \"imp4242013772\",\n        \"imp4242013768\",\n        \"imp4242013774\",\n        \"imp4242013765\",\n        \"imp4242013762\",\n        \"imp4242013770\",\n        \"imp4242013764\",\n        \"imp4242013744\",\n        \"imp4242013676\",\n        \"imp8055660483\",\n        \"imp8055662454\",\n        \"imp8055662456\",\n        \"imp8057452426\",\n        \"imp8055662457\",\n        \"imp8055662450\",\n        \"imp8055662451\",\n        \"imp8057452425\",\n        \"imp00406-02595\",\n        \"imp00406-02596\",\n        \"imp8055662458\",\n        \"imp8055660582\",\n        \"imp8055662455\",\n        \"imp8055662453\",\n        \"imp8057452434\",\n        \"imp8057451368\",\n        \"imp8057452437\",\n        \"imp8057452436\",\n        \"imp8057452435\",\n        \"imp8057452438\",\n        \"imp8052730440\",\n        \"imp8057452439\",\n        \"imp8059802901\",\n        \"imp8059802903\",\n        \"imp00408-02987\",\n        \"imp8059802906\",\n        \"imp8059802908\",\n        \"imp8059802907\",\n        \"imp8059802904\",\n        \"imp8059802902\",\n        \"imp8055685206\",\n        \"imp8055685227\",\n        \"imp8055685223\",\n        \"imp8055660271\",\n        \"imp8055685243\",\n        \"imp8055660268\",\n        \"imp8055685256\",\n        \"imp00413-02403\",\n        \"imp8055685216\",\n        \"imp8055660266\",\n        \"imp8055685217\",\n        \"imp8055685274\",\n        \"imp8055685232\",\n        \"imp8055685202\",\n        \"imp8055685224\",\n        \"imp8055685262\",\n        \"imp00413-02ext209\",\n        \"imp8055685239\",\n        \"imp8055685226\",\n        \"imp8055600441\",\n        \"imp8055685225\",\n        \"imp8055661173\",\n        \"imp8055685238\",\n        \"imp8055685234\",\n        \"imp8055685263\",\n        \"imp8055685277\",\n        \"imp8055685233\",\n        \"imp8055685241\",\n        \"imp8055685214\",\n        \"imp8055660267\",\n        \"imp8055685254\",\n        \"imp00413-02402\",\n        \"imp8055660272\",\n        \"imp8055685231\",\n        \"imp8055685222\",\n        \"imp8055685240\",\n        \"imp8055685210\",\n        \"imp8055685212\",\n        \"imp8056031323\",\n        \"imp00413-01100\",\n        \"imp8056901294\",\n        \"imp8056901292\",\n        \"imp8056901293\",\n        \"imp8056901291\",\n        \"imp00417-112000\",\n        \"imp00417-112002\",\n        \"imp00417-112001\",\n        \"imp00417-011000\",\n        \"imp00417-092201\",\n        \"imp00417-092205\",\n        \"imp00417-091811\",\n        \"imp00417-091844\",\n        \"imp00417-092200\",\n        \"imp00417-092203\",\n        \"imp00417-092204\",\n        \"imp00417-082114\",\n        \"imp00417-082117\",\n        \"imp00417-082100\",\n        \"imp00417-082134\",\n        \"imp00417-082115\",\n        \"00417-041862\",\n        \"imp00417-041815\",\n        \"imp00417-041810\",\n        \"imp00417-041864\",\n        \"imp00417-041812\",\n        \"imp00417-041865\",\n        \"imp00417-041819\",\n        \"imp00417-041806\",\n        \"imp00417-041875\",\n        \"imp00417-041816\",\n        \"imp00417-041801\",\n        \"imp00417-041854\",\n        \"imp00417-041831\",\n        \"imp00417-041880\",\n        \"imp00417-041840\",\n        \"imp00417-041846\",\n        \"imp00417-041852\",\n        \"imp00417-041858\",\n        \"imp00417-041874\",\n        \"imp00417-041843\",\n        \"imp00417-041866\",\n        \"imp00417-041827\",\n        \"imp00417-041842\",\n        \"imp00417-041837\",\n        \"imp00417-041814\",\n        \"imp00417-041867\",\n        \"imp00417-041861\",\n        \"imp00417-041855\",\n        \"imp00417-041859\",\n        \"imp00417-041808\",\n        \"imp00417-041890\",\n        \"imp00417-041813\",\n        \"imp00417-041853\",\n        \"imp00417-041125\",\n        \"imp00417-041845\",\n        \"imp00417-041863\",\n        \"imp00417-041873\",\n        \"imp00417-041821\",\n        \"imp00417-041856\",\n        \"imp00417-041805\",\n        \"imp00417-041817\",\n        \"imp00417-041825\",\n        \"imp00417-041802\",\n        \"imp00417-041851\",\n        \"imp00417-041836\",\n        \"imp00417-041833\",\n        \"imp00417-041826\",\n        \"imp00417-041824\",\n        \"imp00417-041822\",\n        \"imp00417-041876\",\n        \"imp00417-041860\",\n        \"imp00417-041807\",\n        \"imp00417-041877\",\n        \"imp00417-041828\",\n        \"imp00417-041820\",\n        \"00417-041835\",\n        \"imp00417-041803\",\n        \"imp00417-041847\",\n        \"imp00417-041849\",\n        \"imp00417-041834\",\n        \"imp00417-041841\",\n        \"imp00417-041857\",\n        \"imp00417-041872\",\n        \"imp00417-041823\",\n        \"imp00417-041804\",\n        \"imp00417-041809\",\n        \"imp00417-041800\",\n        \"imp00417-041848\",\n        \"imp00417-041881\",\n        \"imp00417-021161\",\n        \"imp00417-021134\",\n        \"imp00417-021135\",\n        \"imp00417-021114\",\n        \"imp00417-021122\",\n        \"imp00417-021138\",\n        \"imp00417-021117\",\n        \"imp00417-021130\",\n        \"imp00417-021119\",\n        \"imp00417-021113\",\n        \"imp00417-021112\",\n        \"imp00417-032300\",\n        \"imp00417-032301\",\n        \"imp00417-032302\",\n        \"imp00417-032304\",\n        \"imp00417-032306\",\n        \"imp00417-032305\",\n        \"imp00417-032307\",\n        \"imp00417-032303\",\n        \"imp8056905185\",\n        \"imp8053352556\",\n        \"imp8053352553\",\n        \"imp8053352555\",\n        \"imp00420-02566\",\n        \"imp8053352557\",\n        \"imp8053352550\",\n        \"imp00420-02567\",\n        \"imp8053352554\",\n        \"imp8053352551\",\n        \"imp8058804234\",\n        \"imp8058804230\",\n        \"imp8058804232\",\n        \"imp8058804233\",\n        \"imp8058804231\",\n        \"imp8058451814\",\n        \"imp8058456797\",\n        \"imp8058456877\",\n        \"imp8058456825\",\n        \"imp8058456831\",\n        \"imp8057708156\",\n        \"imp8058456863\",\n        \"imp8058456806\",\n        \"imp8057825212\",\n        \"imp8329152857\",\n        \"imp8329152853\",\n        \"imp8329152851\",\n        \"imp7135749526\",\n        \"imp7135749528\",\n        \"imp7135749525\",\n        \"imp7135749529\",\n        \"imp3614330718\",\n        \"imp3614330815\",\n        \"imp3614330929\",\n        \"imp3614334552\",\n        \"imp3615414111\",\n        \"imp00432-01200\",\n        \"imp8054368411\",\n        \"imp8054368410\",\n        \"imp8054368407\",\n        \"imp8054368403\",\n        \"imp8054368416\",\n        \"imp8054368404\",\n        \"imp8054368406\",\n        \"imp8054368415\",\n        \"imp8054368420\",\n        \"imp8054368413\",\n        \"imp8054368409\",\n        \"imp8054368408\",\n        \"imp8054368405\",\n        \"imp8054368418\",\n        \"imp8054368417\",\n        \"imp00432-02302\",\n        \"imp00432-02303\",\n        \"imp00432-02300\",\n        \"imp00432-02301\",\n        \"imp8054368401\",\n        \"imp8054368402\",\n        \"imp8054368414\",\n        \"imp00432-02304\",\n        \"imp8053089751\",\n        \"imp8053089752\",\n        \"imp8053089753\",\n        \"imp8053089750\",\n        \"imp00431-011111\",\n        \"imp8052612604\",\n        \"imp8055392734\",\n        \"imp8052612520\",\n        \"imp8055392739\",\n        \"imp8055392731\",\n        \"imp8052612526\",\n        \"imp8052612484\",\n        \"imp8052612522\",\n        \"imp8052612475\",\n        \"imp8055392730\",\n        \"imp8052612481\",\n        \"imp8052612490\",\n        \"imp8052612534\",\n        \"imp8052612602\",\n        \"imp8052612486\",\n        \"imp8052612487\",\n        \"imp8052612540\",\n        \"imp8055392741\",\n        \"imp8052612476\",\n        \"imp8055392745\",\n        \"imp8052612480\",\n        \"imp8052612539\",\n        \"imp8052612532\",\n        \"imp8055392740\",\n        \"imp8055392725\",\n        \"imp8058801692\",\n        \"imp8052612491\",\n        \"imp8052612492\",\n        \"imp8052612538\",\n        \"imp8052612477\",\n        \"imp8052612536\",\n        \"imp8052612478\",\n        \"imp8055392789\",\n        \"imp8052612541\",\n        \"imp8055392735\",\n        \"imp8055392738\",\n        \"imp8053089756\",\n        \"imp8052612485\",\n        \"imp8055392736\",\n        \"imp8052612529\",\n        \"imp8052612525\",\n        \"imp8052612489\",\n        \"imp8052612530\",\n        \"imp8058880296\",\n        \"imp8058880297\",\n        \"imp8052612605\",\n        \"imp8052612528\",\n        \"imp8052612603\",\n        \"imp8052612488\",\n        \"imp8052612527\",\n        \"imp8052612482\",\n        \"imp8055392732\",\n        \"imp8052612521\",\n        \"imp8052612524\",\n        \"imp8052612533\",\n        \"imp8052612479\",\n        \"imp8055392747\",\n        \"imp8055392216\",\n        \"imp8055392737\",\n        \"imp8055392729\",\n        \"imp00431-021001\",\n        \"imp8052612523\",\n        \"imp8055392728\",\n        \"imp8052612537\",\n        \"imp8052612542\",\n        \"imp8053089708\",\n        \"imp8053089709\",\n        \"imp8055392726\",\n        \"imp8055392727\",\n        \"imp8058801696\",\n        \"imp8058801693\",\n        \"imp8058801694\",\n        \"imp8058803580\",\n        \"imp8052612483\",\n        \"imp8052612495\",\n        \"imp8052612493\",\n        \"imp8055392733\",\n        \"imp8052612535\",\n        \"imp8052612497\",\n        \"imp8055392744\",\n        \"imp8052612531\",\n        \"imp8052612498\",\n        \"imp8055392742\",\n        \"imp8052612494\",\n        \"imp8052612499\",\n        \"imp8055392748\",\n        \"imp00431-031022\",\n        \"imp8052612496\",\n        \"imp8055392743\",\n        \"imp8055392756\",\n        \"imp8058809452\",\n        \"imp8058809395\",\n        \"imp8058809399\",\n        \"imp8058809394\",\n        \"imp8058809396\",\n        \"imp8058809398\",\n        \"imp8058809397\",\n        \"imp8058809351\",\n        \"imp8058809350\",\n        \"imp8058809390\",\n        \"imp8058809387\",\n        \"imp8058809352\",\n        \"imp8058809391\",\n        \"imp8058809374\",\n        \"imp8058809356\",\n        \"imp8058809370\",\n        \"imp8058809373\",\n        \"imp8058809388\",\n        \"imp8058809382\",\n        \"imp8058809372\",\n        \"imp8058809354\",\n        \"imp8058809377\",\n        \"imp8058809392\",\n        \"imp8058809383\",\n        \"imp8058809386\",\n        \"imp8058809357\",\n        \"imp8058809368\",\n        \"imp8058809369\",\n        \"imp8058809365\",\n        \"imp8058809375\",\n        \"imp8058809378\",\n        \"imp8058809385\",\n        \"imp8058809380\",\n        \"imp8058809358\",\n        \"imp8058809355\",\n        \"imp8058809384\",\n        \"imp8058809353\",\n        \"imp8058809362\",\n        \"imp8058809371\",\n        \"imp8058809450\",\n        \"imp8058809389\",\n        \"imp8058809360\",\n        \"imp8058809367\",\n        \"imp8058809366\",\n        \"imp8058809364\",\n        \"imp8058809359\",\n        \"imp8058809381\",\n        \"imp8058809361\",\n        \"imp8058809363\",\n        \"imp8058809376\",\n        \"imp8058809379\",\n        \"imp8053575764\",\n        \"imp8053575763\",\n        \"imp8053575745\",\n        \"imp8053575767\",\n        \"imp8053575766\",\n        \"imp8053575770\",\n        \"imp8053575773\",\n        \"imp8053575769\",\n        \"imp8053575762\",\n        \"imp8053575772\",\n        \"imp8053575765\",\n        \"imp00434-03299\",\n        \"imp8053575775\",\n        \"imp8053575761\",\n        \"imp8053575771\",\n        \"imp00434-03200\",\n        \"imp8053575731\",\n        \"imp8053575734\",\n        \"imp8053575739\",\n        \"imp8053575732\",\n        \"imp8053575740\",\n        \"imp8053575733\",\n        \"imp8053575735\",\n        \"imp8053575751\",\n        \"imp00434-04399\",\n        \"imp8053575738\",\n        \"imp8053575736\",\n        \"imp8053575746\",\n        \"imp8053575741\",\n        \"imp8053575744\",\n        \"imp8053575742\",\n        \"imp8053575743\",\n        \"imp8053575753\",\n        \"imp8053575755\",\n        \"imp8053575749\",\n        \"imp8053575757\",\n        \"imp8053575758\",\n        \"imp8053575759\",\n        \"imp8053575747\",\n        \"imp8053575756\",\n        \"imp8053575737\",\n        \"imp8053575774\",\n        \"imp8053575754\",\n        \"imp8053575760\",\n        \"imp8053575750\",\n        \"imp8053575752\",\n        \"imp8056833507\",\n        \"imp00434-01300\",\n        \"imp8059667441\",\n        \"imp8054565918\",\n        \"imp8054565904\",\n        \"imp8054565903\",\n        \"imp8054565925\",\n        \"imp8054565990\",\n        \"imp8054565909\",\n        \"imp8054565924\",\n        \"imp8054565902\",\n        \"imp8054565922\",\n        \"imp8054565921\",\n        \"imp8054565989\",\n        \"imp8054565910\",\n        \"imp8058804107\",\n        \"imp8058804106\",\n        \"imp8058804105\",\n        \"imp8058804109\",\n        \"imp8058804108\",\n        \"imp8056905407\",\n        \"imp8056905408\",\n        \"imp8056905409\",\n        \"imp8056181420\",\n        \"imp8056905401\",\n        \"imp8056905422\",\n        \"imp8056905420\",\n        \"imp8056905418\",\n        \"imp8056905419\",\n        \"imp8054763415\",\n        \"imp8054763417\",\n        \"imp8054763416\",\n        \"imp8054763420\",\n        \"imp8056904601\",\n        \"imp8056904603\",\n        \"imp8056904602\",\n        \"imp8056904604\",\n        \"imp8056905300\",\n        \"imp8057414265\",\n        \"imp8057414244\",\n        \"imp8057414267\",\n        \"imp8053575779\",\n        \"imp8057414266\",\n        \"imp8057414260\",\n        \"imp8057414262\",\n        \"imp8057414263\",\n        \"imp8057414250\",\n        \"imp8057414255\",\n        \"imp8057414256\",\n        \"imp8057414257\",\n        \"imp8057414264\",\n        \"imp8057414245\",\n        \"imp8057414268\",\n        \"imp8057414246\",\n        \"imp8057414269\",\n        \"imp8057414254\",\n        \"imp8053575787\",\n        \"imp8053575776\",\n        \"imp8053575777\",\n        \"imp8053575788\",\n        \"imp8059631435\",\n        \"imp8053575782\",\n        \"imp8053575781\",\n        \"imp8057221330\",\n        \"imp8053575786\",\n        \"imp8059631434\",\n        \"imp8053575785\",\n        \"imp8057414270\",\n        \"imp8053575778\",\n        \"imp8053575780\",\n        \"imp8053575789\",\n        \"imp8057221335\",\n        \"imp8053575784\",\n        \"imp8057221317\",\n        \"imp8057221318\",\n        \"imp8059626195\",\n        \"imp8053088546\",\n        \"imp8053088543\",\n        \"imp8053088550\",\n        \"imp8053088542\",\n        \"imp8053088544\",\n        \"imp8053088552\",\n        \"imp8053088549\",\n        \"imp8059637221\",\n        \"imp8053088545\",\n        \"imp8053088548\",\n        \"imp00450-03213\",\n        \"imp8053088547\",\n        \"imp8053088551\",\n        \"imp8053088541\",\n        \"imp8054561220\",\n        \"imp8054565079\",\n        \"imp8054561222\",\n        \"imp8054562732\",\n        \"imp8054561215\",\n        \"imp8054561213\",\n        \"imp8054561238\",\n        \"imp8054561237\",\n        \"imp8054565078\",\n        \"imp8054561234\",\n        \"imp8054561230\",\n        \"imp8054565077\",\n        \"imp8054561218\",\n        \"imp8054561233\",\n        \"imp8054561229\",\n        \"imp8054561217\",\n        \"imp8054561216\",\n        \"imp8054561240\",\n        \"imp8054562731\",\n        \"imp8054561223\",\n        \"imp8054562730\",\n        \"imp8054561236\",\n        \"imp8054561221\",\n        \"imp8054561219\",\n        \"imp00450-04555\",\n        \"imp00450-04510\",\n        \"imp8057221307\",\n        \"imp8057221305\",\n        \"imp8057221339\",\n        \"imp8055680089\",\n        \"imp8057221321\",\n        \"imp8057221327\",\n        \"imp8057221301\",\n        \"imp8057221303\",\n        \"imp8057221313\",\n        \"imp8057221320\",\n        \"imp8057221311\",\n        \"imp8057221329\",\n        \"imp8057221306\",\n        \"imp8057221322\",\n        \"imp8057221315\",\n        \"imp8057221325\",\n        \"TESTTEST\",\n        \"imp8057221336\",\n        \"imp8057221312\",\n        \"imp8057221316\",\n        \"imp8057221310\",\n        \"imp8057221304\",\n        \"imp8057221308\",\n        \"imp8059625387\",\n        \"imp8057221309\",\n        \"imp8057221334\",\n        \"imp8057221328\",\n        \"imp8057221302\",\n        \"imp8057221333\",\n        \"imp8057221331\",\n        \"imp8057221324\",\n        \"imp8057221314\",\n        \"imp00451-02108\",\n        \"imp00451-02107\",\n        \"imp00451-02103\",\n        \"imp00451-02106\",\n        \"imp00451-02102\",\n        \"imp00451-02101\",\n        \"imp00451-02104\",\n        \"imp00451-02109\",\n        \"imp00451-02222\",\n        \"imp00451-02333\",\n        \"imp00451-02444\",\n        \"imp00451-02105\",\n        \"imp8058804283\",\n        \"imp8058804286\",\n        \"imp8058804248\",\n        \"imp8058804249\",\n        \"imp8058807153\",\n        \"imp8058807151\",\n        \"imp8058807152\",\n        \"imp8058807154\",\n        \"imp8056905271\",\n        \"imp8056905272\",\n        \"imp8057825273\",\n        \"imp8057825274\",\n        \"imp8056905277\",\n        \"imp5598255275\",\n        \"imp5598255276\",\n        \"imp8312963321\",\n        \"imp8312963357\",\n        \"imp8312963345\",\n        \"imp8054565114\",\n        \"imp8054565116\",\n        \"imp8054565113\",\n        \"imp8054565115\",\n        \"imp8058803582\",\n        \"imp8058971168\",\n        \"imp8058971167\",\n        \"imp8058971133\",\n        \"imp8058971144\",\n        \"imp00463-01200\",\n        \"imp8058691151\",\n        \"imp8058691131\",\n        \"imp8058691154\",\n        \"imp8058691132\",\n        \"imp8058691157\",\n        \"imp8058691128\",\n        \"imp8058691129\",\n        \"imp8058691138\",\n        \"imp8058691155\",\n        \"imp8058691104\",\n        \"imp8058691116\",\n        \"imp8058691125\",\n        \"imp8058691109\",\n        \"imp8058691122\",\n        \"imp8058691107\",\n        \"imp8058691115\",\n        \"imp8058691140\",\n        \"imp8058691123\",\n        \"imp8058691112\",\n        \"imp8058691139\",\n        \"imp8058691108\",\n        \"imp8058691100\",\n        \"imp8058691127\",\n        \"imp8058691110\",\n        \"imp8058691101\",\n        \"imp8058691102\",\n        \"imp8056902738\",\n        \"imp8056902737\",\n        \"imp8056905342\",\n        \"imp8056905386\",\n        \"imp8056905381\",\n        \"imp8056905353\",\n        \"imp8056905332\",\n        \"imp8056905365\",\n        \"imp8056905354\",\n        \"imp8056905387\",\n        \"imp8056905328\",\n        \"imp8056905361\",\n        \"imp8056905358\",\n        \"imp8056905331\",\n        \"imp8056905334\",\n        \"imp8056905357\",\n        \"imp8056905345\",\n        \"imp8056905372\",\n        \"imp8056905383\",\n        \"imp8056905348\",\n        \"imp8056905341\",\n        \"imp8056905340\",\n        \"imp8056905336\",\n        \"imp8056905347\",\n        \"imp8056905352\",\n        \"imp8056905377\",\n        \"imp8056905320\",\n        \"imp8056905376\",\n        \"imp8056905380\",\n        \"imp8056905379\",\n        \"imp8056905382\",\n        \"imp8056905351\",\n        \"imp8056905366\",\n        \"imp8056905344\",\n        \"imp8056905356\",\n        \"imp8056905368\",\n        \"imp8056905350\",\n        \"imp8056905355\",\n        \"imp8056905330\",\n        \"imp8056905360\",\n        \"imp8056905335\",\n        \"imp8056905367\",\n        \"imp8056905343\",\n        \"imp8056905375\",\n        \"imp8056905349\",\n        \"imp8056905338\",\n        \"imp8056905362\",\n        \"imp8056905363\",\n        \"imp8056905329\",\n        \"imp8056905337\",\n        \"imp8056905359\",\n        \"imp8056905385\",\n        \"imp8056905373\",\n        \"imp8056905369\",\n        \"imp8056905346\",\n        \"imp8056905399\",\n        \"imp8056905396\",\n        \"imp8052433890\",\n        \"imp8052433892\",\n        \"imp8052433891\",\n        \"imp8056905161\",\n        \"imp8056905165\",\n        \"imp8056905157\",\n        \"imp8059635111\",\n        \"imp8059635117\",\n        \"imp8059799769\",\n        \"imp8059799384\",\n        \"imp8056905175\",\n        \"imp8059793368\",\n        \"imp8056905168\",\n        \"imp8059635114\",\n        \"imp8059799391\",\n        \"imp8059793378\",\n        \"imp8059799381\",\n        \"imp8059635116\",\n        \"imp8056905178\",\n        \"imp8056905162\",\n        \"imp8059799390\",\n        \"imp8056905179\",\n        \"imp8059799536\",\n        \"imp8056905177\",\n        \"imp8056905164\",\n        \"imp8059635103\",\n        \"imp8056905167\",\n        \"imp8059793380\",\n        \"imp8056905176\",\n        \"imp8056905155\",\n        \"imp8059793363\",\n        \"imp8059799766\",\n        \"imp8059793373\",\n        \"imp8059793362\",\n        \"imp8059799387\",\n        \"imp8056905166\",\n        \"imp8059793364\",\n        \"imp8059799382\",\n        \"imp8056905170\",\n        \"imp8056905156\",\n        \"imp8059799539\",\n        \"imp8059635106\",\n        \"imp8059635101\",\n        \"imp8059793369\",\n        \"imp8059799385\",\n        \"imp8059793371\",\n        \"imp8056905154\",\n        \"imp8059635115\",\n        \"imp8059799537\",\n        \"imp8059635102\",\n        \"imp8059793365\",\n        \"imp8056905163\",\n        \"imp8059793376\",\n        \"imp8059799386\",\n        \"imp8059793372\",\n        \"imp8059799538\",\n        \"imp8059793379\",\n        \"imp8059799383\",\n        \"imp8059799768\",\n        \"imp8059793374\",\n        \"imp8059793375\",\n        \"imp8056905152\",\n        \"imp8059799767\",\n        \"imp8059793367\",\n        \"imp8059799389\",\n        \"imp8059635118\",\n        \"imp8059635109\",\n        \"imp8059793370\",\n        \"imp8059635108\",\n        \"imp8056905172\",\n        \"imp8056905173\",\n        \"imp8059799380\",\n        \"imp8056905174\",\n        \"imp8059635112\",\n        \"imp8056905153\",\n        \"imp8059635119\",\n        \"imp8059793366\",\n        \"imp8059635100\",\n        \"imp8059799388\",\n        \"imp8056905160\",\n        \"imp8059635110\",\n        \"imp8056905151\",\n        \"imp8056905150\",\n        \"imp8056905171\",\n        \"imp8056905158\",\n        \"imp8059635104\",\n        \"imp8059635113\",\n        \"imp8059635105\",\n        \"imp8056905159\",\n        \"imp8059793381\",\n        \"imp00470-01300\",\n        \"imp8054567056\",\n        \"imp8054567051\",\n        \"imp8054567057\",\n        \"imp8054567055\",\n        \"imp8054567075\",\n        \"imp8054567054\",\n        \"imp8055675406\",\n        \"imp8054567052\",\n        \"imp8054567050\",\n        \"imp8054567039\",\n        \"imp8059798851\",\n        \"imp8059798852\",\n        \"imp8057702652\",\n        \"imp00474-02300\",\n        \"imp8057702572\",\n        \"imp8057702629\",\n        \"imp8058809492\",\n        \"imp8058809491\",\n        \"imp8058804119\",\n        \"imp8058804125\",\n        \"imp8058804121\",\n        \"imp8058804117\",\n        \"imp8058804118\",\n        \"imp8058804122\",\n        \"imp8058804126\",\n        \"imp8058804113\",\n        \"imp8058804111\",\n        \"imp8058804110\",\n        \"imp8058804112\",\n        \"8052433827@00480.impulsevoip.net\",\n        \"imp00480-02-trunk\",\n        \"8052849145@00480.impulsevoip.net\",\n        \"8055699864@00480.impulsevoip.net\",\n        \"8056172322@00480.impulsevoip.net\",\n        \"8056172323@00480.impulsevoip.net\",\n        \"8056172324@00480.impulsevoip.net\",\n        \"8056172325@00480.impulsevoip.net\",\n        \"8056172326@00480.impulsevoip.net\",\n        \"8056172327@00480.impulsevoip.net\",\n        \"8056172328@00480.impulsevoip.net\",\n        \"8056172329@00480.impulsevoip.net\",\n        \"8056172330@00480.impulsevoip.net\",\n        \"8056172331@00480.impulsevoip.net\",\n        \"8056172332@00480.impulsevoip.net\",\n        \"8056172333@00480.impulsevoip.net\",\n        \"8056172334@00480.impulsevoip.net\",\n        \"8056172335@00480.impulsevoip.net\",\n        \"8056172336@00480.impulsevoip.net\",\n        \"8056172337@00480.impulsevoip.net\",\n        \"8056172338@00480.impulsevoip.net\",\n        \"8056172339@00480.impulsevoip.net\",\n        \"8056172340@00480.impulsevoip.net\",\n        \"8056172341@00480.impulsevoip.net\",\n        \"8056172342@00480.impulsevoip.net\",\n        \"8056172343@00480.impulsevoip.net\",\n        \"8056172344@00480.impulsevoip.net\",\n        \"8056172345@00480.impulsevoip.net\",\n        \"8056172346@00480.impulsevoip.net\",\n        \"8056172347@00480.impulsevoip.net\",\n        \"8056172348@00480.impulsevoip.net\",\n        \"8056172349@00480.impulsevoip.net\",\n        \"8056172350@00480.impulsevoip.net\",\n        \"8056172351@00480.impulsevoip.net\",\n        \"8056172352@00480.impulsevoip.net\",\n        \"8056172353@00480.impulsevoip.net\",\n        \"8056172354@00480.impulsevoip.net\",\n        \"8056172355@00480.impulsevoip.net\",\n        \"8056172356@00480.impulsevoip.net\",\n        \"8056172357@00480.impulsevoip.net\",\n        \"8056172358@00480.impulsevoip.net\",\n        \"8056172359@00480.impulsevoip.net\",\n        \"8056172360@00480.impulsevoip.net\",\n        \"8056172361@00480.impulsevoip.net\",\n        \"8056172362@00480.impulsevoip.net\",\n        \"8056172363@00480.impulsevoip.net\",\n        \"8056172364@00480.impulsevoip.net\",\n        \"8056172365@00480.impulsevoip.net\",\n        \"8058456587@00480.impulsevoip.net\",\n        \"8058456781@00480.impulsevoip.net\",\n        \"8058456782@00480.impulsevoip.net\",\n        \"8058457535@00480.impulsevoip.net\",\n        \"8058458276@00480.impulsevoip.net\",\n        \"8058458981@00480.impulsevoip.net\",\n        \"imp8053575720\",\n        \"imp8053575714\",\n        \"imp8053575713\",\n        \"imp8053575706\",\n        \"imp8053575719\",\n        \"imp8053575710\",\n        \"imp8053575721\",\n        \"imp8053575722\",\n        \"imp8053575715\",\n        \"imp8053575708\",\n        \"imp8053575712\",\n        \"imp8053575716\",\n        \"imp8053575707\",\n        \"imp8053575704\",\n        \"imp8053575705\",\n        \"imp8053575703\",\n        \"imp8053575702\",\n        \"imp8053575701\",\n        \"imp8058799705\",\n        \"imp8058799720\",\n        \"imp8058799703\",\n        \"imp8058799719\",\n        \"imp8058799723\",\n        \"imp8058799710\",\n        \"imp8058799711\",\n        \"imp8058799709\",\n        \"imp8058799708\",\n        \"imp8058799712\",\n        \"imp8058799706\",\n        \"imp8058799715\",\n        \"imp8058799725\",\n        \"imp8058799718\",\n        \"imp8058799721\",\n        \"imp8058799726\",\n        \"imp8058799701\",\n        \"imp8058799702\",\n        \"imp8058799716\",\n        \"imp8058799707\",\n        \"imp8058799717\",\n        \"imp8058799722\",\n        \"imp8056216386\",\n        \"imp8056216393\",\n        \"imp8056216383\",\n        \"imp8056216387\",\n        \"imp8056216392\",\n        \"imp8056216384\",\n        \"imp8056216391\",\n        \"imp8056216389\",\n        \"imp8056216385\",\n        \"imp8056216382\",\n        \"imp8056216388\",\n        \"imp8052961769\",\n        \"imp8052961686\",\n        \"imp8052961773\",\n        \"imp8052961782\",\n        \"imp8052961685\",\n        \"imp8052961776\",\n        \"imp8052961777\",\n        \"imp8052961779\",\n        \"imp8052961681\",\n        \"imp8052961774\",\n        \"imp8052961780\",\n        \"imp8052961783\",\n        \"imp8052961770\",\n        \"imp8052961778\",\n        \"imp8052961761\",\n        \"imp8052961771\",\n        \"imp8052961772\",\n        \"imp8052961775\",\n        \"imp00484-010001\",\n        \"imp8057307882\",\n        \"imp8053358142\",\n        \"imp8057701325\",\n        \"imp8057307877\",\n        \"imp00484-028910\",\n        \"imp8057701343\",\n        \"imp8053358118\",\n        \"imp8057701306\",\n        \"imp8057307878\",\n        \"imp8053358144\",\n        \"imp8057304992\",\n        \"imp8059793846\",\n        \"imp8053358168\",\n        \"imp8057304979\",\n        \"imp8057307881\",\n        \"imp8057307898\",\n        \"imp8059793439\",\n        \"imp8057307867\",\n        \"imp8057307896\",\n        \"imp8057701328\",\n        \"imp8057307879\",\n        \"imp8057304995\",\n        \"imp8057307861\",\n        \"imp00484-024970\",\n        \"imp8053358119\",\n        \"imp8053358125\",\n        \"imp8057701324\",\n        \"imp8053358148\",\n        \"imp8057304993\",\n        \"imp8053358135\",\n        \"imp8057304983\",\n        \"imp8053358141\",\n        \"imp8057304994\",\n        \"imp8057701329\",\n        \"imp8053358160\",\n        \"imp8057304984\",\n        \"imp8057701304\",\n        \"imp8053358162\",\n        \"imp8057701321\",\n        \"imp8053358133\",\n        \"imp8059793845\",\n        \"imp8059793546\",\n        \"imp8057307887\",\n        \"imp8057304987\",\n        \"imp8057304997\",\n        \"imp8057701303\",\n        \"imp8057304990\",\n        \"imp8053358161\",\n        \"imp8057307869\",\n        \"imp8059793851\",\n        \"imp8059793853\",\n        \"imp8057307891\",\n        \"imp8057307876\",\n        \"imp8057307863\",\n        \"imp8053358120\",\n        \"imp8057307875\",\n        \"imp8053358121\",\n        \"imp8053358149\",\n        \"imp8057304977\",\n        \"imp8053358111\",\n        \"imp8057307883\",\n        \"imp8057307894\",\n        \"imp8057307862\",\n        \"imp8053358124\",\n        \"imp8053358140\",\n        \"imp8057307864\",\n        \"imp8057307872\",\n        \"imp8053358143\",\n        \"imp8057304976\",\n        \"imp8057307885\",\n        \"imp8057701301\",\n        \"imp8057307874\",\n        \"imp8057307893\",\n        \"imp8053358131\",\n        \"imp8053358132\",\n        \"imp8057304978\",\n        \"imp8057304998\",\n        \"imp8057304985\",\n        \"imp8057307870\",\n        \"imp00484-024971\",\n        \"imp8057307871\",\n        \"imp8057304989\",\n        \"imp8057307868\",\n        \"imp8057307895\",\n        \"imp8053358128\",\n        \"imp8057307866\",\n        \"imp8059793852\",\n        \"imp8057304975\",\n        \"imp8053358114\",\n        \"imp8057307890\",\n        \"imp8053358134\",\n        \"imp00484-038164\",\n        \"imp8057701312\",\n        \"imp8053358115\",\n        \"imp8053358117\",\n        \"imp8053358113\",\n        \"imp8057304996\",\n        \"imp8053358112\",\n        \"imp8055406241\",\n        \"imp8055406249\",\n        \"imp8055406245\",\n        \"imp8055406236\",\n        \"imp8055406250\",\n        \"imp8055406244\",\n        \"imp8055406246\",\n        \"imp8055406231\",\n        \"imp8055406251\",\n        \"imp8055406237\",\n        \"imp8053358169\",\n        \"imp8055406252\",\n        \"imp8055406233\",\n        \"imp8055406239\",\n        \"imp8055406261\",\n        \"imp8055406238\",\n        \"imp8055406234\",\n        \"imp8055406232\",\n        \"imp8055406243\",\n        \"imp8055406242\",\n        \"imp8055406235\",\n        \"imp8055406248\",\n        \"imp8055406230\",\n        \"imp8057701345\",\n        \"imp8055406259\",\n        \"imp8057307873\",\n        \"imp8057701323\",\n        \"imp8057701334\",\n        \"imp8057307884\",\n        \"imp8057304986\",\n        \"imp8057701344\",\n        \"imp8059793847\",\n        \"imp8057701309\",\n        \"imp8057701317\",\n        \"imp8057304982\",\n        \"imp8057701335\",\n        \"imp8057701308\",\n        \"imp8057701319\",\n        \"imp8057701305\",\n        \"imp8058595103\",\n        \"imp8058595106\",\n        \"imp8058595107\",\n        \"imp8058595110\",\n        \"imp8058595111\",\n        \"imp8058595112\",\n        \"imp8058595101\",\n        \"imp00485-021001\",\n        \"imp00485-021002\",\n        \"imp00485-021003\",\n        \"imp8059799680\",\n        \"imp8059799676\",\n        \"imp8059799679\",\n        \"imp8059799681\",\n        \"imp8059799682\",\n        \"imp8056263150\",\n        \"imp8059799678\",\n        \"imp00485-011000\",\n        \"imp8055554445\",\n        \"imp8052593226\",\n        \"imp8052220350\",\n        \"imp7029569536\",\n        \"imp7029569535\",\n        \"imp6027674372\",\n        \"imp6618577230\",\n        \"imp6618577237\",\n        \"imp6618577233\",\n        \"imp7149846044\",\n        \"imp8006730034\",\n        \"imp6618577234\",\n        \"imp6618577235\",\n        \"imp7252181462\",\n        \"imp7252181461\",\n        \"imp7252181464\",\n        \"imp7252181463\",\n        \"imp8055652557\",\n        \"imp8055652555\",\n        \"imp8055652558\",\n        \"imp8055652561\",\n        \"imp8055652556\",\n        \"imp8055652563\",\n        \"imp8055652551\",\n        \"imp8055652565\",\n        \"imp8055652562\",\n        \"imp8055652570\",\n        \"imp8055652553\",\n        \"imp8055652571\",\n        \"imp8055652572\",\n        \"imp8055652568\",\n        \"imp8055652554\",\n        \"imp8055652552\",\n        \"imp2097207473\",\n        \"imp2097207472\",\n        \"imp2097207471\",\n        \"imp8057413316\",\n        \"imp8057413324\",\n        \"imp8057413321\",\n        \"imp8057413315\",\n        \"imp8057413312\",\n        \"imp8057413320\",\n        \"imp8057413318\",\n        \"imp8057413319\",\n        \"imp8057413322\",\n        \"imp8057413314\",\n        \"imp8058991543\",\n        \"imp8058991541\",\n        \"imp00493-02151\",\n        \"imp00493-02252\",\n        \"imp00493-02353\",\n        \"imp8058991544\",\n        \"imp8058991542\",\n        \"imp8053358580\",\n        \"imp8053358633\",\n        \"imp8053358581\",\n        \"imp8053358659\",\n        \"imp8053358631\",\n        \"imp8053358642\",\n        \"imp8053358667\",\n        \"imp00497-02123\",\n        \"imp8053358527\",\n        \"imp8053358635\",\n        \"imp8053358526\",\n        \"imp8053358639\",\n        \"imp8053358670\",\n        \"imp8059678851\",\n        \"imp8056832960\",\n        \"imp8055655704\",\n        \"imp8056905141\",\n        \"imp8056915109\",\n        \"imp8056905145\",\n        \"imp8056915125\",\n        \"imp8056905149\",\n        \"imp8056915150\",\n        \"imp8056915106\",\n        \"imp8053089116\",\n        \"imp8056905187\",\n        \"imp8056905144\",\n        \"imp8056905147\",\n        \"imp8056915102\",\n        \"imp8056905146\",\n        \"imp8056905199\",\n        \"imp8056905143\",\n        \"imp8053089125\",\n        \"imp8056905140\",\n        \"imp8056915111\",\n        \"imp8056915105\",\n        \"imp8056905186\",\n        \"imp8056905142\",\n        \"imp8056915104\",\n        \"imp8056938352\",\n        \"imp8056938362\",\n        \"imp8059798847\",\n        \"imp8059798845\",\n        \"imp8059798843\",\n        \"imp8059798841\",\n        \"imp8059798842\",\n        \"imp8059798846\",\n        \"imp8059798844\",\n        \"imp8059798848\",\n        \"imp8059798849\",\n        \"imp8059798825\",\n        \"imp8059798826\",\n        \"imp8059798827\",\n        \"imp8059798823\",\n        \"imp8059798824\",\n        \"imp8055671417\",\n        \"imp8323976942\",\n        \"imp8059798767\",\n        \"imp8059798717\",\n        \"imp8059798789\",\n        \"imp8059798781\",\n        \"imp8059798786\",\n        \"imp8059798727\",\n        \"imp8059798723\",\n        \"imp8059798739\",\n        \"imp8059798725\",\n        \"imp8059798736\",\n        \"imp8059798737\",\n        \"imp8059798721\",\n        \"imp8059798726\",\n        \"imp8059798722\",\n        \"imp8059798704\",\n        \"imp8059798731\",\n        \"imp8059798734\",\n        \"imp8059798733\",\n        \"imp8059798716\",\n        \"imp8059798735\",\n        \"imp8059798703\",\n        \"imp8059798732\",\n        \"imp8059798738\",\n        \"imp8055652595\",\n        \"imp8055652589\",\n        \"imp8055652584\",\n        \"imp8055652582\",\n        \"imp8055652591\",\n        \"imp8053572562\",\n        \"imp8055652590\",\n        \"imp8055652588\",\n        \"imp8055652594\",\n        \"imp8055652592\",\n        \"imp8055652597\",\n        \"imp8055652587\",\n        \"imp8055652596\",\n        \"imp8055652583\",\n        \"imp8053572561\",\n        \"imp8055652585\",\n        \"imp8055652593\",\n        \"imp8056796233\",\n        \"imp8056796244\",\n        \"imp8059262219\",\n        \"imp8059262218\",\n        \"imp00513-02456\",\n        \"imp8059262216\",\n        \"imp8059262217\",\n        \"imp00514-02379\",\n        \"imp00514-02326\",\n        \"imp00514-02410\",\n        \"imp00514-02416\",\n        \"imp00514-02670\",\n        \"imp00514-02515\",\n        \"imp00514-02626\",\n        \"imp00514-02226\",\n        \"imp00514-02607\",\n        \"imp00514-02415\",\n        \"imp00514-02424\",\n        \"imp00514-02419\",\n        \"imp00514-02442\",\n        \"imp00514-02409\",\n        \"imp00514-02650\",\n        \"imp00514-02519\",\n        \"imp00514-02405\",\n        \"imp00514-02222\",\n        \"imp00514-02506\",\n        \"imp00514-02298\",\n        \"imp00514-02428\",\n        \"imp00514-02412\",\n        \"imp00514-02612\",\n        \"imp00514-02407\",\n        \"imp00514-02441\",\n        \"imp00514-02420\",\n        \"imp00514-02502\",\n        \"imp00514-02625\",\n        \"imp00514-02613\",\n        \"imp00514-01100\",\n        \"imp00516-02123\",\n        \"imp00516-02213\",\n        \"imp00516-02131\",\n        \"imp00516-02216\",\n        \"imp00516-02226\",\n        \"imp00516-02234\",\n        \"imp00516-02136\",\n        \"imp00516-02225\",\n        \"imp00516-02240\",\n        \"imp00516-02236\",\n        \"imp00516-02228\",\n        \"imp00516-02167\",\n        \"imp00516-02154\",\n        \"imp00516-02140\",\n        \"imp00516-02210\",\n        \"imp00516-02147\",\n        \"imp00516-02141\",\n        \"imp00516-02135\",\n        \"imp00516-02117\",\n        \"imp00516-02115\",\n        \"imp00516-02238\",\n        \"imp00516-02275\",\n        \"imp00516-02116\",\n        \"imp00516-02125\",\n        \"imp00516-02211\",\n        \"imp00516-02139\",\n        \"imp00516-02124\",\n        \"imp00516-02130\",\n        \"imp00516-02272\",\n        \"imp00516-02112\",\n        \"imp00516-02109\",\n        \"imp00516-02110\",\n        \"imp00516-02218\",\n        \"imp00516-02273\",\n        \"imp00516-02205\",\n        \"imp00516-02232\",\n        \"imp00516-02274\",\n        \"imp00516-02206\",\n        \"imp00516-02260\",\n        \"imp00516-02156\",\n        \"imp00516-02113\",\n        \"imp00516-02230\",\n        \"imp00516-02253\",\n        \"imp00516-02118\",\n        \"imp00516-02119\",\n        \"imp00516-02120\",\n        \"imp00516-02121\",\n        \"imp00518-02760\",\n        \"imp8058677766x\",\n        \"imp8058677767x\",\n        \"imp8058677765\",\n        \"imp8054573698\",\n        \"imp8054573718\",\n        \"imp8054573693\",\n        \"imp8054214095\",\n        \"imp8054382268\",\n        \"imp8054382269\",\n        \"imp8054290871\",\n        \"imp8054572612\",\n        \"imp8054572410\",\n        \"imp8054214094\",\n        \"imp8054573752\",\n        \"imp8054573753\",\n        \"imp8054094804\",\n        \"imp8054094867\",\n        \"imp8054214089\",\n        \"imp8054214090\",\n        \"imp8054094938\",\n        \"imp8054214091\",\n        \"imp8054572473\",\n        \"imp8054573756\",\n        \"imp8054572585\",\n        \"imp8054573845\",\n        \"imp8054572475\",\n        \"imp8054572502\",\n        \"imp8054572538\",\n        \"imp8054572532\",\n        \"imp8054572923\",\n        \"imp8054290853\",\n        \"imp8054377580\",\n        \"imp8054290844\",\n        \"imp8054572621\",\n        \"imp8054090795\",\n        \"imp8054572931\",\n        \"imp8054090822\",\n        \"imp8054290843\",\n        \"imp8054573755\",\n        \"imp8054090906\",\n        \"imp8054572623\",\n        \"imp8054572482\",\n        \"imp8054572487\",\n        \"imp8054572925\",\n        \"imp8054572620\",\n        \"imp8054572599\",\n        \"imp8054377599\",\n        \"imp8054573832\",\n        \"imp8054290839\",\n        \"imp8054377587\",\n        \"imp8054290841\",\n        \"imp8054573847\",\n        \"imp8054572922\",\n        \"imp8054572631\",\n        \"imp8054290848\",\n        \"imp8054572506\",\n        \"imp8054290865\",\n        \"imp8054290864\",\n        \"imp8054094475\",\n        \"imp8054572391\",\n        \"imp8054377596\",\n        \"imp8054377461\",\n        \"imp8054573742\",\n        \"imp8054290866\",\n        \"imp8054572928\",\n        \"imp8054572617\",\n        \"imp8054572625\",\n        \"imp8054572509\",\n        \"imp8054290861\",\n        \"imp8054573836\",\n        \"imp8054572750\",\n        \"imp8054572465\",\n        \"imp8054377586\",\n        \"imp8054572624\",\n        \"imp8054377597\",\n        \"imp8054290862\",\n        \"imp8054572930\",\n        \"imp8054377460\",\n        \"imp8054572464\",\n        \"imp8054377592\",\n        \"imp8054377589\",\n        \"imp8054090690\",\n        \"imp8054572652\",\n        \"imp8054090814\",\n        \"imp8054573762\",\n        \"imp8054090804\",\n        \"imp8054573841\",\n        \"imp8054094933\",\n        \"imp8054090685\",\n        \"imp8054377593\",\n        \"imp8054090806\",\n        \"imp8054572751\",\n        \"imp8053645315\",\n        \"imp8054377591\",\n        \"imp8054290870\",\n        \"imp8059878154\",\n        \"imp8054290867\",\n        \"imp8054572583\",\n        \"imp8054573745\",\n        \"imp8054573835\",\n        \"imp8054090724\",\n        \"imp8054572472\",\n        \"imp8054090812\",\n        \"imp8054090758\",\n        \"imp8054573749\",\n        \"imp8054573840\",\n        \"imp8054290852\",\n        \"imp8054377598\",\n        \"imp8054572529\",\n        \"imp8054573848\",\n        \"imp8054572762\",\n        \"imp8054573849\",\n        \"imp8054290840\",\n        \"imp8054573692\",\n        \"imp8054573982\",\n        \"imp8054572486\",\n        \"imp8054573830\",\n        \"imp8054572540\",\n        \"imp8054572619\",\n        \"imp8054377590\",\n        \"imp8054572794\",\n        \"imp8054572685\",\n        \"imp8054573687\",\n        \"imp8054823093\",\n        \"imp8054377462\",\n        \"imp8054572921\",\n        \"imp8054290837\",\n        \"imp8054573694\",\n        \"imp8054290842\",\n        \"imp8054823063\",\n        \"imp00521-02771\",\n        \"imp00521-02772\",\n        \"imp8054290829\",\n        \"imp8058794601\",\n        \"imp00522-03166\",\n        \"imp8058794611\",\n        \"imp8058794613\",\n        \"imp8058794688\",\n        \"imp00522-03101\",\n        \"imp8058794606\",\n        \"imp8058794612\",\n        \"imp8058794690\",\n        \"imp8058794661\",\n        \"imp8058794618\",\n        \"imp8058794631\",\n        \"imp8058794633\",\n        \"imp8058794626\",\n        \"imp8058794648\",\n        \"imp8058794616\",\n        \"imp8058794621\",\n        \"imp8058794619\",\n        \"imp00522-03177\",\n        \"imp8058794614\",\n        \"imp8058794642\",\n        \"imp8058794652\",\n        \"imp8058794659\",\n        \"imp8058794643\",\n        \"imp8058794627\",\n        \"imp8058794623\",\n        \"imp8058794651\",\n        \"imp8058794635\",\n        \"imp8058794665\",\n        \"imp8058794646\",\n        \"imp00522-03999\",\n        \"imp00522-03179\",\n        \"imp8058794610\",\n        \"imp8058794604\",\n        \"imp8058794608\",\n        \"imp8058794636\",\n        \"imp8058794681\",\n        \"imp8058794620\",\n        \"imp8058794653\",\n        \"imp8058794641\",\n        \"imp8058794625\",\n        \"imp8058794663\",\n        \"imp8058794630\",\n        \"imp8058794647\",\n        \"imp8058794640\",\n        \"imp8058794634\",\n        \"imp8058794658\",\n        \"imp8058794689\",\n        \"imp8058794662\",\n        \"imp8058794660\",\n        \"imp8058794615\",\n        \"imp8058794667\",\n        \"imp8058794632\",\n        \"imp8058794624\",\n        \"imp8058794691\",\n        \"imp8058794693\",\n        \"imp8058794678\",\n        \"imp8058794676\",\n        \"imp8058794671\",\n        \"imp8058794605\",\n        \"imp8058794677\",\n        \"imp8058794692\",\n        \"imp8058794638\",\n        \"imp8058794694\",\n        \"imp8058794673\",\n        \"imp8058794674\",\n        \"imp00522-01111\",\n        \"imp00523-02101\",\n        \"imp00523-02102\",\n        \"imp00523-02103\",\n        \"imp00523-02104\",\n        \"8059621279@00523.impulsevoip.net\",\n        \"00523-01-trunk\",\n        \"8059622527@00523.impulsevoip.net\",\n        \"8059622542@00523.impulsevoip.net\",\n        \"8059630899@00523.impulsevoip.net\",\n        \"8059633709@00523.impulsevoip.net\",\n        \"8059634269@00523.impulsevoip.net\",\n        \"8059638845@00523.impulsevoip.net\",\n        \"8059638846@00523.impulsevoip.net\",\n        \"8059638847@00523.impulsevoip.net\",\n        \"8059639822@00523.impulsevoip.net\",\n        \"8006635288@00523.impulsevoip.net\",\n        \"imp00524-02101\",\n        \"imp00524-02102\",\n        \"imp00524-02104\",\n        \"imp00524-02222\",\n        \"imp00524-02333\",\n        \"imp00524-02444\",\n        \"imp00524-02103\",\n        \"imp00525-01171\",\n        \"imp8059794053\",\n        \"imp8059794042\",\n        \"imp8059794040\",\n        \"imp8059794041\",\n        \"imp8059794050\",\n        \"imp00532-02107\",\n        \"imp00532-02115\",\n        \"imp00532-02116\",\n        \"imp00532-02100\",\n        \"imp00532-02127\",\n        \"imp00532-02126\",\n        \"imp00532-02119\",\n        \"imp00532-02104\",\n        \"imp00532-02103\",\n        \"imp00532-02149\",\n        \"imp00532-02125\",\n        \"imp00532-02106\",\n        \"imp00532-02105\",\n        \"imp00532-02101\",\n        \"imp00532-02113\",\n        \"imp00532-02133\",\n        \"imp00532-02130\",\n        \"imp00532-02150\",\n        \"imp00532-02109\",\n        \"imp00532-02123\",\n        \"imp00532-02120\",\n        \"imp00532-02108\",\n        \"imp00532-02128\",\n        \"imp00532-02124\",\n        \"imp00532-02110\",\n        \"imp00532-02112\",\n        \"imp00532-02999\",\n        \"imp00532-02143\",\n        \"imp8059634501\",\n        \"imp00532-01111\",\n        \"imp00533-03218\",\n        \"imp00533-03210\",\n        \"imp00533-03215\",\n        \"imp00533-03216\",\n        \"imp00533-03208\",\n        \"imp5127746340\",\n        \"imp00533-03214\",\n        \"imp00533-03209\",\n        \"imp00533-03211\",\n        \"imp00533-03217\",\n        \"imp00533-03212\",\n        \"imp00533-03206\",\n        \"imp00533-03201\",\n        \"imp00533-03202\",\n        \"imp00533-03203\",\n        \"imp00533-03204\",\n        \"imp00533-03205\",\n        \"imp00533-03207\",\n        \"imp5127746308\",\n        \"imp5127746358\",\n        \"imp00533-02120\",\n        \"imp00533-02111\",\n        \"imp00533-02116\",\n        \"imp00533-02105\",\n        \"imp00533-02102\",\n        \"imp00533-02103\",\n        \"imp00533-02118\",\n        \"imp00533-02127\",\n        \"imp00533-02117\",\n        \"imp00533-02106\",\n        \"imp00533-02130\",\n        \"imp00533-02113\",\n        \"imp00533-02121\",\n        \"imp00533-02104\",\n        \"imp00533-02129\",\n        \"imp00533-02110\",\n        \"imp00533-02109\",\n        \"imp00533-02126\",\n        \"imp00533-02112\",\n        \"imp00533-02108\",\n        \"imp00533-02125\",\n        \"imp00533-02107\",\n        \"imp00533-02114\",\n        \"imp00533-02131\",\n        \"imp00533-02115\",\n        \"imp00533-02101\",\n        \"imp00533-02119\",\n        \"imp00534-01200\",\n        \"imp8056798429\",\n        \"imp8056798430\",\n        \"imp8056798447\",\n        \"imp8056798505\",\n        \"imp8056796259\",\n        \"imp8056798449\",\n        \"imp8056798468\",\n        \"imp8056798465\",\n        \"imp8056798440\",\n        \"imp8056798492\",\n        \"imp8056798486\",\n        \"imp8056796217\",\n        \"imp8056796247\",\n        \"imp8056798439\",\n        \"imp8056796256\",\n        \"imp8056798458\",\n        \"imp8056798508\",\n        \"imp8056798436\",\n        \"imp8056798442\",\n        \"imp8056798444\",\n        \"imp8056798445\",\n        \"imp8056798448\",\n        \"imp8056798450\",\n        \"imp8056798477\",\n        \"imp8056798483\",\n        \"imp8056798484\",\n        \"imp8056798496\",\n        \"imp8056798499\",\n        \"imp8056798500\",\n        \"imp8056798461\",\n        \"imp8056798454\",\n        \"imp8056796238\",\n        \"imp8056798438\",\n        \"imp8056798434\",\n        \"imp8056798455\",\n        \"imp8056798482\",\n        \"imp8056796242\",\n        \"imp8056798501\",\n        \"imp8056798432\",\n        \"imp8056796232\",\n        \"imp8056798459\",\n        \"imp8056796219\",\n        \"imp8056798446\",\n        \"imp8056798462\",\n        \"imp8056798480\",\n        \"imp8056798506\",\n        \"imp8056796234\",\n        \"imp8056798453\",\n        \"imp8056798441\",\n        \"imp8056798487\",\n        \"imp8056798481\",\n        \"imp8056796251\",\n        \"imp8056798478\",\n        \"imp8056798460\",\n        \"imp8056796254\",\n        \"imp8056798502\",\n        \"imp8056798456\",\n        \"imp8056798464\",\n        \"imp8059635695\",\n        \"imp8056798510\",\n        \"imp8056798488\",\n        \"imp8056798452\",\n        \"imp8059630694\",\n        \"imp8056798509\",\n        \"imp8056796248\",\n        \"imp8056796250\",\n        \"imp8056798443\",\n        \"imp8056798463\",\n        \"imp8056798433\",\n        \"imp8056798466\",\n        \"imp8056798467\",\n        \"imp8056798507\",\n        \"imp8056798457\",\n        \"imp8056798437\",\n        \"imp8056798435\",\n        \"imp8056796240\",\n        \"imp8056798485\",\n        \"imp8056798431\",\n        \"imp8056798503\",\n        \"imp8056798504\",\n        \"imp8056798451\",\n        \"imp8058801974\",\n        \"imp8058801958\",\n        \"imp8058801942\",\n        \"imp8058801298\",\n        \"imp8058801294\",\n        \"imp8058801297\",\n        \"imp8058801972\",\n        \"imp8058801973\",\n        \"imp00536-02264\",\n        \"imp00536-02111\",\n        \"imp8058801957\",\n        \"imp8058801955\",\n        \"imp8055661600\",\n        \"imp8055661602\",\n        \"imp8055661603\",\n        \"imp8055661621\",\n        \"imp8055661629\",\n        \"imp8055661611\",\n        \"imp8055661619\",\n        \"imp8055661626\",\n        \"imp8055661613\",\n        \"imp8055661617\",\n        \"imp8055661627\",\n        \"imp8055661628\",\n        \"imp8055661607\",\n        \"imp8055661606\",\n        \"imp8055661605\",\n        \"imp8055661618\",\n        \"imp3025580007\",\n        \"imp8058799917\",\n        \"imp8058799918\",\n        \"imp8058799930\",\n        \"impB8053352592\",\n        \"imp8057413313\",\n        \"imp4695966750\",\n        \"imp00546-01132\",\n        \"imp8058803595\",\n        \"imp8058803596\",\n        \"imp00547-01100\",\n        \"imp8186657361\",\n        \"imp5597526414\",\n        \"imp8186657351\",\n        \"imp5597524941\",\n        \"imp8186657369\",\n        \"imp8186657352\",\n        \"imp8186657360\",\n        \"imp8186657350\",\n        \"imp8186657354\",\n        \"imp8186657355\",\n        \"imp8186657356\",\n        \"imp8186657357\",\n        \"imp8186657364\",\n        \"imp8186657366\",\n        \"imp8186657371\",\n        \"imp8186657367\",\n        \"imp8186657372\",\n        \"imp8186657370\",\n        \"imp8186657368\",\n        \"imp8186657353\",\n        \"imp8186657362\",\n        \"imp8186657365\",\n        \"imp8186657359\",\n        \"imp8186657358\",\n        \"imp8186657363\",\n        \"imp00547-02200\",\n        \"imp8056939238\",\n        \"imp8057414289\",\n        \"imp8057414281\",\n        \"imp8057021894\",\n        \"imp8057414282\",\n        \"imp8057414283\",\n        \"imp8057023010\",\n        \"imp8057414284\",\n        \"imp8057021810\",\n        \"imp8057414280\",\n        \"imp8057021879\",\n        \"imp8057021878\",\n        \"imp8057023168\",\n        \"imp8057414292\",\n        \"imp8057021994\",\n        \"imp8057020838\",\n        \"imp8057020342\",\n        \"imp8057021960\",\n        \"imp8057021999\",\n        \"imp8057021913\",\n        \"imp8057414287\",\n        \"imp8057414288\",\n        \"imp8057414286\",\n        \"imp8057021826\",\n        \"imp8057021915\",\n        \"imp8057414285\",\n        \"imp00549-011001\",\n        \"imp00550-025502\",\n        \"imp00550-025503\",\n        \"imp00550-025504\",\n        \"imp00550-025505\",\n        \"imp00550-025501\",\n        \"imp00550-033802\",\n        \"imp00550-033803\",\n        \"imp00550-033801\",\n        \"imp00551-02101\",\n        \"imp00551-02102\",\n        \"imp00551-02106\",\n        \"imp00551-02107\",\n        \"imp00551-02108\",\n        \"imp00551-02109\",\n        \"imp00551-02110\",\n        \"imp00551-02100\",\n        \"imp00551-02104\",\n        \"imp00551-02105\",\n        \"imp8478548464\",\n        \"imp8055661631\",\n        \"imp8055661635\",\n        \"imp8055661632\",\n        \"imp8056972832\",\n        \"imp8056972831\",\n        \"imp8056972833\",\n        \"imp8056972834\",\n        \"imp8056972835\",\n        \"imp8056972836\",\n        \"imp8056972837\",\n        \"imp8056924027\",\n        \"imp8056921424\",\n        \"imp8053306825\",\n        \"imp8053306826\",\n        \"imp8053306824\",\n        \"imp8053306823\",\n        \"imp5028057238\",\n        \"imp5028057239\",\n        \"imp5028057240\",\n        \"imp5028057241\",\n        \"imp5028057230\",\n        \"imp5028057299\",\n        \"imp5028057231\",\n        \"imp5028057232\",\n        \"imp5028057233\",\n        \"imp5028057234\",\n        \"imp5028057235\",\n        \"imp5028057236\",\n        \"imp5028057237\",\n        \"imp00557-01200\",\n        \"imp00558-028838\",\n        \"imp8057221804\",\n        \"imp8057221817\",\n        \"imp8057221818\",\n        \"imp8057221802\",\n        \"imp8057221806\",\n        \"imp8057221815\",\n        \"imp8057221805\",\n        \"imp8057221809\",\n        \"imp8057221803\",\n        \"imp8057221810\",\n        \"imp8057221812\",\n        \"imp8057221819\",\n        \"imp8057221813\",\n        \"imp8057221807\",\n        \"imp00558-022222\",\n        \"imp8057221801\",\n        \"imp8056796399\",\n        \"imp8056796382\",\n        \"imp8056796397\",\n        \"imp8056796391\",\n        \"imp8056796393\",\n        \"imp8056796394\",\n        \"imp8056796395\",\n        \"imp8056796396\",\n        \"imp8056796392\",\n        \"imp8053089728\",\n        \"imp8056905545\",\n        \"imp8056905544\",\n        \"imp8056905550\",\n        \"imp8056905546\",\n        \"imp8056905547\",\n        \"imp8058807912\",\n        \"imp8058807913\",\n        \"imp8058807914\",\n        \"imp8058807911\",\n        \"imp6616645201\",\n        \"imp6616645202\",\n        \"imp6616645217\",\n        \"imp6616645204\",\n        \"imp6616645206\",\n        \"imp6616645221\",\n        \"imp6617886321\",\n        \"imp6617886322\",\n        \"imp6617886323\",\n        \"imp6617886324\",\n        \"imp6617886301\",\n        \"imp6617886302\",\n        \"imp6617886304\",\n        \"imp6617886305\",\n        \"imp6617886303\",\n        \"imp8059615318\",\n        \"imp8059615319\",\n        \"imp3865971563\",\n        \"imp3865971564\",\n        \"imp3865971566\",\n        \"imp8054566853\",\n        \"imp8058803579\",\n        \"imp00569-02444\",\n        \"imp8058170880\",\n        \"imp8055868328\",\n        \"imp8053352928\",\n        \"imp8056031489\",\n        \"imp8053352077\",\n        \"imp8057273039\",\n        \"imp8055868319\",\n        \"imp8052779474\",\n        \"imp8059145335\",\n        \"imp8057385294\"\n    ]\n}"}],"_postman_id":"6f5a0b70-7fc2-4250-b0d9-c7da7c432012"},{"name":"Service Providers Details v7.x","event":[{"listen":"test","script":{"id":"74ca0afd-2a2c-412d-a549-4d541ff37253","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"da19362d-ad0f-480b-baa4-7d720f4d1ef2","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers?extended=true","description":"<p>List all Service Providers.  You can optionally filter by resellerId.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers"],"host":["{{url}}"],"query":[{"key":"extended","value":"true"}],"variable":[]}},"response":[{"id":"c2087070-bf02-4fa5-b4db-2c5c11874a36","name":"Service Providers - Reseller Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers?resellerId=reseller.odin","host":["{{url}}"],"path":["api","v2","service-providers"],"query":[{"key":"resellerId","value":"reseller.odin","description":"Filter by resellerId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2019 15:32:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"126"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.reseller\",\n        \"serviceProviderName\": \"odin.reseller\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"reseller.odin\"\n    }\n]"},{"id":"742acabf-7dac-47ed-9557-05277ce986bf","name":"Service Providers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":"{{url}}/api/v2/service-providers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2637","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 30 Aug 2018 19:35:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"serviceProviderName\": \"Odin Mock Enterprise 1\",\n        \"isEnterprise\": true\n    },\n    {\n        \"serviceProviderId\": \"odin.mock.sp1\",\n        \"serviceProviderName\": \"Odin Mock Service Provider 1\",\n        \"isEnterprise\": false\n    }\n]"},{"id":"aa3cbe3f-e632-4958-b711-48e1dd124f17","name":"Service Providers Details v7.x","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"reseller.customer1\",\n        \"serviceProviderName\": \"reseller customer 1\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"5rings.reseller\",\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Entel.SP.Datos1\",\n        \"serviceProviderName\": \"Entel.SP.Datos1\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"Entel.Reseller\",\n        \"useCustomRoutingProfile\": false,\n        \"defaultDomain\": \"odinapi.net\",\n        \"contact\": {\n            \"contactName\": \"Support Awesome\"\n        },\n        \"address\": {\n            \"addressLine1\": \"AddrLine1\",\n            \"addressLine2\": \"AddrLine2\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Telecom.Demo.Id\",\n        \"serviceProviderName\": \"Telecom Demo\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"Entel.Reseller\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"reseller.odin.ent.odin\",\n        \"serviceProviderName\": \"reseller.odin.ent.odin\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"reseller.odin\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"phonism_bilge\",\n        \"serviceProviderName\": \"phonism_bilge\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"phonism\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"phonism_helmut\",\n        \"serviceProviderName\": \"phonism_helmut\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"phonism\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"example21.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"phonism_demo\",\n        \"serviceProviderName\": \"phonism_demo\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"phonism\",\n        \"useCustomRoutingProfile\": false,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"PressOne.Demo.Ent\",\n        \"serviceProviderName\": \"PressOne Demo Enterprise\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"PressOne.Reseller\",\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testSP\",\n        \"serviceProviderName\": \"TestSp\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"resPankaj\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"surendra\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testResEnt\",\n        \"serviceProviderName\": \"Reseller Enterprise\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"resPankaj\",\n        \"defaultDomain\": \"example211112222.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testAbhi01\",\n        \"serviceProviderName\": \"testAbhi01\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"resPankaj\",\n        \"useCustomRoutingProfile\": false,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"entreseller\",\n        \"serviceProviderName\": \"entreseller\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"resellergk\",\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testservice\",\n        \"serviceProviderName\": \"testservice\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"testReseller\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testclone\",\n        \"serviceProviderName\": \"testclone\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"testReseller\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"example.com\",\n        \"address\": {\n            \"stateOrProvince\": \"Indiana\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Training.Enterprise.101\",\n        \"serviceProviderName\": \"Rev.io Training Enteprise 101\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"Rev.io.Training\",\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"SaicomVoiceServices\",\n        \"serviceProviderName\": \"Saicom Voice Services\",\n        \"isEnterprise\": false,\n        \"resellerId\": \"SaicomDemo\",\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"example.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"SaicomDemoEnt\",\n        \"serviceProviderName\": \"Saicom Demo Enterprise\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"SaicomDemo\",\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"DunderMifflin\",\n        \"serviceProviderName\": \"Dunder Mifflin\",\n        \"isEnterprise\": true,\n        \"resellerId\": \"SaicomDemo\",\n        \"defaultDomain\": \"example.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"serviceProviderName\": \"ent.odin\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"tttSupport Awesome-33\",\n            \"contactNumber\": \"344356345\",\n            \"contactEmail\": \"prithwidipta96@gmail.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"Kolkata-33\",\n            \"addressLine2\": \"Chittaranjan\",\n            \"city\": \"Kolkata\",\n            \"zipOrPostalCode\": \"700074\",\n            \"country\": \"India\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"ent.voipxp\",\n        \"serviceProviderName\": \"ent.voipxp\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"ent.template\",\n        \"serviceProviderName\": \"Enterprise Template\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"Ent Admin\",\n            \"contactNumber\": \"8595553456\",\n            \"contactEmail\": \"entadmin@parkbenchsolutions.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"617 Vine St\",\n            \"addressLine2\": \"Suite 4545\",\n            \"city\": \"Cincinnati\",\n            \"stateOrProvince\": \"Ohio\",\n            \"zipOrPostalCode\": \"45454-4545\",\n            \"country\": \"United States\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"test-su-ent\",\n        \"serviceProviderName\": \"test-su-ent\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"surendra\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"rev.io\",\n        \"serviceProviderName\": \"rev.io\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"mark reverman\",\n            \"contactNumber\": \"12345\",\n            \"contactEmail\": \"mreverman@parkbenchsolutions.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"45 Main Street\",\n            \"addressLine2\": \"Suite 4545\",\n            \"city\": \"Cincinnati\",\n            \"stateOrProvince\": \"Ohio\",\n            \"zipOrPostalCode\": \"45454-4545\",\n            \"country\": \"United States\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"ent-generic-sip-gateway\",\n        \"serviceProviderName\": \"ent-generic-sip-gateway\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"zzzzzzzz\",\n        \"serviceProviderName\": \"zzzzzzzz\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testingent\",\n        \"serviceProviderName\": \"testingent12\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"ent.voipxpsp\",\n        \"serviceProviderName\": \"ent.voipxpsp\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": false,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"00483\",\n        \"serviceProviderName\": \"00483 Name\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"impulsevoip.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactNumber\": \"513-111-7894\",\n            \"contactEmail\": \"mreverman@parkbenchsolutions.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"45 Main Street\",\n            \"addressLine2\": \"Suite 4545\",\n            \"city\": \"Cincinnati\",\n            \"stateOrProvince\": \"Ohio\",\n            \"zipOrPostalCode\": \"45454-4545\",\n            \"country\": \"United States\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testEnt01\",\n        \"serviceProviderName\": \"testEnt01\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"abccorp.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"mutare.test\",\n        \"serviceProviderName\": \"mutare\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"ent.upenn\",\n        \"serviceProviderName\": \"ent upenn23232\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"mark reverman\",\n            \"contactNumber\": \"513-100-4545\",\n            \"contactEmail\": \"mreverman@parkbenchsolutions.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"45 Main Street\",\n            \"addressLine2\": \"Suite 4545\",\n            \"city\": \"Cincinnati\",\n            \"stateOrProvince\": \"Ohio\",\n            \"zipOrPostalCode\": \"45454-4545\",\n            \"country\": \"United States\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Ent.sso\",\n        \"serviceProviderName\": \"Ent SSO2\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"mark reverman\",\n            \"contactNumber\": \"12345\",\n            \"contactEmail\": \"mreverman@parkbenchsolutions.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"45 Main Street\",\n            \"addressLine2\": \"Suite 4545\",\n            \"city\": \"Cincinnati\",\n            \"stateOrProvince\": \"Ohio\",\n            \"zipOrPostalCode\": \"45454-4545\",\n            \"country\": \"United States\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"aaaaa\",\n        \"serviceProviderName\": \"aaaaa\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"test-clone-2\",\n        \"serviceProviderName\": \"test clone 2\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"example21.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Demo.Ent112\",\n        \"serviceProviderName\": \"Demo Ent 112\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Nuvias.Demo\",\n        \"serviceProviderName\": \"Nuvias Demo\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"clone.ent85\",\n        \"serviceProviderName\": \"clone ent 85\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Lexcen.Ent\",\n        \"serviceProviderName\": \"Lexcen Ent\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"Odin Tester\",\n            \"contactNumber\": \"0400123456\",\n            \"contactEmail\": \"demo@lexcen.com.au\"\n        },\n        \"address\": {\n            \"addressLine1\": \"123 Test Street\",\n            \"city\": \"Sydney\",\n            \"zipOrPostalCode\": \"3001\",\n            \"country\": \"Australia\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"bulk-2e2-test-Group\",\n        \"serviceProviderName\": \"bulk-2e2-test-Group\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"cloneSPPP\",\n        \"serviceProviderName\": \"cloneSPPPtest\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": false,\n        \"defaultDomain\": \"example.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testingclone\",\n        \"serviceProviderName\": \"testingclone\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"surendra\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"reacttest\",\n        \"serviceProviderName\": \"reacttest\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": false,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testABC\",\n        \"serviceProviderName\": \"testABC\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"alliedtelecom.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"Vocus.Demo.Ent\",\n        \"serviceProviderName\": \"Vocus Demo Ent\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"odinapi.net\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testingclone1\",\n        \"serviceProviderName\": \"testingclone1\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"surendra\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"12345\",\n        \"serviceProviderName\": \"Odin Mock Enterprise 2\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"microv-works.com\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"Support Team\",\n            \"contactNumber\": \"111-111-1111\",\n            \"contactEmail\": \"support@parkbenchsolutions.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"111 This St\",\n            \"city\": \"Somecity\",\n            \"stateOrProvince\": \"Arizona\",\n            \"zipOrPostalCode\": \"33333\",\n            \"country\": \"US\"\n        },\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testinggrp11111\",\n        \"serviceProviderName\": \"testinggrp11111\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"surendra\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"ent.odin.clone\",\n        \"serviceProviderName\": \"ent.odin.clone\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"resellerent\",\n        \"serviceProviderName\": \"resellerent\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": true,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"sp.clone.test\",\n        \"serviceProviderName\": \"sp.clone.test\",\n        \"isEnterprise\": false,\n        \"resellerId\": null,\n        \"useCustomRoutingProfile\": false,\n        \"defaultDomain\": \"odinapi.net\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"testing1234\",\n        \"serviceProviderName\": \"testing1234\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"parkbenchsolutions.com\",\n        \"useServiceProviderLanguages\": false\n    },\n    {\n        \"serviceProviderId\": \"123456\",\n        \"serviceProviderName\": \"Odin Mock Enterprise 2\",\n        \"isEnterprise\": true,\n        \"resellerId\": null,\n        \"defaultDomain\": \"microv-works.com\",\n        \"supportEmail\": \"support@parkbenchsolutions.com\",\n        \"contact\": {\n            \"contactName\": \"Support Team\",\n            \"contactNumber\": \"222-222-2222\",\n            \"contactEmail\": \"support@parkbenchsolutions.com\"\n        },\n        \"address\": {\n            \"addressLine1\": \"111 This St\",\n            \"city\": \"Somecity\",\n            \"stateOrProvince\": \"Arizona\",\n            \"zipOrPostalCode\": \"33333\",\n            \"country\": \"US\"\n        },\n        \"useServiceProviderLanguages\": false\n    }\n]"}],"_postman_id":"da19362d-ad0f-480b-baa4-7d720f4d1ef2"},{"name":"Service Provider","event":[{"listen":"test","script":{"id":"33bc0ea3-ef91-4384-bd33-b090f2f12190","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"e2a92f57-650f-435f-8862-14ef4e0ecfdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin.mock\",\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"microv-works.com\",\n    \"serviceProviderName\": \"Odin Mock Enterprise 2\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false,\n}"},"url":"{{url}}/api/v2/service-providers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aaad7654-911c-4a59-bb59-cde9e2b49524","name":"Service Provider","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin.mock\",\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"parkbenchsolutions.com\",\n    \"serviceProviderName\": \"ent odin mock\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false\n}"},"url":"{{url}}/api/v2/service-providers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"parkbenchsolutions.com\",\n    \"serviceProviderName\": \"ent odin mock\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false,\n    \"serviceProviderId\": \"ent.odin.mock\"\n}"}],"_postman_id":"e2a92f57-650f-435f-8862-14ef4e0ecfdf"},{"name":"Service Provider","event":[{"listen":"test","script":{"id":"beda2967-3d6f-4a86-b2e9-4f7bf9ea65c9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"ace39c5c-ef5a-432e-9337-1794e459d81d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers?serviceProviderId=ent.odin.mock","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin.mock"}],"variable":[]}},"response":[{"id":"a66d5c51-638d-4583-901f-ca5d0cc2a267","name":"Service Provider","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers?serviceProviderId=ent.odin.mock","host":["{{url}}"],"path":["api","v2","service-providers"],"query":[{"key":"serviceProviderId","value":"ent.odin.mock"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"parkbenchsolutions.com\",\n    \"serviceProviderName\": \"ent odin mock\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false,\n    \"serviceProviderId\": \"ent.odin.mock\"\n}"}],"_postman_id":"ace39c5c-ef5a-432e-9337-1794e459d81d"},{"name":"Service Provider","event":[{"listen":"test","script":{"id":"dc55f3b4-0c40-4da2-9978-5dde18ebc5b3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"262273cb-8bc2-4799-bc24-ddbc730f55c4","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"microv-works.com\",\n    \"serviceProviderName\": \"Odin Mock Enterprise 2\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false,\n    \"serviceProviderId\": \"odin.mock.ent2\"\n}"},"url":"{{url}}/api/v2/service-providers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"87905045-923b-4dce-8717-14f6a30a4a03","name":"Service Provider","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin.mock\",\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"parkbenchsolutions.com\",\n    \"serviceProviderName\": \"ent odin mock\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false\n}"},"url":"{{url}}/api/v2/service-providers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isEnterprise\": true,\n    \"defaultDomain\": \"parkbenchsolutions.com\",\n    \"serviceProviderName\": \"ent odin mock\",\n    \"supportEmail\": \"support@parkbenchsolutions.com\",\n    \"contact\": {\n        \"contactName\": \"Support Team\",\n        \"contactNumber\": \"111-111-1111\",\n        \"contactEmail\": \"support@parkbenchsolutions.com\"\n    },\n    \"address\": {\n        \"addressLine1\": \"111 This St\",\n        \"city\": \"Somecity\",\n        \"stateOrProvince\": \"Arizona\",\n        \"zipOrPostalCode\": \"33333\",\n        \"country\": \"US\"\n    },\n    \"useServiceProviderLanguages\": false,\n    \"serviceProviderId\": \"ent.odin.mock\"\n}"}],"_postman_id":"262273cb-8bc2-4799-bc24-ddbc730f55c4"},{"name":"Service Provider","event":[{"listen":"test","script":{"id":"beda2967-3d6f-4a86-b2e9-4f7bf9ea65c9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"06410df3-8a49-4430-8dc8-850f8dcc5958","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers?serviceProviderId=ent.odin.mock","description":"<p>Deletes a BroadWorks Service Provider.</p>\n<p>In order for a Service Provider to be deleted, you must first de-authorize all Service Packs from all Groups and delete all Groups or else BroadWorks will fail this call.</p>\n<p>However, in the \"WebEx Organization Delete\" callback, you can select \"Auto Delete Groups and unassign Service Packs On BroadWorks Service Provider Delete\". If this box is checked, this API call will automatically unassign Service Packs and delete the Groups before attempting to remove the Service Provider.</p>\n<p>Warning: this is an irreversible action and we recommend running an Audit on the Service Provider first, in order to have a backup if you need to re-create the Service Provider with its Services and Groups.</p>\n<p>Also note that there is a parameter \"deleteWebexOrg\" that overrides the WebEx Organization delete parameter set in the WebEx Organization Delete callback. This may be used to delete a BroadWorks Service Provider without deleting the WebEx Organization in cases where that behavior is desired.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin.mock"},{"disabled":true,"key":"deleteWebexOrg","value":"false"}],"variable":[]}},"response":[{"id":"698efbd7-1241-4931-9527-7c7ff979768a","name":"Service Provider","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers?serviceProviderId=ent.odin.mock","host":["{{url}}"],"path":["api","v2","service-providers"],"query":[{"key":"serviceProviderId","value":"ent.odin.mock"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"06410df3-8a49-4430-8dc8-850f8dcc5958"},{"name":"System Service Packs","event":[{"listen":"test","script":{"id":"74ca0afd-2a2c-412d-a549-4d541ff37253","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"90b1c9e0-04df-4dae-8ef8-8003341623b2","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/service-packs","description":"<p>List all Service Providers</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","service-packs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90b1c9e0-04df-4dae-8ef8-8003341623b2"}],"id":"e888123e-5bc1-4f2c-918b-113decf66c1d","_postman_id":"e888123e-5bc1-4f2c-918b-113decf66c1d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Services","item":[{"name":"System Services","id":"5baafcaa-d325-40f4-bb89-7a627b706993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/services","description":"<p>groupServices []\nservicePackServices []\nuserServices []</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5baafcaa-d325-40f4-bb89-7a627b706993"},{"name":"Service Provider Services","id":"b0c8a72b-ce65-4229-abd9-42996c177f8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/services?serviceProviderId=test-clone-2&onlyLicensed=true&onlyAuthorized=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","services"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"test-clone-2"},{"key":"onlyLicensed","value":"true"},{"key":"onlyAuthorized","value":"true"}],"variable":[]}},"response":[{"id":"fc0b1532-cd63-47be-af23-1f48fa30cfba","name":"Service Provider Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/services?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","services"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 22:27:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"3G/4G Continuity\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"3G/4G Continuity\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Bria For BroadWorks\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Bria For BroadWorks\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 500,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control II\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control II\"\n        },\n        {\n            \"serviceName\": \"Client License 1\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 1\"\n        },\n        {\n            \"serviceName\": \"Client License 10\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 10\"\n        },\n        {\n            \"serviceName\": \"Client License 11\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 11\"\n        },\n        {\n            \"serviceName\": \"Client License 12\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 12\"\n        },\n        {\n            \"serviceName\": \"Client License 13\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 13\"\n        },\n        {\n            \"serviceName\": \"Client License 14\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 14\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Client License 2\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 2\"\n        },\n        {\n            \"serviceName\": \"Client License 20\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 20\"\n        },\n        {\n            \"serviceName\": \"Client License 21\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 21\"\n        },\n        {\n            \"serviceName\": \"Client License 22\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 22\"\n        },\n        {\n            \"serviceName\": \"Client License 23\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 23\"\n        },\n        {\n            \"serviceName\": \"Client License 24\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 24\"\n        },\n        {\n            \"serviceName\": \"Client License 25\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 25\"\n        },\n        {\n            \"serviceName\": \"Client License 26\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 26\"\n        },\n        {\n            \"serviceName\": \"Client License 27\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 27\"\n        },\n        {\n            \"serviceName\": \"Client License 28\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 28\"\n        },\n        {\n            \"serviceName\": \"Client License 29\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 29\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 30\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 30\"\n        },\n        {\n            \"serviceName\": \"Client License 31\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 31\"\n        },\n        {\n            \"serviceName\": \"Client License 32\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 32\"\n        },\n        {\n            \"serviceName\": \"Client License 33\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 33\"\n        },\n        {\n            \"serviceName\": \"Client License 34\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 34\"\n        },\n        {\n            \"serviceName\": \"Client License 35\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 35\"\n        },\n        {\n            \"serviceName\": \"Client License 36\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 36\"\n        },\n        {\n            \"serviceName\": \"Client License 37\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 37\"\n        },\n        {\n            \"serviceName\": \"Client License 38\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 38\"\n        },\n        {\n            \"serviceName\": \"Client License 39\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 39\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 40\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 40\"\n        },\n        {\n            \"serviceName\": \"Client License 41\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 41\"\n        },\n        {\n            \"serviceName\": \"Client License 42\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 42\"\n        },\n        {\n            \"serviceName\": \"Client License 43\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 43\"\n        },\n        {\n            \"serviceName\": \"Client License 44\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 44\"\n        },\n        {\n            \"serviceName\": \"Client License 45\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 45\"\n        },\n        {\n            \"serviceName\": \"Client License 46\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 46\"\n        },\n        {\n            \"serviceName\": \"Client License 47\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 47\"\n        },\n        {\n            \"serviceName\": \"Client License 48\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 48\"\n        },\n        {\n            \"serviceName\": \"Client License 49\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 49\"\n        },\n        {\n            \"serviceName\": \"Client License 5\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 5\"\n        },\n        {\n            \"serviceName\": \"Client License 50\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 50\"\n        },\n        {\n            \"serviceName\": \"Client License 6\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 6\"\n        },\n        {\n            \"serviceName\": \"Client License 7\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 7\"\n        },\n        {\n            \"serviceName\": \"Client License 8\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 8\"\n        },\n        {\n            \"serviceName\": \"Client License 9\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 9\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express SR\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express SR\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Dual-Mode VCC\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Dual-Mode VCC\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"IN Integration\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"IN Integration\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Intelligent Network Service Control\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Intelligent Network Service Control\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Legacy Automatic Callback\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Legacy Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Mobile Extension to Extension Dialing\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Mobile Extension to Extension Dialing\"\n        },\n        {\n            \"serviceName\": \"Mobility\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Mobility\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Short Message Service\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Short Message Service\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Family\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Family\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Third-Party IMP\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party IMP\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Standard\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Pickup\"\n        },\n        {\n            \"serviceName\": \"City-Wide Centrex\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"City-Wide Centrex\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Find-me/Follow-me\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"LDAP Integration\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Route Point\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Service Scripts Group\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Voice Messaging Group\"\n        }\n    ]\n}"}],"_postman_id":"b0c8a72b-ce65-4229-abd9-42996c177f8a"},{"name":"Service Provider Services Assignable","id":"58e9a6f9-05d3-438b-9e22-87f659437f96","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/services/assignable?serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","services","assignable"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"abdb72d2-8e54-4539-a690-f6f68df2563a","name":"Service Provider Services Assignable","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/services/assignable?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","services","assignable"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 22:27:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"4964"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 3\"\n        },\n        {\n            \"serviceName\": \"Client License 4\"\n        },\n        {\n            \"serviceName\": \"Client License 17\"\n        },\n        {\n            \"serviceName\": \"Client License 18\"\n        },\n        {\n            \"serviceName\": \"Client License 19\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\"\n        }\n    ]\n}"}],"_postman_id":"58e9a6f9-05d3-438b-9e22-87f659437f96"},{"name":"Service Provider Services Authorized","id":"18ffce0a-4324-4e9c-8bf6-c3d79d6cb892","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/services/authorized?serviceProviderId=ent.template","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","services","authorized"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.template"}],"variable":[]}},"response":[{"id":"c6fec582-0feb-49fd-92d1-7ce1210b1c5d","name":"Service Provider Services Authorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/service-providers/services/authorized?serviceProviderId=ent.template","host":["{{url}}"],"path":["api","v2","service-providers","services","authorized"],"query":[{"key":"serviceProviderId","value":"ent.template"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.template\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        null,\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        null,\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always Secondary\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always Secondary\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        null,\n        {\n            \"serviceName\": \"Collaborate - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Audio\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Sharing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Sharing\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Video\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Conference Room\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Conference Room\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Direct Route\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Direct Route\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        null,\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Executive\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Executive\"\n        },\n        {\n            \"serviceName\": \"Executive-Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Executive-Assistant\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Flexible Seating Guest\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        null,\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        null,\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        null,\n        null,\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        null,\n        null,\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Personal Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Personal Assistant\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Resource Priority\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Resource Priority\"\n        },\n        {\n            \"serviceName\": \"Route List\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Route List\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Security Classification\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        null,\n        {\n            \"serviceName\": \"Silent Alerting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Silent Alerting\"\n        },\n        null,\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Terminating Alternate Trunk Identity\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Terminating Alternate Trunk Identity\"\n        },\n        null,\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        null,\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Standard\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 2,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Pickup\"\n        },\n        null,\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 3,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Find-me/Follow-me\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 3,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 3,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 3,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Route Point\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 3,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Voice Messaging Group\"\n        },\n        {\n            \"serviceName\": \"VoiceXML\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"VoiceXML\"\n        }\n    ]\n}"}],"_postman_id":"18ffce0a-4324-4e9c-8bf6-c3d79d6cb892"},{"name":"Services Provider Services","id":"da037633-0e77-4a85-9263-db335b1bc550","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"3G/4G Continuity\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"3G/4G Continuity\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Bria For BroadWorks\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Bria For BroadWorks\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 500,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control II\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control II\"\n        },\n        {\n            \"serviceName\": \"Client License 1\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 1\"\n        },\n        {\n            \"serviceName\": \"Client License 10\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 10\"\n        },\n        {\n            \"serviceName\": \"Client License 11\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 11\"\n        },\n        {\n            \"serviceName\": \"Client License 12\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 12\"\n        },\n        {\n            \"serviceName\": \"Client License 13\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 13\"\n        },\n        {\n            \"serviceName\": \"Client License 14\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 14\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Client License 2\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 2\"\n        },\n        {\n            \"serviceName\": \"Client License 20\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 20\"\n        },\n        {\n            \"serviceName\": \"Client License 21\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 21\"\n        },\n        {\n            \"serviceName\": \"Client License 22\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 22\"\n        },\n        {\n            \"serviceName\": \"Client License 23\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 23\"\n        },\n        {\n            \"serviceName\": \"Client License 24\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 24\"\n        },\n        {\n            \"serviceName\": \"Client License 25\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 25\"\n        },\n        {\n            \"serviceName\": \"Client License 26\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 26\"\n        },\n        {\n            \"serviceName\": \"Client License 27\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 27\"\n        },\n        {\n            \"serviceName\": \"Client License 28\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 28\"\n        },\n        {\n            \"serviceName\": \"Client License 29\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 29\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 30\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 30\"\n        },\n        {\n            \"serviceName\": \"Client License 31\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 31\"\n        },\n        {\n            \"serviceName\": \"Client License 32\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 32\"\n        },\n        {\n            \"serviceName\": \"Client License 33\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 33\"\n        },\n        {\n            \"serviceName\": \"Client License 34\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 34\"\n        },\n        {\n            \"serviceName\": \"Client License 35\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 35\"\n        },\n        {\n            \"serviceName\": \"Client License 36\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 36\"\n        },\n        {\n            \"serviceName\": \"Client License 37\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 37\"\n        },\n        {\n            \"serviceName\": \"Client License 38\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 38\"\n        },\n        {\n            \"serviceName\": \"Client License 39\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 39\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 40\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 40\"\n        },\n        {\n            \"serviceName\": \"Client License 41\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 41\"\n        },\n        {\n            \"serviceName\": \"Client License 42\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 42\"\n        },\n        {\n            \"serviceName\": \"Client License 43\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 43\"\n        },\n        {\n            \"serviceName\": \"Client License 44\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 44\"\n        },\n        {\n            \"serviceName\": \"Client License 45\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 45\"\n        },\n        {\n            \"serviceName\": \"Client License 46\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 46\"\n        },\n        {\n            \"serviceName\": \"Client License 47\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 47\"\n        },\n        {\n            \"serviceName\": \"Client License 48\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 48\"\n        },\n        {\n            \"serviceName\": \"Client License 49\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 49\"\n        },\n        {\n            \"serviceName\": \"Client License 5\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 5\"\n        },\n        {\n            \"serviceName\": \"Client License 50\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 50\"\n        },\n        {\n            \"serviceName\": \"Client License 6\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 6\"\n        },\n        {\n            \"serviceName\": \"Client License 7\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 7\"\n        },\n        {\n            \"serviceName\": \"Client License 8\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 8\"\n        },\n        {\n            \"serviceName\": \"Client License 9\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 9\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express SR\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express SR\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Dual-Mode VCC\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Dual-Mode VCC\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"IN Integration\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"IN Integration\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Intelligent Network Service Control\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Intelligent Network Service Control\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Legacy Automatic Callback\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Legacy Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Mobile Extension to Extension Dialing\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Mobile Extension to Extension Dialing\"\n        },\n        {\n            \"serviceName\": \"Mobility\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Mobility\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Short Message Service\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Short Message Service\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Family\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Family\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Third-Party IMP\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party IMP\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Standard\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Pickup\"\n        },\n        {\n            \"serviceName\": \"City-Wide Centrex\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"City-Wide Centrex\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Find-me/Follow-me\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"LDAP Integration\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Route Point\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Service Scripts Group\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Voice Messaging Group\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"feb24321-1be3-4225-92cc-bf22090c4c26","name":"Services Provider Services","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"3G/4G Continuity\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"3G/4G Continuity\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Bria For BroadWorks\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Bria For BroadWorks\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 500,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control II\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control II\"\n        },\n        {\n            \"serviceName\": \"Client License 1\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 1\"\n        },\n        {\n            \"serviceName\": \"Client License 10\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 10\"\n        },\n        {\n            \"serviceName\": \"Client License 11\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 11\"\n        },\n        {\n            \"serviceName\": \"Client License 12\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 12\"\n        },\n        {\n            \"serviceName\": \"Client License 13\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 13\"\n        },\n        {\n            \"serviceName\": \"Client License 14\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 14\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Client License 2\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 2\"\n        },\n        {\n            \"serviceName\": \"Client License 20\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 20\"\n        },\n        {\n            \"serviceName\": \"Client License 21\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 21\"\n        },\n        {\n            \"serviceName\": \"Client License 22\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 22\"\n        },\n        {\n            \"serviceName\": \"Client License 23\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 23\"\n        },\n        {\n            \"serviceName\": \"Client License 24\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 24\"\n        },\n        {\n            \"serviceName\": \"Client License 25\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 25\"\n        },\n        {\n            \"serviceName\": \"Client License 26\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 26\"\n        },\n        {\n            \"serviceName\": \"Client License 27\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 27\"\n        },\n        {\n            \"serviceName\": \"Client License 28\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 28\"\n        },\n        {\n            \"serviceName\": \"Client License 29\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 29\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 30\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 30\"\n        },\n        {\n            \"serviceName\": \"Client License 31\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 31\"\n        },\n        {\n            \"serviceName\": \"Client License 32\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 32\"\n        },\n        {\n            \"serviceName\": \"Client License 33\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 33\"\n        },\n        {\n            \"serviceName\": \"Client License 34\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 34\"\n        },\n        {\n            \"serviceName\": \"Client License 35\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 35\"\n        },\n        {\n            \"serviceName\": \"Client License 36\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 36\"\n        },\n        {\n            \"serviceName\": \"Client License 37\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 37\"\n        },\n        {\n            \"serviceName\": \"Client License 38\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 38\"\n        },\n        {\n            \"serviceName\": \"Client License 39\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 39\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 40\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 40\"\n        },\n        {\n            \"serviceName\": \"Client License 41\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 41\"\n        },\n        {\n            \"serviceName\": \"Client License 42\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 42\"\n        },\n        {\n            \"serviceName\": \"Client License 43\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 43\"\n        },\n        {\n            \"serviceName\": \"Client License 44\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 44\"\n        },\n        {\n            \"serviceName\": \"Client License 45\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 45\"\n        },\n        {\n            \"serviceName\": \"Client License 46\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 46\"\n        },\n        {\n            \"serviceName\": \"Client License 47\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 47\"\n        },\n        {\n            \"serviceName\": \"Client License 48\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 48\"\n        },\n        {\n            \"serviceName\": \"Client License 49\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 49\"\n        },\n        {\n            \"serviceName\": \"Client License 5\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 5\"\n        },\n        {\n            \"serviceName\": \"Client License 50\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 50\"\n        },\n        {\n            \"serviceName\": \"Client License 6\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 6\"\n        },\n        {\n            \"serviceName\": \"Client License 7\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 7\"\n        },\n        {\n            \"serviceName\": \"Client License 8\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 8\"\n        },\n        {\n            \"serviceName\": \"Client License 9\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client License 9\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express SR\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express SR\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Dual-Mode VCC\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Dual-Mode VCC\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"IN Integration\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"IN Integration\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Intelligent Network Service Control\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Intelligent Network Service Control\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Legacy Automatic Callback\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Legacy Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Mobile Extension to Extension Dialing\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Mobile Extension to Extension Dialing\"\n        },\n        {\n            \"serviceName\": \"Mobility\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Mobility\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": false,\n            \"servicePackAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Short Message Service\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Short Message Service\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Family\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Family\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Third-Party IMP\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party IMP\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": \"Unlimited\",\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"userAssignable\": true,\n            \"servicePackAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Standard\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Call Pickup\"\n        },\n        {\n            \"serviceName\": \"City-Wide Centrex\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"City-Wide Centrex\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Find-me/Follow-me\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"LDAP Integration\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": false,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 0,\n            \"licensed\": false,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Route Point\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Service Scripts Group\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": -1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"allocated\": 1,\n            \"licensed\": true,\n            \"servicePackAllocation\": 0,\n            \"alias\": \"Voice Messaging Group\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/service-providers/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 22:29:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"da037633-0e77-4a85-9263-db335b1bc550"},{"name":"Group Services","id":"cbf921e0-5118-402d-8758-05db5d7fb497","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/services?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"32810d16-aff9-48dd-89f7-2e474c8fa7fe","name":"Group Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/services?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","services"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:24:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Family\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Family\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Mobile Extension to Extension Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Mobile Extension to Extension Dialing\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"IN Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"IN Integration\"\n        },\n        {\n            \"serviceName\": \"Dual-Mode VCC\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Dual-Mode VCC\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Bria For BroadWorks\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Bria For BroadWorks\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Legacy Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Legacy Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Short Message Service\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Short Message Service\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 2,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Third-Party IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Third-Party IMP\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"Executive\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Executive\"\n        },\n        {\n            \"serviceName\": \"Executive-Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Executive-Assistant\"\n        },\n        {\n            \"serviceName\": \"Client License 1\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 1\"\n        },\n        {\n            \"serviceName\": \"Client License 2\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 2\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 5\"\n        },\n        {\n            \"serviceName\": \"Client License 6\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 6\"\n        },\n        {\n            \"serviceName\": \"Client License 7\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 7\"\n        },\n        {\n            \"serviceName\": \"Client License 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 8\"\n        },\n        {\n            \"serviceName\": \"Client License 9\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 9\"\n        },\n        {\n            \"serviceName\": \"Client License 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 10\"\n        },\n        {\n            \"serviceName\": \"Client License 11\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 11\"\n        },\n        {\n            \"serviceName\": \"Client License 12\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 12\"\n        },\n        {\n            \"serviceName\": \"Client License 13\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 13\"\n        },\n        {\n            \"serviceName\": \"Client License 14\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 14\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Client License 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 20\"\n        },\n        {\n            \"serviceName\": \"Client License 21\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 21\"\n        },\n        {\n            \"serviceName\": \"Client License 22\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 22\"\n        },\n        {\n            \"serviceName\": \"Client License 23\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 23\"\n        },\n        {\n            \"serviceName\": \"Client License 24\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 24\"\n        },\n        {\n            \"serviceName\": \"Client License 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 25\"\n        },\n        {\n            \"serviceName\": \"Client License 26\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 26\"\n        },\n        {\n            \"serviceName\": \"Client License 27\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 27\"\n        },\n        {\n            \"serviceName\": \"Client License 28\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 28\"\n        },\n        {\n            \"serviceName\": \"Client License 29\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 29\"\n        },\n        {\n            \"serviceName\": \"Client License 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 30\"\n        },\n        {\n            \"serviceName\": \"Client License 31\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 31\"\n        },\n        {\n            \"serviceName\": \"Client License 32\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 32\"\n        },\n        {\n            \"serviceName\": \"Client License 33\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 33\"\n        },\n        {\n            \"serviceName\": \"Client License 34\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 34\"\n        },\n        {\n            \"serviceName\": \"Client License 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 35\"\n        },\n        {\n            \"serviceName\": \"Client License 36\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 36\"\n        },\n        {\n            \"serviceName\": \"Client License 37\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 37\"\n        },\n        {\n            \"serviceName\": \"Client License 38\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 38\"\n        },\n        {\n            \"serviceName\": \"Client License 39\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 39\"\n        },\n        {\n            \"serviceName\": \"Client License 40\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 40\"\n        },\n        {\n            \"serviceName\": \"Client License 41\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 41\"\n        },\n        {\n            \"serviceName\": \"Client License 42\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 42\"\n        },\n        {\n            \"serviceName\": \"Client License 43\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 43\"\n        },\n        {\n            \"serviceName\": \"Client License 44\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 44\"\n        },\n        {\n            \"serviceName\": \"Client License 45\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 45\"\n        },\n        {\n            \"serviceName\": \"Client License 46\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 46\"\n        },\n        {\n            \"serviceName\": \"Client License 47\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 47\"\n        },\n        {\n            \"serviceName\": \"Client License 48\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 48\"\n        },\n        {\n            \"serviceName\": \"Client License 49\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 49\"\n        },\n        {\n            \"serviceName\": \"Client License 50\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 50\"\n        },\n        {\n            \"serviceName\": \"Lync CTI\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Lync CTI\"\n        },\n        {\n            \"serviceName\": \"Lync Softphone\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Lync Softphone\"\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Security Classification\"\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Flexible Seating Guest\"\n        },\n        {\n            \"serviceName\": \"Visual Device Management\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Visual Device Management\"\n        },\n        {\n            \"serviceName\": \"Personal Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Personal Assistant\"\n        },\n        {\n            \"serviceName\": \"Route List\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Route List\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Audio\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Video\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Sharing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Sharing\"\n        },\n        {\n            \"serviceName\": \"Intelligent Network Service Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Intelligent Network Service Control\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express SR\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express SR\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Client Call Control II\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control II\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Voice Messaging Group\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"LDAP Integration\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"City-Wide Centrex\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"City-Wide Centrex\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Service Scripts Group\"\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Route Point\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Find-me/Follow-me\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant - Standard\"\n        },\n        {\n            \"serviceName\": \"VoiceXML\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"VoiceXML\"\n        }\n    ],\n    \"servicePackServices\": []\n}"}],"_postman_id":"cbf921e0-5118-402d-8758-05db5d7fb497"},{"name":"Group Services Authorized","id":"09cac9f4-10b6-4ff3-a23e-06217b556b97","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/services/authorized?serviceProviderId=ent.odin&groupId=grp.odin.static.line.port","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services","authorized"],"host":["{{url}}"],"query":[{"disabled":true,"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin.static.line.port"}],"variable":[]}},"response":[{"id":"825e2ef6-a5ba-4cf5-a745-e1bfeefa9a0e","name":"Group Services Authorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/services/authorized?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","services","authorized"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:26:40 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Family\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Mobile Extension to Extension Dialing\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Mobility\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"IN Integration\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Dual-Mode VCC\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Bria For BroadWorks\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Legacy Automatic Callback\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Short Message Service\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Third-Party IMP\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Executive\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Executive-Assistant\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 1\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 2\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 5\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 6\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 7\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 8\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 9\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 10\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 11\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 12\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 13\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 14\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 20\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 21\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 22\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 23\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 24\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 25\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 26\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 27\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 28\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 29\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 30\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 31\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 32\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 33\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 34\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 35\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 36\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 37\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 38\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 39\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 40\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 41\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 42\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 43\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 44\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 45\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 46\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 47\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 48\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 49\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client License 50\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Lync CTI\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Lync Softphone\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Visual Device Management\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Personal Assistant\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Route List\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Collaborate - Audio\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Collaborate - Sharing\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Intelligent Network Service Control\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"CommPilot Express SR\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Client Call Control II\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": true\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"City-Wide Centrex\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true\n        },\n        {\n            \"serviceName\": \"VoiceXML\",\n            \"authorized\": true\n        }\n    ],\n    \"servicePackServices\": []\n}"}],"_postman_id":"09cac9f4-10b6-4ff3-a23e-06217b556b97"},{"name":"Group Services Assigned List","id":"25cd80a4-cba7-4c38-a5e2-83da2abedd03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/services/authorized?serviceProviderId=ent.odin&groupId=grp.odin.static.line.port","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services","authorized"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"key":"groupId","value":"grp.odin.static.line.port"}],"variable":[]}},"response":[],"_postman_id":"25cd80a4-cba7-4c38-a5e2-83da2abedd03"},{"name":"Group Services Assigned List","id":"dfce0b8d-d40d-439a-aa25-4df902eaaacc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/services/assigned-list?serviceProviderId=ent.odin&groupId=grp.odin.static.line.port","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services","assigned-list"],"host":["{{url}}"],"query":[{"disabled":true,"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin.static.line.port"}],"variable":[]}},"response":[],"_postman_id":"dfce0b8d-d40d-439a-aa25-4df902eaaacc"},{"name":"Group Service Is Assigned","id":"bf880e97-38ee-433f-bfb7-edf1e79f0586","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/services/is-assigned?serviceProviderId=ent.odin&serviceName=Trunk Group&groupId=grp.odin.static.line.port","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services","is-assigned"],"host":["{{url}}"],"query":[{"disabled":true,"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"serviceName","value":"Incoming Calling Plan2"},{"key":"serviceName","value":"Trunk Group"},{"key":"groupId","value":"grp.odin.static.line.port"}],"variable":[]}},"response":[],"_postman_id":"bf880e97-38ee-433f-bfb7-edf1e79f0586"},{"name":"Group Services Available","id":"68ca5554-2f72-4aef-b46a-4ef6d92f8dad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/services/available?serviceProviderId=ent.odin&groupId=grp.odin.static.line.port","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services","available"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"callcenter-ent-1"},{"disabled":true,"key":"groupId","value":"grp-ent-call-center-1"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin.static.line.port"}],"variable":[]}},"response":[{"id":"4d73f55e-08f9-4470-835a-7e496806b714","name":"Group Services Available","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/services/available?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","services","available"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:26:15 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"5249"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    \"Anonymous Call Rejection\",\n    \"Authentication\",\n    \"Call Forwarding Always\",\n    \"Call Forwarding Busy\",\n    \"Call Forwarding No Answer\",\n    \"Call Notify\",\n    \"Calling Line ID Delivery Blocking\",\n    \"CommPilot Express\",\n    \"CommPilot Call Manager\",\n    \"Do Not Disturb\",\n    \"Intercept User\",\n    \"Last Number Redial\",\n    \"Outlook Integration\",\n    \"Priority Alert\",\n    \"Call Return\",\n    \"Remote Office\",\n    \"Selective Call Acceptance\",\n    \"Call Forwarding Selective\",\n    \"Selective Call Rejection\",\n    \"Service Scripts User\",\n    \"Simultaneous Ring Personal\",\n    \"Voice Messaging User\",\n    \"Alternate Numbers\",\n    \"Shared Call Appearance\",\n    \"Speed Dial 8\",\n    \"Customer Originated Trace\",\n    \"Attendant Console\",\n    \"Third-Party MWI Control\",\n    \"Client Call Control\",\n    \"Shared Call Appearance 5\",\n    \"Shared Call Appearance 10\",\n    \"Shared Call Appearance 15\",\n    \"Shared Call Appearance 20\",\n    \"Shared Call Appearance 25\",\n    \"Shared Call Appearance 30\",\n    \"Shared Call Appearance 35\",\n    \"Calling Name Retrieval\",\n    \"Flash Call Hold\",\n    \"Speed Dial 100\",\n    \"Directed Call Pickup\",\n    \"Third-Party Voice Mail Support\",\n    \"Directed Call Pickup with Barge-in\",\n    \"Voice Portal Calling\",\n    \"External Calling Line ID Delivery\",\n    \"Internal Calling Line ID Delivery\",\n    \"Automatic Callback\",\n    \"Call Waiting\",\n    \"Calling Line ID Blocking Override\",\n    \"Calling Party Category\",\n    \"Barge-in Exempt\",\n    \"SMDI Message Desk\",\n    \"Video Add-On\",\n    \"Malicious Call Trace\",\n    \"Preferred Carrier User\",\n    \"Push to Talk\",\n    \"Basic Call Logs\",\n    \"Enhanced Call Logs\",\n    \"Hoteling Host\",\n    \"Hoteling Guest\",\n    \"Voice Messaging User - Video\",\n    \"Simultaneous Ring Family\",\n    \"Diversion Inhibitor\",\n    \"Multiple Call Arrangement\",\n    \"Mobile Extension to Extension Dialing\",\n    \"Custom Ringback User\",\n    \"Custom Ringback User - Video\",\n    \"Automatic Hold/Retrieve\",\n    \"Busy Lamp Field\",\n    \"Three-Way Call\",\n    \"Call Transfer\",\n    \"Privacy\",\n    \"Fax Messaging\",\n    \"Physical Location\",\n    \"Charge Number\",\n    \"BroadWorks Supervisor\",\n    \"BroadWorks Agent\",\n    \"N-Way Call\",\n    \"Directory Number Hunting\",\n    \"Two-Stage Dialing\",\n    \"Mobility\",\n    \"Call Forwarding Not Reachable\",\n    \"MWI Delivery to Mobile Endpoint\",\n    \"BroadWorks Receptionist - Small Business\",\n    \"BroadWorks Receptionist - Office\",\n    \"External Custom Ringback\",\n    \"In-Call Service Activation\",\n    \"IN Integration\",\n    \"Dual-Mode VCC\",\n    \"Connected Line Identification Presentation\",\n    \"Connected Line Identification Restriction\",\n    \"BroadWorks Anywhere\",\n    \"Zone Calling Restrictions\",\n    \"Polycom Phone Services\",\n    \"Custom Ringback User - Call Waiting\",\n    \"Music On Hold User\",\n    \"Video On Hold User\",\n    \"Advice Of Charge\",\n    \"Prepaid\",\n    \"Call Center - Basic\",\n    \"Call Center - Standard\",\n    \"Call Center - Premium\",\n    \"Bria For BroadWorks\",\n    \"Communication Barring User-Control\",\n    \"Classmark\",\n    \"Calling Name Delivery\",\n    \"Calling Number Delivery\",\n    \"Virtual On-Net Enterprise Extensions\",\n    \"Office Communicator Tab\",\n    \"Pre-alerting Announcement\",\n    \"Legacy Automatic Callback\",\n    \"Call Center Monitoring\",\n    \"Location-Based Calling Restrictions\",\n    \"Short Message Service\",\n    \"BroadWorks Mobility\",\n    \"Call Me Now\",\n    \"Call Recording\",\n    \"BroadWorks Connector for Lotus Sametime\",\n    \"Integrated IMP\",\n    \"Third-Party IMP\",\n    \"Group Night Forwarding\",\n    \"BroadTouch Business Communicator Desktop\",\n    \"BroadTouch Business Communicator Desktop - Audio\",\n    \"BroadTouch Business Communicator Mobile\",\n    \"BroadTouch Business Communicator Mobile - Audio\",\n    \"BroadTouch Business Communicator Tablet\",\n    \"BroadTouch Business Communicator Tablet - Audio\",\n    \"BroadTouch Business Communicator Tablet - Video\",\n    \"Executive\",\n    \"Executive-Assistant\",\n    \"Client License 1\",\n    \"Client License 2\",\n    \"Client License 3\",\n    \"Client License 4\",\n    \"Client License 5\",\n    \"Client License 6\",\n    \"Client License 7\",\n    \"Client License 8\",\n    \"Client License 9\",\n    \"Client License 10\",\n    \"Client License 11\",\n    \"Client License 12\",\n    \"Client License 13\",\n    \"Client License 14\",\n    \"Client License 15\",\n    \"Client License 16\",\n    \"Client License 17\",\n    \"Client License 18\",\n    \"Client License 19\",\n    \"Client License 20\",\n    \"Client License 21\",\n    \"Client License 22\",\n    \"Client License 23\",\n    \"Client License 24\",\n    \"Client License 25\",\n    \"Client License 26\",\n    \"Client License 27\",\n    \"Client License 28\",\n    \"Client License 29\",\n    \"Client License 30\",\n    \"Client License 31\",\n    \"Client License 32\",\n    \"Client License 33\",\n    \"Client License 34\",\n    \"Client License 35\",\n    \"Client License 36\",\n    \"Client License 37\",\n    \"Client License 38\",\n    \"Client License 39\",\n    \"Client License 40\",\n    \"Client License 41\",\n    \"Client License 42\",\n    \"Client License 43\",\n    \"Client License 44\",\n    \"Client License 45\",\n    \"Client License 46\",\n    \"Client License 47\",\n    \"Client License 48\",\n    \"Client License 49\",\n    \"Client License 50\",\n    \"Lync CTI\",\n    \"Lync Softphone\",\n    \"Security Classification\",\n    \"Flexible Seating Guest\",\n    \"Visual Device Management\",\n    \"Personal Assistant\",\n    \"Route List\",\n    \"Collaborate - Audio\",\n    \"Collaborate - Video\",\n    \"Collaborate - Sharing\",\n    \"Intelligent Network Service Control\",\n    \"CommPilot Express SR\",\n    \"Sequential Ring\",\n    \"Client Call Control II\",\n    \"Number Portability Announcement\",\n    \"Account/Authorization Codes\",\n    \"Auto Attendant\",\n    \"Call Capacity Management\",\n    \"Call Park\",\n    \"Call Pickup\",\n    \"Hunt Group\",\n    \"Incoming Calling Plan\",\n    \"Intercept Group\",\n    \"Outgoing Calling Plan\",\n    \"Series Completion\",\n    \"Voice Messaging Group\",\n    \"Music On Hold\",\n    \"LDAP Integration\",\n    \"Inventory Report\",\n    \"Enhanced Outgoing Calling Plan\",\n    \"City-Wide Centrex\",\n    \"Emergency Zones\",\n    \"Preferred Carrier Group\",\n    \"Auto Attendant - Video\",\n    \"Music On Hold - Video\",\n    \"Instant Group Call\",\n    \"Trunk Group\",\n    \"Custom Ringback Group\",\n    \"Custom Ringback Group - Video\",\n    \"Service Scripts Group\",\n    \"Route Point\",\n    \"Group Paging\",\n    \"Meet-Me Conferencing\",\n    \"Find-me/Follow-me\",\n    \"Auto Attendant - Standard\",\n    \"VoiceXML\"\n]"}],"_postman_id":"68ca5554-2f72-4aef-b46a-4ef6d92f8dad"},{"name":"Group Services User Assigned","id":"f7aabfa6-758c-4aec-b6d5-41584411cb41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/services/assigned?groupId=grp.odin&serviceProviderId=ent.odin&serviceName=Standard&serviceType=servicePackName","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services","assigned"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"serviceName","value":"Standard"},{"key":"serviceType","value":"servicePackName"}],"variable":[]}},"response":[{"id":"452b13a9-7771-4f92-9ef5-95a9b28adf26","name":"Group Services User Assigned","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/services/assigned?groupId=grp.odin&serviceProviderId=ent.odin&serviceName=Classmark&serviceType=serviceName","host":["{{url}}"],"path":["api","v2","groups","services","assigned"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"serviceName","value":"Classmark"},{"key":"serviceType","value":"serviceName"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"serviceType\": \"serviceName\",\n    \"serviceName\": \"Classmark\",\n    \"users\": [\n        {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"department\": null,\n            \"phoneNumber\": 8595551414,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"extension\": 1414\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"department\": null,\n            \"phoneNumber\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"extension\": null\n        }\n    ]\n}"},{"id":"64715a5b-426e-46d2-969d-962f9eb34063","name":"Group Services User Assigned (service pack name)","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/services/assigned?groupId=grp.odin&serviceProviderId=ent.odin&serviceName=Standard&serviceType=servicePackName","host":["{{url}}"],"path":["api","v2","groups","services","assigned"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"serviceName","value":"Standard"},{"key":"serviceType","value":"servicePackName"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"serviceType\": \"servicePackName\",\n    \"serviceName\": \"Standard\",\n    \"users\": [\n        {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"department\": null,\n            \"phoneNumber\": 8595551414,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"extension\": 1414\n        }\n    ]\n}"}],"_postman_id":"f7aabfa6-758c-4aec-b6d5-41584411cb41"},{"name":"Group Services","id":"f4054750-e721-4db5-9849-9fbc04392a93","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"quantity\": -1\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2a81c9e6-64f2-4b03-9579-b6bd826b251b","name":"Group Services","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"quantity\": -1\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:25:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Family\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Family\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Mobile Extension to Extension Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Mobile Extension to Extension Dialing\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"IN Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"IN Integration\"\n        },\n        {\n            \"serviceName\": \"Dual-Mode VCC\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Dual-Mode VCC\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Bria For BroadWorks\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Bria For BroadWorks\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Legacy Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Legacy Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Short Message Service\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Short Message Service\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 2,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Third-Party IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Third-Party IMP\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"Executive\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Executive\"\n        },\n        {\n            \"serviceName\": \"Executive-Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Executive-Assistant\"\n        },\n        {\n            \"serviceName\": \"Client License 1\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 1\"\n        },\n        {\n            \"serviceName\": \"Client License 2\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 2\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 5\"\n        },\n        {\n            \"serviceName\": \"Client License 6\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 6\"\n        },\n        {\n            \"serviceName\": \"Client License 7\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 7\"\n        },\n        {\n            \"serviceName\": \"Client License 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 8\"\n        },\n        {\n            \"serviceName\": \"Client License 9\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 9\"\n        },\n        {\n            \"serviceName\": \"Client License 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 10\"\n        },\n        {\n            \"serviceName\": \"Client License 11\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 11\"\n        },\n        {\n            \"serviceName\": \"Client License 12\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 12\"\n        },\n        {\n            \"serviceName\": \"Client License 13\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 13\"\n        },\n        {\n            \"serviceName\": \"Client License 14\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 14\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Client License 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 20\"\n        },\n        {\n            \"serviceName\": \"Client License 21\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 21\"\n        },\n        {\n            \"serviceName\": \"Client License 22\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 22\"\n        },\n        {\n            \"serviceName\": \"Client License 23\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 23\"\n        },\n        {\n            \"serviceName\": \"Client License 24\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 24\"\n        },\n        {\n            \"serviceName\": \"Client License 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 25\"\n        },\n        {\n            \"serviceName\": \"Client License 26\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 26\"\n        },\n        {\n            \"serviceName\": \"Client License 27\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 27\"\n        },\n        {\n            \"serviceName\": \"Client License 28\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 28\"\n        },\n        {\n            \"serviceName\": \"Client License 29\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 29\"\n        },\n        {\n            \"serviceName\": \"Client License 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 30\"\n        },\n        {\n            \"serviceName\": \"Client License 31\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 31\"\n        },\n        {\n            \"serviceName\": \"Client License 32\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 32\"\n        },\n        {\n            \"serviceName\": \"Client License 33\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 33\"\n        },\n        {\n            \"serviceName\": \"Client License 34\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 34\"\n        },\n        {\n            \"serviceName\": \"Client License 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 35\"\n        },\n        {\n            \"serviceName\": \"Client License 36\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 36\"\n        },\n        {\n            \"serviceName\": \"Client License 37\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 37\"\n        },\n        {\n            \"serviceName\": \"Client License 38\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 38\"\n        },\n        {\n            \"serviceName\": \"Client License 39\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 39\"\n        },\n        {\n            \"serviceName\": \"Client License 40\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 40\"\n        },\n        {\n            \"serviceName\": \"Client License 41\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 41\"\n        },\n        {\n            \"serviceName\": \"Client License 42\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 42\"\n        },\n        {\n            \"serviceName\": \"Client License 43\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 43\"\n        },\n        {\n            \"serviceName\": \"Client License 44\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 44\"\n        },\n        {\n            \"serviceName\": \"Client License 45\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 45\"\n        },\n        {\n            \"serviceName\": \"Client License 46\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 46\"\n        },\n        {\n            \"serviceName\": \"Client License 47\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 47\"\n        },\n        {\n            \"serviceName\": \"Client License 48\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 48\"\n        },\n        {\n            \"serviceName\": \"Client License 49\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 49\"\n        },\n        {\n            \"serviceName\": \"Client License 50\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 50\"\n        },\n        {\n            \"serviceName\": \"Lync CTI\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Lync CTI\"\n        },\n        {\n            \"serviceName\": \"Lync Softphone\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Lync Softphone\"\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Security Classification\"\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Flexible Seating Guest\"\n        },\n        {\n            \"serviceName\": \"Visual Device Management\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Visual Device Management\"\n        },\n        {\n            \"serviceName\": \"Personal Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Personal Assistant\"\n        },\n        {\n            \"serviceName\": \"Route List\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Route List\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Audio\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Video\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Sharing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Sharing\"\n        },\n        {\n            \"serviceName\": \"Intelligent Network Service Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Intelligent Network Service Control\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express SR\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express SR\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Client Call Control II\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control II\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Voice Messaging Group\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"LDAP Integration\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"City-Wide Centrex\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"City-Wide Centrex\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Service Scripts Group\"\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Route Point\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Find-me/Follow-me\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant - Standard\"\n        },\n        {\n            \"serviceName\": \"VoiceXML\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"VoiceXML\"\n        }\n    ],\n    \"servicePackServices\": []\n}"}],"_postman_id":"f4054750-e721-4db5-9849-9fbc04392a93"},{"name":"User Services","id":"8d69b703-56d8-47c2-911e-54557f08731b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/services?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"7209f8e1-aba3-4dbf-9246-a22cf661a304","name":"User Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/services?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","services"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2019 00:06:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"assigned\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"assigned\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"Executive\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Executive\"\n        },\n        {\n            \"serviceName\": \"Executive-Assistant\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Executive-Assistant\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Security Classification\"\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Flexible Seating Guest\"\n        },\n        {\n            \"serviceName\": \"Personal Assistant\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Personal Assistant\"\n        },\n        {\n            \"serviceName\": \"Route List\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Route List\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Audio\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Audio\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Video\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Sharing\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Sharing\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always Secondary\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always Secondary\"\n        },\n        {\n            \"serviceName\": \"Silent Alerting\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Silent Alerting\"\n        },\n        {\n            \"serviceName\": \"Conference Room\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Conference Room\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        },\n        {\n            \"serviceName\": \"Direct Route\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Direct Route\"\n        },\n        {\n            \"serviceName\": \"Terminating Alternate Trunk Identity\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Terminating Alternate Trunk Identity\"\n        }\n    ],\n    \"servicePackServices\": [\n        {\n            \"assigned\": false,\n            \"description\": \"Standard\",\n            \"serviceName\": \"Standard\",\n            \"alias\": \"Standard\"\n        },\n        {\n            \"assigned\": false,\n            \"description\": \"Premium\",\n            \"serviceName\": \"Premium\",\n            \"alias\": \"Premium\"\n        },\n        {\n            \"assigned\": false,\n            \"description\": \"Basic\",\n            \"serviceName\": \"Basic\",\n            \"alias\": \"Basic\"\n        }\n    ]\n}"}],"_postman_id":"8d69b703-56d8-47c2-911e-54557f08731b"},{"name":"User Services Search","id":"f5d83cec-fdd7-46f4-959c-a13a8378bd71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/services/search","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services","search"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5d83cec-fdd7-46f4-959c-a13a8378bd71"},{"name":"User Services","id":"7f8d0511-4501-465d-81ac-46955c5998a7","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"odin-test-1@lab.tekvoice.net\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"assigned\": true\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/services","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d3481b58-c8fb-47ca-a84f-1960bda9b43b","name":"User Services","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"4001@parkbenchsolutions.com\",\n\t\"userServices\":[\n\t\t{\"serviceName\":\"Basic Call Logs\",\"assigned\":true}\n\t]\n}"},"url":"{{url}}/api/v2/users/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2019 00:06:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"assigned\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"assigned\": true,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"Executive\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Executive\"\n        },\n        {\n            \"serviceName\": \"Executive-Assistant\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Executive-Assistant\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"assigned\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"assigned\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Security Classification\"\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Flexible Seating Guest\"\n        },\n        {\n            \"serviceName\": \"Personal Assistant\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Personal Assistant\"\n        },\n        {\n            \"serviceName\": \"Route List\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Route List\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Audio\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Audio\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Video\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Sharing\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Sharing\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always Secondary\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always Secondary\"\n        },\n        {\n            \"serviceName\": \"Silent Alerting\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Silent Alerting\"\n        },\n        {\n            \"serviceName\": \"Conference Room\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Conference Room\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        },\n        {\n            \"serviceName\": \"Direct Route\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Direct Route\"\n        },\n        {\n            \"serviceName\": \"Terminating Alternate Trunk Identity\",\n            \"assigned\": true,\n            \"tags\": [],\n            \"alias\": \"Terminating Alternate Trunk Identity\"\n        }\n    ],\n    \"servicePackServices\": [\n        {\n            \"assigned\": false,\n            \"description\": \"Standard\",\n            \"serviceName\": \"Standard\",\n            \"alias\": \"Standard\"\n        },\n        {\n            \"assigned\": false,\n            \"description\": \"Premium\",\n            \"serviceName\": \"Premium\",\n            \"alias\": \"Premium\"\n        },\n        {\n            \"assigned\": false,\n            \"description\": \"Basic\",\n            \"serviceName\": \"Basic\",\n            \"alias\": \"Basic\"\n        }\n    ],\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"7f8d0511-4501-465d-81ac-46955c5998a7"},{"name":"User Service Settings","id":"5172a7bb-5f8d-48b2-ac20-35157fb1f0dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/services/settings?userId=9871515000@odinapi.net","description":"<p>User Service Settings will find all of the assigned user services and return the settings for each of those services.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services","settings"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"284adbbb-9160-4370-b1cf-f180fef395b3","name":"User Service Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/services/settings?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","services","settings"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"Advice Of Charge\": {\n        \"isActive\": false,\n        \"aocType\": \"During Call\"\n    },\n    \"Alternate Numbers\": {\n        \"distinctiveRing\": true,\n        \"alternateEntries\": [\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 1\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 2\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 3\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 4\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 5\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 6\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 7\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 8\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 9\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 10\n            }\n        ]\n    },\n    \"Anonymous Call Rejection\": {\n        \"isActive\": false\n    },\n    \"Authentication\": {\n        \"userName\": 9871515000,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    \"Automatic Callback\": {\n        \"isActive\": false\n    },\n    \"Automatic Hold/Retrieve\": {\n        \"isActive\": false,\n        \"recallTimerSeconds\": 120\n    },\n    \"Barge-in Exempt\": {\n        \"isActive\": true\n    },\n    \"BroadWorks Anywhere\": {\n        \"alertAllLocationsForClickToDialCalls\": false,\n        \"alertAllLocationsForGroupPagingCalls\": false,\n        \"phoneNumbers\": []\n    },\n    \"BroadWorks Mobility\": {\n        \"isActive\": false,\n        \"phonesToRing\": \"Fixed\",\n        \"alertClickToDialCalls\": false,\n        \"alertGroupPagingCalls\": false,\n        \"enableDiversionInhibitor\": false,\n        \"requireAnswerConfirmation\": false,\n        \"broadworksCallControl\": false,\n        \"useSettingLevel\": \"Group\",\n        \"denyCallOriginations\": false,\n        \"denyCallTerminations\": false\n    },\n    \"Busy Lamp Field\": {\n        \"enableCallParkNotification\": false,\n        \"users\": []\n    },\n    \"Call Forwarding Always\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 1234,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Always Secondary\": {\n        \"isActive\": false,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Busy\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding No Answer\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 12314,\n        \"numberOfRings\": 2\n    },\n    \"Call Forwarding Not Reachable\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding Selective\": {\n        \"isActive\": false,\n        \"playRingReminder\": false,\n        \"criteria\": []\n    },\n    \"Call Notify\": {\n        \"criteria\": []\n    },\n    \"Call Recording\": {\n        \"recordingOption\": \"Never\",\n        \"pauseResumeNotification\": \"None\",\n        \"enableCallRecordingAnnouncement\": false,\n        \"enableRecordCallRepeatWarningTone\": false,\n        \"recordCallRepeatWarningToneTimerSeconds\": 15,\n        \"enableVoiceMailRecording\": false\n    },\n    \"Call Transfer\": {\n        \"isRecallActive\": false,\n        \"recallNumberOfRings\": 4,\n        \"useDiversionInhibitorForBlindTransfer\": false,\n        \"useDiversionInhibitorForConsultativeCalls\": false,\n        \"enableBusyCampOn\": false,\n        \"busyCampOnSeconds\": 120\n    },\n    \"Call Waiting\": {\n        \"isActive\": true,\n        \"disableCallingLineIdDelivery\": false\n    },\n    \"Calling Line ID Blocking Override\": {\n        \"isActive\": false\n    },\n    \"Calling Line ID Delivery Blocking\": {\n        \"isActive\": false\n    },\n    \"Calling Name Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Name Retrieval\": {\n        \"isActive\": false\n    },\n    \"Calling Number Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Party Category\": {\n        \"category\": \"Ordinary\"\n    },\n    \"Charge Number\": {\n        \"useChargeNumberForEnhancedTranslations\": false,\n        \"sendChargeNumberToNetwork\": true\n    },\n    \"Classmark\": [],\n    \"CommPilot Express\": {\n        \"availableInOffice\": {\n            \"busySetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"noAnswerSetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            }\n        },\n        \"availableOutOfOffice\": {\n            \"incomingCalls\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"incomingCallNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"busy\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"unavailable\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailGreeting\": \"No Answer\"\n        }\n    },\n    \"Communication Barring User-Control\": {\n        \"lockoutStatus\": false,\n        \"profileTable\": []\n    },\n    \"Connected Line Identification Restriction\": {\n        \"isActive\": false\n    },\n    \"Direct Route\": {\n        \"outgoingDTGPolicy\": \"Direct Route DTG\",\n        \"outgoingTrunkIdentityPolicy\": \"Direct Route Trunk Identity\",\n        \"routes\": []\n    },\n    \"Directed Call Pickup with Barge-in\": {\n        \"enableBargeInWarningTone\": true,\n        \"enableAutomaticTargetSelection\": false\n    },\n    \"Do Not Disturb\": {\n        \"isActive\": false,\n        \"ringSplash\": false\n    },\n    \"Executive-Assistant\": {\n        \"enableDivert\": false,\n        \"executives\": []\n    },\n    \"External Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"External Custom Ringback\": {\n        \"isActive\": false,\n        \"useSettingLevel\": \"Service Provider\"\n    },\n    \"Fax Messaging\": {\n        \"isActive\": false,\n        \"aliases\": []\n    },\n    \"Group Night Forwarding\": {\n        \"nightForwarding\": \"Use Group\",\n        \"groupNightForwarding\": \"On\"\n    },\n    \"Hoteling Guest\": {\n        \"isActive\": false,\n        \"enableAssociationLimit\": true,\n        \"associationLimitHours\": 12\n    },\n    \"Hoteling Host\": {\n        \"isActive\": false,\n        \"enforceAssociationLimit\": true,\n        \"associationLimitHours\": 24,\n        \"accessLevel\": \"Group\"\n    },\n    \"In-Call Service Activation\": {\n        \"isActive\": false\n    },\n    \"Integrated IMP\": {\n        \"isActive\": false\n    },\n    \"Intercept User\": {\n        \"isActive\": false,\n        \"announcementSelection\": \"Default\",\n        \"inboundCallMode\": \"Intercept All\",\n        \"alternateBlockingAnnouncement\": false,\n        \"exemptInboundMobilityCalls\": false,\n        \"disableParallelRingingToNetworkLocations\": false,\n        \"routeToVoiceMail\": false,\n        \"playNewPhoneNumber\": false,\n        \"transferOnZeroToPhoneNumber\": false,\n        \"outboundCallMode\": \"Block All\",\n        \"exemptOutboundMobilityCalls\": false,\n        \"rerouteOutboundCalls\": false\n    },\n    \"Internal Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"MWI Delivery to Mobile Endpoint\": {\n        \"isActive\": false\n    },\n    \"Malicious Call Trace\": {\n        \"isActive\": false,\n        \"traceTypeSelection\": \"Answered Incoming\",\n        \"traceForTimePeriod\": false\n    },\n    \"Number Portability Announcement\": {\n        \"enable\": false\n    },\n    \"Physical Location\": {\n        \"isActive\": false\n    },\n    \"Pre-alerting Announcement\": {\n        \"isActive\": false,\n        \"audioSelection\": \"Default\",\n        \"videoSelection\": \"Default\",\n        \"criteria\": []\n    },\n    \"Preferred Carrier User\": {\n        \"intraLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"interLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"internationalCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        }\n    },\n    \"Prepaid\": {\n        \"isActive\": false\n    },\n    \"Priority Alert\": {\n        \"isActive\": false,\n        \"criteria\": []\n    },\n    \"Privacy\": {\n        \"enableDirectoryPrivacy\": false,\n        \"enableAutoAttendantExtensionDialingPrivacy\": false,\n        \"enableAutoAttendantNameDialingPrivacy\": false,\n        \"enablePhoneStatusPrivacy\": false,\n        \"permittedMonitors\": []\n    },\n    \"Push to Talk\": {\n        \"allowAutoAnswer\": true,\n        \"outgoingConnectionSelection\": \"Two Way\",\n        \"accessListSelection\": \"Allow Calls From Selected Users\",\n        \"users\": []\n    },\n    \"Remote Office\": {\n        \"isActive\": false\n    },\n    \"Route List\": {\n        \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n        \"useRouteListIdentityForNonEmergencyCalls\": true,\n        \"useRouteListIdentityForEmergencyCalls\": true,\n        \"assignedNumberPrefixTable\": [],\n        \"dns\": []\n    },\n    \"Security Classification\": [],\n    \"Selective Call Acceptance\": [],\n    \"Selective Call Rejection\": [],\n    \"Sequential Ring\": {\n        \"ringBaseLocationFirst\": true,\n        \"baseLocationNumberOfRings\": 2,\n        \"continueIfBaseLocationIsBusy\": true,\n        \"callerMayStopSearch\": true,\n        \"locations\": [\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            }\n        ],\n        \"criteria\": []\n    },\n    \"Shared Call Appearance\": {\n        \"alertAllAppearancesForClickToDialCalls\": false,\n        \"alertAllAppearancesForGroupPagingCalls\": false,\n        \"maxAppearances\": 35,\n        \"allowSCACallRetrieve\": false,\n        \"enableMultipleCallArrangement\": true,\n        \"multipleCallArrangementIsActive\": true,\n        \"allowBridgingBetweenLocations\": false,\n        \"bridgeWarningTone\": \"None\",\n        \"enableCallParkNotification\": false,\n        \"endpoints\": []\n    },\n    \"Silent Alerting\": {\n        \"isActive\": false\n    },\n    \"Simultaneous Ring Personal\": {\n        \"isActive\": false,\n        \"doNotRingIfOnCall\": true,\n        \"criteria\": [],\n        \"locations\": []\n    },\n    \"Speed Dial 100\": {\n        \"speedCodes\": []\n    },\n    \"Speed Dial 8\": {\n        \"speedCodes\": [\n            {\n                \"speedCode\": \"2\"\n            },\n            {\n                \"speedCode\": \"3\"\n            },\n            {\n                \"speedCode\": \"4\"\n            },\n            {\n                \"speedCode\": \"5\"\n            },\n            {\n                \"speedCode\": \"6\"\n            },\n            {\n                \"speedCode\": \"7\"\n            },\n            {\n                \"speedCode\": \"8\"\n            },\n            {\n                \"speedCode\": \"9\"\n            }\n        ]\n    },\n    \"Terminating Alternate Trunk Identity\": [],\n    \"Third-Party Voice Mail Support\": {\n        \"isActive\": false,\n        \"busyRedirectToVoiceMail\": true,\n        \"noAnswerRedirectToVoiceMail\": true,\n        \"serverSelection\": \"Group Mail Server\",\n        \"mailboxIdType\": \"User Or Group Phone Number\",\n        \"noAnswerNumberOfRings\": 2,\n        \"alwaysRedirectToVoiceMail\": false,\n        \"outOfPrimaryZoneRedirectToVoiceMail\": false\n    },\n    \"Two-Stage Dialing\": {\n        \"isActive\": true,\n        \"allowActivationWithUserAddresses\": false\n    },\n    \"Video Add-On\": {\n        \"isActive\": false,\n        \"maxOriginatingCallDelaySeconds\": 2\n    },\n    \"Voice Messaging User\": {\n        \"Voice Messaging User\": {\n            \"isActive\": false,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"voiceMessageDeliveryEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Advanced\": {\n            \"mailServerSelection\": \"Group Mail Server\",\n            \"groupMailServerEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"groupMailServerUserId\": \"vm9871515000\",\n            \"useGroupDefaultMailServerFullMailboxLimit\": true,\n            \"personalMailServerProtocol\": \"POP3\",\n            \"personalMailServerRealDeleteForImap\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Greeting\": {\n            \"busyAnnouncementSelection\": \"Default\",\n            \"noAnswerAnnouncementSelection\": \"Default\",\n            \"extendedAwayEnabled\": false,\n            \"extendedAwayDisableMessageDeposit\": true,\n            \"noAnswerNumberOfRings\": 2,\n            \"disableMessageDeposit\": false,\n            \"disableMessageDepositAction\": \"Disconnect\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Voice Portal\": {\n            \"usePersonalizedName\": true,\n            \"voicePortalAutoLogin\": true,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"audioFile\": {\n                \"description\": \"aa1 copy is a copy of the Let's go song\",\n                \"mediaType\": \"WAV\"\n            }\n        }\n    },\n    \"Voice Portal Calling\": {\n        \"isActive\": false\n    },\n    \"Zone Calling Restrictions\": []\n}"}],"_postman_id":"5172a7bb-5f8d-48b2-ac20-35157fb1f0dd"},{"name":"User Service Settings","id":"95bdfa78-9ba1-4c31-b7e8-6b4d5a1d37ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"Advice Of Charge\": {\n        \"isActive\": false,\n        \"aocType\": \"During Call\"\n    },\n    \"Alternate Numbers\": {\n        \"distinctiveRing\": true,\n        \"alternateEntries\": [\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 1\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 2\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 3\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 4\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 5\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 6\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 7\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 8\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 9\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 10\n            }\n        ]\n    },\n    \"Anonymous Call Rejection\": {\n        \"isActive\": false\n    },\n    \"Authentication\": {\n        \"userName\": 9871515000,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    \"Automatic Callback\": {\n        \"isActive\": false\n    },\n    \"Automatic Hold/Retrieve\": {\n        \"isActive\": false,\n        \"recallTimerSeconds\": 120\n    },\n    \"Barge-in Exempt\": {\n        \"isActive\": true\n    },\n    \"BroadWorks Anywhere\": {\n        \"alertAllLocationsForClickToDialCalls\": false,\n        \"alertAllLocationsForGroupPagingCalls\": false,\n        \"phoneNumbers\": []\n    },\n    \"BroadWorks Mobility\": {\n        \"isActive\": false,\n        \"phonesToRing\": \"Fixed\",\n        \"alertClickToDialCalls\": false,\n        \"alertGroupPagingCalls\": false,\n        \"enableDiversionInhibitor\": false,\n        \"requireAnswerConfirmation\": false,\n        \"broadworksCallControl\": false,\n        \"useSettingLevel\": \"Group\",\n        \"denyCallOriginations\": false,\n        \"denyCallTerminations\": false\n    },\n    \"Busy Lamp Field\": {\n        \"enableCallParkNotification\": false,\n        \"users\": []\n    },\n    \"Call Forwarding Always\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 1234,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Always Secondary\": {\n        \"isActive\": false,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Busy\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding No Answer\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 12314,\n        \"numberOfRings\": 2\n    },\n    \"Call Forwarding Not Reachable\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding Selective\": {\n        \"isActive\": false,\n        \"playRingReminder\": false,\n        \"criteria\": []\n    },\n    \"Call Notify\": {\n        \"criteria\": []\n    },\n    \"Call Recording\": {\n        \"recordingOption\": \"Never\",\n        \"pauseResumeNotification\": \"None\",\n        \"enableCallRecordingAnnouncement\": false,\n        \"enableRecordCallRepeatWarningTone\": false,\n        \"recordCallRepeatWarningToneTimerSeconds\": 15,\n        \"enableVoiceMailRecording\": false\n    },\n    \"Call Transfer\": {\n        \"isRecallActive\": false,\n        \"recallNumberOfRings\": 4,\n        \"useDiversionInhibitorForBlindTransfer\": false,\n        \"useDiversionInhibitorForConsultativeCalls\": false,\n        \"enableBusyCampOn\": false,\n        \"busyCampOnSeconds\": 120\n    },\n    \"Call Waiting\": {\n        \"isActive\": true,\n        \"disableCallingLineIdDelivery\": false\n    },\n    \"Calling Line ID Blocking Override\": {\n        \"isActive\": false\n    },\n    \"Calling Line ID Delivery Blocking\": {\n        \"isActive\": false\n    },\n    \"Calling Name Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Name Retrieval\": {\n        \"isActive\": false\n    },\n    \"Calling Number Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Party Category\": {\n        \"category\": \"Ordinary\"\n    },\n    \"Charge Number\": {\n        \"useChargeNumberForEnhancedTranslations\": false,\n        \"sendChargeNumberToNetwork\": true\n    },\n    \"Classmark\": [],\n    \"CommPilot Express\": {\n        \"availableInOffice\": {\n            \"busySetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"noAnswerSetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            }\n        },\n        \"availableOutOfOffice\": {\n            \"incomingCalls\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"incomingCallNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"busy\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"unavailable\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailGreeting\": \"No Answer\"\n        }\n    },\n    \"Communication Barring User-Control\": {\n        \"lockoutStatus\": false,\n        \"profileTable\": []\n    },\n    \"Connected Line Identification Restriction\": {\n        \"isActive\": false\n    },\n    \"Direct Route\": {\n        \"outgoingDTGPolicy\": \"Direct Route DTG\",\n        \"outgoingTrunkIdentityPolicy\": \"Direct Route Trunk Identity\",\n        \"routes\": []\n    },\n    \"Directed Call Pickup with Barge-in\": {\n        \"enableBargeInWarningTone\": true,\n        \"enableAutomaticTargetSelection\": false\n    },\n    \"Do Not Disturb\": {\n        \"isActive\": false,\n        \"ringSplash\": false\n    },\n    \"Executive-Assistant\": {\n        \"enableDivert\": false,\n        \"executives\": []\n    },\n    \"External Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"External Custom Ringback\": {\n        \"isActive\": false,\n        \"useSettingLevel\": \"Service Provider\"\n    },\n    \"Fax Messaging\": {\n        \"isActive\": false,\n        \"aliases\": []\n    },\n    \"Group Night Forwarding\": {\n        \"nightForwarding\": \"Use Group\",\n        \"groupNightForwarding\": \"On\"\n    },\n    \"Hoteling Guest\": {\n        \"isActive\": false,\n        \"enableAssociationLimit\": true,\n        \"associationLimitHours\": 12\n    },\n    \"Hoteling Host\": {\n        \"isActive\": false,\n        \"enforceAssociationLimit\": true,\n        \"associationLimitHours\": 24,\n        \"accessLevel\": \"Group\"\n    },\n    \"In-Call Service Activation\": {\n        \"isActive\": false\n    },\n    \"Integrated IMP\": {\n        \"isActive\": false\n    },\n    \"Intercept User\": {\n        \"isActive\": false,\n        \"announcementSelection\": \"Default\",\n        \"inboundCallMode\": \"Intercept All\",\n        \"alternateBlockingAnnouncement\": false,\n        \"exemptInboundMobilityCalls\": false,\n        \"disableParallelRingingToNetworkLocations\": false,\n        \"routeToVoiceMail\": false,\n        \"playNewPhoneNumber\": false,\n        \"transferOnZeroToPhoneNumber\": false,\n        \"outboundCallMode\": \"Block All\",\n        \"exemptOutboundMobilityCalls\": false,\n        \"rerouteOutboundCalls\": false\n    },\n    \"Internal Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"MWI Delivery to Mobile Endpoint\": {\n        \"isActive\": false\n    },\n    \"Malicious Call Trace\": {\n        \"isActive\": false,\n        \"traceTypeSelection\": \"Answered Incoming\",\n        \"traceForTimePeriod\": false\n    },\n    \"Number Portability Announcement\": {\n        \"enable\": false\n    },\n    \"Physical Location\": {\n        \"isActive\": false\n    },\n    \"Pre-alerting Announcement\": {\n        \"isActive\": false,\n        \"audioSelection\": \"Default\",\n        \"videoSelection\": \"Default\",\n        \"criteria\": []\n    },\n    \"Preferred Carrier User\": {\n        \"intraLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"interLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"internationalCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        }\n    },\n    \"Prepaid\": {\n        \"isActive\": false\n    },\n    \"Priority Alert\": {\n        \"isActive\": false,\n        \"criteria\": []\n    },\n    \"Privacy\": {\n        \"enableDirectoryPrivacy\": false,\n        \"enableAutoAttendantExtensionDialingPrivacy\": false,\n        \"enableAutoAttendantNameDialingPrivacy\": false,\n        \"enablePhoneStatusPrivacy\": false,\n        \"permittedMonitors\": []\n    },\n    \"Push to Talk\": {\n        \"allowAutoAnswer\": true,\n        \"outgoingConnectionSelection\": \"Two Way\",\n        \"accessListSelection\": \"Allow Calls From Selected Users\",\n        \"users\": []\n    },\n    \"Remote Office\": {\n        \"isActive\": false\n    },\n    \"Route List\": {\n        \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n        \"useRouteListIdentityForNonEmergencyCalls\": true,\n        \"useRouteListIdentityForEmergencyCalls\": true,\n        \"assignedNumberPrefixTable\": [],\n        \"dns\": []\n    },\n    \"Security Classification\": [],\n    \"Selective Call Acceptance\": [],\n    \"Selective Call Rejection\": [],\n    \"Sequential Ring\": {\n        \"ringBaseLocationFirst\": true,\n        \"baseLocationNumberOfRings\": 2,\n        \"continueIfBaseLocationIsBusy\": true,\n        \"callerMayStopSearch\": true,\n        \"locations\": [\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            }\n        ],\n        \"criteria\": []\n    },\n    \"Shared Call Appearance\": {\n        \"alertAllAppearancesForClickToDialCalls\": false,\n        \"alertAllAppearancesForGroupPagingCalls\": false,\n        \"maxAppearances\": 35,\n        \"allowSCACallRetrieve\": false,\n        \"enableMultipleCallArrangement\": true,\n        \"multipleCallArrangementIsActive\": true,\n        \"allowBridgingBetweenLocations\": false,\n        \"bridgeWarningTone\": \"None\",\n        \"enableCallParkNotification\": false,\n        \"endpoints\": []\n    },\n    \"Silent Alerting\": {\n        \"isActive\": false\n    },\n    \"Simultaneous Ring Personal\": {\n        \"isActive\": false,\n        \"doNotRingIfOnCall\": true,\n        \"criteria\": [],\n        \"locations\": []\n    },\n    \"Speed Dial 100\": {\n        \"speedCodes\": []\n    },\n    \"Speed Dial 8\": {\n        \"speedCodes\": [\n            {\n                \"speedCode\": \"2\"\n            },\n            {\n                \"speedCode\": \"3\"\n            },\n            {\n                \"speedCode\": \"4\"\n            },\n            {\n                \"speedCode\": \"5\"\n            },\n            {\n                \"speedCode\": \"6\"\n            },\n            {\n                \"speedCode\": \"7\"\n            },\n            {\n                \"speedCode\": \"8\"\n            },\n            {\n                \"speedCode\": \"9\"\n            }\n        ]\n    },\n    \"Terminating Alternate Trunk Identity\": [],\n    \"Third-Party Voice Mail Support\": {\n        \"isActive\": false,\n        \"busyRedirectToVoiceMail\": true,\n        \"noAnswerRedirectToVoiceMail\": true,\n        \"serverSelection\": \"Group Mail Server\",\n        \"mailboxIdType\": \"User Or Group Phone Number\",\n        \"noAnswerNumberOfRings\": 2,\n        \"alwaysRedirectToVoiceMail\": false,\n        \"outOfPrimaryZoneRedirectToVoiceMail\": false\n    },\n    \"Two-Stage Dialing\": {\n        \"isActive\": true,\n        \"allowActivationWithUserAddresses\": false\n    },\n    \"Video Add-On\": {\n        \"isActive\": false,\n        \"maxOriginatingCallDelaySeconds\": 2\n    },\n    \"Voice Messaging User\": {\n        \"Voice Messaging User\": {\n            \"isActive\": false,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"voiceMessageDeliveryEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Advanced\": {\n            \"mailServerSelection\": \"Group Mail Server\",\n            \"groupMailServerEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"groupMailServerUserId\": \"vm9871515000\",\n            \"useGroupDefaultMailServerFullMailboxLimit\": true,\n            \"personalMailServerProtocol\": \"POP3\",\n            \"personalMailServerRealDeleteForImap\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Greeting\": {\n            \"busyAnnouncementSelection\": \"Default\",\n            \"noAnswerAnnouncementSelection\": \"Default\",\n            \"extendedAwayEnabled\": false,\n            \"extendedAwayDisableMessageDeposit\": true,\n            \"noAnswerNumberOfRings\": 2,\n            \"disableMessageDeposit\": false,\n            \"disableMessageDepositAction\": \"Disconnect\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Voice Portal\": {\n            \"usePersonalizedName\": true,\n            \"voicePortalAutoLogin\": true,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"audioFile\": {\n                \"description\": \"aa1 copy is a copy of the Let's go song\",\n                \"mediaType\": \"WAV\"\n            }\n        }\n    },\n    \"Voice Portal Calling\": {\n        \"isActive\": false\n    },\n    \"Zone Calling Restrictions\": []\n}"},"url":"{{url}}/api/v2/users/services/settings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services","settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"72d9fdd4-e91b-477d-9da0-f3176dbe688a","name":"User Service Settings","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"Advice Of Charge\": {\n        \"isActive\": false,\n        \"aocType\": \"During Call\"\n    },\n    \"Alternate Numbers\": {\n        \"distinctiveRing\": true,\n        \"alternateEntries\": [\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 1\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 2\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 3\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 4\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 5\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 6\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 7\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 8\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 9\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 10\n            }\n        ]\n    },\n    \"Anonymous Call Rejection\": {\n        \"isActive\": false\n    },\n    \"Authentication\": {\n        \"userName\": 9871515000,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    \"Automatic Callback\": {\n        \"isActive\": false\n    },\n    \"Automatic Hold/Retrieve\": {\n        \"isActive\": false,\n        \"recallTimerSeconds\": 120\n    },\n    \"Barge-in Exempt\": {\n        \"isActive\": true\n    },\n    \"BroadWorks Anywhere\": {\n        \"alertAllLocationsForClickToDialCalls\": false,\n        \"alertAllLocationsForGroupPagingCalls\": false,\n        \"phoneNumbers\": []\n    },\n    \"BroadWorks Mobility\": {\n        \"isActive\": false,\n        \"phonesToRing\": \"Fixed\",\n        \"alertClickToDialCalls\": false,\n        \"alertGroupPagingCalls\": false,\n        \"enableDiversionInhibitor\": false,\n        \"requireAnswerConfirmation\": false,\n        \"broadworksCallControl\": false,\n        \"useSettingLevel\": \"Group\",\n        \"denyCallOriginations\": false,\n        \"denyCallTerminations\": false\n    },\n    \"Busy Lamp Field\": {\n        \"enableCallParkNotification\": false,\n        \"users\": []\n    },\n    \"Call Forwarding Always\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 1234,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Always Secondary\": {\n        \"isActive\": false,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Busy\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding No Answer\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 12314,\n        \"numberOfRings\": 2\n    },\n    \"Call Forwarding Not Reachable\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding Selective\": {\n        \"isActive\": false,\n        \"playRingReminder\": false,\n        \"criteria\": []\n    },\n    \"Call Notify\": {\n        \"criteria\": []\n    },\n    \"Call Recording\": {\n        \"recordingOption\": \"Never\",\n        \"pauseResumeNotification\": \"None\",\n        \"enableCallRecordingAnnouncement\": false,\n        \"enableRecordCallRepeatWarningTone\": false,\n        \"recordCallRepeatWarningToneTimerSeconds\": 15,\n        \"enableVoiceMailRecording\": false\n    },\n    \"Call Transfer\": {\n        \"isRecallActive\": false,\n        \"recallNumberOfRings\": 4,\n        \"useDiversionInhibitorForBlindTransfer\": false,\n        \"useDiversionInhibitorForConsultativeCalls\": false,\n        \"enableBusyCampOn\": false,\n        \"busyCampOnSeconds\": 120\n    },\n    \"Call Waiting\": {\n        \"isActive\": true,\n        \"disableCallingLineIdDelivery\": false\n    },\n    \"Calling Line ID Blocking Override\": {\n        \"isActive\": false\n    },\n    \"Calling Line ID Delivery Blocking\": {\n        \"isActive\": false\n    },\n    \"Calling Name Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Name Retrieval\": {\n        \"isActive\": false\n    },\n    \"Calling Number Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Party Category\": {\n        \"category\": \"Ordinary\"\n    },\n    \"Charge Number\": {\n        \"useChargeNumberForEnhancedTranslations\": false,\n        \"sendChargeNumberToNetwork\": true\n    },\n    \"Classmark\": [],\n    \"CommPilot Express\": {\n        \"availableInOffice\": {\n            \"busySetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"noAnswerSetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            }\n        },\n        \"availableOutOfOffice\": {\n            \"incomingCalls\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"incomingCallNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"busy\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"unavailable\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailGreeting\": \"No Answer\"\n        }\n    },\n    \"Communication Barring User-Control\": {\n        \"lockoutStatus\": false,\n        \"profileTable\": []\n    },\n    \"Connected Line Identification Restriction\": {\n        \"isActive\": false\n    },\n    \"Direct Route\": {\n        \"outgoingDTGPolicy\": \"Direct Route DTG\",\n        \"outgoingTrunkIdentityPolicy\": \"Direct Route Trunk Identity\",\n        \"routes\": []\n    },\n    \"Directed Call Pickup with Barge-in\": {\n        \"enableBargeInWarningTone\": true,\n        \"enableAutomaticTargetSelection\": false\n    },\n    \"Do Not Disturb\": {\n        \"isActive\": false,\n        \"ringSplash\": false\n    },\n    \"Executive-Assistant\": {\n        \"enableDivert\": false,\n        \"executives\": []\n    },\n    \"External Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"External Custom Ringback\": {\n        \"isActive\": false,\n        \"useSettingLevel\": \"Service Provider\"\n    },\n    \"Fax Messaging\": {\n        \"isActive\": false,\n        \"aliases\": []\n    },\n    \"Group Night Forwarding\": {\n        \"nightForwarding\": \"Use Group\",\n        \"groupNightForwarding\": \"On\"\n    },\n    \"Hoteling Guest\": {\n        \"isActive\": false,\n        \"enableAssociationLimit\": true,\n        \"associationLimitHours\": 12\n    },\n    \"Hoteling Host\": {\n        \"isActive\": false,\n        \"enforceAssociationLimit\": true,\n        \"associationLimitHours\": 24,\n        \"accessLevel\": \"Group\"\n    },\n    \"In-Call Service Activation\": {\n        \"isActive\": false\n    },\n    \"Integrated IMP\": {\n        \"isActive\": false\n    },\n    \"Intercept User\": {\n        \"isActive\": false,\n        \"announcementSelection\": \"Default\",\n        \"inboundCallMode\": \"Intercept All\",\n        \"alternateBlockingAnnouncement\": false,\n        \"exemptInboundMobilityCalls\": false,\n        \"disableParallelRingingToNetworkLocations\": false,\n        \"routeToVoiceMail\": false,\n        \"playNewPhoneNumber\": false,\n        \"transferOnZeroToPhoneNumber\": false,\n        \"outboundCallMode\": \"Block All\",\n        \"exemptOutboundMobilityCalls\": false,\n        \"rerouteOutboundCalls\": false\n    },\n    \"Internal Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"MWI Delivery to Mobile Endpoint\": {\n        \"isActive\": false\n    },\n    \"Malicious Call Trace\": {\n        \"isActive\": false,\n        \"traceTypeSelection\": \"Answered Incoming\",\n        \"traceForTimePeriod\": false\n    },\n    \"Number Portability Announcement\": {\n        \"enable\": false\n    },\n    \"Physical Location\": {\n        \"isActive\": false\n    },\n    \"Pre-alerting Announcement\": {\n        \"isActive\": false,\n        \"audioSelection\": \"Default\",\n        \"videoSelection\": \"Default\",\n        \"criteria\": []\n    },\n    \"Preferred Carrier User\": {\n        \"intraLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"interLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"internationalCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        }\n    },\n    \"Prepaid\": {\n        \"isActive\": false\n    },\n    \"Priority Alert\": {\n        \"isActive\": false,\n        \"criteria\": []\n    },\n    \"Privacy\": {\n        \"enableDirectoryPrivacy\": false,\n        \"enableAutoAttendantExtensionDialingPrivacy\": false,\n        \"enableAutoAttendantNameDialingPrivacy\": false,\n        \"enablePhoneStatusPrivacy\": false,\n        \"permittedMonitors\": []\n    },\n    \"Push to Talk\": {\n        \"allowAutoAnswer\": true,\n        \"outgoingConnectionSelection\": \"Two Way\",\n        \"accessListSelection\": \"Allow Calls From Selected Users\",\n        \"users\": []\n    },\n    \"Remote Office\": {\n        \"isActive\": false\n    },\n    \"Route List\": {\n        \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n        \"useRouteListIdentityForNonEmergencyCalls\": true,\n        \"useRouteListIdentityForEmergencyCalls\": true,\n        \"assignedNumberPrefixTable\": [],\n        \"dns\": []\n    },\n    \"Security Classification\": [],\n    \"Selective Call Acceptance\": [],\n    \"Selective Call Rejection\": [],\n    \"Sequential Ring\": {\n        \"ringBaseLocationFirst\": true,\n        \"baseLocationNumberOfRings\": 2,\n        \"continueIfBaseLocationIsBusy\": true,\n        \"callerMayStopSearch\": true,\n        \"locations\": [\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            }\n        ],\n        \"criteria\": []\n    },\n    \"Shared Call Appearance\": {\n        \"alertAllAppearancesForClickToDialCalls\": false,\n        \"alertAllAppearancesForGroupPagingCalls\": false,\n        \"maxAppearances\": 35,\n        \"allowSCACallRetrieve\": false,\n        \"enableMultipleCallArrangement\": true,\n        \"multipleCallArrangementIsActive\": true,\n        \"allowBridgingBetweenLocations\": false,\n        \"bridgeWarningTone\": \"None\",\n        \"enableCallParkNotification\": false,\n        \"endpoints\": []\n    },\n    \"Silent Alerting\": {\n        \"isActive\": false\n    },\n    \"Simultaneous Ring Personal\": {\n        \"isActive\": false,\n        \"doNotRingIfOnCall\": true,\n        \"criteria\": [],\n        \"locations\": []\n    },\n    \"Speed Dial 100\": {\n        \"speedCodes\": []\n    },\n    \"Speed Dial 8\": {\n        \"speedCodes\": [\n            {\n                \"speedCode\": \"2\"\n            },\n            {\n                \"speedCode\": \"3\"\n            },\n            {\n                \"speedCode\": \"4\"\n            },\n            {\n                \"speedCode\": \"5\"\n            },\n            {\n                \"speedCode\": \"6\"\n            },\n            {\n                \"speedCode\": \"7\"\n            },\n            {\n                \"speedCode\": \"8\"\n            },\n            {\n                \"speedCode\": \"9\"\n            }\n        ]\n    },\n    \"Terminating Alternate Trunk Identity\": [],\n    \"Third-Party Voice Mail Support\": {\n        \"isActive\": false,\n        \"busyRedirectToVoiceMail\": true,\n        \"noAnswerRedirectToVoiceMail\": true,\n        \"serverSelection\": \"Group Mail Server\",\n        \"mailboxIdType\": \"User Or Group Phone Number\",\n        \"noAnswerNumberOfRings\": 2,\n        \"alwaysRedirectToVoiceMail\": false,\n        \"outOfPrimaryZoneRedirectToVoiceMail\": false\n    },\n    \"Two-Stage Dialing\": {\n        \"isActive\": true,\n        \"allowActivationWithUserAddresses\": false\n    },\n    \"Video Add-On\": {\n        \"isActive\": false,\n        \"maxOriginatingCallDelaySeconds\": 2\n    },\n    \"Voice Messaging User\": {\n        \"Voice Messaging User\": {\n            \"isActive\": false,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"voiceMessageDeliveryEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Advanced\": {\n            \"mailServerSelection\": \"Group Mail Server\",\n            \"groupMailServerEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"groupMailServerUserId\": \"vm9871515000\",\n            \"useGroupDefaultMailServerFullMailboxLimit\": true,\n            \"personalMailServerProtocol\": \"POP3\",\n            \"personalMailServerRealDeleteForImap\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Greeting\": {\n            \"busyAnnouncementSelection\": \"Default\",\n            \"noAnswerAnnouncementSelection\": \"Default\",\n            \"extendedAwayEnabled\": false,\n            \"extendedAwayDisableMessageDeposit\": true,\n            \"noAnswerNumberOfRings\": 2,\n            \"disableMessageDeposit\": false,\n            \"disableMessageDepositAction\": \"Disconnect\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Voice Portal\": {\n            \"usePersonalizedName\": true,\n            \"voicePortalAutoLogin\": true,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"audioFile\": {\n                \"description\": \"aa1 copy is a copy of the Let's go song\",\n                \"mediaType\": \"WAV\"\n            }\n        }\n    },\n    \"Voice Portal Calling\": {\n        \"isActive\": false\n    },\n    \"Zone Calling Restrictions\": []\n}"},"url":"{{url}}/api/v2/users/services/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"Advice Of Charge\": {\n        \"isActive\": false,\n        \"aocType\": \"During Call\"\n    },\n    \"Alternate Numbers\": {\n        \"distinctiveRing\": true,\n        \"alternateEntries\": [\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 1\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 2\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 3\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 4\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 5\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 6\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 7\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 8\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 9\n            },\n            {\n                \"phoneNumber\": null,\n                \"extension\": null,\n                \"ringPattern\": null,\n                \"alternateEntryId\": 10\n            }\n        ]\n    },\n    \"Anonymous Call Rejection\": {\n        \"isActive\": false\n    },\n    \"Authentication\": {\n        \"userName\": 9871515000,\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\"\n    },\n    \"Automatic Callback\": {\n        \"isActive\": false\n    },\n    \"Automatic Hold/Retrieve\": {\n        \"isActive\": false,\n        \"recallTimerSeconds\": 120\n    },\n    \"Barge-in Exempt\": {\n        \"isActive\": true\n    },\n    \"BroadWorks Anywhere\": {\n        \"alertAllLocationsForClickToDialCalls\": false,\n        \"alertAllLocationsForGroupPagingCalls\": false,\n        \"phoneNumbers\": []\n    },\n    \"BroadWorks Mobility\": {\n        \"isActive\": false,\n        \"phonesToRing\": \"Fixed\",\n        \"alertClickToDialCalls\": false,\n        \"alertGroupPagingCalls\": false,\n        \"enableDiversionInhibitor\": false,\n        \"requireAnswerConfirmation\": false,\n        \"broadworksCallControl\": false,\n        \"useSettingLevel\": \"Group\",\n        \"denyCallOriginations\": false,\n        \"denyCallTerminations\": false\n    },\n    \"Busy Lamp Field\": {\n        \"enableCallParkNotification\": false,\n        \"users\": []\n    },\n    \"Call Forwarding Always\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 1234,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Always Secondary\": {\n        \"isActive\": false,\n        \"isRingSplashActive\": false\n    },\n    \"Call Forwarding Busy\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding No Answer\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": 12314,\n        \"numberOfRings\": 2\n    },\n    \"Call Forwarding Not Reachable\": {\n        \"isActive\": false\n    },\n    \"Call Forwarding Selective\": {\n        \"isActive\": false,\n        \"playRingReminder\": false,\n        \"criteria\": []\n    },\n    \"Call Notify\": {\n        \"criteria\": []\n    },\n    \"Call Recording\": {\n        \"recordingOption\": \"Never\",\n        \"pauseResumeNotification\": \"None\",\n        \"enableCallRecordingAnnouncement\": false,\n        \"enableRecordCallRepeatWarningTone\": false,\n        \"recordCallRepeatWarningToneTimerSeconds\": 15,\n        \"enableVoiceMailRecording\": false\n    },\n    \"Call Transfer\": {\n        \"isRecallActive\": false,\n        \"recallNumberOfRings\": 4,\n        \"useDiversionInhibitorForBlindTransfer\": false,\n        \"useDiversionInhibitorForConsultativeCalls\": false,\n        \"enableBusyCampOn\": false,\n        \"busyCampOnSeconds\": 120\n    },\n    \"Call Waiting\": {\n        \"isActive\": true,\n        \"disableCallingLineIdDelivery\": false\n    },\n    \"Calling Line ID Blocking Override\": {\n        \"isActive\": false\n    },\n    \"Calling Line ID Delivery Blocking\": {\n        \"isActive\": false\n    },\n    \"Calling Name Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Name Retrieval\": {\n        \"isActive\": false\n    },\n    \"Calling Number Delivery\": {\n        \"isActiveForExternalCalls\": true,\n        \"isActiveForInternalCalls\": true\n    },\n    \"Calling Party Category\": {\n        \"category\": \"Ordinary\"\n    },\n    \"Charge Number\": {\n        \"useChargeNumberForEnhancedTranslations\": false,\n        \"sendChargeNumberToNetwork\": true\n    },\n    \"Classmark\": [],\n    \"CommPilot Express\": {\n        \"availableInOffice\": {\n            \"busySetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"noAnswerSetting\": {\n                \"action\": \"Transfer To Voice Mail\"\n            }\n        },\n        \"availableOutOfOffice\": {\n            \"incomingCalls\": {\n                \"action\": \"Transfer To Voice Mail\"\n            },\n            \"incomingCallNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"busy\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailNotify\": {\n                \"sendEmail\": \"false\"\n            }\n        },\n        \"unavailable\": {\n            \"incomingCalls\": {\n                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n            },\n            \"voiceMailGreeting\": \"No Answer\"\n        }\n    },\n    \"Communication Barring User-Control\": {\n        \"lockoutStatus\": false,\n        \"profileTable\": []\n    },\n    \"Connected Line Identification Restriction\": {\n        \"isActive\": false\n    },\n    \"Direct Route\": {\n        \"outgoingDTGPolicy\": \"Direct Route DTG\",\n        \"outgoingTrunkIdentityPolicy\": \"Direct Route Trunk Identity\",\n        \"routes\": []\n    },\n    \"Directed Call Pickup with Barge-in\": {\n        \"enableBargeInWarningTone\": true,\n        \"enableAutomaticTargetSelection\": false\n    },\n    \"Do Not Disturb\": {\n        \"isActive\": false,\n        \"ringSplash\": false\n    },\n    \"Executive-Assistant\": {\n        \"enableDivert\": false,\n        \"executives\": []\n    },\n    \"External Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"External Custom Ringback\": {\n        \"isActive\": false,\n        \"useSettingLevel\": \"Service Provider\"\n    },\n    \"Fax Messaging\": {\n        \"isActive\": false,\n        \"aliases\": []\n    },\n    \"Group Night Forwarding\": {\n        \"nightForwarding\": \"Use Group\",\n        \"groupNightForwarding\": \"On\"\n    },\n    \"Hoteling Guest\": {\n        \"isActive\": false,\n        \"enableAssociationLimit\": true,\n        \"associationLimitHours\": 12\n    },\n    \"Hoteling Host\": {\n        \"isActive\": false,\n        \"enforceAssociationLimit\": true,\n        \"associationLimitHours\": 24,\n        \"accessLevel\": \"Group\"\n    },\n    \"In-Call Service Activation\": {\n        \"isActive\": false\n    },\n    \"Integrated IMP\": {\n        \"isActive\": false\n    },\n    \"Intercept User\": {\n        \"isActive\": false,\n        \"announcementSelection\": \"Default\",\n        \"inboundCallMode\": \"Intercept All\",\n        \"alternateBlockingAnnouncement\": false,\n        \"exemptInboundMobilityCalls\": false,\n        \"disableParallelRingingToNetworkLocations\": false,\n        \"routeToVoiceMail\": false,\n        \"playNewPhoneNumber\": false,\n        \"transferOnZeroToPhoneNumber\": false,\n        \"outboundCallMode\": \"Block All\",\n        \"exemptOutboundMobilityCalls\": false,\n        \"rerouteOutboundCalls\": false\n    },\n    \"Internal Calling Line ID Delivery\": {\n        \"isActive\": true\n    },\n    \"MWI Delivery to Mobile Endpoint\": {\n        \"isActive\": false\n    },\n    \"Malicious Call Trace\": {\n        \"isActive\": false,\n        \"traceTypeSelection\": \"Answered Incoming\",\n        \"traceForTimePeriod\": false\n    },\n    \"Number Portability Announcement\": {\n        \"enable\": false\n    },\n    \"Physical Location\": {\n        \"isActive\": false\n    },\n    \"Pre-alerting Announcement\": {\n        \"isActive\": false,\n        \"audioSelection\": \"Default\",\n        \"videoSelection\": \"Default\",\n        \"criteria\": []\n    },\n    \"Preferred Carrier User\": {\n        \"intraLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"interLataCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        },\n        \"internationalCarrier\": {\n            \"useGroupPreferredCarrier\": \"false\"\n        }\n    },\n    \"Prepaid\": {\n        \"isActive\": false\n    },\n    \"Priority Alert\": {\n        \"isActive\": false,\n        \"criteria\": []\n    },\n    \"Privacy\": {\n        \"enableDirectoryPrivacy\": false,\n        \"enableAutoAttendantExtensionDialingPrivacy\": false,\n        \"enableAutoAttendantNameDialingPrivacy\": false,\n        \"enablePhoneStatusPrivacy\": false,\n        \"permittedMonitors\": []\n    },\n    \"Push to Talk\": {\n        \"allowAutoAnswer\": true,\n        \"outgoingConnectionSelection\": \"Two Way\",\n        \"accessListSelection\": \"Allow Calls From Selected Users\",\n        \"users\": []\n    },\n    \"Remote Office\": {\n        \"isActive\": false\n    },\n    \"Route List\": {\n        \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n        \"useRouteListIdentityForNonEmergencyCalls\": true,\n        \"useRouteListIdentityForEmergencyCalls\": true,\n        \"assignedNumberPrefixTable\": [],\n        \"dns\": []\n    },\n    \"Security Classification\": [],\n    \"Selective Call Acceptance\": [],\n    \"Selective Call Rejection\": [],\n    \"Sequential Ring\": {\n        \"ringBaseLocationFirst\": true,\n        \"baseLocationNumberOfRings\": 2,\n        \"continueIfBaseLocationIsBusy\": true,\n        \"callerMayStopSearch\": true,\n        \"locations\": [\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            },\n            {\n                \"phoneNumber\": \"\",\n                \"numberOfRings\": 3,\n                \"answerConfirmationRequired\": false\n            }\n        ],\n        \"criteria\": []\n    },\n    \"Shared Call Appearance\": {\n        \"alertAllAppearancesForClickToDialCalls\": false,\n        \"alertAllAppearancesForGroupPagingCalls\": false,\n        \"maxAppearances\": 35,\n        \"allowSCACallRetrieve\": false,\n        \"enableMultipleCallArrangement\": true,\n        \"multipleCallArrangementIsActive\": true,\n        \"allowBridgingBetweenLocations\": false,\n        \"bridgeWarningTone\": \"None\",\n        \"enableCallParkNotification\": false,\n        \"endpoints\": []\n    },\n    \"Silent Alerting\": {\n        \"isActive\": false\n    },\n    \"Simultaneous Ring Personal\": {\n        \"isActive\": false,\n        \"doNotRingIfOnCall\": true,\n        \"criteria\": [],\n        \"locations\": []\n    },\n    \"Speed Dial 100\": {\n        \"speedCodes\": []\n    },\n    \"Speed Dial 8\": {\n        \"speedCodes\": [\n            {\n                \"speedCode\": \"2\"\n            },\n            {\n                \"speedCode\": \"3\"\n            },\n            {\n                \"speedCode\": \"4\"\n            },\n            {\n                \"speedCode\": \"5\"\n            },\n            {\n                \"speedCode\": \"6\"\n            },\n            {\n                \"speedCode\": \"7\"\n            },\n            {\n                \"speedCode\": \"8\"\n            },\n            {\n                \"speedCode\": \"9\"\n            }\n        ]\n    },\n    \"Terminating Alternate Trunk Identity\": [],\n    \"Third-Party Voice Mail Support\": {\n        \"isActive\": false,\n        \"busyRedirectToVoiceMail\": true,\n        \"noAnswerRedirectToVoiceMail\": true,\n        \"serverSelection\": \"Group Mail Server\",\n        \"mailboxIdType\": \"User Or Group Phone Number\",\n        \"noAnswerNumberOfRings\": 2,\n        \"alwaysRedirectToVoiceMail\": false,\n        \"outOfPrimaryZoneRedirectToVoiceMail\": false\n    },\n    \"Two-Stage Dialing\": {\n        \"isActive\": true,\n        \"allowActivationWithUserAddresses\": false\n    },\n    \"Video Add-On\": {\n        \"isActive\": false,\n        \"maxOriginatingCallDelaySeconds\": 2\n    },\n    \"Voice Messaging User\": {\n        \"Voice Messaging User\": {\n            \"isActive\": false,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"voiceMessageDeliveryEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Advanced\": {\n            \"mailServerSelection\": \"Group Mail Server\",\n            \"groupMailServerEmailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"groupMailServerUserId\": \"vm9871515000\",\n            \"useGroupDefaultMailServerFullMailboxLimit\": true,\n            \"personalMailServerProtocol\": \"POP3\",\n            \"personalMailServerRealDeleteForImap\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Greeting\": {\n            \"busyAnnouncementSelection\": \"Default\",\n            \"noAnswerAnnouncementSelection\": \"Default\",\n            \"extendedAwayEnabled\": false,\n            \"extendedAwayDisableMessageDeposit\": true,\n            \"noAnswerNumberOfRings\": 2,\n            \"disableMessageDeposit\": false,\n            \"disableMessageDepositAction\": \"Disconnect\",\n            \"userId\": \"9871515000@odinapi.net\"\n        },\n        \"Voice Messaging User Voice Portal\": {\n            \"usePersonalizedName\": true,\n            \"voicePortalAutoLogin\": true,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"audioFile\": {\n                \"description\": \"aa1 copy is a copy of the Let's go song\",\n                \"mediaType\": \"WAV\"\n            }\n        }\n    },\n    \"Voice Portal Calling\": {\n        \"isActive\": false\n    },\n    \"Zone Calling Restrictions\": []\n}"}],"_postman_id":"95bdfa78-9ba1-4c31-b7e8-6b4d5a1d37ff"},{"name":"User Services Assigned","id":"05450ca6-1ad7-4b06-9868-70c9ab96a5d9","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/services/assigned?userId=4001@parkbenchsolutions.com","description":"<p>Get all assigned user services, including services assigned via service pack</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services","assigned"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"c63d36e8-0250-40e1-9602-b991ef202ca3","name":"User Services Assigned","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/services/assigned?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","services","assigned"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 May 2019 19:25:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3631"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always Secondary\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Direct Route\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"isActive\": false\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"isActive\": false\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Route List\"\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Silent Alerting\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Terminating Alternate Trunk Identity\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"isActive\": true\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"isActive\": true\n        }\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isEnterprise\": true\n}"}],"_postman_id":"05450ca6-1ad7-4b06-9868-70c9ab96a5d9"},{"name":"User Services Viewable","id":"33d941c7-483c-4ce2-ae95-26aaec12814a","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/services/viewable?userId=4001@parkbenchsolutions.com","description":"<p>Same as User Services Assigned, except filtered for Viewable Service Pack assignment.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services","viewable"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"985849d9-e333-4767-9d04-c49adf05ed26","name":"User Services Viewable","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/services/viewable?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","services","viewable"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 28 Apr 2019 00:07:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.17"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3568"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always Secondary\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Audio\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"isActive\": \"true\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"isActive\": \"false\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"isActive\": \"true\"\n        }\n    ]\n}"}],"_postman_id":"33d941c7-483c-4ce2-ae95-26aaec12814a"},{"name":"User Service Instance Search","id":"7dbed0d3-94a5-4c0c-86df-63016bcdd0cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/services/search?serviceProviderId=ent.odin","description":"<h2 id=\"searches-for-service-instances\">Searches for Service Instances</h2>\n<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all service instances in Enterprise ent1\nGET /api/v2/users/services/instances?serviceProviderId=ent1\n\n# Get up to 10 service instances in the system with a name that contains mock\nGET /api/v2/users/services/instances?name=*mock*&amp;limit=10\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","services","search"],"host":["{{url}}"],"query":[{"disabled":true,"key":"lastName","value":"*mock*"},{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"8b2dcc8b-f04c-4f82-a595-a09450cd179d","name":"User Service Instance Search","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/services/search?lastName=*mock*","host":["{{url}}"],"path":["api","v2","users","services","search"],"query":[{"key":"lastName","value":"*mock*"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 18:09:48 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"581"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceType\": \"Call Center - Premium\",\n        \"name\": \"mock.cc.1\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userId\": \"mock.cc.1@as3.xdp.broadsoft.com\",\n        \"userIdShort\": \"mock.cc.1\",\n        \"domain\": \"as3.xdp.broadsoft.com\"\n    },\n    {\n        \"serviceType\": \"Collaborate Bridge\",\n        \"name\": \"odin.mock.grp1-Default\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"userId\": \"odin.mock.ent1-odin.mock.grp1-Default@as3.xdp.broadsoft.com\",\n        \"userIdShort\": \"odin.mock.ent1-odin.mock.grp1-Default\",\n        \"domain\": \"as3.xdp.broadsoft.com\"\n    }\n]"}],"_postman_id":"7dbed0d3-94a5-4c0c-86df-63016bcdd0cf"},{"name":"Group User Services Assigned All","id":"850073cd-e260-4a42-9332-11565d72377c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/services/assignedall?groupId=grp.odin&serviceProviderId=ent.odin&serviceName=Push to Talk","description":"<p>Shows all users with a user service assigned, whether directly or via service pack</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","services","assignedall"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"serviceName","value":"Push to Talk"},{"disabled":true,"key":"serviceType","value":"servicePackName"}],"variable":[]}},"response":[{"id":"fc8f2a0e-f746-419f-8ee1-ece2f6ea9bfd","name":"Group Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/services?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","services"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Oct 2018 23:24:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"userServices\": [\n        {\n            \"serviceName\": \"Anonymous Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Authentication\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Authentication\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Always\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Always\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Busy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Busy\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding No Answer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding No Answer\"\n        },\n        {\n            \"serviceName\": \"Call Notify\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Notify\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Delivery Blocking\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express\"\n        },\n        {\n            \"serviceName\": \"CommPilot Call Manager\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Call Manager\"\n        },\n        {\n            \"serviceName\": \"Do Not Disturb\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Do Not Disturb\"\n        },\n        {\n            \"serviceName\": \"Intercept User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Intercept User\"\n        },\n        {\n            \"serviceName\": \"Last Number Redial\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Last Number Redial\"\n        },\n        {\n            \"serviceName\": \"Outlook Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Outlook Integration\"\n        },\n        {\n            \"serviceName\": \"Priority Alert\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Priority Alert\"\n        },\n        {\n            \"serviceName\": \"Call Return\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Return\"\n        },\n        {\n            \"serviceName\": \"Remote Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Remote Office\"\n        },\n        {\n            \"serviceName\": \"Selective Call Acceptance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Acceptance\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Selective\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Selective\"\n        },\n        {\n            \"serviceName\": \"Selective Call Rejection\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Selective Call Rejection\"\n        },\n        {\n            \"serviceName\": \"Service Scripts User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Service Scripts User\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Personal\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Personal\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User\"\n        },\n        {\n            \"serviceName\": \"Alternate Numbers\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Alternate Numbers\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 8\"\n        },\n        {\n            \"serviceName\": \"Customer Originated Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Customer Originated Trace\"\n        },\n        {\n            \"serviceName\": \"Attendant Console\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Attendant Console\"\n        },\n        {\n            \"serviceName\": \"Third-Party MWI Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Third-Party MWI Control\"\n        },\n        {\n            \"serviceName\": \"Client Call Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Shared Call Appearance 5\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 10\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 15\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 20\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 25\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 30\"\n        },\n        {\n            \"serviceName\": \"Shared Call Appearance 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Shared Call Appearance 35\"\n        },\n        {\n            \"serviceName\": \"Calling Name Retrieval\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Name Retrieval\"\n        },\n        {\n            \"serviceName\": \"Flash Call Hold\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Flash Call Hold\"\n        },\n        {\n            \"serviceName\": \"Speed Dial 100\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Speed Dial 100\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Third-Party Voice Mail Support\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Third-Party Voice Mail Support\"\n        },\n        {\n            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Directed Call Pickup with Barge-in\"\n        },\n        {\n            \"serviceName\": \"Voice Portal Calling\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Voice Portal Calling\"\n        },\n        {\n            \"serviceName\": \"External Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"External Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Internal Calling Line ID Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Internal Calling Line ID Delivery\"\n        },\n        {\n            \"serviceName\": \"Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Calling Line ID Blocking Override\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Line ID Blocking Override\"\n        },\n        {\n            \"serviceName\": \"Calling Party Category\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Calling Party Category\"\n        },\n        {\n            \"serviceName\": \"Barge-in Exempt\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Barge-in Exempt\"\n        },\n        {\n            \"serviceName\": \"SMDI Message Desk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"SMDI Message Desk\"\n        },\n        {\n            \"serviceName\": \"Video Add-On\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video Add-On\"\n        },\n        {\n            \"serviceName\": \"Malicious Call Trace\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Malicious Call Trace\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Preferred Carrier User\"\n        },\n        {\n            \"serviceName\": \"Push to Talk\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Push to Talk\"\n        },\n        {\n            \"serviceName\": \"Basic Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Basic Call Logs\"\n        },\n        {\n            \"serviceName\": \"Enhanced Call Logs\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Enhanced Call Logs\"\n        },\n        {\n            \"serviceName\": \"Hoteling Host\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Host\"\n        },\n        {\n            \"serviceName\": \"Hoteling Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Hoteling Guest\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Voice Messaging User - Video\"\n        },\n        {\n            \"serviceName\": \"Simultaneous Ring Family\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Simultaneous Ring Family\"\n        },\n        {\n            \"serviceName\": \"Diversion Inhibitor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Diversion Inhibitor\"\n        },\n        {\n            \"serviceName\": \"Multiple Call Arrangement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Multiple Call Arrangement\"\n        },\n        {\n            \"serviceName\": \"Mobile Extension to Extension Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Mobile Extension to Extension Dialing\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Video\"\n        },\n        {\n            \"serviceName\": \"Automatic Hold/Retrieve\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Automatic Hold/Retrieve\"\n        },\n        {\n            \"serviceName\": \"Busy Lamp Field\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Busy Lamp Field\"\n        },\n        {\n            \"serviceName\": \"Three-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Three-Way Call\"\n        },\n        {\n            \"serviceName\": \"Call Transfer\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Transfer\"\n        },\n        {\n            \"serviceName\": \"Privacy\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Privacy\"\n        },\n        {\n            \"serviceName\": \"Fax Messaging\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Fax Messaging\"\n        },\n        {\n            \"serviceName\": \"Physical Location\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Physical Location\"\n        },\n        {\n            \"serviceName\": \"Charge Number\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Charge Number\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Supervisor\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Supervisor\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Agent\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Agent\"\n        },\n        {\n            \"serviceName\": \"N-Way Call\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"N-Way Call\"\n        },\n        {\n            \"serviceName\": \"Directory Number Hunting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": false,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Directory Number Hunting\"\n        },\n        {\n            \"serviceName\": \"Two-Stage Dialing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Two-Stage Dialing\"\n        },\n        {\n            \"serviceName\": \"Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Forwarding Not Reachable\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Forwarding Not Reachable\"\n        },\n        {\n            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Small Business\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Receptionist - Office\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Office\"\n        },\n        {\n            \"serviceName\": \"External Custom Ringback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"External Custom Ringback\"\n        },\n        {\n            \"serviceName\": \"In-Call Service Activation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"In-Call Service Activation\"\n        },\n        {\n            \"serviceName\": \"IN Integration\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"IN Integration\"\n        },\n        {\n            \"serviceName\": \"Dual-Mode VCC\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Dual-Mode VCC\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Presentation\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Presentation\"\n        },\n        {\n            \"serviceName\": \"Connected Line Identification Restriction\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Connected Line Identification Restriction\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Anywhere\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Anywhere\"\n        },\n        {\n            \"serviceName\": \"Zone Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Zone Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Polycom Phone Services\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Polycom Phone Services\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Custom Ringback User - Call Waiting\"\n        },\n        {\n            \"serviceName\": \"Music On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Music On Hold User\"\n        },\n        {\n            \"serviceName\": \"Video On Hold User\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Video On Hold User\"\n        },\n        {\n            \"serviceName\": \"Advice Of Charge\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Advice Of Charge\"\n        },\n        {\n            \"serviceName\": \"Prepaid\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Prepaid\"\n        },\n        {\n            \"serviceName\": \"Call Center - Basic\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Basic\"\n        },\n        {\n            \"serviceName\": \"Call Center - Standard\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Standard\"\n        },\n        {\n            \"serviceName\": \"Call Center - Premium\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center - Premium\"\n        },\n        {\n            \"serviceName\": \"Bria For BroadWorks\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Bria For BroadWorks\"\n        },\n        {\n            \"serviceName\": \"Communication Barring User-Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Communication Barring User-Control\"\n        },\n        {\n            \"serviceName\": \"Classmark\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Classmark\"\n        },\n        {\n            \"serviceName\": \"Calling Name Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Name Delivery\"\n        },\n        {\n            \"serviceName\": \"Calling Number Delivery\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Calling Number Delivery\"\n        },\n        {\n            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n        },\n        {\n            \"serviceName\": \"Office Communicator Tab\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Office Communicator Tab\"\n        },\n        {\n            \"serviceName\": \"Pre-alerting Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Pre-alerting Announcement\"\n        },\n        {\n            \"serviceName\": \"Legacy Automatic Callback\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Legacy Automatic Callback\"\n        },\n        {\n            \"serviceName\": \"Call Center Monitoring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Call Center Monitoring\"\n        },\n        {\n            \"serviceName\": \"Location-Based Calling Restrictions\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Location-Based Calling Restrictions\"\n        },\n        {\n            \"serviceName\": \"Short Message Service\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Short Message Service\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Mobility\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Mobility\"\n        },\n        {\n            \"serviceName\": \"Call Me Now\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 2,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Me Now\"\n        },\n        {\n            \"serviceName\": \"Call Recording\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Call Recording\"\n        },\n        {\n            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n        },\n        {\n            \"serviceName\": \"Integrated IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"Integrated IMP\"\n        },\n        {\n            \"serviceName\": \"Third-Party IMP\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Third-Party IMP\"\n        },\n        {\n            \"serviceName\": \"Group Night Forwarding\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Group Night Forwarding\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n        },\n        {\n            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n        },\n        {\n            \"serviceName\": \"Executive\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Executive\"\n        },\n        {\n            \"serviceName\": \"Executive-Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Executive-Assistant\"\n        },\n        {\n            \"serviceName\": \"Client License 1\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 1\"\n        },\n        {\n            \"serviceName\": \"Client License 2\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 2\"\n        },\n        {\n            \"serviceName\": \"Client License 3\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Assistant - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 4\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n        },\n        {\n            \"serviceName\": \"Client License 5\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 5\"\n        },\n        {\n            \"serviceName\": \"Client License 6\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 6\"\n        },\n        {\n            \"serviceName\": \"Client License 7\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 7\"\n        },\n        {\n            \"serviceName\": \"Client License 8\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 8\"\n        },\n        {\n            \"serviceName\": \"Client License 9\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 9\"\n        },\n        {\n            \"serviceName\": \"Client License 10\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 10\"\n        },\n        {\n            \"serviceName\": \"Client License 11\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 11\"\n        },\n        {\n            \"serviceName\": \"Client License 12\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 12\"\n        },\n        {\n            \"serviceName\": \"Client License 13\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 13\"\n        },\n        {\n            \"serviceName\": \"Client License 14\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 14\"\n        },\n        {\n            \"serviceName\": \"Client License 15\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 15\"\n        },\n        {\n            \"serviceName\": \"Client License 16\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 16\"\n        },\n        {\n            \"serviceName\": \"Client License 17\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 18\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [\n                \"UC-One\"\n            ],\n            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n        },\n        {\n            \"serviceName\": \"Client License 19\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"BroadTouch MobileLink\"\n        },\n        {\n            \"serviceName\": \"Client License 20\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 20\"\n        },\n        {\n            \"serviceName\": \"Client License 21\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 21\"\n        },\n        {\n            \"serviceName\": \"Client License 22\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 22\"\n        },\n        {\n            \"serviceName\": \"Client License 23\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 23\"\n        },\n        {\n            \"serviceName\": \"Client License 24\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 24\"\n        },\n        {\n            \"serviceName\": \"Client License 25\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 25\"\n        },\n        {\n            \"serviceName\": \"Client License 26\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 26\"\n        },\n        {\n            \"serviceName\": \"Client License 27\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 27\"\n        },\n        {\n            \"serviceName\": \"Client License 28\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 28\"\n        },\n        {\n            \"serviceName\": \"Client License 29\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 29\"\n        },\n        {\n            \"serviceName\": \"Client License 30\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 30\"\n        },\n        {\n            \"serviceName\": \"Client License 31\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 31\"\n        },\n        {\n            \"serviceName\": \"Client License 32\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 32\"\n        },\n        {\n            \"serviceName\": \"Client License 33\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 33\"\n        },\n        {\n            \"serviceName\": \"Client License 34\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 34\"\n        },\n        {\n            \"serviceName\": \"Client License 35\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 35\"\n        },\n        {\n            \"serviceName\": \"Client License 36\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 36\"\n        },\n        {\n            \"serviceName\": \"Client License 37\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 37\"\n        },\n        {\n            \"serviceName\": \"Client License 38\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 38\"\n        },\n        {\n            \"serviceName\": \"Client License 39\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 39\"\n        },\n        {\n            \"serviceName\": \"Client License 40\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 40\"\n        },\n        {\n            \"serviceName\": \"Client License 41\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 41\"\n        },\n        {\n            \"serviceName\": \"Client License 42\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 42\"\n        },\n        {\n            \"serviceName\": \"Client License 43\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 43\"\n        },\n        {\n            \"serviceName\": \"Client License 44\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 44\"\n        },\n        {\n            \"serviceName\": \"Client License 45\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 45\"\n        },\n        {\n            \"serviceName\": \"Client License 46\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 46\"\n        },\n        {\n            \"serviceName\": \"Client License 47\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 47\"\n        },\n        {\n            \"serviceName\": \"Client License 48\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 48\"\n        },\n        {\n            \"serviceName\": \"Client License 49\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 49\"\n        },\n        {\n            \"serviceName\": \"Client License 50\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Client License 50\"\n        },\n        {\n            \"serviceName\": \"Lync CTI\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Lync CTI\"\n        },\n        {\n            \"serviceName\": \"Lync Softphone\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Lync Softphone\"\n        },\n        {\n            \"serviceName\": \"Security Classification\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Security Classification\"\n        },\n        {\n            \"serviceName\": \"Flexible Seating Guest\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Flexible Seating Guest\"\n        },\n        {\n            \"serviceName\": \"Visual Device Management\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Visual Device Management\"\n        },\n        {\n            \"serviceName\": \"Personal Assistant\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Personal Assistant\"\n        },\n        {\n            \"serviceName\": \"Route List\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Route List\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Audio\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Audio\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Video\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Video\"\n        },\n        {\n            \"serviceName\": \"Collaborate - Sharing\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Collaborate - Sharing\"\n        },\n        {\n            \"serviceName\": \"Intelligent Network Service Control\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Intelligent Network Service Control\"\n        },\n        {\n            \"serviceName\": \"CommPilot Express SR\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"CommPilot Express SR\"\n        },\n        {\n            \"serviceName\": \"Sequential Ring\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Sequential Ring\"\n        },\n        {\n            \"serviceName\": \"Client Call Control II\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": true,\n            \"tags\": [],\n            \"alias\": \"Client Call Control II\"\n        },\n        {\n            \"serviceName\": \"Number Portability Announcement\",\n            \"authorized\": true,\n            \"assigned\": false,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"userAssignable\": true,\n            \"groupServiceAssignable\": false,\n            \"tags\": [],\n            \"alias\": \"Number Portability Announcement\"\n        }\n    ],\n    \"groupServices\": [\n        {\n            \"serviceName\": \"Account/Authorization Codes\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Account/Authorization Codes\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant\"\n        },\n        {\n            \"serviceName\": \"Call Capacity Management\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Capacity Management\"\n        },\n        {\n            \"serviceName\": \"Call Park\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Park\"\n        },\n        {\n            \"serviceName\": \"Call Pickup\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Call Pickup\"\n        },\n        {\n            \"serviceName\": \"Hunt Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Hunt Group\"\n        },\n        {\n            \"serviceName\": \"Incoming Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Incoming Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Intercept Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Intercept Group\"\n        },\n        {\n            \"serviceName\": \"Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"Series Completion\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Series Completion\"\n        },\n        {\n            \"serviceName\": \"Voice Messaging Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Voice Messaging Group\"\n        },\n        {\n            \"serviceName\": \"Music On Hold\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Music On Hold\"\n        },\n        {\n            \"serviceName\": \"LDAP Integration\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"LDAP Integration\"\n        },\n        {\n            \"serviceName\": \"Inventory Report\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Inventory Report\"\n        },\n        {\n            \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Enhanced Outgoing Calling Plan\"\n        },\n        {\n            \"serviceName\": \"City-Wide Centrex\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"City-Wide Centrex\"\n        },\n        {\n            \"serviceName\": \"Emergency Zones\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Emergency Zones\"\n        },\n        {\n            \"serviceName\": \"Preferred Carrier Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Preferred Carrier Group\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant - Video\"\n        },\n        {\n            \"serviceName\": \"Music On Hold - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 1,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Music On Hold - Video\"\n        },\n        {\n            \"serviceName\": \"Instant Group Call\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Instant Group Call\"\n        },\n        {\n            \"serviceName\": \"Trunk Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Trunk Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Custom Ringback Group\"\n        },\n        {\n            \"serviceName\": \"Custom Ringback Group - Video\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Custom Ringback Group - Video\"\n        },\n        {\n            \"serviceName\": \"Service Scripts Group\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"none\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": null,\n            \"alias\": \"Service Scripts Group\"\n        },\n        {\n            \"serviceName\": \"Route Point\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Route Point\"\n        },\n        {\n            \"serviceName\": \"Group Paging\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Group Paging\"\n        },\n        {\n            \"serviceName\": \"Meet-Me Conferencing\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Meet-Me Conferencing\"\n        },\n        {\n            \"serviceName\": \"Find-me/Follow-me\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Find-me/Follow-me\"\n        },\n        {\n            \"serviceName\": \"Auto Attendant - Standard\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"Auto Attendant - Standard\"\n        },\n        {\n            \"serviceName\": \"VoiceXML\",\n            \"authorized\": true,\n            \"assigned\": true,\n            \"limited\": \"Unlimited\",\n            \"quantity\": -1,\n            \"usage\": 0,\n            \"licensed\": true,\n            \"allowed\": -1,\n            \"instanceCount\": 0,\n            \"alias\": \"VoiceXML\"\n        }\n    ],\n    \"servicePackServices\": []\n}"}],"_postman_id":"850073cd-e260-4a42-9332-11565d72377c"}],"id":"4d0dd4d8-936c-4bc4-8b2f-96c6fad55689","_postman_id":"4d0dd4d8-936c-4bc4-8b2f-96c6fad55689","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Shared Call Appearance","item":[{"name":"User Shared Call Appearance","id":"5624d416-636f-49d8-83be-b988f0884319","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/shared-call-appearance?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","shared-call-appearance"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"f0aa7798-cb3a-486a-82fa-6a11902f187f","name":"User Shared Call Appearance","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/shared-call-appearance?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","shared-call-appearance"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"alertAllAppearancesForClickToDialCalls\": false,\n    \"alertAllAppearancesForGroupPagingCalls\": false,\n    \"maxAppearances\": 2,\n    \"allowSCACallRetrieve\": false,\n    \"enableMultipleCallArrangement\": false,\n    \"multipleCallArrangementIsActive\": false,\n    \"allowBridgingBetweenLocations\": false,\n    \"bridgeWarningTone\": \"None\",\n    \"enableCallParkNotification\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"endpoints\": []\n}"}],"_postman_id":"5624d416-636f-49d8-83be-b988f0884319"},{"name":"User Shared Call Appearance","id":"6300368e-6e66-4100-979e-ac60138b4c1e","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"alertAllAppearancesForClickToDialCalls\":true,\n\t\"alertAllAppearancesForGroupPagingCalls\":true,\n\t\"maxAppearances\":35,\n\t\"allowSCACallRetrieve\":true,\n\t\"enableMultipleCallArrangement\":true,\n\t\"multipleCallArrangementIsActive\":true,\n\t\"allowBridgingBetweenLocations\":true,\n\t\"bridgeWarningTone\":\"Barge-In\",\n\t\"enableCallParkNotification\":true,\n\t\"userId\":\"9709580001@microv-works.com\"\n}"},"url":"{{url}}/api/v2/users/shared-call-appearance","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","shared-call-appearance"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e0b07fdc-59d3-4130-9e0c-98f312083a1c","name":"User Shared Call Appearance","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"alertAllAppearancesForClickToDialCalls\":true,\n\t\"alertAllAppearancesForGroupPagingCalls\":true,\n\t\"maxAppearances\":35,\n\t\"allowSCACallRetrieve\":true,\n\t\"enableMultipleCallArrangement\":true,\n\t\"multipleCallArrangementIsActive\":true,\n\t\"allowBridgingBetweenLocations\":true,\n\t\"bridgeWarningTone\":\"Barge-In\",\n\t\"enableCallParkNotification\":true,\n\t\"userId\":\"9709580001@microv-works.com\"\n}"},"url":"{{url}}/api/v2/users/shared-call-appearance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 20:43:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6300368e-6e66-4100-979e-ac60138b4c1e"},{"name":"User Shared Call Appearance Bulk","id":"f5bfcd5e-14a0-4a18-a03b-2300f9a01b02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/shared-call-appearance/bulk?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","shared-call-appearance","bulk"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"7aa211c0-2f7a-45f2-ab3d-095ca2fe6f83","name":"User Shared Call Appearance Bulk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/shared-call-appearance/bulk?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","users","shared-call-appearance","bulk"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"users\": [\n        {\n            \"profile\": {\n                \"userId\": \"4002@parkbenchsolutions.com\",\n                \"lastName\": 4002,\n                \"firstName\": 4002,\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4002,\n                \"hiraganaFirstName\": 4002,\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 5,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": true,\n                \"multipleCallArrangementIsActive\": true,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"4002@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"5135564000@parkbenchsolutions.com\",\n                \"lastName\": \"Demo user\",\n                \"firstName\": \"Marc\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5135564000\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"Demo user\",\n                \"hiraganaFirstName\": \"Marc\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"64000\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 10,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": true,\n                \"multipleCallArrangementIsActive\": true,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"5135564000@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"6106424235X4020@parkbenchsolutions.com\",\n                \"lastName\": 4003,\n                \"firstName\": 4003,\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004003\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"04003\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 35,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": true,\n                \"multipleCallArrangementIsActive\": true,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"6106424235X4020@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"user4@parkbenchsolutions.com\",\n                \"lastName\": \"Sonkar\",\n                \"firstName\": \"Animesh\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"Sonkar\",\n                \"hiraganaFirstName\": \"Animesh\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"user4@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"sandesh@parkbenchsolutions.com\",\n                \"lastName\": \"dixit\",\n                \"firstName\": \"sandesh\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"dixit\",\n                \"hiraganaFirstName\": \"sandesh\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"sandesh@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"odin-device-test-1@parkbenchsolutions.com\",\n                \"lastName\": \"odin-device-test-1\",\n                \"firstName\": \"odin-device-test-1\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"odin-device-test-1\",\n                \"hiraganaFirstName\": \"odin-device-test-1\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"odin-device-test-1@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"lastName\": 4001,\n                \"firstName\": 4001,\n                \"department\": null,\n                \"phoneNumber\": \"+1-8595551401\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                \"hiraganaLastName\": 4001,\n                \"hiraganaFirstName\": 4001,\n                \"inTrunkGroup\": false,\n                \"extension\": \"51401\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": true,\n                \"alertAllAppearancesForGroupPagingCalls\": true,\n                \"maxAppearances\": 5,\n                \"allowSCACallRetrieve\": true,\n                \"enableMultipleCallArrangement\": true,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": true,\n                \"bridgeWarningTone\": \"Barge-In\",\n                \"enableCallParkNotification\": true,\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"endpoints\": [\n                    {\n                        \"deviceLevel\": \"Group\",\n                        \"deviceName\": \"PolycomIp5000_4001-01\",\n                        \"deviceType\": \"Polycom IP5000\",\n                        \"portNumber\": null,\n                        \"deviceSupportVisualDeviceManagement\": false,\n                        \"isActive\": true,\n                        \"allowOrigination\": true,\n                        \"allowTermination\": true,\n                        \"macAddress\": null,\n                        \"linePort\": \"PolycomIp5000_4001-01-0101@parkbenchsolutions.com\",\n                        \"sipContact\": \"sip:\"\n                    },\n                    {\n                        \"deviceLevel\": \"Group\",\n                        \"deviceName\": \"devicename_2\",\n                        \"deviceType\": \"Polycom VVX400-S\",\n                        \"portNumber\": null,\n                        \"deviceSupportVisualDeviceManagement\": false,\n                        \"isActive\": true,\n                        \"allowOrigination\": true,\n                        \"allowTermination\": true,\n                        \"macAddress\": null,\n                        \"linePort\": \"PolycomIp5000_4001-01-234234234@parkbenchsolutions.com\",\n                        \"sipContact\": \"sip:\"\n                    },\n                    {\n                        \"deviceLevel\": \"Group\",\n                        \"deviceName\": \"sharedcallapp4001-01\",\n                        \"deviceType\": \"Polycom IP5000\",\n                        \"portNumber\": null,\n                        \"deviceSupportVisualDeviceManagement\": false,\n                        \"isActive\": true,\n                        \"allowOrigination\": true,\n                        \"allowTermination\": true,\n                        \"macAddress\": null,\n                        \"linePort\": \"4001-shared-01@parkbenchsolutions.com\",\n                        \"sipContact\": \"sip:\"\n                    }\n                ]\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"ddoris@parkbenchsolutions.com\",\n                \"lastName\": \"doris\",\n                \"firstName\": \"dusty\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"doris\",\n                \"hiraganaFirstName\": \"dusty\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 5,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": true,\n                \"multipleCallArrangementIsActive\": true,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"ddoris@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"1.grp.odin@parkbenchsolutions.com\",\n                \"lastName\": \"1.grp.odin\",\n                \"firstName\": \"1.grp.odin\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"1.grp.odin\",\n                \"hiraganaFirstName\": \"1.grp.odin\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"1.grp.odin@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"2.grp.odin@parkbenchsolutions.com\",\n                \"lastName\": \"2.grp.odin\",\n                \"firstName\": \"2.grp.odin\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"2.grp.odin\",\n                \"hiraganaFirstName\": \"2.grp.odin\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"2.grp.odin@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin4000@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin4000\",\n                \"firstName\": \"grp.odin4000\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin4000\",\n                \"hiraganaFirstName\": \"grp.odin4000\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"04000\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"grp.odin4000@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin4001@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin4001\",\n                \"firstName\": \"grp.odin4001\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin4001\",\n                \"hiraganaFirstName\": \"grp.odin4001\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"04001\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"grp.odin4001@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin6001@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin6001\",\n                \"firstName\": \"grp.odin6001\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin6001\",\n                \"hiraganaFirstName\": \"grp.odin6001\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"06001\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"grp.odin6001@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        },\n        {\n            \"profile\": {\n                \"userId\": \"grp.odin6002@parkbenchsolutions.com\",\n                \"lastName\": \"grp.odin6002\",\n                \"firstName\": \"grp.odin6002\",\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": \"grp.odin6002\",\n                \"hiraganaFirstName\": \"grp.odin6002\",\n                \"inTrunkGroup\": false,\n                \"extension\": \"06002\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"alertAllAppearancesForClickToDialCalls\": false,\n                \"alertAllAppearancesForGroupPagingCalls\": false,\n                \"maxAppearances\": 0,\n                \"allowSCACallRetrieve\": false,\n                \"enableMultipleCallArrangement\": false,\n                \"multipleCallArrangementIsActive\": false,\n                \"allowBridgingBetweenLocations\": false,\n                \"bridgeWarningTone\": \"None\",\n                \"enableCallParkNotification\": false,\n                \"userId\": \"grp.odin6002@parkbenchsolutions.com\",\n                \"endpoints\": []\n            }\n        }\n    ]\n}"}],"_postman_id":"f5bfcd5e-14a0-4a18-a03b-2300f9a01b02"},{"name":"User Shared Call Appearance Endpoint","id":"f10209ce-23b8-47ac-b862-eaa7c680a064","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"linePort\":\"9709580001_sca1@microv-works.com\",\n\t\"isActive\":true,\"allowOrigination\":true,\n\t\"allowTermination\":true,\n\t\"deviceName\":\"9709580001-dev1\",\n\t\"deviceLevel\":\"Group\"\n}"},"url":"{{url}}/api/v2/users/shared-call-appearance/endpoints","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","shared-call-appearance","endpoints"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aba1a99e-fa70-49c5-a908-10896c6e5a9d","name":"User Shared Call Appearance Endpoint","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"linePort\":\"9709580001_sca1@microv-works.com\",\n\t\"isActive\":true,\"allowOrigination\":true,\n\t\"allowTermination\":true,\n\t\"deviceName\":\"9709580001-dev1\",\n\t\"deviceLevel\":\"Group\"\n}"},"url":"{{url}}/api/v2/users/shared-call-appearance/endpoints"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 20:46:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"f10209ce-23b8-47ac-b862-eaa7c680a064"},{"name":"User Shared Call Appearance Endpoint","id":"d2c1bdec-90b2-4d1b-b334-9f376ba04123","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/shared-call-appearance/endpoints?deviceLevel=Group&deviceName=9709580001-dev1&linePort=9709580001_sca1@microv-works.com&userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","shared-call-appearance","endpoints"],"host":["{{url}}"],"query":[{"key":"deviceLevel","value":"Group"},{"key":"deviceName","value":"9709580001-dev1"},{"key":"linePort","value":"9709580001_sca1@microv-works.com"},{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"a5049e2a-f333-424b-bcd6-7f781b76a175","name":"User Shared Call Appearance Endpoint","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/shared-call-appearance/endpoints?deviceLevel=Group&deviceName=9709580001-dev1&linePort=9709580001_sca1@microv-works.com&userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","shared-call-appearance","endpoints"],"query":[{"key":"deviceLevel","value":"Group"},{"key":"deviceName","value":"9709580001-dev1"},{"key":"linePort","value":"9709580001_sca1@microv-works.com"},{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"203","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 20:46:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"userId\":\"9709580001@microv-works.com\",\"deviceName\":\"9709580001-dev1\",\"deviceLevel\":\"Group\",\"linePort\":\"9709580001_sca1@microv-works.com\",\"isActive\":true,\"allowOrigination\":true,\"allowTermination\":true}"}],"_postman_id":"d2c1bdec-90b2-4d1b-b334-9f376ba04123"},{"name":"User Shared Call Appearance Endpoint","id":"5bd22e80-ecb4-4785-878c-daf33f12af4d","request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"linePort\":\"9709580001_sca1@microv-works.com\",\n\t\"deviceName\":\"9709580001-dev1\",\n\t\"deviceLevel\":\"Group\"\n}"},"url":"http://127.0.0.1:8080/api/v2/users/shared-call-appearance/endpoints","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","users","shared-call-appearance","endpoints"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"f0cb9fa1-5dfc-4d7c-9446-fd50b23fbf43","name":"User Shared Call Appearance Endpoint","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"linePort\":\"9709580001_sca1@microv-works.com\",\n\t\"deviceName\":\"9709580001-dev1\",\n\t\"deviceLevel\":\"Group\"\n}"},"url":"http://127.0.0.1:8080/api/v2/users/shared-call-appearance/endpoints"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"connection","value":"Keep-Alive","name":"connection","description":"Options that are desired for the connection"},{"key":"content-length","value":"2","name":"content-length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"content-type","value":"application/json","name":"content-type","description":"The mime type of this content"},{"key":"date","value":"Fri, 05 Oct 2018 20:46:02 GMT","name":"date","description":"The date and time that the message was sent"},{"key":"keep-alive","value":"timeout=5, max=100","name":"keep-alive","description":"Custom header"},{"key":"server","value":"Apache","name":"server","description":"A name for the server"},{"key":"vary","value":"Authorization","name":"vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"via","value":"1.1 dbook.local","name":"via","description":"Informs the client of proxies through which the response was sent."},{"key":"x-powered-by","value":"PHP/7.2.10","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"5bd22e80-ecb4-4785-878c-daf33f12af4d"},{"name":"User Shared Call Appearance Endpoint","id":"fab02707-538d-41e4-b184-a6a732cae709","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"deviceName\":\"9709580001-dev1\",\n\t\"deviceLevel\":\"Group\",\n\t\"linePort\":\"9709580001_sca1@microv-works.com\",\n\t\"isActive\":true,\n\t\"allowOrigination\":true,\n\t\"allowTermination\":true\n}"},"url":"{{url}}/api/v2/users/shared-call-appearance/endpoints","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","shared-call-appearance","endpoints"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"19fb2502-3958-47d1-bdf1-66b0f1ea1526","name":"User Shared Call Appearance Endpoint","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"deviceName\":\"9709580001-dev1\",\n\t\"deviceLevel\":\"Group\",\n\t\"linePort\":\"9709580001_sca1@microv-works.com\",\n\t\"isActive\":true,\n\t\"allowOrigination\":true,\n\t\"allowTermination\":true\n}"},"url":"{{url}}/api/v2/users/shared-call-appearance/endpoints"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 20:47:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"fab02707-538d-41e4-b184-a6a732cae709"}],"id":"c46052f7-507a-402c-93df-61837203a3ba","_postman_id":"c46052f7-507a-402c-93df-61837203a3ba","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Silent Alerting","item":[{"name":"User Silent Alerting","id":"819d095e-9913-4380-9c65-929a9a108882","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/silent-alerting?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","silent-alerting"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"7434e459-d158-4ca8-a3e7-4ccbeaa07098","name":"User Silent Alerting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/silent-alerting?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","silent-alerting"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"819d095e-9913-4380-9c65-929a9a108882"},{"name":"User Silent Alerting","id":"39e63686-b192-47c3-9abf-39a1c235614c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/silent-alerting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","silent-alerting"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0811c455-0951-4fac-93d3-1a972b011172","name":"User Silent Alerting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/silent-alerting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7783\n}"}],"_postman_id":"39e63686-b192-47c3-9abf-39a1c235614c"}],"id":"583b47bf-d3fe-4018-9444-b153c9ffceaf","_postman_id":"583b47bf-d3fe-4018-9444-b153c9ffceaf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Simultaneous Ring Personal","item":[{"name":"User Simultaneous Ring Personal","id":"c04ba2e4-f839-4c83-8e7b-992d00dd1d42","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/simultaneous-ring-personal?userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","simultaneous-ring-personal"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"3161cb36-7ca2-4d37-aa61-7d0acecec27a","name":"User Simultaneous Ring Personal","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/simultaneous-ring-personal?userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","simultaneous-ring-personal"],"query":[{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"411","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 00:13:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isActive\":true,\"doNotRingIfOnCall\":true,\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"criteria\":[{\"isActive\":true,\"criteriaName\":\"Test123\",\"timeSchedule\":\"Every Day All Day\",\"blacklisted\":false,\"holidaySchedule\":\"None\",\"callsFrom\":[\"Any private number\",\"5133334444\"]}],\"locations\":[{\"phoneNumber\":\"5133334444\",\"answerConfirmationRequired\":true},{\"phoneNumber\":\"5133334445\",\"answerConfirmationRequired\":false}]}"}],"_postman_id":"c04ba2e4-f839-4c83-8e7b-992d00dd1d42"},{"name":"User Simultaneous Ring Personal","id":"8d549b65-2337-4ce1-914d-183038f5e440","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"doNotRingIfOnCall\":true,\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"criteria\":[{\"isActive\":true,\"criteriaName\":\"Test123\"}\n\t],\n\t\"locations\":[\n\t\t{\"phoneNumber\":\"5133334444\",\"answerConfirmationRequired\":true},\n\t\t{\"phoneNumber\":\"5133334445\",\"answerConfirmationRequired\":false}\n\t]\n}"},"url":"{{url}}/api/v2/users/simultaneous-ring-personal","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","simultaneous-ring-personal"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b8eb8c0d-29e8-4e27-a467-6e397e5059cc","name":"User Simultaneous Ring Personal","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"doNotRingIfOnCall\": true,\n    \"userId\": \" 4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"criteria1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All calls\"\n            ]\n        }\n    ],\n    \"locations\": [\n        {\n            \"phoneNumber\": \"123123\",\n            \"answerConfirmationRequired\": true\n        },\n        {\n            \"phoneNumber\": \"123123123\",\n            \"answerConfirmationRequired\": true\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/simultaneous-ring-personal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"doNotRingIfOnCall\": true,\n    \"userId\": \" 4001@parkbenchsolutions.com\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"criteria1\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callsFrom\": [\n                \"All calls\"\n            ]\n        }\n    ],\n    \"locations\": [\n        {\n            \"phoneNumber\": \"123123\",\n            \"answerConfirmationRequired\": true\n        },\n        {\n            \"phoneNumber\": \"123123123\",\n            \"answerConfirmationRequired\": true\n        }\n    ],\n    \"_eventId\": 8547\n}"}],"_postman_id":"8d549b65-2337-4ce1-914d-183038f5e440"},{"name":"User Simultaneous Ring Personal Criteria","id":"48d66baa-44df-45ae-aa12-e0121ab3ab8b","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"9589581000@as3.xdp.broadsoft.com\",\n    \"isActive\": true,\n    \"name\": \"Test456\",\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": true,\n        \"phoneNumbers\": [\n            \"5133334444\"\n        ]\n    },\n    \"criteriaName\": \"Test456\"\n}"},"url":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","simultaneous-ring-personal","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c2310fd0-d73c-4703-a5a0-7c9b89705301","name":"User Simultaneous Ring Personal Criteria","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"isActive\":true,\n\t\"name\":\"Test456\",\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"phoneNumbers\":[\"5133334444\"]\n\t},\n\t\"criteriaName\":\"Test456\"\n}"},"url":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 00:18:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"48d66baa-44df-45ae-aa12-e0121ab3ab8b"},{"name":"User Simultaneous Ring Personal Criteria","id":"fb4519a7-8668-4b15-b5a1-ddff76f026fc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria?criteriaName=Test456&userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","simultaneous-ring-personal","criteria"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"Test456"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"cd0fc0a1-fdfe-42e7-bae7-b6229d46a626","name":"User Simultaneous Ring Personal Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria?criteriaName=Test456&userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","simultaneous-ring-personal","criteria"],"query":[{"key":"criteriaName","value":"Test456"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"247","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 00:18:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"blacklisted\":false,\"fromDnCriteria\":{\"fromDnCriteriaSelection\":\"Specified Only\",\"includeAnonymousCallers\":true,\"includeUnavailableCallers\":false,\"phoneNumbers\":[\"5133334444\"]},\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\"criteriaName\":\"Test456\"}"}],"_postman_id":"fb4519a7-8668-4b15-b5a1-ddff76f026fc"},{"name":"User Simultaneous Ring Personal Criteria","id":"a4961c93-4e82-44d6-8626-7bb31656ac77","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"blacklisted\":false,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"includeUnavailableCallers\":false,\n\t\t\"phoneNumbers\":[\"5133334444\"]\n\t},\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"criteriaName\":\"Test456\",\n\t\"isActive\":true,\n\t\"newCriteriaName\":\"Test456\",\n\t\"timeSchedule\":{},\n\t\"holidaySchedule\":{},\n\t\"holidayScheduleName\":null\n}"},"url":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","simultaneous-ring-personal","criteria"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ecf09444-5446-4129-a417-b26006eeffb7","name":"User Simultaneous Ring Personal Criteria","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"blacklisted\":false,\n\t\"fromDnCriteria\":{\n\t\t\"fromDnCriteriaSelection\":\"Specified Only\",\n\t\t\"includeAnonymousCallers\":true,\n\t\t\"includeUnavailableCallers\":false,\n\t\t\"phoneNumbers\":[\"5133334444\"]\n\t},\n\t\"userId\":\"9589581000@as3.xdp.broadsoft.com\",\n\t\"criteriaName\":\"Test456\",\n\t\"isActive\":true,\n\t\"newCriteriaName\":\"Test456\",\n\t\"timeSchedule\":{},\n\t\"holidaySchedule\":{},\n\t\"holidayScheduleName\":null\n}"},"url":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 00:20:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"a4961c93-4e82-44d6-8626-7bb31656ac77"},{"name":"User Simultaneous Ring Personal Criteria","id":"518c310c-80a0-4745-a737-2cc4f31b69dc","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria?criteriaName=Test456&userId=9589581000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","simultaneous-ring-personal","criteria"],"host":["{{url}}"],"query":[{"key":"criteriaName","value":"Test456"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"d343edd8-3923-4b62-8639-009dfb7e3c7a","name":"User Simultaneous Ring Personal Criteria","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/simultaneous-ring-personal/criteria?criteriaName=Test456&userId=9589581000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","simultaneous-ring-personal","criteria"],"query":[{"key":"criteriaName","value":"Test456"},{"key":"userId","value":"9589581000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 05 Oct 2018 00:20:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"518c310c-80a0-4745-a737-2cc4f31b69dc"}],"id":"9b55589f-7cdb-46b4-8186-edfb700ba394","_postman_id":"9b55589f-7cdb-46b4-8186-edfb700ba394","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Smarty Address","item":[{"name":"Address search","id":"ee6cb18f-f991-4f5e-8937-43bb19cd82af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://address.odinapi.dev/api/v1/address-lookup?search=3311 M","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","address-lookup"],"host":["address","odinapi","dev"],"query":[{"key":"search","value":"3311 M"}],"variable":[]}},"response":[{"id":"8cb4cdc6-545f-4558-b0cb-a7ac67f7c268","name":"Address search","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://address.odinapi.dev/api/v1/address-lookup?search=3311 M","protocol":"https","host":["address","odinapi","dev"],"path":["api","v1","address-lookup"],"query":[{"key":"search","value":"3311 M"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Fri, 17 Nov 2023 20:41:34 GMT"},{"key":"Server","value":"Caddy"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Length","value":"313"}],"cookie":[],"responseTime":null,"body":"{\n    \"suggestions\": [\n        {\n            \"street_line\": \"3311 Mackinac Ct\",\n            \"secondary\": \"\",\n            \"city\": \"Muscatine\",\n            \"state\": \"IA\",\n            \"zipcode\": \"52761\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Medicine Admin Bldg\",\n            \"secondary\": \"\",\n            \"city\": \"Iowa City\",\n            \"state\": \"IA\",\n            \"zipcode\": \"52242\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Marshall Ave\",\n            \"secondary\": \"\",\n            \"city\": \"Sioux City\",\n            \"state\": \"IA\",\n            \"zipcode\": \"51106\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Marsh Ave\",\n            \"secondary\": \"\",\n            \"city\": \"Sheldon\",\n            \"state\": \"IA\",\n            \"zipcode\": \"51201\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Marjorie Ln\",\n            \"secondary\": \"\",\n            \"city\": \"Waterloo\",\n            \"state\": \"IA\",\n            \"zipcode\": \"50701\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Maplecrest Rd\",\n            \"secondary\": \"\",\n            \"city\": \"Bettendorf\",\n            \"state\": \"IA\",\n            \"zipcode\": \"52722\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Mansfield Ave SE\",\n            \"secondary\": \"\",\n            \"city\": \"Cedar Rapids\",\n            \"state\": \"IA\",\n            \"zipcode\": \"52403\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Main Street Rd\",\n            \"secondary\": \"\",\n            \"city\": \"Marshalltown\",\n            \"state\": \"IA\",\n            \"zipcode\": \"50158\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Main Library\",\n            \"secondary\": \"\",\n            \"city\": \"Iowa City\",\n            \"state\": \"IA\",\n            \"zipcode\": \"52242\",\n            \"entries\": 0\n        },\n        {\n            \"street_line\": \"3311 Magnolia Ct\",\n            \"secondary\": \"\",\n            \"city\": \"Bettendorf\",\n            \"state\": \"IA\",\n            \"zipcode\": \"52722\",\n            \"entries\": 0\n        }\n    ]\n}"}],"_postman_id":"ee6cb18f-f991-4f5e-8937-43bb19cd82af"},{"name":"Address Validation","id":"487f256a-b9f3-4c9a-a001-ded0f414b6bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"// {\n//     \"address1\": \"3311 Morelyn Crest\",\n//     \"address2\": \"Apt 3\",\n//     \"city\": \"Orland\",\n//     \"state\": \"FL\",\n//     \"zipCode\": \"3282\"\n// }\n{\n    \"address1\": \"3565 Piedmont Road\",\n    \"address2\": \"Bldg 4\",\n    \"aptNumber\": \"Ste 700\",\n    \"city\": \"Atlanta\",\n    \"state\": \"GA\",\n    \"zipCode\": \"30305\"\n}\n// 3565 Piedmont Road NE\n// Bldg 4, Suite 700\n// Atlanta, GA 30305","options":{"raw":{"language":"json"}}},"url":"https://address.odinapi.dev/api/v1/street-address","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","street-address"],"host":["address","odinapi","dev"],"query":[],"variable":[]}},"response":[{"id":"5f3e4aa2-ddf6-4684-8937-1432d2240029","name":"Address Validation","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"// {\n//     \"address1\": \"3311 Morelyn Crest\",\n//     \"address2\": \"Apt 3\",\n//     \"city\": \"Orland\",\n//     \"state\": \"FL\",\n//     \"zipCode\": \"3282\"\n// }\n{\n    \"address1\": \"3565 Piedmont Road\",\n    \"address2\": \"Bldg 4\",\n    \"aptNumber\": \"Ste 700\",\n    \"city\": \"Atlanta\",\n    \"state\": \"GA\",\n    \"zipCode\": \"30305\"\n}\n// 3565 Piedmont Road NE\n// Bldg 4, Suite 700\n// Atlanta, GA 30305","options":{"raw":{"language":"json"}}},"url":"https://address.odinapi.dev/api/v1/street-address"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Fri, 17 Nov 2023 20:50:09 GMT"},{"key":"Server","value":"Caddy"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Length","value":"569"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"input_index\": 0,\n        \"candidate_index\": 0,\n        \"delivery_line_1\": \"3565 Piedmont Rd NE Ste 700\",\n        \"delivery_line_2\": \"Bldg 4\",\n        \"last_line\": \"Atlanta GA 30305-8202\",\n        \"delivery_point_barcode\": \"303058202999\",\n        \"components\": {\n            \"primary_number\": \"3565\",\n            \"street_name\": \"Piedmont\",\n            \"street_postdirection\": \"NE\",\n            \"street_suffix\": \"Rd\",\n            \"secondary_number\": \"700\",\n            \"secondary_designator\": \"Ste\",\n            \"city_name\": \"Atlanta\",\n            \"default_city_name\": \"Atlanta\",\n            \"state_abbreviation\": \"GA\",\n            \"zipcode\": \"30305\",\n            \"plus4_code\": \"8202\",\n            \"delivery_point\": \"99\",\n            \"delivery_point_check_digit\": \"9\"\n        },\n        \"metadata\": {\n            \"record_type\": \"H\",\n            \"zip_type\": \"Standard\",\n            \"county_fips\": \"13121\",\n            \"county_name\": \"Fulton\",\n            \"carrier_route\": \"C070\",\n            \"congressional_district\": \"05\",\n            \"building_default_indicator\": \"Y\",\n            \"rdi\": \"Commercial\",\n            \"elot_sequence\": \"0249\",\n            \"elot_sort\": \"A\",\n            \"latitude\": 33.85276,\n            \"longitude\": -84.37752,\n            \"precision\": \"Zip9\",\n            \"time_zone\": \"Eastern\",\n            \"utc_offset\": -5,\n            \"dst\": true\n        },\n        \"analysis\": {\n            \"dpv_match_code\": \"S\",\n            \"dpv_footnotes\": \"AAC1\",\n            \"dpv_cmra\": \"N\",\n            \"dpv_vacant\": \"N\",\n            \"dpv_no_stat\": \"Y\",\n            \"active\": \"Y\",\n            \"footnotes\": \"L#S#\"\n        }\n    }\n]"}],"_postman_id":"487f256a-b9f3-4c9a-a001-ded0f414b6bd"}],"id":"a1c3d512-e0ac-46e5-afdd-11833160041c","_postman_id":"a1c3d512-e0ac-46e5-afdd-11833160041c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Speed Dial 100","item":[{"name":"Group Speed Dial 100","id":"a9520f20-ab90-4b7e-8876-b8f881e544a5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/groups/speed-dial-100?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Get group speed dial 100 prefix\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","speed-dial-100"],"host":["{{url}}"],"query":[{"description":{"content":"<p>key can be serviceProviderId or enterpriseId</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"eccd457c-3d77-4206-a8b8-5fa8a114fa50","name":"Group","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/groups/speed-dial-100?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","groups","speed-dial-100"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1","description":"key can be serviceProviderId or enterpriseId"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""}],"cookie":[],"responseTime":null,"body":"{\"prefix\":\"#\"}"}],"_postman_id":"a9520f20-ab90-4b7e-8876-b8f881e544a5"},{"name":"Group Speed Dial 100","id":"8d650572-9f0b-47a7-ae69-ce96fee5b6b3","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\": \"odin.mock.grp1\",\n\t\"prefix\": \"#\"\n}"},"url":"{{url}}/api/v2/groups/speed-dial-100","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Set group speed dial 100 prefix\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","speed-dial-100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"af0f1d39-eb02-4f85-8dc7-3ce87cf4f24b","name":"Group","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false},{"key":"Content-Type","name":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\"groupId\" : \"odin.mock.grp1\",\n    \"prefix\": \"#\"\n}"},"url":"{{url}}/api/v2/groups/speed-dial-100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"8d650572-9f0b-47a7-ae69-ce96fee5b6b3"},{"name":"User Speed Dial 100","id":"4ceaa73f-5123-40b4-9326-d3aca251e855","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/speed-dial-100?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-100"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"3b4a8b2c-5cac-43af-9a35-86618fe76f0b","name":"User Speed Dial 100","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/speed-dial-100?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","speed-dial-100"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"124","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 21:50:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"userId\":\"9709580001@microv-works.com\",\"speedCodes\":[{\"speedCode\":\"3\",\"phoneNumber\":\"5133334444\",\"description\":\"Test123\"}]}"}],"_postman_id":"4ceaa73f-5123-40b4-9326-d3aca251e855"},{"name":"User Speed Dial 100","id":"3379011c-3076-43af-8d51-412eda159688","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"speedCodes\":[\n\t\t{\"speedCode\":\"1\",\"phoneNumber\":\"5133334444\",\"description\":\"Test123\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/speed-dial-100","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"15f62f9c-59d5-4587-a89f-5d97fe163ae9","name":"User Speed Dial 100","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"speedCodes\":[\n\t\t{\"speedCode\":\"1\",\"phoneNumber\":\"5133334444\",\"description\":\"Test123\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/speed-dial-100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 21:51:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3379011c-3076-43af-8d51-412eda159688"},{"name":"User Speed Dial 100","id":"de3043ef-df41-45c4-992d-3ffcc2c61df2","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"speedCodes\":[\n\t\t{\"speedCode\":\"1\",\"phoneNumber\":\"5133334444\",\"description\":\"Test1234\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/speed-dial-100","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b6667c67-bd42-4ad9-ae43-98a095d343bc","name":"User Speed Dial 100","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"speedCodes\":[\n\t\t{\"speedCode\":\"1\",\"phoneNumber\":\"5133334444\",\"description\":\"Test1234\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/speed-dial-100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 21:52:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"de3043ef-df41-45c4-992d-3ffcc2c61df2"},{"name":"User Speed Dial 100","id":"70a4fe2d-d7c4-4e8e-8091-7d74b65ca38f","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"speedCodes\":[\n\t\t{\"speedCode\":\"1\",\"phoneNumber\":\"5133334444\",\"description\":\"Test1234\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/speed-dial-100","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0564eb5d-b905-4194-8b34-38f7b527e2d0","name":"User Speed Dial 100","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","type":"text","name":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"speedCodes\":[\n\t\t{\"speedCode\":\"1\",\"phoneNumber\":\"5133334444\",\"description\":\"Test1234\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/speed-dial-100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 21:53:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"70a4fe2d-d7c4-4e8e-8091-7d74b65ca38f"}],"id":"1508eb93-1719-479b-a777-6044b2c0f774","_postman_id":"1508eb93-1719-479b-a777-6044b2c0f774","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Speed Dial 8","item":[{"name":"User Speed Dial 8","id":"80cadd09-5081-4a5e-8c59-db4f40643edb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/speed-dial-8?userId=slatsa@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-8"],"host":["{{url}}"],"query":[{"key":"userId","value":"slatsa@odinapi.net"}],"variable":[]}},"response":[{"id":"ad14ffb3-deff-495f-9238-30ecd4ae23f5","name":"User Speed Dial 8","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/speed-dial-8?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","speed-dial-8"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"297","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 23:32:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"userId\":\"9709580001@microv-works.com\",\"speedCodes\":[{\"speedCode\":\"2\",\"phoneNumber\":\"5133334444\",\"description\":\"Test1\"},{\"speedCode\":\"3\",\"phoneNumber\":\"5133334445\",\"description\":\"Test2\"},{\"speedCode\":\"4\"},{\"speedCode\":\"5\"},{\"speedCode\":\"6\"},{\"speedCode\":\"7\"},{\"speedCode\":\"8\"},{\"speedCode\":\"9\"}]}"}],"_postman_id":"80cadd09-5081-4a5e-8c59-db4f40643edb"},{"name":"User Speed Dial 8","id":"9226a264-3e34-45a9-ad81-dd71a4350906","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"speedCodes\": [\n        {\n            \"speedCode\": \"2\",\n            \"phoneNumber\": \"5133334444\",\n            \"description\": \"Test1\"\n        },\n        {\n            \"speedCode\": \"3\",\n            \"phoneNumber\": \"5133334445\",\n            \"description\": \"Test2\"\n        },\n        {\n            \"speedCode\": \"4\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"5\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"6\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"7\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"8\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"9\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/speed-dial-8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-8"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"96d1eb37-9291-4521-aca5-c5c4405e62a2","name":"User Speed Dial 8","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"speedCodes\": [\n        {\n            \"speedCode\": \"2\",\n            \"phoneNumber\": \"5133334444\",\n            \"description\": \"Test1\"\n        },\n        {\n            \"speedCode\": \"3\",\n            \"phoneNumber\": \"5133334445\",\n            \"description\": \"Test2\"\n        },\n        {\n            \"speedCode\": \"4\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"5\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"6\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"7\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"8\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        },\n        {\n            \"speedCode\": \"9\",\n            \"phoneNumber\": \"\",\n            \"description\": \"\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/speed-dial-8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"speedCodes\": [\n        {\n            \"speedCode\": \"2\",\n            \"phoneNumber\": \"5133334444\",\n            \"description\": \"Test1\"\n        },\n        {\n            \"speedCode\": \"3\",\n            \"phoneNumber\": \"5133334445\",\n            \"description\": \"Test2\"\n        },\n        {\n            \"speedCode\": \"4\"\n        },\n        {\n            \"speedCode\": \"5\"\n        },\n        {\n            \"speedCode\": \"6\"\n        },\n        {\n            \"speedCode\": \"7\"\n        },\n        {\n            \"speedCode\": \"8\"\n        },\n        {\n            \"speedCode\": \"9\"\n        }\n    ],\n    \"_eventId\": 7824\n}"}],"_postman_id":"9226a264-3e34-45a9-ad81-dd71a4350906"},{"name":"Bulk User Speed Dial 8","id":"149e4e93-175b-49fb-bf1a-404a47561c66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/speed-dial-8/bulk?serviceProviderId=ent.odin&groupId=grp.odin.copy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-8","bulk"],"host":["{{url}}"],"query":[{"description":{"content":"<p>required</p>\n","type":"text/plain"},"key":"serviceProviderId","value":"ent.odin"},{"description":{"content":"<p>required</p>\n","type":"text/plain"},"key":"groupId","value":"grp.odin.copy"}],"variable":[]}},"response":[{"id":"f330b888-0314-46a1-9cb9-ee9dd34ceffd","name":"Bulk User Speed Dial 8","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/speed-dial-8/bulk?serviceProviderId=ent.odin&groupId=grp.odin.copy","host":["{{url}}"],"path":["api","v2","users","speed-dial-8","bulk"],"query":[{"key":"serviceProviderId","value":"ent.odin","description":"required"},{"key":"groupId","value":"grp.odin.copy","description":"required"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin.copy\",\n    \"users\": [\n        {\n            \"userId\": \"developer-pbs@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"developer-pbs@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"developer\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004003\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4003\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-test@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-test@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"odin-test\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004020\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4020\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-web@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-web@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"web\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004005\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4005\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-api@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-api@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"api\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004006\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4006\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-clone@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-clone@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"clone\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004007\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4007\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-webhook@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-webhook@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"webhook\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004010\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4010\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-bulk@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-bulk@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"bulk\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004009\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4009\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-callback@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-callback@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"callback\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004011\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4011\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-move@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-move@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"move\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004012\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4012\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-event@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-event@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"event\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004013\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4013\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-cdr@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-cdr@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"cdr\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004014\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4014\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        },\n        {\n            \"userId\": \"odin-audit@parkbenchsolutions.com\",\n            \"service\": {\n                \"assigned\": false,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"odin-audit@parkbenchsolutions.com\",\n                \"lastName\": \"parkbenchsolutions\",\n                \"firstName\": \"audit\",\n                \"department\": null,\n                \"phoneNumber\": \"+1-5134004015\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"4015\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {}\n        }\n    ]\n}"}],"_postman_id":"149e4e93-175b-49fb-bf1a-404a47561c66"},{"name":"Bulk User Speed Dial 8","id":"0906cf3c-7ab1-48ff-95d3-147dbf2bad33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"data\": {\n        \"speedCodes\": [\n            {\n                \"speedCode\": \"2\",\n                \"phoneNumber\": \"2222222222\"\n            },\n            {\n                \"speedCode\": \"3\",\n                \"phoneNumber\": \"3333333333\"\n            },\n            {\n                \"speedCode\": \"4\",\n                \"phoneNumber\": \"444444444\"\n            },\n            {\n                \"speedCode\": \"5\",\n                \"phoneNumber\": \"5555555555\"\n            },\n            {\n                \"speedCode\": \"6\",\n                \"phoneNumber\": \"6666666666\"\n            },\n            {\n                \"speedCode\": \"7\",\n                \"phoneNumber\": \"7777777777\"\n            },\n            {\n                \"speedCode\": \"8\",\n                \"phoneNumber\": \"8888888888\"\n            },\n            {\n                \"speedCode\": \"9\",\n                \"phoneNumber\": \"9999999999\"\n            }\n        ]\n    },\n    \"users\": [\n        {\n            \"userId\": \"4003@parkbenchsolutions.com\",\n            \"service\": {\n                \"userId\": \"4003@parkbenchsolutions.com\",\n                \"assigned\": true,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"4003@parkbenchsolutions.com\",\n                \"lastName\": 4003,\n                \"firstName\": 4003,\n                \"department\": null,\n                \"phoneNumber\": \"+1-8135551003\",\n                \"phoneNumberActivated\": true,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4003,\n                \"hiraganaFirstName\": 4003,\n                \"inTrunkGroup\": false,\n                \"extension\": \"1003\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"userId\": \"4003@parkbenchsolutions.com\",\n                \"speedCodes\": [\n                    {\n                        \"speedCode\": \"2\",\n                        \"phoneNumber\": \"2222\"\n                    },\n                    {\n                        \"speedCode\": \"3\",\n                        \"phoneNumber\": \"333\"\n                    },\n                    {\n                        \"speedCode\": \"4\",\n                        \"phoneNumber\": \"444444444\"\n                    },\n                    {\n                        \"speedCode\": \"5\",\n                        \"phoneNumber\": \"555\"\n                    },\n                    {\n                        \"speedCode\": \"6\",\n                        \"phoneNumber\": \"5555\"\n                    },\n                    {\n                        \"speedCode\": \"7\",\n                        \"phoneNumber\": \"3334445555\"\n                    },\n                    {\n                        \"speedCode\": \"8\",\n                        \"phoneNumber\": \"8888111\"\n                    },\n                    {\n                        \"speedCode\": \"9\",\n                        \"phoneNumber\": \"111222\"\n                    }\n                ]\n            }\n        },\n        {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"service\": {\n                \"userId\": \"4002@parkbenchsolutions.com\",\n                \"assigned\": true,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"4002@parkbenchsolutions.com\",\n                \"lastName\": 4002,\n                \"firstName\": 4002,\n                \"department\": null,\n                \"phoneNumber\": \"\",\n                \"phoneNumberActivated\": null,\n                \"emailAddress\": null,\n                \"hiraganaLastName\": 4002,\n                \"hiraganaFirstName\": 4002,\n                \"inTrunkGroup\": false,\n                \"extension\": \"\",\n                \"countryCode\": null,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"userId\": \"4002@parkbenchsolutions.com\",\n                \"speedCodes\": [\n                    {\n                        \"speedCode\": \"2\",\n                        \"phoneNumber\": \"2222\"\n                    },\n                    {\n                        \"speedCode\": \"3\",\n                        \"phoneNumber\": \"3333\"\n                    },\n                    {\n                        \"speedCode\": \"4\",\n                        \"phoneNumber\": \"44444444\"\n                    },\n                    {\n                        \"speedCode\": \"5\",\n                        \"phoneNumber\": \"5555\"\n                    },\n                    {\n                        \"speedCode\": \"6\",\n                        \"phoneNumber\": \"6666\"\n                    },\n                    {\n                        \"speedCode\": \"7\",\n                        \"phoneNumber\": \"7777\"\n                    },\n                    {\n                        \"speedCode\": \"8\",\n                        \"phoneNumber\": \"8888\"\n                    },\n                    {\n                        \"speedCode\": \"9\"\n                    }\n                ]\n            }\n        },\n        {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"service\": {\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"assigned\": true,\n                \"serviceName\": \"Speed Dial 8\"\n            },\n            \"user\": {\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"lastName\": 4001,\n                \"firstName\": 4001,\n                \"department\": null,\n                \"phoneNumber\": \"+1-8595551401\",\n                \"phoneNumberActivated\": false,\n                \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                \"hiraganaLastName\": 4001,\n                \"hiraganaFirstName\": 4001,\n                \"inTrunkGroup\": false,\n                \"extension\": \"1401\",\n                \"countryCode\": 1,\n                \"nationalPrefix\": null,\n                \"domain\": \"parkbenchsolutions.com\"\n            },\n            \"data\": {\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"speedCodes\": [\n                    {\n                        \"speedCode\": \"2\",\n                        \"phoneNumber\": \"222\"\n                    },\n                    {\n                        \"speedCode\": \"3\",\n                        \"phoneNumber\": \"333\"\n                    },\n                    {\n                        \"speedCode\": \"4\",\n                        \"phoneNumber\": \"444\"\n                    },\n                    {\n                        \"speedCode\": \"5\"\n                    },\n                    {\n                        \"speedCode\": \"6\"\n                    },\n                    {\n                        \"speedCode\": \"7\"\n                    },\n                    {\n                        \"speedCode\": \"8\"\n                    },\n                    {\n                        \"speedCode\": \"9\"\n                    }\n                ]\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users/speed-dial-8/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","speed-dial-8","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0906cf3c-7ab1-48ff-95d3-147dbf2bad33"}],"id":"0fa90c7d-3640-4916-a832-72c10f83dfe3","event":[{"listen":"prerequest","script":{"id":"ce644014-1fa1-4728-8600-dc3cfaa8243f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fa9c953d-c36f-4624-802b-9cbf27d91b35","type":"text/javascript","exec":[""]}}],"_postman_id":"0fa90c7d-3640-4916-a832-72c10f83dfe3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"States and Provinces","item":[{"name":"System States Provinces","id":"849a7f27-e7a8-4742-905a-2fb7fd234e99","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/states-provinces","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","states-provinces"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"320f76b5-626d-467a-8995-02ebc8f28616","name":"System States Provinces","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/states-provinces"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 03:03:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2935"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"Alabama\",\n        \"displayName\": \"Alabama\"\n    },\n    {\n        \"key\": \"Alaska\",\n        \"displayName\": \"Alaska\"\n    },\n    {\n        \"key\": \"Alberta\",\n        \"displayName\": \"Alberta\"\n    },\n    {\n        \"key\": \"Arizona\",\n        \"displayName\": \"Arizona\"\n    },\n    {\n        \"key\": \"Arkansas\",\n        \"displayName\": \"Arkansas\"\n    },\n    {\n        \"key\": \"British Columbia\",\n        \"displayName\": \"British Columbia\"\n    },\n    {\n        \"key\": \"California\",\n        \"displayName\": \"California\"\n    },\n    {\n        \"key\": \"Colorado\",\n        \"displayName\": \"Colorado\"\n    },\n    {\n        \"key\": \"Connecticut\",\n        \"displayName\": \"Connecticut\"\n    },\n    {\n        \"key\": \"D.C.\",\n        \"displayName\": \"D.C.\"\n    },\n    {\n        \"key\": \"Delaware\",\n        \"displayName\": \"Delaware\"\n    },\n    {\n        \"key\": \"Florida\",\n        \"displayName\": \"Florida\"\n    },\n    {\n        \"key\": \"Georgia\",\n        \"displayName\": \"Georgia\"\n    },\n    {\n        \"key\": \"Hawaii\",\n        \"displayName\": \"Hawaii\"\n    },\n    {\n        \"key\": \"Idaho\",\n        \"displayName\": \"Idaho\"\n    },\n    {\n        \"key\": \"Illinois\",\n        \"displayName\": \"Illinois\"\n    },\n    {\n        \"key\": \"Indiana\",\n        \"displayName\": \"Indiana\"\n    },\n    {\n        \"key\": \"Iowa\",\n        \"displayName\": \"Iowa\"\n    },\n    {\n        \"key\": \"Kansas\",\n        \"displayName\": \"Kansas\"\n    },\n    {\n        \"key\": \"Kentucky\",\n        \"displayName\": \"Kentucky\"\n    },\n    {\n        \"key\": \"Louisiana\",\n        \"displayName\": \"Louisiana\"\n    },\n    {\n        \"key\": \"Maine\",\n        \"displayName\": \"Maine\"\n    },\n    {\n        \"key\": \"Manitoba\",\n        \"displayName\": \"Manitoba\"\n    },\n    {\n        \"key\": \"Maryland\",\n        \"displayName\": \"Maryland\"\n    },\n    {\n        \"key\": \"Massachusetts\",\n        \"displayName\": \"Massachusetts\"\n    },\n    {\n        \"key\": \"Michigan\",\n        \"displayName\": \"Michigan\"\n    },\n    {\n        \"key\": \"Minnesota\",\n        \"displayName\": \"Minnesota\"\n    },\n    {\n        \"key\": \"Mississippi\",\n        \"displayName\": \"Mississippi\"\n    },\n    {\n        \"key\": \"Missouri\",\n        \"displayName\": \"Missouri\"\n    },\n    {\n        \"key\": \"Montana\",\n        \"displayName\": \"Montana\"\n    },\n    {\n        \"key\": \"Nebraska\",\n        \"displayName\": \"Nebraska\"\n    },\n    {\n        \"key\": \"Nevada\",\n        \"displayName\": \"Nevada\"\n    },\n    {\n        \"key\": \"New Brunswick\",\n        \"displayName\": \"New Brunswick\"\n    },\n    {\n        \"key\": \"Newfoundland\",\n        \"displayName\": \"Newfoundland\"\n    },\n    {\n        \"key\": \"New Hampshire\",\n        \"displayName\": \"New Hampshire\"\n    },\n    {\n        \"key\": \"New Jersey\",\n        \"displayName\": \"New Jersey\"\n    },\n    {\n        \"key\": \"New Mexico\",\n        \"displayName\": \"New Mexico\"\n    },\n    {\n        \"key\": \"New York\",\n        \"displayName\": \"New York\"\n    },\n    {\n        \"key\": \"North Carolina\",\n        \"displayName\": \"North Carolina\"\n    },\n    {\n        \"key\": \"North Dakota\",\n        \"displayName\": \"North Dakota\"\n    },\n    {\n        \"key\": \"Northwest Territories\",\n        \"displayName\": \"Northwest Territories\"\n    },\n    {\n        \"key\": \"Nova Scotia\",\n        \"displayName\": \"Nova Scotia\"\n    },\n    {\n        \"key\": \"Nunavut\",\n        \"displayName\": \"Nunavut\"\n    },\n    {\n        \"key\": \"Ohio\",\n        \"displayName\": \"Ohio\"\n    },\n    {\n        \"key\": \"Oklahoma\",\n        \"displayName\": \"Oklahoma\"\n    },\n    {\n        \"key\": \"Ontario\",\n        \"displayName\": \"Ontario\"\n    },\n    {\n        \"key\": \"Oregon\",\n        \"displayName\": \"Oregon\"\n    },\n    {\n        \"key\": \"Pennsylvania\",\n        \"displayName\": \"Pennsylvania\"\n    },\n    {\n        \"key\": \"Prince Edward Island\",\n        \"displayName\": \"Prince Edward Island\"\n    },\n    {\n        \"key\": \"Quebec\",\n        \"displayName\": \"Quebec\"\n    },\n    {\n        \"key\": \"Rhode Island\",\n        \"displayName\": \"Rhode Island\"\n    },\n    {\n        \"key\": \"Saskatchewan\",\n        \"displayName\": \"Saskatchewan\"\n    },\n    {\n        \"key\": \"South Carolina\",\n        \"displayName\": \"South Carolina\"\n    },\n    {\n        \"key\": \"South Dakota\",\n        \"displayName\": \"South Dakota\"\n    },\n    {\n        \"key\": \"Tennessee\",\n        \"displayName\": \"Tennessee\"\n    },\n    {\n        \"key\": \"Texas\",\n        \"displayName\": \"Texas\"\n    },\n    {\n        \"key\": \"Utah\",\n        \"displayName\": \"Utah\"\n    },\n    {\n        \"key\": \"Vermont\",\n        \"displayName\": \"Vermont\"\n    },\n    {\n        \"key\": \"Virginia\",\n        \"displayName\": \"Virginia\"\n    },\n    {\n        \"key\": \"Washington\",\n        \"displayName\": \"Washington\"\n    },\n    {\n        \"key\": \"West Virginia\",\n        \"displayName\": \"West Virginia\"\n    },\n    {\n        \"key\": \"Wisconsin\",\n        \"displayName\": \"Wisconsin\"\n    },\n    {\n        \"key\": \"Wyoming\",\n        \"displayName\": \"Wyoming\"\n    },\n    {\n        \"key\": \"Yukon\",\n        \"displayName\": \"Yukon\"\n    }\n]"}],"_postman_id":"849a7f27-e7a8-4742-905a-2fb7fd234e99"}],"id":"79d90f04-0b05-4ccb-86a5-907504530715","_postman_id":"79d90f04-0b05-4ccb-86a5-907504530715","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"System","item":[{"name":"System Licensing","id":"14a90537-7df6-44f9-a18e-d3bbbb0f1c0c","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/licensing","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","licensing"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e045599b-75ce-4321-9ea5-ed9a9869b157","name":"System Licensing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/licensing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Oct 2018 23:59:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"6653"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"licenseStrictness\": \"Hard\",\n    \"groupUserlimit\": 999999,\n    \"numberOfTrunkUsers\": 2,\n    \"licenses\": [\n        \"Destination Trunk Group\",\n        \"Enterprise Voice Portal\",\n        \"Network-Wide Messaging\",\n        \"SIP TCP\",\n        \"Service Packs\",\n        \"Session Admission Control\",\n        \"Sh Interface\",\n        \"System Voice Portal\"\n    ],\n    \"groupServices\": [\n        {\n            \"name\": \"6SYSGROUP\",\n            \"licensed\": 540,\n            \"used\": 28,\n            \"available\": 512\n        },\n        {\n            \"name\": \"7HuntGroup\",\n            \"licensed\": 500,\n            \"used\": 23,\n            \"available\": 477\n        },\n        {\n            \"name\": \"8STANDARDGROUP\",\n            \"licensed\": 500,\n            \"used\": 23,\n            \"available\": 477\n        },\n        {\n            \"name\": \"9ENHANCEDGROUP\",\n            \"licensed\": 170,\n            \"used\": 23,\n            \"available\": 147\n        }\n    ],\n    \"userServices\": [\n        {\n            \"name\": \"1BASE\",\n            \"licensed\": \"Unlimited\",\n            \"used\": 369,\n            \"available\": \"Unlimited\",\n            \"usedByHostedUsers\": 369,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"2BUSINESSLINE\",\n            \"licensed\": 1500,\n            \"used\": 336,\n            \"available\": 1164,\n            \"usedByHostedUsers\": 336,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"3STANDARD\",\n            \"licensed\": 1500,\n            \"used\": 313,\n            \"available\": 1187,\n            \"usedByHostedUsers\": 313,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"4PERSONALMOBILITY\",\n            \"licensed\": 500,\n            \"used\": 277,\n            \"available\": 223,\n            \"usedByHostedUsers\": 277,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"5PREMIUM\",\n            \"licensed\": 500,\n            \"used\": 296,\n            \"available\": 204,\n            \"usedByHostedUsers\": 296,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Assistant-Enterprise\",\n            \"licensed\": 100,\n            \"used\": 79,\n            \"available\": 21,\n            \"usedByHostedUsers\": 79,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"AttendantConsole\",\n            \"licensed\": 10,\n            \"used\": 4,\n            \"available\": 6,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Automatic Hold/Retrieve\",\n            \"licensed\": 500,\n            \"used\": 12,\n            \"available\": 488,\n            \"usedByHostedUsers\": 12,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Desktop\",\n            \"licensed\": 10,\n            \"used\": 4,\n            \"available\": 6,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Desktop - Audio\",\n            \"licensed\": 10,\n            \"used\": 4,\n            \"available\": 6,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Desktop - Video\",\n            \"licensed\": 100,\n            \"used\": 4,\n            \"available\": 96,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Mobile\",\n            \"licensed\": 10,\n            \"used\": 4,\n            \"available\": 6,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Mobile - Audio\",\n            \"licensed\": 10,\n            \"used\": 4,\n            \"available\": 6,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Mobile - Video\",\n            \"licensed\": 100,\n            \"used\": 4,\n            \"available\": 96,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Tablet\",\n            \"licensed\": 10,\n            \"used\": 4,\n            \"available\": 6,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Tablet - Audio\",\n            \"licensed\": 10,\n            \"used\": 4,\n            \"available\": 6,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch Business Communicator Tablet - Video\",\n            \"licensed\": 100,\n            \"used\": 4,\n            \"available\": 96,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadTouch MobileLink\",\n            \"licensed\": 500,\n            \"used\": 6,\n            \"available\": 494,\n            \"usedByHostedUsers\": 6,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadWorks Mobility\",\n            \"licensed\": 100,\n            \"used\": 11,\n            \"available\": 89,\n            \"usedByHostedUsers\": 11,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadWorks Receptionist - Enterprise\",\n            \"licensed\": 5,\n            \"used\": 4,\n            \"available\": 1,\n            \"usedByHostedUsers\": 4,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadWorks Receptionist - Office\",\n            \"licensed\": 2,\n            \"used\": 3,\n            \"available\": -1,\n            \"usedByHostedUsers\": 3,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"BroadWorks Receptionist - Small Business\",\n            \"licensed\": 3,\n            \"used\": 3,\n            \"available\": 0,\n            \"usedByHostedUsers\": 3,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Call Center - Basic\",\n            \"licensed\": 25,\n            \"used\": 10,\n            \"available\": 15,\n            \"usedByHostedUsers\": 10,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Call Center - Premium\",\n            \"licensed\": 25,\n            \"used\": 9,\n            \"available\": 16,\n            \"usedByHostedUsers\": 9,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Call Center - Standard\",\n            \"licensed\": 25,\n            \"used\": 10,\n            \"available\": 15,\n            \"usedByHostedUsers\": 10,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Call Notify\",\n            \"licensed\": 1500,\n            \"used\": 49,\n            \"available\": 1451,\n            \"usedByHostedUsers\": 49,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Call Recording\",\n            \"licensed\": 10,\n            \"used\": 9,\n            \"available\": 1,\n            \"usedByHostedUsers\": 9,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"CallCenterAgent\",\n            \"licensed\": 10,\n            \"used\": 10,\n            \"available\": 0,\n            \"usedByHostedUsers\": 10,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"CallCenterSupervisor\",\n            \"licensed\": 2,\n            \"used\": 5,\n            \"available\": -3,\n            \"usedByHostedUsers\": 5,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Calling Line ID Blocking Override\",\n            \"licensed\": \"Unlimited\",\n            \"used\": 48,\n            \"available\": \"Unlimited\",\n            \"usedByHostedUsers\": 48,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Enhanced Call Logs\",\n            \"licensed\": 100,\n            \"used\": 206,\n            \"available\": -106,\n            \"usedByHostedUsers\": 206,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"FaxMessaging\",\n            \"licensed\": 10,\n            \"used\": 10,\n            \"available\": 0,\n            \"usedByHostedUsers\": 10,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Integrated IMP\",\n            \"licensed\": \"Unlimited\",\n            \"used\": 11,\n            \"available\": \"Unlimited\",\n            \"usedByHostedUsers\": 11,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Messaging\",\n            \"licensed\": 1500,\n            \"used\": 311,\n            \"available\": 1189,\n            \"usedByHostedUsers\": 311,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Prepaid\",\n            \"licensed\": 100,\n            \"used\": 3,\n            \"available\": 97,\n            \"usedByHostedUsers\": 3,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        },\n        {\n            \"name\": \"Video Add-On\",\n            \"licensed\": \"Unlimited\",\n            \"used\": 5,\n            \"available\": \"Unlimited\",\n            \"usedByHostedUsers\": 5,\n            \"usedByTrunkUsers\": 0,\n            \"expirationDate\": null\n        }\n    ],\n    \"virtualServices\": [\n        {\n            \"name\": \"Auto Attendant - Basic\",\n            \"licensed\": 50,\n            \"used\": 8,\n            \"available\": 42\n        },\n        {\n            \"name\": \"Auto Attendant - Standard\",\n            \"licensed\": 10,\n            \"used\": 9,\n            \"available\": 1\n        },\n        {\n            \"name\": \"Meet-Me Conferencing\",\n            \"licensed\": \"Unlimited\",\n            \"used\": 3,\n            \"available\": \"Unlimited\"\n        },\n        {\n            \"name\": \"Trunk Group\",\n            \"licensed\": 100,\n            \"used\": 3,\n            \"available\": 97\n        }\n    ],\n    \"subscribers\": [\n        {\n            \"name\": \"User License\",\n            \"licensed\": 1500,\n            \"used\": 392,\n            \"available\": 1108\n        },\n        {\n            \"name\": \"Group License\",\n            \"licensed\": \"Unlimited\",\n            \"used\": 35,\n            \"available\": \"Unlimited\"\n        }\n    ],\n    \"systemParameters\": [\n        {\n            \"name\": \"Trunking Call Capacity\",\n            \"licensed\": 100,\n            \"used\": 83,\n            \"available\": 17\n        },\n        {\n            \"name\": \"Trunking Bursting Call Capacity\",\n            \"licensed\": 1000,\n            \"used\": 0,\n            \"available\": 1000\n        },\n        {\n            \"name\": \"Trunking Bursting Over Max Percentage\",\n            \"licensed\": 1000,\n            \"used\": \"NA\",\n            \"available\": \"NA\"\n        },\n        {\n            \"name\": \"Number of Meet-Me Conferencing Ports\",\n            \"licensed\": 10,\n            \"used\": \"NA\",\n            \"available\": \"NA\"\n        }\n    ],\n    \"hostIds\": [\n        \"564D6AA2-D420-E2F0-2A3E-89FB42125C7C\",\n        \"564DD683-A640-444C-E9CA-4B0842E18033\"\n    ]\n}"}],"_postman_id":"14a90537-7df6-44f9-a18e-d3bbbb0f1c0c"},{"name":"Software Version","id":"1cb69b11-c2d9-4b9b-8546-dfa08322478d","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/software-version","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","software-version"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3cb8a95f-64a1-4c02-8e5a-f2bde6c1cd07","name":"Software Version","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/system/software-version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 00:11:11 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"19"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"version\": \"19sp1\"\n}"}],"_postman_id":"1cb69b11-c2d9-4b9b-8546-dfa08322478d"},{"name":"System File","id":"f0a6e639-fe05-4fe9-b4c4-5fbea44ca905","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/files?fileName=%2Fvar%2Fbroadworks%2FIpDeviceConfig%2Ftype%2FPolycom_VVX400%2F%25BWMACADDRESS%25.cfg.template","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","files"],"host":["{{url}}"],"query":[{"key":"fileName","value":"%2Fvar%2Fbroadworks%2FIpDeviceConfig%2Ftype%2FPolycom_VVX400%2F%25BWMACADDRESS%25.cfg.template"}],"variable":[]}},"response":[{"id":"8a04108b-2075-4e8d-9a2b-07398ab1c3ee","name":"System File","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/system/files?fileName=%2Fvar%2Fbroadworks%2FIpDeviceConfig%2Ftype%2FPolycom_VVX400%2F%25BWMACADDRESS%25.cfg.template","host":["{{url}}"],"path":["api","v2","system","files"],"query":[{"key":"fileName","value":"%2Fvar%2Fbroadworks%2FIpDeviceConfig%2Ftype%2FPolycom_VVX400%2F%25BWMACADDRESS%25.cfg.template"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 00:21:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1582"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"fileContent\": \"PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJ5ZXMiPz4NCjwhLS0gRGVmYXVsdCBNYXN0ZXIgU0lQIENvbmZpZ3VyYXRpb24gRmlsZS0tPg0KPCEtLSBGb3IgaW5mb3JtYXRpb24gb24gY29uZmlndXJpbmcgUG9seWNvbSBWb0lQIHBob25lcyBwbGVhc2UgcmVmZXIgdG8gdGhlIC0tPg0KPCEtLSBDb25maWd1cmF0aW9uIEZpbGUgTWFuYWdlbWVudCB3aGl0ZSBwYXBlciBhdmFpbGFibGUgZnJvbTogLS0+DQo8IS0tIGh0dHA6Ly93d3cucG9seWNvbS5jb20vY29tbW9uL2RvY3VtZW50cy93aGl0ZXBhcGVycy9jb25maWd1cmF0aW9uX2ZpbGVfbWFuYWdlbWVudF9vbl9zb3VuZHBvaW50X2lwX3Bob25lcy5wZGYgLS0+DQo8IS0tICRSQ1NmaWxlOiAwMDAwMDAwMDAwMDAuY2ZnLHYgJCAgJFJldmlzaW9uOiAxLjIzLjguMyAkIC0tPg0KPEFQUExJQ0FUSU9OIEFQUF9GSUxFX1BBVEg9IiVBUFBfVkVSU0lPTiUuc2lwLmxkIiBDT05GSUdfRklMRVM9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIiBNSVNDX0ZJTEVTPSIiIExPR19GSUxFX0RJUkVDVE9SWT0iIiBPVkVSUklERVNfRElSRUNUT1JZPSIiIENPTlRBQ1RTX0RJUkVDVE9SWT0iIiBMSUNFTlNFX0RJUkVDVE9SWT0iIj4NCg0KICAgPEFQUExJQ0FUSU9OX1ZWWDMwMCBBUFBfRklMRV9QQVRIX1ZWWDMwMD0iJUFQUF9WRVJTSU9OX1ZWWC0zMDAtNDAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlgzMDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQogICA8QVBQTElDQVRJT05fVlZYNDAwIEFQUF9GSUxFX1BBVEhfVlZYNDAwPSIlQVBQX1ZFUlNJT05fVlZYLTMwMC00MDAlLnNpcC5sZCIgQ09ORklHX0ZJTEVTX1ZWWDQwMD0icGhvbmUlQldERVZJQ0VJRCUuY2ZnLHN5cy5jZmciLz4NCiAgIDxBUFBMSUNBVElPTl9WVlg1MDAgQVBQX0ZJTEVfUEFUSF9WVlg1MDA9IiVBUFBfVkVSU0lPTl9WVlgtNTAwLTYwMCUuc2lwLmxkIiBDT05GSUdfRklMRVNfVlZYNTAwPSJwaG9uZSVCV0RFVklDRUlEJS5jZmcsc3lzLmNmZyIvPg0KICAgPEFQUExJQ0FUSU9OX1ZWWDYwMCBBUFBfRklMRV9QQVRIX1ZWWDYwMD0iJUFQUF9WRVJTSU9OX1ZWWC01MDAtNjAwJS5zaXAubGQiIENPTkZJR19GSUxFU19WVlg2MDA9InBob25lJUJXREVWSUNFSUQlLmNmZyxzeXMuY2ZnIi8+DQo8L0FQUExJQ0FUSU9OPg==\"\n}"}],"_postman_id":"f0a6e639-fe05-4fe9-b4c4-5fbea44ca905"},{"name":"System Service Packs Reports","event":[{"listen":"test","script":{"id":"74ca0afd-2a2c-412d-a549-4d541ff37253","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"fa1088ea-17af-4465-b426-41d883cc2186","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/service-packs","description":"<p>System Service Pack Reports</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","service-packs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa1088ea-17af-4465-b426-41d883cc2186"}],"id":"4db825f2-b80e-499e-9a6d-4bfb69fb1c23","_postman_id":"4db825f2-b80e-499e-9a6d-4bfb69fb1c23","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Terminating Alternate Trunk Identity","item":[{"name":"User Terminating Alternate Trunk Identity","id":"e9a43894-c6f2-4bb0-8418-54c4e475c606","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/terminating-alternate-trunk-identity?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","terminating-alternate-trunk-identity"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"13f6dfbd-d4e6-49e1-89ac-537fc6b910c2","name":"User Terminating Alternate Trunk Identity","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/terminating-alternate-trunk-identity?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","terminating-alternate-trunk-identity"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"terminatingTrunkIdentity\": \"+1234\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"e9a43894-c6f2-4bb0-8418-54c4e475c606"},{"name":"User Terminating Alternate Trunk Identity","id":"d93c5cfc-c7a6-487f-8ed4-7efa0f30cce1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"terminatingTrunkIdentity\": \"+1234\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/terminating-alternate-trunk-identity","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","terminating-alternate-trunk-identity"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2862acfd-5495-4f02-aed6-0df93b8b9030","name":"User Terminating Alternate Trunk Identity","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"terminatingTrunkIdentity\": \"+1234\",\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/terminating-alternate-trunk-identity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"terminatingTrunkIdentity\": \"+1234\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 8103\n}"}],"_postman_id":"d93c5cfc-c7a6-487f-8ed4-7efa0f30cce1"}],"id":"e16a3864-6dfa-40b3-bc33-178710a5e8c4","description":"<p>Terminating Alternate Trunk Identity provides an alternate identity for terminating calls to a trunk user.</p>\n","_postman_id":"e16a3864-6dfa-40b3-bc33-178710a5e8c4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Third Party Voice Mail Support","item":[{"name":"User Third Party Voice Mail Support","id":"21065423-2bc2-4d92-9ecb-ec04d77d85bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/third-party-voice-mail-support?userId=user-1@voicecci.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","third-party-voice-mail-support"],"host":["{{url}}"],"query":[{"key":"userId","value":"user-1@voicecci.net"}],"variable":[]}},"response":[{"id":"0ea639e8-47df-4039-bfb7-6cda1d77142d","name":"User Third Party Voice Mail Support","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/third-party-voice-mail-support?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","third-party-voice-mail-support"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"busyRedirectToVoiceMail\": true,\n    \"noAnswerRedirectToVoiceMail\": true,\n    \"serverSelection\": \"Group Mail Server\",\n    \"mailboxIdType\": \"User Or Group Phone Number\",\n    \"noAnswerNumberOfRings\": 3,\n    \"alwaysRedirectToVoiceMail\": false,\n    \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}"}],"_postman_id":"21065423-2bc2-4d92-9ecb-ec04d77d85bd"},{"name":"User Third Party Voice Mail Support","id":"2add6584-cee2-4662-896a-384d379882dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"busyRedirectToVoiceMail\": true,\n    \"noAnswerRedirectToVoiceMail\": true,\n    \"serverSelection\": \"Group Mail Server\",\n    \"mailboxIdType\": \"User Or Group Phone Number\",\n    \"noAnswerNumberOfRings\": 3,\n    \"alwaysRedirectToVoiceMail\": false,\n    \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/third-party-voice-mail-support","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","third-party-voice-mail-support"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0a413f3a-2715-4a4d-aa73-409db6f5c8fb","name":"User Third Party Voice Mail Support","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"busyRedirectToVoiceMail\": true,\n    \"noAnswerRedirectToVoiceMail\": true,\n    \"serverSelection\": \"Group Mail Server\",\n    \"mailboxIdType\": \"User Or Group Phone Number\",\n    \"noAnswerNumberOfRings\": 3,\n    \"alwaysRedirectToVoiceMail\": false,\n    \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n    \"userId\": \"9871515000@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/third-party-voice-mail-support"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"9871515000@odinapi.net\",\n    \"isActive\": true,\n    \"busyRedirectToVoiceMail\": true,\n    \"noAnswerRedirectToVoiceMail\": true,\n    \"serverSelection\": \"Group Mail Server\",\n    \"mailboxIdType\": \"User Or Group Phone Number\",\n    \"noAnswerNumberOfRings\": 3,\n    \"alwaysRedirectToVoiceMail\": false,\n    \"outOfPrimaryZoneRedirectToVoiceMail\": false\n}"}],"_postman_id":"2add6584-cee2-4662-896a-384d379882dc"}],"id":"af030c66-4a2c-42b2-929a-0d7cf3fd593d","_postman_id":"af030c66-4a2c-42b2-929a-0d7cf3fd593d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Third Party Emergency Calling","item":[{"name":"Group Third Party Voice Emergency Calling","id":"4ba6e6b7-a31b-4cab-adca-fcdf1adec452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/group/third-party-emergency-calling?serviceProviderId=ent.odin&groupId=grp.Odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","group","third-party-emergency-calling"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.Odin"}],"variable":[]}},"response":[],"_postman_id":"4ba6e6b7-a31b-4cab-adca-fcdf1adec452"},{"name":"Group Third Party Voice Emergency Calling","id":"9b1ef78f-adb1-4b67-986c-720da9dfb381","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"enableDeviceManagement\": true,\n    \"enableRouting\": true,\n    \"customerId\": \"abc123\",\n    \"secretKey\": \"asdfjklj\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/group/third-party-emergency-calling?serviceProviderId=ent.odin&groupId=grp.Odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","group","third-party-emergency-calling"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.Odin"}],"variable":[]}},"response":[],"_postman_id":"9b1ef78f-adb1-4b67-986c-720da9dfb381"},{"name":"Service Provider Third Party Voice Emergency Calling","id":"1332cfb6-dd0e-45f6-adc5-8c552c05a7a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-provider/third-party-emergency-calling?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-provider","third-party-emergency-calling"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[],"_postman_id":"1332cfb6-dd0e-45f6-adc5-8c552c05a7a8"},{"name":"Service Provider Third Party Voice Emergency Calling","id":"1f4fa353-889b-47a4-8894-a750be9fccdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"allowActivation\": false,\n    \"hasGroupEnabled\": false,\n    \"customerId\": \"abc123\",\n    \"secretKey\": \"asdfjklj\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/service-provider/third-party-emergency-calling?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-provider","third-party-emergency-calling"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[],"_postman_id":"1f4fa353-889b-47a4-8894-a750be9fccdb"},{"name":"System Third Party Voice Emergency Calling","id":"f3d75f17-9aa2-44b7-927b-0b00304490af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/third-party-emergency-calling","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","third-party-emergency-calling"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"18b00ec1-1f1d-425b-a725-5ddb107b13e7","name":"System Third Party Voice Emergency Calling","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/third-party-emergency-calling"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 14 Mar 2023 21:34:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"41"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"emergencyRouteTransport\": \"Unspecified\"\n}"}],"_postman_id":"f3d75f17-9aa2-44b7-927b-0b00304490af"},{"name":"System Third Party Voice Emergency Calling","id":"43b18ab1-ce33-4408-82b1-b49e52d269b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"primaryHELDServerURL\": \"https://localhost\",\n    \"secondaryHELDServerURL\": \"https://localhost:8080\",\n    \"emergencyRouteNetAddress\": \"https://localhost\",\n    \"emergencyRoutePort\": \"8088\",\n    \"emergencyRouteTransport\": \"TCP\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/system/third-party-emergency-calling","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","third-party-emergency-calling"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43b18ab1-ce33-4408-82b1-b49e52d269b6"}],"id":"230ecdf6-75a1-440e-9e86-a3155c8b79b3","_postman_id":"230ecdf6-75a1-440e-9e86-a3155c8b79b3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Time Zones","item":[{"name":"System Time Zones","id":"75cd8e67-d13c-4ad4-8c9d-473c28bf1155","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/time-zones","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","time-zones"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1af2d1d6-0afd-43f1-a8c6-58900c431d43","name":"System Time Zones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/time-zones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 02:48:48 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1038"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"America/St_Johns\",\n        \"displayName\": \"(GMT-02:30) (Canada) Newfoundland\"\n    },\n    {\n        \"key\": \"America/Halifax\",\n        \"displayName\": \"(GMT-03:00) (Canada) Atlantic Time\"\n    },\n    {\n        \"key\": \"America/Montreal\",\n        \"displayName\": \"(GMT-04:00) (Canada) Eastern Time\"\n    },\n    {\n        \"key\": \"America/New_York\",\n        \"displayName\": \"(GMT-04:00) (US) Eastern Time\"\n    },\n    {\n        \"key\": \"America/Indianapolis\",\n        \"displayName\": \"(GMT-04:00) US Indiana\"\n    },\n    {\n        \"key\": \"America/Winnipeg\",\n        \"displayName\": \"(GMT-05:00) (Canada) Central Time\"\n    },\n    {\n        \"key\": \"America/Chicago\",\n        \"displayName\": \"(GMT-05:00) (US) Central Time\"\n    },\n    {\n        \"key\": \"America/Edmonton\",\n        \"displayName\": \"(GMT-06:00) (Canada) Mountain Time\"\n    },\n    {\n        \"key\": \"America/Denver\",\n        \"displayName\": \"(GMT-06:00) (US) Mountain Time\"\n    },\n    {\n        \"key\": \"America/Vancouver\",\n        \"displayName\": \"(GMT-07:00) (Canada) Pacific Time\"\n    },\n    {\n        \"key\": \"America/Los_Angeles\",\n        \"displayName\": \"(GMT-07:00) (US) Pacific Time\"\n    },\n    {\n        \"key\": \"America/Phoenix\",\n        \"displayName\": \"(GMT-07:00) US Arizona\"\n    },\n    {\n        \"key\": \"America/Anchorage\",\n        \"displayName\": \"(GMT-08:00) US Alaska\"\n    },\n    {\n        \"key\": \"Pacific/Honolulu\",\n        \"displayName\": \"(GMT-10:00) US Hawaii\"\n    }\n]"}],"_postman_id":"75cd8e67-d13c-4ad4-8c9d-473c28bf1155"}],"id":"fd07529c-9d7a-4e38-b69e-32d24ae26854","_postman_id":"fd07529c-9d7a-4e38-b69e-32d24ae26854","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Trunk Groups","item":[{"name":"Group Trunk Groups Call Capacity","id":"39925e0c-4b1b-4fb3-b8f0-815b3ca4b6ec","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/trunk-groups/call-capacity?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups","call-capacity"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"476f847b-40c7-403e-98e1-02f4265c6736","name":"Group Trunk Groups Call Capacity","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/trunk-groups/call-capacity?groupId=odin.mock.sp1.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","trunk-groups","call-capacity"],"query":[{"key":"groupId","value":"odin.mock.sp1.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 23:08:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"178"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"maxActiveCalls\": 3,\n    \"maxAvailableActiveCalls\": 5,\n    \"burstingMaxActiveCalls\": 3,\n    \"burstingMaxAvailableActiveCalls\": 5,\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"groupId\": \"odin.mock.sp1.grp1\"\n}"}],"_postman_id":"39925e0c-4b1b-4fb3-b8f0-815b3ca4b6ec"},{"name":"Group Trunk Groups Call Capacity","id":"db692781-d520-4f88-89f8-2ec160652c55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"maxActiveCalls\": 4,\n    \"maxAvailableActiveCalls\": 5,\n    \"burstingMaxActiveCalls\": 3,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"numberOfBurstingBTLUs\": 3\n}"},"url":"{{url}}/api/v2/groups/trunk-groups/call-capacity","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups","call-capacity"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c0b810a1-fd08-499c-99a4-0c51917b64ca","name":"Group Trunk Groups Call Capacity","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"maxActiveCalls\":3,\n\t\"maxAvailableActiveCalls\":5,\n\t\"burstingMaxActiveCalls\":3,\n\t\"burstingMaxAvailableActiveCalls\":5,\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp1.grp1\"\n}"},"url":"{{url}}/api/v2/groups/trunk-groups/call-capacity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 23:08:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"db692781-d520-4f88-89f8-2ec160652c55"},{"name":"Group Trunk Groups","id":"3aeb8028-24be-4fb5-813c-98b0615a7aec","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/trunk-groups?serviceProviderId=ent.odin&includeEnterpriseTrunkGroups=true&onlyTrunkGroupsWithDevice=true&groupId=grp.odin.static.line.port","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups"],"host":["{{url}}"],"query":[{"disabled":true,"key":"groupId","value":"grp.odin.copy"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"includeEnterpriseTrunkGroups","value":"true"},{"key":"onlyTrunkGroupsWithDevice","value":"true"},{"key":"groupId","value":"grp.odin.static.line.port"}],"variable":[]}},"response":[{"id":"9591a717-26e9-4815-86b1-53bf5d5df397","name":"Group Trunk Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/trunk-groups?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","trunk-groups"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 21:46:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"165"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"odin.mock.trunk1\",\n        \"department\": null,\n        \"deviceName\": \"odin.mock.dev1\",\n        \"deviceLevel\": \"Group\",\n        \"groupId\": \"odin.mock.sp.grp1\",\n        \"serviceProviderId\": \"odin.mock.sp1\"\n    }\n]"}],"_postman_id":"3aeb8028-24be-4fb5-813c-98b0615a7aec"},{"name":"Group Trunk Groups Copy","id":"aeafd608-8288-4074-9991-0b27ebee62b0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/trunk-groups?groupId=grp.odin.copy&serviceProviderId=ent.odin&includeEnterpriseTrunkGroups=true&onlyTrunkGroupsWithDevice=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin.copy"},{"key":"serviceProviderId","value":"ent.odin"},{"key":"includeEnterpriseTrunkGroups","value":"true"},{"key":"onlyTrunkGroupsWithDevice","value":"true"}],"variable":[]}},"response":[{"id":"b15e92f4-08e8-4cdf-b931-24b20399b2fc","name":"Group Trunk Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/trunk-groups?groupId=odin.mock.sp.grp1&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","trunk-groups"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 21:46:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"165"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"odin.mock.trunk1\",\n        \"department\": null,\n        \"deviceName\": \"odin.mock.dev1\",\n        \"deviceLevel\": \"Group\",\n        \"groupId\": \"odin.mock.sp.grp1\",\n        \"serviceProviderId\": \"odin.mock.sp1\"\n    }\n]"}],"_postman_id":"aeafd608-8288-4074-9991-0b27ebee62b0"},{"name":"Group Trunk Group","id":"e1592c5c-7a0d-41ab-aa9e-cac3ca45b6a3","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"allowTerminationToDtgIdentity\":false,\n\t\"allowTerminationToTrunkGroupIdentity\":false,\n\t\"allowUnscreenedCalls\":false,\n\t\"allowUnscreenedEmergencyCalls\":false,\n\t\"capacityExceededTrapInitialCalls\":0,\n\t\"capacityExceededTrapOffsetCalls\":0,\n\t\"clidSourceForScreenedCallsPolicy\":\"Profile Name Profile Number\",\n\t\"continuousOptionsSendingIntervalSeconds\":30,\n\t\"enableBursting\":false,\n\t\"enableNetworkAddressIdentity\":false,\n\t\"failureOptionsSendingIntervalSeconds\":10,\n\t\"failureThresholdCounter\":1,\n\t\"includeDtgIdentity\":false,\n\t\"includeOtgIdentityForNetworkCalls\":false,\n\t\"includeTrunkGroupIdentity\":false,\n\t\"includeTrunkGroupIdentityForNetworkCalls\":false,\n\t\"invitationTimeout\":6,\n\t\"inviteFailureThresholdCounter\":1,\n\t\"inviteFailureThresholdWindowSeconds\":30,\n\t\"pilotUserCallOptimizationPolicy\":\"Optimize For User Services\",\n\t\"pilotUserCallingLineAssertedIdentityPolicy\":\"Unscreened Originating Calls\",\n\t\"pilotUserCallingLineIdentityForEmergencyCallsPolicy\":\"No Calls\",\n\t\"pilotUserCallingLineIdentityForExternalCallsPolicy\":\"No Calls\",\n\t\"pilotUserChargeNumberPolicy\":\"No Calls\",\n\t\"prefixEnabled\":false,\n\t\"requireAuthentication\":false,\n\t\"routeToPeeringDomain\":false,\n\t\"sendContinuousOptionsMessage\":false,\n\t\"statefulReroutingEnabled\":false,\n\t\"successThresholdCounter\":1,\n\t\"useSystemCLIDSourceForScreenedCallsPolicy\":true,\n\t\"useSystemCallingLineAssertedIdentityPolicy\":true,\n\t\"useSystemUserLookupPolicy\":true,\n\t\"userLookupPolicy\":\"Basic\",\n\t\"name\":\"odin.mock.trunk2\",\n\t\"maxActiveCalls\":2,\n\t\"maxIncomingCalls\":2,\n\t\"maxOutgoingCalls\":2,\n\t\"accessDevice\":{\n\t\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\t\"deviceName\":\"odin.mock.dev2\",\n\t\t\"deviceLevel\":\"Group\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\"\n}"},"url":"http://127.0.0.1:8080/api/v2/groups/trunk-groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","groups","trunk-groups"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"f2181c30-4c70-49e9-bafa-8734f3c3aee1","name":"Group Trunk Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"allowTerminationToDtgIdentity\":false,\n\t\"allowTerminationToTrunkGroupIdentity\":false,\n\t\"allowUnscreenedCalls\":false,\n\t\"allowUnscreenedEmergencyCalls\":false,\n\t\"capacityExceededTrapInitialCalls\":0,\n\t\"capacityExceededTrapOffsetCalls\":0,\n\t\"clidSourceForScreenedCallsPolicy\":\"Profile Name Profile Number\",\n\t\"continuousOptionsSendingIntervalSeconds\":30,\n\t\"enableBursting\":false,\n\t\"enableNetworkAddressIdentity\":false,\n\t\"failureOptionsSendingIntervalSeconds\":10,\n\t\"failureThresholdCounter\":1,\n\t\"includeDtgIdentity\":false,\n\t\"includeOtgIdentityForNetworkCalls\":false,\n\t\"includeTrunkGroupIdentity\":false,\n\t\"includeTrunkGroupIdentityForNetworkCalls\":false,\n\t\"invitationTimeout\":6,\n\t\"inviteFailureThresholdCounter\":1,\n\t\"inviteFailureThresholdWindowSeconds\":30,\n\t\"pilotUserCallOptimizationPolicy\":\"Optimize For User Services\",\n\t\"pilotUserCallingLineAssertedIdentityPolicy\":\"Unscreened Originating Calls\",\n\t\"pilotUserCallingLineIdentityForEmergencyCallsPolicy\":\"No Calls\",\n\t\"pilotUserCallingLineIdentityForExternalCallsPolicy\":\"No Calls\",\n\t\"pilotUserChargeNumberPolicy\":\"No Calls\",\n\t\"prefixEnabled\":false,\n\t\"requireAuthentication\":false,\n\t\"routeToPeeringDomain\":false,\n\t\"sendContinuousOptionsMessage\":false,\n\t\"statefulReroutingEnabled\":false,\n\t\"successThresholdCounter\":1,\n\t\"useSystemCLIDSourceForScreenedCallsPolicy\":true,\n\t\"useSystemCallingLineAssertedIdentityPolicy\":true,\n\t\"useSystemUserLookupPolicy\":true,\n\t\"userLookupPolicy\":\"Basic\",\n\t\"name\":\"odin.mock.trunk2\",\n\t\"maxActiveCalls\":2,\n\t\"maxIncomingCalls\":2,\n\t\"maxOutgoingCalls\":2,\n\t\"accessDevice\":{\n\t\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\t\"groupId\":\"odin.mock.sp.grp1\",\n\t\t\"deviceName\":\"odin.mock.dev2\",\n\t\t\"deviceLevel\":\"Group\"\n\t},\n\t\"serviceProviderId\":\"odin.mock.sp1\",\n\t\"groupId\":\"odin.mock.sp.grp1\"\n}"},"url":"http://127.0.0.1:8080/api/v2/groups/trunk-groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Wed, 10 Oct 2018 21:50:21 GMT"},{"key":"server","value":"Apache"},{"key":"vary","value":"Authorization"},{"key":"x-powered-by","value":"PHP/7.2.10"},{"key":"cache-control","value":"no-cache, private"},{"key":"content-length","value":"2"},{"key":"keep-alive","value":"timeout=5, max=100"},{"key":"connection","value":"Keep-Alive"},{"key":"content-type","value":"application/json"},{"key":"via","value":"1.1 dbook.local"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"e1592c5c-7a0d-41ab-aa9e-cac3ca45b6a3"},{"name":"Group Trunk Group","id":"cd93f0c7-ce04-447f-9e4e-e767dcd7c051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/trunk-groups?serviceProviderId=ent.odin&groupId=grp.odin&name=grp.odin.trunka","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"grp.odin.trunka"}],"variable":[]}},"response":[{"id":"fac551d3-3436-464a-a30c-6377b497c130","name":"Group Trunk Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/trunk-groups?serviceProviderId=ent.odin&groupId=grp.odin&name=9871515000","host":["{{url}}"],"path":["api","v2","groups","trunk-groups"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"9871515000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"test\"\n    },\n    \"accessDevice\": {\n        \"deviceLevel\": \"Group\",\n        \"deviceName\": \"Generic SIP IP-PBX Single Registration 1\"\n    },\n    \"maxActiveCalls\": 5,\n    \"maxIncomingCalls\": 5,\n    \"maxOutgoingCalls\": 5,\n    \"enableBursting\": false,\n    \"capacityExceededTrapInitialCalls\": 0,\n    \"capacityExceededTrapOffsetCalls\": 0,\n    \"invitationTimeout\": 6,\n    \"requireAuthentication\": false,\n    \"trunkGroupIdentity\": \"grp.odin.trunka@parkbenchsolutions.com\",\n    \"allowTerminationToTrunkGroupIdentity\": false,\n    \"allowTerminationToDtgIdentity\": false,\n    \"includeTrunkGroupIdentity\": false,\n    \"includeDtgIdentity\": false,\n    \"includeTrunkGroupIdentityForNetworkCalls\": false,\n    \"includeOtgIdentityForNetworkCalls\": false,\n    \"enableNetworkAddressIdentity\": false,\n    \"allowUnscreenedCalls\": false,\n    \"allowUnscreenedEmergencyCalls\": false,\n    \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n    \"pilotUserChargeNumberPolicy\": \"No Calls\",\n    \"callForwardingAlwaysAction\": \"Reroute\",\n    \"callForwardingAlwaysForwardAddress\": 123123123,\n    \"callForwardingAlwaysRerouteTrunkGroupKey\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin.audit\",\n        \"name\": \"trunk.odin.audit\"\n    },\n    \"routeToPeeringDomain\": false,\n    \"prefixEnabled\": false,\n    \"statefulReroutingEnabled\": false,\n    \"sendContinuousOptionsMessage\": false,\n    \"continuousOptionsSendingIntervalSeconds\": 30,\n    \"failureOptionsSendingIntervalSeconds\": 10,\n    \"failureThresholdCounter\": 1,\n    \"successThresholdCounter\": 1,\n    \"inviteFailureThresholdCounter\": 1,\n    \"inviteFailureThresholdWindowSeconds\": 30,\n    \"trunkGroupState\": \"Available\",\n    \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n    \"useSystemCallingLineAssertedIdentityPolicy\": true,\n    \"totalActiveIncomingCalls\": 0,\n    \"totalActiveOutgoingCalls\": 0,\n    \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n    \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n    \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n    \"userLookupPolicy\": \"Basic\",\n    \"useSystemUserLookupPolicy\": true,\n    \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"grp.odin.trunka\",\n    \"users\": []\n}"},{"id":"6902576c-60f3-4059-81bc-969b89043d3d","name":"Group Trunk Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/trunk-groups?serviceProviderId=ent.odin&groupId=grp.odin&name=9871515000","host":["{{url}}"],"path":["api","v2","groups","trunk-groups"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"9871515000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"pilotUserId\": 5136569852,\n    \"accessDevice\": {\n        \"deviceLevel\": \"Group\",\n        \"deviceName\": \"sipgeneric\"\n    },\n    \"maxActiveCalls\": 1,\n    \"maxIncomingCalls\": 1,\n    \"maxOutgoingCalls\": 1,\n    \"enableBursting\": false,\n    \"capacityExceededTrapInitialCalls\": 1,\n    \"capacityExceededTrapOffsetCalls\": 1,\n    \"invitationTimeout\": 6,\n    \"requireAuthentication\": false,\n    \"allowTerminationToTrunkGroupIdentity\": false,\n    \"allowTerminationToDtgIdentity\": false,\n    \"includeTrunkGroupIdentity\": false,\n    \"includeDtgIdentity\": false,\n    \"includeTrunkGroupIdentityForNetworkCalls\": false,\n    \"includeOtgIdentityForNetworkCalls\": false,\n    \"enableNetworkAddressIdentity\": false,\n    \"allowUnscreenedCalls\": false,\n    \"allowUnscreenedEmergencyCalls\": false,\n    \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n    \"pilotUserChargeNumberPolicy\": \"No Calls\",\n    \"routeToPeeringDomain\": false,\n    \"prefixEnabled\": false,\n    \"statefulReroutingEnabled\": false,\n    \"sendContinuousOptionsMessage\": false,\n    \"continuousOptionsSendingIntervalSeconds\": 30,\n    \"failureOptionsSendingIntervalSeconds\": 10,\n    \"failureThresholdCounter\": 1,\n    \"successThresholdCounter\": 1,\n    \"inviteFailureThresholdCounter\": 1,\n    \"inviteFailureThresholdWindowSeconds\": 30,\n    \"trunkGroupState\": \"Available\",\n    \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n    \"useSystemCallingLineAssertedIdentityPolicy\": true,\n    \"totalActiveIncomingCalls\": 0,\n    \"totalActiveOutgoingCalls\": 0,\n    \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n    \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n    \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n    \"userLookupPolicy\": \"Basic\",\n    \"useSystemUserLookupPolicy\": true,\n    \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n    \"implicitRegistrationSetSupportPolicy\": \"Disabled\",\n    \"useSystemImplicitRegistrationSetSupportPolicy\": true,\n    \"sipIdentityForPilotAndProxyTrunkModesPolicy\": \"User\",\n    \"useSystemSIPIdentityForPilotAndProxyTrunkModesPolicy\": true,\n    \"useSystemSupportConnectedIdentityPolicy\": true,\n    \"supportConnectedIdentityPolicy\": \"Disabled\",\n    \"useSystemOptionsMessageResponseStatusCodes\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"9871515000\",\n    \"users\": []\n}"}],"_postman_id":"cd93f0c7-ce04-447f-9e4e-e767dcd7c051"},{"name":"Group Trunk Group","id":"ce5e4391-c07a-41b2-a058-4ba1746b75aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"department1\"\n    },\n    \"accessDevice\": {\n        \"deviceLevel\": \"Group\",\n        \"deviceName\": \"sipgeneric\"\n    },\n    \"maxActiveCalls\": 1,\n    \"maxIncomingCalls\": 0,\n    \"maxOutgoingCalls\": 0,\n    \"enableBursting\": false,\n    \"capacityExceededTrapInitialCalls\": 0,\n    \"capacityExceededTrapOffsetCalls\": 0,\n    \"invitationTimeout\": 6,\n    \"requireAuthentication\": false,\n    \"trunkGroupIdentity\": \"grp.odin.trunka@odinapi.net\",\n    \"allowTerminationToTrunkGroupIdentity\": false,\n    \"allowTerminationToDtgIdentity\": false,\n    \"includeTrunkGroupIdentity\": false,\n    \"includeDtgIdentity\": false,\n    \"includeTrunkGroupIdentityForNetworkCalls\": false,\n    \"includeOtgIdentityForNetworkCalls\": false,\n    \"enableNetworkAddressIdentity\": false,\n    \"allowUnscreenedCalls\": false,\n    \"allowUnscreenedEmergencyCalls\": false,\n    \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n    \"pilotUserChargeNumberPolicy\": \"No Calls\",\n    \"callForwardingAlwaysAction\": \"Forward\",\n    \"callForwardingAlwaysForwardAddress\": 123123124,\n    \"callForwardingAlwaysRerouteTrunkGroupKey\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"NewScratchTG\"\n    },\n    \"routeToPeeringDomain\": false,\n    \"prefixEnabled\": false,\n    \"statefulReroutingEnabled\": false,\n    \"sendContinuousOptionsMessage\": false,\n    \"continuousOptionsSendingIntervalSeconds\": 30,\n    \"failureOptionsSendingIntervalSeconds\": 10,\n    \"failureThresholdCounter\": 1,\n    \"successThresholdCounter\": 1,\n    \"inviteFailureThresholdCounter\": 1,\n    \"inviteFailureThresholdWindowSeconds\": 30,\n    \"trunkGroupState\": \"Available\",\n    \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n    \"useSystemCallingLineAssertedIdentityPolicy\": true,\n    \"totalActiveIncomingCalls\": 0,\n    \"totalActiveOutgoingCalls\": 0,\n    \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n    \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n    \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n    \"userLookupPolicy\": \"Basic\",\n    \"useSystemUserLookupPolicy\": true,\n    \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isPilotUser\": true,\n    \"name\": \"9871515000\",\n    \"users\": []\n}"},"url":"{{url}}/api/v2/groups/trunk-groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6ed0cc4f-2fa0-4679-bd4b-47012f7ecc20","name":"Group Trunk Group","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"test\"\n    },\n    \"accessDevice\": {\n        \"deviceLevel\": \"Group\",\n        \"deviceName\": \"Generic SIP IP-PBX Single Registration 1\"\n    },\n    \"maxActiveCalls\": 5,\n    \"maxIncomingCalls\": 5,\n    \"maxOutgoingCalls\": 5,\n    \"enableBursting\": false,\n    \"capacityExceededTrapInitialCalls\": 0,\n    \"capacityExceededTrapOffsetCalls\": 0,\n    \"invitationTimeout\": 6,\n    \"requireAuthentication\": false,\n    \"trunkGroupIdentity\": \"grp.odin.trunka@parkbenchsolutions.com\",\n    \"allowTerminationToTrunkGroupIdentity\": false,\n    \"allowTerminationToDtgIdentity\": false,\n    \"includeTrunkGroupIdentity\": false,\n    \"includeDtgIdentity\": false,\n    \"includeTrunkGroupIdentityForNetworkCalls\": false,\n    \"includeOtgIdentityForNetworkCalls\": false,\n    \"enableNetworkAddressIdentity\": false,\n    \"allowUnscreenedCalls\": false,\n    \"allowUnscreenedEmergencyCalls\": false,\n    \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n    \"pilotUserChargeNumberPolicy\": \"No Calls\",\n    \"callForwardingAlwaysAction\": \"Forward\",\n    \"callForwardingAlwaysForwardAddress\": 123123124,\n    \"callForwardingAlwaysRerouteTrunkGroupKey\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin.audit\",\n        \"name\": \"trunk.odin.audit\"\n    },\n    \"routeToPeeringDomain\": false,\n    \"prefixEnabled\": false,\n    \"statefulReroutingEnabled\": false,\n    \"sendContinuousOptionsMessage\": false,\n    \"continuousOptionsSendingIntervalSeconds\": 30,\n    \"failureOptionsSendingIntervalSeconds\": 10,\n    \"failureThresholdCounter\": 1,\n    \"successThresholdCounter\": 1,\n    \"inviteFailureThresholdCounter\": 1,\n    \"inviteFailureThresholdWindowSeconds\": 30,\n    \"trunkGroupState\": \"Available\",\n    \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n    \"useSystemCallingLineAssertedIdentityPolicy\": true,\n    \"totalActiveIncomingCalls\": 0,\n    \"totalActiveOutgoingCalls\": 0,\n    \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n    \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n    \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n    \"userLookupPolicy\": \"Basic\",\n    \"useSystemUserLookupPolicy\": true,\n    \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"grp.odin.trunka\",\n    \"users\": []\n}"},"url":"{{url}}/api/v2/groups/trunk-groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"test\"\n    },\n    \"accessDevice\": {\n        \"deviceLevel\": \"Group\",\n        \"deviceName\": \"Generic SIP IP-PBX Single Registration 1\"\n    },\n    \"maxActiveCalls\": 5,\n    \"maxIncomingCalls\": 5,\n    \"maxOutgoingCalls\": 5,\n    \"enableBursting\": false,\n    \"capacityExceededTrapInitialCalls\": 0,\n    \"capacityExceededTrapOffsetCalls\": 0,\n    \"invitationTimeout\": 6,\n    \"requireAuthentication\": false,\n    \"trunkGroupIdentity\": \"grp.odin.trunka@parkbenchsolutions.com\",\n    \"allowTerminationToTrunkGroupIdentity\": false,\n    \"allowTerminationToDtgIdentity\": false,\n    \"includeTrunkGroupIdentity\": false,\n    \"includeDtgIdentity\": false,\n    \"includeTrunkGroupIdentityForNetworkCalls\": false,\n    \"includeOtgIdentityForNetworkCalls\": false,\n    \"enableNetworkAddressIdentity\": false,\n    \"allowUnscreenedCalls\": false,\n    \"allowUnscreenedEmergencyCalls\": false,\n    \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n    \"pilotUserChargeNumberPolicy\": \"No Calls\",\n    \"callForwardingAlwaysAction\": \"Forward\",\n    \"callForwardingAlwaysForwardAddress\": 123123124,\n    \"callForwardingAlwaysRerouteTrunkGroupKey\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin.audit\",\n        \"name\": \"trunk.odin.audit\"\n    },\n    \"routeToPeeringDomain\": false,\n    \"prefixEnabled\": false,\n    \"statefulReroutingEnabled\": false,\n    \"sendContinuousOptionsMessage\": false,\n    \"continuousOptionsSendingIntervalSeconds\": 30,\n    \"failureOptionsSendingIntervalSeconds\": 10,\n    \"failureThresholdCounter\": 1,\n    \"successThresholdCounter\": 1,\n    \"inviteFailureThresholdCounter\": 1,\n    \"inviteFailureThresholdWindowSeconds\": 30,\n    \"trunkGroupState\": \"Available\",\n    \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n    \"useSystemCallingLineAssertedIdentityPolicy\": true,\n    \"totalActiveIncomingCalls\": 0,\n    \"totalActiveOutgoingCalls\": 0,\n    \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n    \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n    \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n    \"userLookupPolicy\": \"Basic\",\n    \"useSystemUserLookupPolicy\": true,\n    \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"name\": \"grp.odin.trunka\",\n    \"users\": []\n}"}],"_postman_id":"ce5e4391-c07a-41b2-a058-4ba1746b75aa"},{"name":"Group Trunk Group","id":"1e643d29-2e47-46a9-8a7f-da219aa80900","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/trunk-groups?groupId=odin.mock.sp.grp1&name=odin.mock.trunk2&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"name","value":"odin.mock.trunk2"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[],"_postman_id":"1e643d29-2e47-46a9-8a7f-da219aa80900"},{"name":"Group Trunk Group Users","id":"b721e3c1-ad29-43f7-946a-baec196b6d16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/trunk-groups/users?serviceProviderId=ent.odin&groupId=grp.odin&name=9871515000","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"name","value":"9871515000"}],"variable":[]}},"response":[{"id":"bdb4df6b-af64-4368-8a43-531f6b27fba0","name":"Group Trunk Group Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/trunk-groups/users?groupId=odin.mock.sp.grp1&name=odin.mock.trunk2&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","trunk-groups","users"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"name","value":"odin.mock.trunk2"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 22:07:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"477"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"groupId\": \"odin.mock.sp.grp1\",\n    \"name\": \"odin.mock.trunk2\",\n    \"users\": [\n        {\n            \"userId\": \"trunk2-user-1\",\n            \"lastName\": \"asdf\",\n            \"firstName\": \"asdf\",\n            \"department\": null,\n            \"phoneNumber\": null,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"trunk2-user-2\",\n            \"lastName\": \"asdf\",\n            \"firstName\": \"asdf\",\n            \"department\": null,\n            \"phoneNumber\": null,\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"extension\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"b721e3c1-ad29-43f7-946a-baec196b6d16"},{"name":"Group Trunk Group Available Hosted Users","id":"59f77d24-16cc-48dc-a2ee-f31ee20c576d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/trunk-groups/users/hosted?groupId=odin.mock.sp.grp1&name=odin.mock.trunk2&serviceProviderId=odin.mock.sp1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","trunk-groups","users","hosted"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"name","value":"odin.mock.trunk2"},{"key":"serviceProviderId","value":"odin.mock.sp1"}],"variable":[]}},"response":[{"id":"3f08dae7-7353-4ebd-846c-d2d37331a5c7","name":"Group Trunk Group Available Hosted Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/trunk-groups/users/hosted?groupId=odin.mock.sp.grp1&name=odin.mock.trunk2&serviceProviderId=odin.mock.sp1","host":["{{url}}"],"path":["api","v2","groups","trunk-groups","users","hosted"],"query":[{"key":"groupId","value":"odin.mock.sp.grp1"},{"key":"name","value":"odin.mock.trunk2"},{"key":"serviceProviderId","value":"odin.mock.sp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Oct 2018 22:06:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"580"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"odin.mock.sp1\",\n    \"groupId\": \"odin.mock.sp.grp1\",\n    \"name\": \"odin.mock.trunk2\",\n    \"users\": [\n        {\n            \"userId\": \"odin.mock.sp.user1\",\n            \"lastName\": \"odin.mock.sp.user1\",\n            \"firstName\": \"odin.mock.sp.user1\",\n            \"hiraganaLastName\": null,\n            \"hiraganaFirstName\": null,\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        },\n        {\n            \"userId\": \"odin.mock.sp1.user2\",\n            \"lastName\": \"odin.mock.sp1.user2\",\n            \"firstName\": \"odin.mock.sp1.user2\",\n            \"hiraganaLastName\": \"odin.mock.sp1.user2\",\n            \"hiraganaFirstName\": \"odin.mock.sp1.user2\",\n            \"phoneNumber\": null,\n            \"extension\": null,\n            \"department\": null,\n            \"emailAddress\": null\n        }\n    ]\n}"}],"_postman_id":"59f77d24-16cc-48dc-a2ee-f31ee20c576d"},{"name":"Service Providers Trunk Group Call Capacity","id":"7b1d3b96-bda6-41a3-be7f-5028d8fc05c2","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","trunk-groups","call-capacity"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"1cb784f9-41f6-4996-bfed-ef096401c394","name":"Service Providers Trunk Group Call Capacity","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity?serviceProviderId=odin.mock.clone.ent1","host":["{{url}}"],"path":["api","v2","service-providers","trunk-groups","call-capacity"],"query":[{"key":"serviceProviderId","value":"odin.mock.clone.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"92","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 17:56:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"serviceProviderId\":\"odin.mock.clone.ent1\",\"maxActiveCalls\":10,\"burstingMaxActiveCalls\":10}"}],"_postman_id":"7b1d3b96-bda6-41a3-be7f-5028d8fc05c2"},{"name":"Service Providers Trunk Group Call Capacity","id":"022a6e0b-99bc-4282-959f-bf0415b3e1d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"maxActiveCalls\": 30,\n\t\"burstingMaxActiveCalls\": -1,\n\t\"serviceProviderId\": \"ent.odin\"\n}"},"url":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","trunk-groups","call-capacity"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8873fc0e-51bd-4e30-a148-5cf1e1a1708d","name":"Service Providers Trunk Group Call Capacity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"maxActiveCalls\": 30,\n\t\"burstingMaxActiveCalls\": -1,\n\t\"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 17:57:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"022a6e0b-99bc-4282-959f-bf0415b3e1d8"},{"name":"Service Providers Trunk Call Capacity Report","id":"beff15ca-0596-4ac6-b279-1782778035f1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity/reports?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","trunk-groups","call-capacity","reports"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"600d9f63-2d0e-4811-bee7-05c13a7d06bc","name":"Service Providers Trunk Call Capacity Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity/reports?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","trunk-groups","call-capacity","reports"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"serviceProviderTrunkCapacity\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"maxActiveCalls\": 40,\n        \"burstingMaxActiveCalls\": -1\n    },\n    \"groups\": [\n        {\n            \"groupId\": \"connections.demo\",\n            \"groupName\": \"connections.demo\",\n            \"userLimit\": 200,\n            \"service\": {\n                \"serviceName\": \"Trunk Group\",\n                \"authorized\": true,\n                \"assigned\": true,\n                \"limited\": \"Limited\",\n                \"quantity\": 1,\n                \"usage\": 0,\n                \"licensed\": true,\n                \"allowed\": -1,\n                \"alias\": \"Trunk Group\"\n            },\n            \"groupTrunkCapacity\": {\n                \"maxActiveCalls\": 10,\n                \"maxAvailableActiveCalls\": 40,\n                \"burstingMaxActiveCalls\": 0,\n                \"burstingMaxAvailableActiveCalls\": -1,\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"connections.demo\"\n            }\n        },\n        {\n            \"groupId\": \"group.odin\",\n            \"groupName\": \"odin Group\",\n            \"userLimit\": 100,\n            \"service\": {\n                \"serviceName\": \"Trunk Group\",\n                \"authorized\": true,\n                \"assigned\": true,\n                \"limited\": \"Unlimited\",\n                \"quantity\": -1,\n                \"usage\": 4,\n                \"licensed\": true,\n                \"allowed\": -1,\n                \"alias\": \"Trunk Group\"\n            },\n            \"groupTrunkCapacity\": {\n                \"maxActiveCalls\": 15,\n                \"maxAvailableActiveCalls\": 40,\n                \"burstingMaxActiveCalls\": 0,\n                \"burstingMaxAvailableActiveCalls\": -1,\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"group.odin\"\n            }\n        },\n        {\n            \"groupId\": \"phonism.test\",\n            \"groupName\": \"Phonism Test\",\n            \"userLimit\": 25,\n            \"service\": {\n                \"serviceName\": \"Trunk Group\",\n                \"authorized\": true,\n                \"assigned\": true,\n                \"limited\": \"Unlimited\",\n                \"quantity\": -1,\n                \"usage\": 0,\n                \"licensed\": true,\n                \"allowed\": -1,\n                \"alias\": \"Trunk Group\"\n            },\n            \"groupTrunkCapacity\": {\n                \"maxActiveCalls\": 40,\n                \"maxAvailableActiveCalls\": 40,\n                \"burstingMaxActiveCalls\": 0,\n                \"burstingMaxAvailableActiveCalls\": -1,\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"phonism.test\"\n            }\n        }\n    ]\n}"}],"_postman_id":"beff15ca-0596-4ac6-b279-1782778035f1"},{"name":"Service Providers Trunk Call Capacity Report Show","id":"4529141f-9745-4f3a-8743-25282f77c69a","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity/reports?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","trunk-groups","call-capacity","reports"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"a9f8503b-966f-4e1b-a5f8-e45e67c80eac","name":"Service Providers Trunk Call Capacity Report","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/api/v2/service-providers/trunk-groups/call-capacity/reports?serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","service-providers","trunk-groups","call-capacity","reports"],"query":[{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"serviceProviderTrunkCapacity\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"maxActiveCalls\": 40,\n        \"burstingMaxActiveCalls\": -1\n    },\n    \"groups\": [\n        {\n            \"groupId\": \"connections.demo\",\n            \"groupName\": \"connections.demo\",\n            \"userLimit\": 200,\n            \"service\": {\n                \"serviceName\": \"Trunk Group\",\n                \"authorized\": true,\n                \"assigned\": true,\n                \"limited\": \"Limited\",\n                \"quantity\": 1,\n                \"usage\": 0,\n                \"licensed\": true,\n                \"allowed\": -1,\n                \"alias\": \"Trunk Group\"\n            },\n            \"groupTrunkCapacity\": {\n                \"maxActiveCalls\": 10,\n                \"maxAvailableActiveCalls\": 40,\n                \"burstingMaxActiveCalls\": 0,\n                \"burstingMaxAvailableActiveCalls\": -1,\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"connections.demo\"\n            }\n        },\n        {\n            \"groupId\": \"group.odin\",\n            \"groupName\": \"odin Group\",\n            \"userLimit\": 100,\n            \"service\": {\n                \"serviceName\": \"Trunk Group\",\n                \"authorized\": true,\n                \"assigned\": true,\n                \"limited\": \"Unlimited\",\n                \"quantity\": -1,\n                \"usage\": 4,\n                \"licensed\": true,\n                \"allowed\": -1,\n                \"alias\": \"Trunk Group\"\n            },\n            \"groupTrunkCapacity\": {\n                \"maxActiveCalls\": 15,\n                \"maxAvailableActiveCalls\": 40,\n                \"burstingMaxActiveCalls\": 0,\n                \"burstingMaxAvailableActiveCalls\": -1,\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"group.odin\"\n            }\n        },\n        {\n            \"groupId\": \"phonism.test\",\n            \"groupName\": \"Phonism Test\",\n            \"userLimit\": 25,\n            \"service\": {\n                \"serviceName\": \"Trunk Group\",\n                \"authorized\": true,\n                \"assigned\": true,\n                \"limited\": \"Unlimited\",\n                \"quantity\": -1,\n                \"usage\": 0,\n                \"licensed\": true,\n                \"allowed\": -1,\n                \"alias\": \"Trunk Group\"\n            },\n            \"groupTrunkCapacity\": {\n                \"maxActiveCalls\": 40,\n                \"maxAvailableActiveCalls\": 40,\n                \"burstingMaxActiveCalls\": 0,\n                \"burstingMaxAvailableActiveCalls\": -1,\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"phonism.test\"\n            }\n        }\n    ]\n}"}],"_postman_id":"4529141f-9745-4f3a-8743-25282f77c69a"}],"id":"e9cb12f4-febc-43a4-9e7c-9aba18297c4d","_postman_id":"e9cb12f4-febc-43a4-9e7c-9aba18297c4d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Two Stage Dialing","item":[{"name":"User Two Stage Dialing","id":"12aead5f-7d3b-4411-aba2-a5747f4c0b32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/two-stage-dialing?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","two-stage-dialing"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"55fc17cb-2dda-469f-83ab-7b884d2de2f4","name":"User Two Stage Dialing","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/two-stage-dialing?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","two-stage-dialing"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"allowActivationWithUserAddresses\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"12aead5f-7d3b-4411-aba2-a5747f4c0b32"},{"name":"User Two Stage Dialing","id":"4cbece5b-2dc9-4da7-af92-d96d7fced287","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"isActive\": true,\n    \"allowActivationWithUserAddresses\": true\n}"},"url":"{{url}}/api/v2/users/two-stage-dialing","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","two-stage-dialing"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7c7189b9-ed51-4968-8d06-403cbb86f164","name":"User Two Stage Dialing","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"isActive\": true,\n    \"allowActivationWithUserAddresses\": true\n}"},"url":"{{url}}/api/v2/users/two-stage-dialing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"allowActivationWithUserAddresses\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7862\n}"}],"_postman_id":"4cbece5b-2dc9-4da7-af92-d96d7fced287"}],"id":"30043da5-cab6-48bb-bc8c-5752fec0d459","_postman_id":"30043da5-cab6-48bb-bc8c-5752fec0d459","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Users","item":[{"name":"Users Bulk","id":"b7d558fa-a29e-4106-8741-cef36d54fefa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"19871514001@odinapi.net\"},\n\t\t{\"userId\":\"19871514002@odinapi.net\"}\n\t],\n\t\"data\":{\n\t\t\"timeZone\": \"America/New_York\"\n\t}\n}"},"url":"{{url}}/api/v2/users/bulk","description":"<p>Update Users in Bulk</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"29a0d651-4a49-4595-8cb5-d7fe73d25259","name":"Users Bulk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"users\":[\n\t\t{\"userId\":\"19871514001@odinapi.net\"},\n\t\t{\"userId\":\"19871514002@odinapi.net\"}\n\t],\n\t\"data\":{\n\t\t\"timeZone\": \"America/New_York\"\n\t}\n}"},"url":"{{url}}/api/v2/users/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"userId\": \"19871514001@odinapi.net\"\n        },\n        {\n            \"userId\": \"19871514002@odinapi.net\"\n        }\n    ],\n    \"data\": {\n        \"timeZone\": \"America/New_York\"\n    }\n}"}],"_postman_id":"b7d558fa-a29e-4106-8741-cef36d54fefa"},{"name":"Users","id":"d2cff058-1913-4ec7-aa7b-8dcb48829d4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users?searchGetListInSystemRequest=true","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"},{"disabled":true,"key":"inTrunkGroup","value":"true"},{"key":"searchGetListInSystemRequest","value":"true"}],"variable":[]}},"response":[{"id":"ff287dd7-476a-4bce-98f8-381d8100a645","name":"Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users?serviceProviderId=ent.odin&groupId=grp.odin&extended=true","host":["{{url}}"],"path":["api","v2","users"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"extended","value":"true","description":"optional"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549857_s@odinapi.net\",\n        \"lastName\": 1,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 1,\n        \"callingLineIdFirstName\": \"Marc\",\n        \"hiraganaLastName\": 1,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549857\",\n        \"extension\": \"9857\",\n        \"callingLineIdPhoneNumber\": \"5136549857\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549857_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549857\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549857_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"9871515000@odinapi.net\",\n        \"lastName\": \"Reverman\",\n        \"firstName\": \"Mark\",\n        \"callingLineIdLastName\": \"Reverman\",\n        \"callingLineIdFirstName\": \"Mark\",\n        \"hiraganaLastName\": \"Reverman\",\n        \"hiraganaFirstName\": \"Mark\",\n        \"phoneNumber\": \"9871515000\",\n        \"extension\": \"5000\",\n        \"callingLineIdPhoneNumber\": \"9871515000\",\n        \"department\": {\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"name\": \"department1\"\n        },\n        \"departmentFullPath\": \"department1 (grp.odin)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"9871515000@odinapi.net\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"9871515000\",\n                \"linePort\": \"9871515000_trunk@odinapi.net\",\n                \"staticRegistrationCapable\": \"true\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"false\",\n                \"contacts\": []\n            }\n        },\n        \"title\": \"Title Here\",\n        \"pagerPhoneNumber\": 9871515000,\n        \"mobilePhoneNumber\": 9871515000,\n        \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n        \"addressLocation\": \"1234 Main Street\",\n        \"address\": {\n            \"addressLine1\": \"Bldg 2\",\n            \"addressLine2\": \"Suite 2\",\n            \"city\": \"Cincinnati\",\n            \"stateOrProvince\": \"Ohio\",\n            \"zipOrPostalCode\": \"45204\",\n            \"country\": \"US\"\n        },\n        \"countryCode\": \"1\",\n        \"alternateUserId\": [\n            {\n                \"alternateUserId\": \"mreverman@gmail.com\",\n                \"description\": \"mreverman@gmail.com\"\n            },\n            {\n                \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n                \"description\": \"mreverman@parkbenchsolutions.com\"\n            }\n        ],\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"9871515001@odinapi.net\",\n        \"lastName\": \"Latsa\",\n        \"firstName\": \"Scott\",\n        \"callingLineIdLastName\": \"Latsa\",\n        \"callingLineIdFirstName\": \"Scott\",\n        \"hiraganaLastName\": \"Latsa\",\n        \"hiraganaFirstName\": \"Scott\",\n        \"phoneNumber\": \"9871515001\",\n        \"extension\": \"5001\",\n        \"callingLineIdPhoneNumber\": \"+19871514002\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"9871515001@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Generic SIP Phone\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"unlimited\": \"true\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"transportProtocol\": \"Unspecified\",\n                \"useCustomUserNamePassword\": false,\n                \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n                \"deviceName\": \"generic_sip\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9871515001@odinapi.net\",\n            \"staticRegistrationCapable\": \"true\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"emailAddress\": \"slatsa@parkbenchsolutions.com\",\n        \"countryCode\": \"1\",\n        \"alternateUserId\": {\n            \"alternateUserId\": \"scott.latsa@gmail.com\",\n            \"description\": \"Test gamil.com for single sign on\"\n        },\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549858_s@odinapi.net\",\n        \"lastName\": 2,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 2,\n        \"callingLineIdFirstName\": \"Andrew\",\n        \"hiraganaLastName\": 2,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549858\",\n        \"extension\": \"9858\",\n        \"callingLineIdPhoneNumber\": \"5136549858\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549858_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549858\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549858_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549859_s@odinapi.net\",\n        \"lastName\": 3,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 3,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 3,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549859\",\n        \"extension\": \"9859\",\n        \"callingLineIdPhoneNumber\": \"5136549859\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549859_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549859\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549859_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5131110000@odinapi.net\",\n        \"lastName\": \"lastUserName\",\n        \"firstName\": \"firstUserName\",\n        \"callingLineIdLastName\": \"lastUserName\",\n        \"callingLineIdFirstName\": \"firstUserName\",\n        \"hiraganaLastName\": \"lastUserName\",\n        \"hiraganaFirstName\": \"firstUserName\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5131110000@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"testncos\",\n        \"allowVideo\": true,\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569842_s@odinapi.net\",\n        \"lastName\": 4,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 4,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 4,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136569842\",\n        \"extension\": \"9842\",\n        \"callingLineIdPhoneNumber\": \"5136569842\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569842_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136569842\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136569842_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"user.mtribbe@odinapi.net\",\n        \"lastName\": \"Tribbe User\",\n        \"firstName\": \"Marc\",\n        \"callingLineIdLastName\": \"Tribbe User\",\n        \"callingLineIdFirstName\": \"Marc\",\n        \"hiraganaLastName\": \"Tribbe User\",\n        \"hiraganaFirstName\": \"Marc\",\n        \"extension\": \"5005\",\n        \"callingLineIdPhoneNumber\": \"+19871515005\",\n        \"language\": \"English\",\n        \"timeZone\": \"UTC\",\n        \"timeZoneDisplayName\": \"(GMT) UTC\",\n        \"defaultAlias\": \"user.mtribbe@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"phoneNumber\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569843_s@odinapi.net\",\n        \"lastName\": 5,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 5,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 5,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136569843\",\n        \"extension\": \"9843\",\n        \"callingLineIdPhoneNumber\": \"5136569843\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569843_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136569843\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136569843_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031000@odinapi.net\",\n        \"lastName\": \"1000_1\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1000_1\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1000_1\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031000\",\n        \"extension\": \"1000\",\n        \"callingLineIdPhoneNumber\": \"5134031000\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031000@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1000_1_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031000_1@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"andrew.torbeck@odinapi.net\",\n        \"lastName\": \"Torbeck\",\n        \"firstName\": \"Andrew\",\n        \"callingLineIdLastName\": \"Torbeck\",\n        \"callingLineIdFirstName\": \"Andrew\",\n        \"hiraganaLastName\": \"Torbeck\",\n        \"hiraganaFirstName\": \"Andrew\",\n        \"phoneNumber\": \"9871515003\",\n        \"extension\": \"5003\",\n        \"callingLineIdPhoneNumber\": \"+19871515003\",\n        \"language\": \"English\",\n        \"timeZone\": \"UTC\",\n        \"timeZoneDisplayName\": \"(GMT) UTC\",\n        \"defaultAlias\": \"andrew.torbeck@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"Poly550AT\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"ator5003@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031001@odinapi.net\",\n        \"lastName\": \"1001_2\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1001_2\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1001_2\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031001\",\n        \"extension\": \"1001\",\n        \"callingLineIdPhoneNumber\": \"5134031001\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031001@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1001_9_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031001_2@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031002@odinapi.net\",\n        \"lastName\": \"1002_3\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1002_3\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1002_3\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031002\",\n        \"extension\": \"1002\",\n        \"callingLineIdPhoneNumber\": \"5134031002\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031002@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1002_3_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031002_3@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031003@odinapi.net\",\n        \"lastName\": \"1003_4\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1003_4\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1003_4\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031003\",\n        \"extension\": \"1003\",\n        \"callingLineIdPhoneNumber\": \"5134031003\",\n        \"department\": {\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"name\": \"department1\"\n        },\n        \"departmentFullPath\": \"department1 (grp.odin)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031003@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1003_4_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031003_4@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549856@odinapi.net\",\n        \"lastName\": 1,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 1,\n        \"callingLineIdFirstName\": \"Steve\",\n        \"hiraganaLastName\": 1,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549856\",\n        \"extension\": \"9856\",\n        \"callingLineIdPhoneNumber\": \"5136549856\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549856@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549856\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549856@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549851@odinapi.net\",\n        \"lastName\": 2,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 2,\n        \"callingLineIdFirstName\": \"Marc\",\n        \"hiraganaLastName\": 2,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549851\",\n        \"extension\": \"9851\",\n        \"callingLineIdPhoneNumber\": \"5136549851\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549851@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549851\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549851@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569844@odinapi.net\",\n        \"lastName\": 3,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 3,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 3,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136569844\",\n        \"extension\": \"9844\",\n        \"callingLineIdPhoneNumber\": \"5136569844\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569844@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136569844\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136569844@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569852@odinapi.net\",\n        \"lastName\": 5136569852,\n        \"firstName\": 5136569852,\n        \"callingLineIdLastName\": 5136569852,\n        \"callingLineIdFirstName\": 5136569852,\n        \"hiraganaLastName\": 5136569852,\n        \"hiraganaFirstName\": 5136569852,\n        \"phoneNumber\": \"5136569852\",\n        \"extension\": \"9852\",\n        \"callingLineIdPhoneNumber\": \"5136569852\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569852@odinapi.net\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"9871515000\",\n                \"linePort\": \"5136569852@odinapi.net\",\n                \"staticRegistrationCapable\": \"true\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"true\",\n                \"contacts\": []\n            },\n            \"enterpriseTrunkName\": \"ent.odin.trunk1.a\"\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569851@odinapi.net\",\n        \"lastName\": 5136569851,\n        \"firstName\": 5136569851,\n        \"callingLineIdLastName\": 5136569851,\n        \"callingLineIdFirstName\": 5136569851,\n        \"hiraganaLastName\": 5136569851,\n        \"hiraganaFirstName\": 5136569851,\n        \"phoneNumber\": \"5136569851\",\n        \"extension\": \"4545\",\n        \"callingLineIdPhoneNumber\": \"5136569851\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569851@odinapi.net\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"9871515000\",\n                \"linePort\": \"5136569851@odinapi.net\",\n                \"staticRegistrationCapable\": \"true\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"false\",\n                \"contacts\": []\n            },\n            \"enterpriseTrunkName\": \"ent.odin.trunk1.a\"\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"User.Mar_Reverman@odinapi.net\",\n        \"lastName\": \"reverman\",\n        \"firstName\": \"mark\",\n        \"callingLineIdLastName\": \"reverman\",\n        \"callingLineIdFirstName\": \"mark\",\n        \"hiraganaLastName\": \"reverman\",\n        \"hiraganaFirstName\": \"mark\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"User.Mar_Reverman@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"testncos\",\n        \"allowVideo\": true,\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"9871515003@odinapi.net\",\n        \"lastName\": \"Mayfield\",\n        \"firstName\": \"Zak\",\n        \"callingLineIdLastName\": \"Mayfield\",\n        \"callingLineIdFirstName\": \"Zak\",\n        \"hiraganaLastName\": \"Mayfield\",\n        \"hiraganaFirstName\": \"Zak\",\n        \"language\": \"English\",\n        \"timeZone\": \"UTC\",\n        \"timeZoneDisplayName\": \"(GMT) UTC\",\n        \"defaultAlias\": \"9871515003@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    }\n]"}],"_postman_id":"d2cff058-1913-4ec7-aa7b-8dcb48829d4d"},{"name":"User Summary v6.2","id":"eddb5a8e-d57f-4145-bba6-2391a1beb046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users?inTrunkGroup=true","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"},{"key":"inTrunkGroup","value":"true"}],"variable":[]}},"response":[{"id":"39859eb3-31d8-450b-bb3c-df49dd55b918","name":"Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users?serviceProviderId=ent.odin&groupId=grp.odin&extended=true","host":["{{url}}"],"path":["api","v2","users"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"},{"key":"extended","value":"true","description":"optional"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549857_s@odinapi.net\",\n        \"lastName\": 1,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 1,\n        \"callingLineIdFirstName\": \"Marc\",\n        \"hiraganaLastName\": 1,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549857\",\n        \"extension\": \"9857\",\n        \"callingLineIdPhoneNumber\": \"5136549857\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549857_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549857\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549857_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"9871515000@odinapi.net\",\n        \"lastName\": \"Reverman\",\n        \"firstName\": \"Mark\",\n        \"callingLineIdLastName\": \"Reverman\",\n        \"callingLineIdFirstName\": \"Mark\",\n        \"hiraganaLastName\": \"Reverman\",\n        \"hiraganaFirstName\": \"Mark\",\n        \"phoneNumber\": \"9871515000\",\n        \"extension\": \"5000\",\n        \"callingLineIdPhoneNumber\": \"9871515000\",\n        \"department\": {\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"name\": \"department1\"\n        },\n        \"departmentFullPath\": \"department1 (grp.odin)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"9871515000@odinapi.net\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"9871515000\",\n                \"linePort\": \"9871515000_trunk@odinapi.net\",\n                \"staticRegistrationCapable\": \"true\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"false\",\n                \"contacts\": []\n            }\n        },\n        \"title\": \"Title Here\",\n        \"pagerPhoneNumber\": 9871515000,\n        \"mobilePhoneNumber\": 9871515000,\n        \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n        \"addressLocation\": \"1234 Main Street\",\n        \"address\": {\n            \"addressLine1\": \"Bldg 2\",\n            \"addressLine2\": \"Suite 2\",\n            \"city\": \"Cincinnati\",\n            \"stateOrProvince\": \"Ohio\",\n            \"zipOrPostalCode\": \"45204\",\n            \"country\": \"US\"\n        },\n        \"countryCode\": \"1\",\n        \"alternateUserId\": [\n            {\n                \"alternateUserId\": \"mreverman@gmail.com\",\n                \"description\": \"mreverman@gmail.com\"\n            },\n            {\n                \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n                \"description\": \"mreverman@parkbenchsolutions.com\"\n            }\n        ],\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"9871515001@odinapi.net\",\n        \"lastName\": \"Latsa\",\n        \"firstName\": \"Scott\",\n        \"callingLineIdLastName\": \"Latsa\",\n        \"callingLineIdFirstName\": \"Scott\",\n        \"hiraganaLastName\": \"Latsa\",\n        \"hiraganaFirstName\": \"Scott\",\n        \"phoneNumber\": \"9871515001\",\n        \"extension\": \"5001\",\n        \"callingLineIdPhoneNumber\": \"+19871514002\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"9871515001@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Generic SIP Phone\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"unlimited\": \"true\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"transportProtocol\": \"Unspecified\",\n                \"useCustomUserNamePassword\": false,\n                \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n                \"deviceName\": \"generic_sip\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9871515001@odinapi.net\",\n            \"staticRegistrationCapable\": \"true\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"emailAddress\": \"slatsa@parkbenchsolutions.com\",\n        \"countryCode\": \"1\",\n        \"alternateUserId\": {\n            \"alternateUserId\": \"scott.latsa@gmail.com\",\n            \"description\": \"Test gamil.com for single sign on\"\n        },\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549858_s@odinapi.net\",\n        \"lastName\": 2,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 2,\n        \"callingLineIdFirstName\": \"Andrew\",\n        \"hiraganaLastName\": 2,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549858\",\n        \"extension\": \"9858\",\n        \"callingLineIdPhoneNumber\": \"5136549858\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549858_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549858\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549858_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549859_s@odinapi.net\",\n        \"lastName\": 3,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 3,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 3,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549859\",\n        \"extension\": \"9859\",\n        \"callingLineIdPhoneNumber\": \"5136549859\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549859_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549859\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549859_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5131110000@odinapi.net\",\n        \"lastName\": \"lastUserName\",\n        \"firstName\": \"firstUserName\",\n        \"callingLineIdLastName\": \"lastUserName\",\n        \"callingLineIdFirstName\": \"firstUserName\",\n        \"hiraganaLastName\": \"lastUserName\",\n        \"hiraganaFirstName\": \"firstUserName\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5131110000@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"testncos\",\n        \"allowVideo\": true,\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569842_s@odinapi.net\",\n        \"lastName\": 4,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 4,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 4,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136569842\",\n        \"extension\": \"9842\",\n        \"callingLineIdPhoneNumber\": \"5136569842\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569842_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136569842\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136569842_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"user.mtribbe@odinapi.net\",\n        \"lastName\": \"Tribbe User\",\n        \"firstName\": \"Marc\",\n        \"callingLineIdLastName\": \"Tribbe User\",\n        \"callingLineIdFirstName\": \"Marc\",\n        \"hiraganaLastName\": \"Tribbe User\",\n        \"hiraganaFirstName\": \"Marc\",\n        \"extension\": \"5005\",\n        \"callingLineIdPhoneNumber\": \"+19871515005\",\n        \"language\": \"English\",\n        \"timeZone\": \"UTC\",\n        \"timeZoneDisplayName\": \"(GMT) UTC\",\n        \"defaultAlias\": \"user.mtribbe@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"phoneNumber\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569843_s@odinapi.net\",\n        \"lastName\": 5,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 5,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 5,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136569843\",\n        \"extension\": \"9843\",\n        \"callingLineIdPhoneNumber\": \"5136569843\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569843_s@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 400 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136569843\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136569843_s@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031000@odinapi.net\",\n        \"lastName\": \"1000_1\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1000_1\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1000_1\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031000\",\n        \"extension\": \"1000\",\n        \"callingLineIdPhoneNumber\": \"5134031000\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031000@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1000_1_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031000_1@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"andrew.torbeck@odinapi.net\",\n        \"lastName\": \"Torbeck\",\n        \"firstName\": \"Andrew\",\n        \"callingLineIdLastName\": \"Torbeck\",\n        \"callingLineIdFirstName\": \"Andrew\",\n        \"hiraganaLastName\": \"Torbeck\",\n        \"hiraganaFirstName\": \"Andrew\",\n        \"phoneNumber\": \"9871515003\",\n        \"extension\": \"5003\",\n        \"callingLineIdPhoneNumber\": \"+19871515003\",\n        \"language\": \"English\",\n        \"timeZone\": \"UTC\",\n        \"timeZoneDisplayName\": \"(GMT) UTC\",\n        \"defaultAlias\": \"andrew.torbeck@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"Poly550AT\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"ator5003@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031001@odinapi.net\",\n        \"lastName\": \"1001_2\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1001_2\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1001_2\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031001\",\n        \"extension\": \"1001\",\n        \"callingLineIdPhoneNumber\": \"5134031001\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031001@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1001_9_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031001_2@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031002@odinapi.net\",\n        \"lastName\": \"1002_3\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1002_3\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1002_3\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031002\",\n        \"extension\": \"1002\",\n        \"callingLineIdPhoneNumber\": \"5134031002\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031002@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1002_3_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031002_3@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5134031003@odinapi.net\",\n        \"lastName\": \"1003_4\",\n        \"firstName\": \"User\",\n        \"callingLineIdLastName\": \"1003_4\",\n        \"callingLineIdFirstName\": \"User\",\n        \"hiraganaLastName\": \"1003_4\",\n        \"hiraganaFirstName\": \"User\",\n        \"phoneNumber\": \"5134031003\",\n        \"extension\": \"1003\",\n        \"callingLineIdPhoneNumber\": \"5134031003\",\n        \"department\": {\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"name\": \"department1\"\n        },\n        \"departmentFullPath\": \"department1 (grp.odin)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5134031003@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 500 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"1003_4_grp.odin\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5134031003_4@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549856@odinapi.net\",\n        \"lastName\": 1,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 1,\n        \"callingLineIdFirstName\": \"Steve\",\n        \"hiraganaLastName\": 1,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549856\",\n        \"extension\": \"9856\",\n        \"callingLineIdPhoneNumber\": \"5136549856\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549856@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549856\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549856@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136549851@odinapi.net\",\n        \"lastName\": 2,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 2,\n        \"callingLineIdFirstName\": \"Marc\",\n        \"hiraganaLastName\": 2,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136549851\",\n        \"extension\": \"9851\",\n        \"callingLineIdPhoneNumber\": \"5136549851\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136549851@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136549851\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136549851@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569844@odinapi.net\",\n        \"lastName\": 3,\n        \"firstName\": \"user_\",\n        \"callingLineIdLastName\": 3,\n        \"callingLineIdFirstName\": \"user_\",\n        \"hiraganaLastName\": 3,\n        \"hiraganaFirstName\": \"user_\",\n        \"phoneNumber\": \"5136569844\",\n        \"extension\": \"9844\",\n        \"callingLineIdPhoneNumber\": \"5136569844\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569844@odinapi.net\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom VVX 300 DM\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"6\"\n                },\n                \"numberOfAssignedPorts\": 1,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"5136569844\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"5136569844@odinapi.net\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"supportVisualDeviceManagement\": \"false\",\n            \"contacts\": []\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569852@odinapi.net\",\n        \"lastName\": 5136569852,\n        \"firstName\": 5136569852,\n        \"callingLineIdLastName\": 5136569852,\n        \"callingLineIdFirstName\": 5136569852,\n        \"hiraganaLastName\": 5136569852,\n        \"hiraganaFirstName\": 5136569852,\n        \"phoneNumber\": \"5136569852\",\n        \"extension\": \"9852\",\n        \"callingLineIdPhoneNumber\": \"5136569852\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569852@odinapi.net\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"9871515000\",\n                \"linePort\": \"5136569852@odinapi.net\",\n                \"staticRegistrationCapable\": \"true\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"true\",\n                \"contacts\": []\n            },\n            \"enterpriseTrunkName\": \"ent.odin.trunk1.a\"\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"5136569851@odinapi.net\",\n        \"lastName\": 5136569851,\n        \"firstName\": 5136569851,\n        \"callingLineIdLastName\": 5136569851,\n        \"callingLineIdFirstName\": 5136569851,\n        \"hiraganaLastName\": 5136569851,\n        \"hiraganaFirstName\": 5136569851,\n        \"phoneNumber\": \"5136569851\",\n        \"extension\": \"4545\",\n        \"callingLineIdPhoneNumber\": \"5136569851\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"5136569851@odinapi.net\",\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"name\": \"9871515000\",\n                \"linePort\": \"5136569851@odinapi.net\",\n                \"staticRegistrationCapable\": \"true\",\n                \"useDomain\": \"true\",\n                \"isPilotUser\": \"false\",\n                \"contacts\": []\n            },\n            \"enterpriseTrunkName\": \"ent.odin.trunk1.a\"\n        },\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"trunkAddressing\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"User.Mar_Reverman@odinapi.net\",\n        \"lastName\": \"reverman\",\n        \"firstName\": \"mark\",\n        \"callingLineIdLastName\": \"reverman\",\n        \"callingLineIdFirstName\": \"mark\",\n        \"hiraganaLastName\": \"reverman\",\n        \"hiraganaFirstName\": \"mark\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/New_York\",\n        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n        \"defaultAlias\": \"User.Mar_Reverman@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"testncos\",\n        \"allowVideo\": true,\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": \"-2147483648\"\n    },\n    {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"userId\": \"9871515003@odinapi.net\",\n        \"lastName\": \"Mayfield\",\n        \"firstName\": \"Zak\",\n        \"callingLineIdLastName\": \"Mayfield\",\n        \"callingLineIdFirstName\": \"Zak\",\n        \"hiraganaLastName\": \"Mayfield\",\n        \"hiraganaFirstName\": \"Zak\",\n        \"language\": \"English\",\n        \"timeZone\": \"UTC\",\n        \"timeZoneDisplayName\": \"(GMT) UTC\",\n        \"defaultAlias\": \"9871515003@odinapi.net\",\n        \"countryCode\": \"1\",\n        \"allowVideo\": true,\n        \"callingLineIdPhoneNumber\": \"\",\n        \"phoneNumber\": \"\",\n        \"extension\": \"\",\n        \"domain\": \"odinapi.net\",\n        \"endpointType\": \"none\",\n        \"aliases\": [],\n        \"accessDeviceEndpoint\": {\n            \"contacts\": []\n        },\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    }\n]"}],"_postman_id":"eddb5a8e-d57f-4145-bba6-2391a1beb046"},{"name":"User","id":"e31fb4eb-7cc6-4c53-b0c0-edb2610e860f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}],"variable":[]}},"response":[{"id":"a832f624-a72f-4417-8327-b905344fbbf2","name":"Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1","host":["{{url}}"],"path":["api","v2","users"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2168","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 03 Oct 2018 17:57:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[{\n\t\t\"userId\": \"9709580001@microv-works.com\",\n\t\t\"lastName\": \"Mock1\",\n\t\t\"firstName\": \"Mock1\",\n\t\t\"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\"phoneNumber\": \"+1-9709580001\",\n\t\t\"phoneNumberActivated\": true,\n\t\t\"emailAddress\": null,\n\t\t\"hiraganaLastName\": \"Mock1\",\n\t\t\"hiraganaFirstName\": \"Mock1\",\n\t\t\"inTrunkGroup\": false,\n\t\t\"extension\": \"0001\",\n\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\"groupId\": \"odin.mock.grp1\",\n\t\t\"userIdShort\": \"9709580001\",\n\t\t\"domain\": \"microv-works.com\"\n\t},\n\t{\n\t\t\"userId\": \"9709580002@microv-works.com\",\n\t\t\"lastName\": \"User2last\",\n\t\t\"firstName\": \"User2first\",\n\t\t\"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\"phoneNumber\": \"+1-9709580002\",\n\t\t\"phoneNumberActivated\": true,\n\t\t\"emailAddress\": null,\n\t\t\"hiraganaLastName\": \"User2last\",\n\t\t\"hiraganaFirstName\": \"User2first\",\n\t\t\"inTrunkGroup\": false,\n\t\t\"extension\": \"0002\",\n\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\"groupId\": \"odin.mock.grp1\",\n\t\t\"userIdShort\": \"9709580002\",\n\t\t\"domain\": \"microv-works.com\"\n\t},\n\t{\n\t\t\"userId\": \"9709580003@microv-works.com\",\n\t\t\"lastName\": \"User3last\",\n\t\t\"firstName\": \"User3first\",\n\t\t\"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\"phoneNumber\": \"+1-9709580003\",\n\t\t\"phoneNumberActivated\": true,\n\t\t\"emailAddress\": null,\n\t\t\"hiraganaLastName\": \"User3last\",\n\t\t\"hiraganaFirstName\": \"User3first\",\n\t\t\"inTrunkGroup\": false,\n\t\t\"extension\": \"0003\",\n\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\"groupId\": \"odin.mock.grp1\",\n\t\t\"userIdShort\": \"9709580003\",\n\t\t\"domain\": \"microv-works.com\"\n\t},\n\t{\n\t\t\"userId\": \"9709580004@microv-works.com\",\n\t\t\"lastName\": \"User4last\",\n\t\t\"firstName\": \"User4first\",\n\t\t\"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\"phoneNumber\": \"+1-9709580004\",\n\t\t\"phoneNumberActivated\": true,\n\t\t\"emailAddress\": null,\n\t\t\"hiraganaLastName\": \"User4last\",\n\t\t\"hiraganaFirstName\": \"User4first\",\n\t\t\"inTrunkGroup\": false,\n\t\t\"extension\": \"0004\",\n\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\"groupId\": \"odin.mock.grp1\",\n\t\t\"userIdShort\": \"9709580004\",\n\t\t\"domain\": \"microv-works.com\"\n\t},\n\t{\n\t\t\"userId\": \"9709580005@microv-works.com\",\n\t\t\"lastName\": \"User5last\",\n\t\t\"firstName\": \"User5first\",\n\t\t\"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n\t\t\"phoneNumber\": \"+1-9709580005\",\n\t\t\"phoneNumberActivated\": true,\n\t\t\"emailAddress\": null,\n\t\t\"hiraganaLastName\": \"User5last\",\n\t\t\"hiraganaFirstName\": \"User5first\",\n\t\t\"inTrunkGroup\": false,\n\t\t\"extension\": \"0005\",\n\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\"groupId\": \"odin.mock.grp1\",\n\t\t\"userIdShort\": \"9709580005\",\n\t\t\"domain\": \"microv-works.com\"\n\t}\n]"}],"_postman_id":"e31fb4eb-7cc6-4c53-b0c0-edb2610e860f"},{"name":"User Password","id":"bc201763-599a-42e7-ad1b-c75db6c4e7ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/password?userId=5132298513@example21.com","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li><p>limit: limit the search results*</p>\n</li>\n<li><p>serviceProviderId: restrict to serviceProviderId</p>\n</li>\n<li><p>groupId: restrict to serviceProviderId and groupId</p>\n</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li><p>macAddress: search by device</p>\n</li>\n<li><p>lastName: filter by lastName</p>\n</li>\n<li><p>firstName: filter by firstName</p>\n</li>\n<li><p>dn: filter by dn</p>\n</li>\n<li><p>emailAddress: filter by emailAddress</p>\n</li>\n<li><p>userId: filter by userId</p>\n</li>\n<li><p>extension: filter by extension</p>\n</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li><p>filter=something | Equal To</p>\n</li>\n<li><p>filter=something* | Starts With</p>\n</li>\n<li><p>filter=*something* | Contains</p>\n</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p><em>*WARNINGS</em></p>\n<ul>\n<li><p>If the result size is larger than BW allows an error will be thrown.</p>\n</li>\n<li><p>Extended is an n+1 query, use with caution</p>\n</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","password"],"host":["{{url}}"],"query":[{"key":"userId","value":"5132298513@example21.com"}],"variable":[]}},"response":[{"id":"abfbe81a-c3a6-4d5e-904d-23f9c09c544c","name":"User Password","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/password?userId=5132298513@example21.com","host":["{{url}}"],"path":["api","v2","users","password"],"query":[{"key":"userId","value":"5132298513@example21.com"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"isLoginDisabled\": false,\n    \"expirationDays\": \"-2147483648\",\n    \"userId\": \"5132298513@example21.com\"\n}"}],"_postman_id":"bc201763-599a-42e7-ad1b-c75db6c4e7ed"},{"name":"User by UserId","id":"bb9c18e4-3a7c-4e5c-8cf6-34a4cc9bcb7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users?userId=6testingnumber@odinapi.net","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"1014141010@odinapi.net"},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"q","value":"available"},{"key":"userId","value":"6testingnumber@odinapi.net"},{"disabled":true,"key":"userId","value":"5132655006@odinapi.net"}],"variable":[]}},"response":[{"id":"2426ef64-2c1b-43af-8ab4-1e176c1c29b8","name":"User by UserId","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users?userId=testdept@lab.tekvoice.net","host":["{{url}}"],"path":["api","v2","users"],"query":[{"key":"userId","value":"testdept@lab.tekvoice.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"testdept@lab.tekvoice.net\",\n    \"lastName\": \"dsd\",\n    \"firstName\": \"dsd\",\n    \"callingLineIdLastName\": \"dsd\",\n    \"callingLineIdFirstName\": \"ddsdsd\",\n    \"hiraganaLastName\": \"dsd\",\n    \"hiraganaFirstName\": \"dsd\",\n    \"phoneNumber\": \"5136549859\",\n    \"extension\": \"9859\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"mayur\"\n    },\n    \"departmentFullPath\": \"mayur (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"defaultAlias\": \"testdept@lab.tekvoice.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"BroadWorks Media Server\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"broadworks-media-server\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"testdept_lin1@lab.tekvoice.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": [\n            {\n                \"sipContact\": \"sip1\"\n            },\n            {\n                \"sipContact\": \"sip2\"\n            },\n            {\n                \"sipContact\": \"sip3\"\n            },\n            {\n                \"sipContact\": \"sip4\"\n            },\n            {\n                \"sipContact\": \"sip5\"\n            }\n        ]\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos1\",\n    \"allowVideo\": true,\n    \"domain\": \"lab.tekvoice.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"},{"id":"4178ecd4-ba75-41c4-9bea-74eb15ffeb8c","name":"User by UserId","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users?userId=1014141010@odinapi.net&q=available","host":["{{url}}"],"path":["api","v2","users"],"query":[{"key":"userId","value":"1014141010@odinapi.net"},{"key":"userId","value":"user-2@voicecci.net","disabled":true},{"key":"q","value":"available","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Mar 2023 22:50:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2307"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"1014141010@odinapi.net\",\n    \"lastName\": \"Reverman\",\n    \"firstName\": \"Mark\",\n    \"callingLineIdLastName\": \"Reverman\",\n    \"callingLineIdFirstName\": \"Mark\",\n    \"hiraganaLastName\": \"Reverman\",\n    \"hiraganaFirstName\": \"Mark\",\n    \"phoneNumber\": \"1014141010\",\n    \"extension\": \"1009\",\n    \"callingLineIdPhoneNumber\": \"1014141010\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"departments\"\n    },\n    \"departmentFullPath\": \"Dept (grp.odin) \\\\ departments\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"1014141010@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Grandstream-GXW4224\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"quantity\": \"24\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"configurationMode\": \"Default\",\n            \"transportProtocol\": \"UDP\",\n            \"useCustomUserNamePassword\": false,\n            \"accessDevice\": {\n                \"deviceLevel\": \"Group\",\n                \"deviceName\": \"Grandstream-portTest\"\n            },\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"staticLineOrdering\": \"true\",\n            \"deviceName\": \"Grandstream-portTest\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"123123412313@example21.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"portNumber\": \"1\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"mark.reverman@rev.io\",\n    \"pagerPhoneNumber\": 9871515000,\n    \"mobilePhoneNumber\": 9871515000,\n    \"emailAddress\": \"mark.reverman@rev.io\",\n    \"yahooId\": \"mreverman@gmail.com\",\n    \"addressLocation\": \"1234 Main Street\",\n    \"address\": {\n        \"addressLine1\": \"Bldg 1\",\n        \"addressLine2\": \"Suite 2\",\n        \"city\": \"Cincinnat\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45204\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncosuu\",\n    \"alternateUserId\": [\n        {\n            \"alternateUserId\": \"mreverman@gmail.com\",\n            \"description\": \"mreverman@gmail.com\"\n        },\n        {\n            \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n            \"description\": \"mreverman@parkbenchsolutions.com\"\n        }\n    ],\n    \"allowVideo\": true,\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"departmentName\": \"departments\",\n    \"nationalPrefix\": \"\",\n    \"phoneNumberActivated\": false,\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"}],"_postman_id":"bb9c18e4-3a7c-4e5c-8cf6-34a4cc9bcb7e"},{"name":"User","id":"f47364f5-f5b7-4b2f-a012-b0b3be45ae57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"test1234-1234@odinapi.net\",\n    \"lastName\": \"Reverman\",\n    \"firstName\": \"Mark\",\n    \"callingLineIdLastName\": \"Reverman\",\n    \"callingLineIdFirstName\": \"Mark\",\n    \"hiraganaLastName\": \"Reverman\",\n    \"hiraganaFirstName\": \"Mark\",\n    \"phoneNumber\": \"5136549858\",\n    \"extension\": \"9858\",\n    \"callingLineIdPhoneNumber\": \"5136549858\",\n    \"password\": \"Test12341234@odinapi.net\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"department1\"\n    },\n    \"departmentFullPath\": \"department1 (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"test1234-1234@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Generic SIP Phone\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n            \"deviceName\": \"generic_sip\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"test1234-1234@odinapi.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"mreverman@parkbenchsolutions.com\",\n    \"pagerPhoneNumber\": 9871515000,\n    \"mobilePhoneNumber\": 9871515000,\n    \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"yahooId\": \"mreverman@gmail.com\",\n    \"addressLocation\": \"1234 Main Street\",\n    \"address\": {\n        \"addressLine1\": \"Bldg 1\",\n        \"addressLine2\": \"Suite 2\",\n        \"city\": \"Cincinnat\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45204\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncosuu\",\n    \"allowVideo\": true,\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647,\n    \"alternateUserId\": [\n        {\n            \"description\": \"mreverman-2@parkbenchsolutions.com\",\n            \"alternateUserId\": \"mreverman-2@parkbenchsolutions.com\"\n        },\n        {\n            \"description\": \"mark.reverman-2@parkbenchsolutions.com\",\n            \"alternateUserId\": \"mark.reverman-2@parkbenchsolutions.com\"\n        },\n        {\n            \"description\": \"mreverman-2@odinweb.net\",\n            \"alternateUserId\": \"mreverman-2@odinweb.net\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e15cd60b-3bbe-494f-81b7-c605b54775b7","name":"Users","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"new-test-user-1@microv-works.com\",\n\t\"lastName\":\"Last\",\n\t\"callingLineIdFirstName\":\"First\",\n\t\"callingLineIdLastName\":\"Last\",\n\t\"firstName\":\"First\",\n\t\"password\":\"&hyD5n\",\n\t\"department\":{\n\t\t\"name\":\"Odin Mock Dept\",\n\t\t\"serviceProviderId\": \"odin.mock.ent1\",\n\t\t\"groupId\":\"odin.mock.grp1\"\n\t},\n\t\"timeZone\":\"America/Denver\",\n\t\"language\":\"English\",\n\t\"title\":\"Mr\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 19:46:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"},{"id":"5093f816-a085-4aa6-a145-4a8570f3f941","name":"User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"test1234-1234@odinapi.net\",\n    \"lastName\": \"Reverman\",\n    \"firstName\": \"Mark\",\n    \"callingLineIdLastName\": \"Reverman\",\n    \"callingLineIdFirstName\": \"Mark\",\n    \"hiraganaLastName\": \"Reverman\",\n    \"hiraganaFirstName\": \"Mark\",\n    \"phoneNumber\": \"5136549858\",\n    \"extension\": \"9858\",\n    \"callingLineIdPhoneNumber\": \"5136549858\",\n    \"password\": \"Test12341234@odinapi.net\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"department1\"\n    },\n    \"departmentFullPath\": \"department1 (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"test1234-1234@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Generic SIP Phone\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n            \"deviceName\": \"generic_sip\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"test1234-1234@odinapi.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"mreverman@parkbenchsolutions.com\",\n    \"pagerPhoneNumber\": 9871515000,\n    \"mobilePhoneNumber\": 9871515000,\n    \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"yahooId\": \"mreverman@gmail.com\",\n    \"addressLocation\": \"1234 Main Street\",\n    \"address\": {\n        \"addressLine1\": \"Bldg 1\",\n        \"addressLine2\": \"Suite 2\",\n        \"city\": \"Cincinnat\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45204\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncosuu\",\n    \"allowVideo\": true,\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647,\n    \"alternateUserId\": [\n        {\n            \"description\": \"mreverman-2@parkbenchsolutions.com\",\n            \"alternateUserId\": \"mreverman-2@parkbenchsolutions.com\"\n        },\n        {\n            \"description\": \"mark.reverman-2@parkbenchsolutions.com\",\n            \"alternateUserId\": \"mark.reverman-2@parkbenchsolutions.com\"\n        },\n        {\n            \"description\": \"mreverman-2@odinweb.net\",\n            \"alternateUserId\": \"mreverman-2@odinweb.net\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"test1234-1234@odinapi.net\",\n    \"lastName\": \"Reverman\",\n    \"firstName\": \"Mark\",\n    \"callingLineIdLastName\": \"Reverman\",\n    \"callingLineIdFirstName\": \"Mark\",\n    \"hiraganaLastName\": \"Reverman\",\n    \"hiraganaFirstName\": \"Mark\",\n    \"phoneNumber\": \"5136549858\",\n    \"extension\": \"9858\",\n    \"callingLineIdPhoneNumber\": \"5136549858\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"department1\"\n    },\n    \"departmentFullPath\": \"department1 (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"test1234-1234@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Generic SIP Phone\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 2,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n            \"deviceName\": \"generic_sip\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"test1234-1234@odinapi.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"mreverman@parkbenchsolutions.com\",\n    \"pagerPhoneNumber\": 9871515000,\n    \"mobilePhoneNumber\": 9871515000,\n    \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"yahooId\": \"mreverman@gmail.com\",\n    \"addressLocation\": \"1234 Main Street\",\n    \"address\": {\n        \"addressLine1\": \"Bldg 1\",\n        \"addressLine2\": \"Suite 2\",\n        \"city\": \"Cincinnat\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45204\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncosuu\",\n    \"alternateUserId\": [\n        {\n            \"alternateUserId\": \"mreverman-2@parkbenchsolutions.com\",\n            \"description\": \"mreverman-2@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mark.reverman-2@parkbenchsolutions.com\",\n            \"description\": \"mark.reverman-2@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mreverman-2@odinweb.net\",\n            \"description\": \"mreverman-2@odinweb.net\"\n        }\n    ],\n    \"allowVideo\": true,\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": \"-2147483648\"\n}"}],"_postman_id":"f47364f5-f5b7-4b2f-a012-b0b3be45ae57"},{"name":"User","id":"3b9afb2c-d20e-4bfe-a8f0-4123989fb078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"9871515000@odinapi.net\",\n    \"lastName\": \"Reverman\",\n    \"firstName\": \"Mark\",\n    \"callingLineIdLastName\": \"Reverman\",\n    \"callingLineIdFirstName\": \"Mark\",\n    \"hiraganaLastName\": \"Reverman\",\n    \"hiraganaFirstName\": \"Mark\",\n    \"phoneNumber\": \"9871515000\",\n    \"extension\": \"5000\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"department1\"\n    },\n    \"departmentFullPath\": \"department1 (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"9871515000@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Generic SIP Phone\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n            \"deviceName\": \"generic_sip\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"9871515000@odinapi.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"mreverman@parkbenchsolutions.com\",\n    \"pagerPhoneNumber\": 9871515000,\n    \"mobilePhoneNumber\": 9871515000,\n    \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"yahooId\": \"mreverman@gmail.com\",\n    \"addressLocation\": \"1234 Main Street\",\n    \"address\": {\n        \"addressLine1\": \"Bldg 1\",\n        \"addressLine2\": \"Suite 2\",\n        \"city\": \"Cincinnat\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45204\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncosuu\",\n    \"alternateUserId\": [\n        {\n            \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n            \"description\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mark.reverman@parkbenchsolutions.com\",\n            \"description\": \"mark.reverman@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mreverman@odinweb.net\",\n            \"description\": \"mreverman@odinweb.net\"\n        }\n    ],\n    \"allowVideo\": true,\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"},"url":"{{url}}/api/v2/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"04de24f3-f775-452f-a302-ac85efb0f11f","name":"Users","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"lastName\":\"Last\",\n\t\"firstName\":\"First\",\n\t\"callingLineIdLastName\":\"Last\",\n\t\"callingLineIdFirstName\":\"First\",\n\t\"department\":{\n\t\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\t\"groupId\":\"odin.mock.grp1\",\n\t\t\"name\":\"Odin Mock Dept\"\n\t},\n\t\"language\":\"English\",\n\t\"timeZone\":\"America/Denver\",\n\t\"defaultAlias\":\"new-test-user-1@microv-works.com\",\n\t\"title\":\"Dr\",\n\t\"countryCode\":\"1\",\n\t\"networkClassOfService\":\"NetworkClassOfService2\",\n\t\"userId\":\"new-test-user-1@microv-works.com\",\n\t\"callingLineIdPhoneNumber\":\"\",\n\t\"phoneNumber\":\"\",\n\t\"extension\":\"\",\n\t\"endpointType\":\"none\",\n\t\"aliases\":[],\n\t\"accessDeviceEndpoint\":{},\n\t\"trunkAddressing\":{}\n}"},"url":"{{url}}/api/v2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 19:47:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"},{"id":"380f434f-29d9-4344-9c5d-969c828e7aa6","name":"User","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"9871515000@odinapi.net\",\n    \"lastName\": \"Reverman\",\n    \"firstName\": \"Mark\",\n    \"callingLineIdLastName\": \"Reverman\",\n    \"callingLineIdFirstName\": \"Mark\",\n    \"hiraganaLastName\": \"Reverman\",\n    \"hiraganaFirstName\": \"Mark\",\n    \"phoneNumber\": \"9871515000\",\n    \"extension\": \"5000\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"department1\"\n    },\n    \"departmentFullPath\": \"department1 (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"9871515000@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Generic SIP Phone\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n            \"deviceName\": \"generic_sip\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"9871515000@odinapi.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"mreverman@parkbenchsolutions.com\",\n    \"pagerPhoneNumber\": 9871515000,\n    \"mobilePhoneNumber\": 9871515000,\n    \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"yahooId\": \"mreverman@gmail.com\",\n    \"addressLocation\": \"1234 Main Street\",\n    \"address\": {\n        \"addressLine1\": \"Bldg 1\",\n        \"addressLine2\": \"Suite 2\",\n        \"city\": \"Cincinnat\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45204\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncosuu\",\n    \"alternateUserId\": [\n        {\n            \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n            \"description\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mark.reverman@parkbenchsolutions.com\",\n            \"description\": \"mark.reverman@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mreverman@odinweb.net\",\n            \"description\": \"mreverman@odinweb.net\"\n        }\n    ],\n    \"allowVideo\": true,\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"},"url":"{{url}}/api/v2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"9871515000@odinapi.net\",\n    \"lastName\": \"Reverman\",\n    \"firstName\": \"Mark\",\n    \"callingLineIdLastName\": \"Reverman\",\n    \"callingLineIdFirstName\": \"Mark\",\n    \"hiraganaLastName\": \"Reverman\",\n    \"hiraganaFirstName\": \"Mark\",\n    \"phoneNumber\": \"9871515000\",\n    \"extension\": \"5000\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"department1\"\n    },\n    \"departmentFullPath\": \"department1 (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"9871515000@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Generic SIP Phone\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"version\": \"Kapanga Softphone Desktop Windows 1.00/2180b+1595505876_80E82C997FFA_A0510BEA6293_02004C4F4F50_005056C00001_005056C00008_0A002700000E_FABBC859EAB4_A0510BEA6290_A2510BEA628F\",\n            \"deviceName\": \"generic_sip\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"9871515000@odinapi.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"mreverman@parkbenchsolutions.com\",\n    \"pagerPhoneNumber\": 9871515000,\n    \"mobilePhoneNumber\": 9871515000,\n    \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n    \"yahooId\": \"mreverman@gmail.com\",\n    \"addressLocation\": \"1234 Main Street\",\n    \"address\": {\n        \"addressLine1\": \"Bldg 1\",\n        \"addressLine2\": \"Suite 2\",\n        \"city\": \"Cincinnat\",\n        \"stateOrProvince\": \"Ohio\",\n        \"zipOrPostalCode\": \"45204\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncosuu\",\n    \"alternateUserId\": [\n        {\n            \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n            \"description\": \"mreverman@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mark.reverman@parkbenchsolutions.com\",\n            \"description\": \"mark.reverman@parkbenchsolutions.com\"\n        },\n        {\n            \"alternateUserId\": \"mreverman@odinweb.net\",\n            \"description\": \"mreverman@odinweb.net\"\n        }\n    ],\n    \"allowVideo\": true,\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"}],"_postman_id":"3b9afb2c-d20e-4bfe-a8f0-4123989fb078"},{"name":"User Sip Contact","id":"d3a49b64-90f3-47f0-b58c-9061938b0b8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"testdept@lab.tekvoice.net\",\n    \"lastName\": \"dsd\",\n    \"firstName\": \"dsd\",\n    \"callingLineIdLastName\": \"dsd\",\n    \"callingLineIdFirstName\": \"ddsdsd\",\n    \"hiraganaLastName\": \"dsd\",\n    \"hiraganaFirstName\": \"dsd\",\n    \"phoneNumber\": \"5136549859\",\n    \"extension\": \"9859\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"mayur\"\n    },\n    \"departmentFullPath\": \"mayur (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"defaultAlias\": \"testdept@lab.tekvoice.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"BroadWorks Media Server\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"broadworks-media-server\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"testdept_lin1@lab.tekvoice.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": [\n            {\n                \"sipContact\": \"sip1\"\n            },\n            {\n                \"sipContact\": \"sip2\"\n            },\n            {\n                \"sipContact\": \"sip3\"\n            },\n            {\n                \"sipContact\": \"sip4\"\n            },\n            {\n                \"sipContact\": \"sip5\"\n            }\n        ]\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos1\",\n    \"allowVideo\": true,\n    \"domain\": \"lab.tekvoice.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"},"url":"{{url}}/api/v2/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c8a9a27f-c5b1-4e62-a825-697b89384932","name":"User Sip Contact","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"testdept@lab.tekvoice.net\",\n    \"lastName\": \"dsd\",\n    \"firstName\": \"dsd\",\n    \"callingLineIdLastName\": \"dsd\",\n    \"callingLineIdFirstName\": \"ddsdsd\",\n    \"hiraganaLastName\": \"dsd\",\n    \"hiraganaFirstName\": \"dsd\",\n    \"phoneNumber\": \"5136549859\",\n    \"extension\": \"9859\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"mayur\"\n    },\n    \"departmentFullPath\": \"mayur (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"defaultAlias\": \"testdept@lab.tekvoice.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"BroadWorks Media Server\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"broadworks-media-server\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"testdept_lin1@lab.tekvoice.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": [\n            {\n                \"sipContact\": \"sip1\"\n            },\n            {\n                \"sipContact\": \"sip2\"\n            },\n            {\n                \"sipContact\": \"sip3\"\n            },\n            {\n                \"sipContact\": \"sip4\"\n            },\n            {\n                \"sipContact\": \"sip5\"\n            }\n        ]\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos1\",\n    \"allowVideo\": true,\n    \"domain\": \"lab.tekvoice.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"},"url":"{{url}}/api/v2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"testdept@lab.tekvoice.net\",\n    \"lastName\": \"dsd\",\n    \"firstName\": \"dsd\",\n    \"callingLineIdLastName\": \"dsd\",\n    \"callingLineIdFirstName\": \"ddsdsd\",\n    \"hiraganaLastName\": \"dsd\",\n    \"hiraganaFirstName\": \"dsd\",\n    \"phoneNumber\": \"5136549859\",\n    \"extension\": \"9859\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"mayur\"\n    },\n    \"departmentFullPath\": \"mayur (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"defaultAlias\": \"testdept@lab.tekvoice.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"BroadWorks Media Server\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"broadworks-media-server\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"testdept_lin1@lab.tekvoice.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": [\n            {\n                \"sipContact\": \"sip1\"\n            },\n            {\n                \"sipContact\": \"sip2\"\n            },\n            {\n                \"sipContact\": \"sip3\"\n            },\n            {\n                \"sipContact\": \"sip4\"\n            },\n            {\n                \"sipContact\": \"sip5\"\n            }\n        ]\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos1\",\n    \"allowVideo\": true,\n    \"domain\": \"lab.tekvoice.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"}],"_postman_id":"d3a49b64-90f3-47f0-b58c-9061938b0b8e"},{"name":"User Sip Contact Copy","id":"38624669-4f00-457c-b6d3-b0ec2aeed6bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"testdept@lab.tekvoice.net\",\n    \"lastName\": \"dsd\",\n    \"firstName\": \"dsd\",\n    \"callingLineIdLastName\": \"dsd\",\n    \"callingLineIdFirstName\": \"ddsdsd\",\n    \"hiraganaLastName\": \"dsd\",\n    \"hiraganaFirstName\": \"dsd\",\n    \"phoneNumber\": \"5136549859\",\n    \"extension\": \"9859\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"mayur\"\n    },\n    \"departmentFullPath\": \"mayur (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"defaultAlias\": \"testdept@lab.tekvoice.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"BroadWorks Media Server\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"broadworks-media-server\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"testdept_lin1@lab.tekvoice.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": [\n            {\n                \"sipContact\": \"sip1\"\n            },\n            {\n                \"sipContact\": \"sip2\"\n            },\n            {\n                \"sipContact\": \"sip3\"\n            },\n            {\n                \"sipContact\": \"sip4\"\n            },\n            {\n                \"sipContact\": \"sip5\"\n            }\n        ]\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos1\",\n    \"allowVideo\": true,\n    \"domain\": \"lab.tekvoice.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"},"url":"{{url}}/api/v2/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"91e5b5f0-5356-4b29-a993-f2a28188a84e","name":"User Sip Contact","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"testdept@lab.tekvoice.net\",\n    \"lastName\": \"dsd\",\n    \"firstName\": \"dsd\",\n    \"callingLineIdLastName\": \"dsd\",\n    \"callingLineIdFirstName\": \"ddsdsd\",\n    \"hiraganaLastName\": \"dsd\",\n    \"hiraganaFirstName\": \"dsd\",\n    \"phoneNumber\": \"5136549859\",\n    \"extension\": \"9859\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"mayur\"\n    },\n    \"departmentFullPath\": \"mayur (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"defaultAlias\": \"testdept@lab.tekvoice.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"BroadWorks Media Server\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"broadworks-media-server\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"testdept_lin1@lab.tekvoice.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": [\n            {\n                \"sipContact\": \"sip1\"\n            },\n            {\n                \"sipContact\": \"sip2\"\n            },\n            {\n                \"sipContact\": \"sip3\"\n            },\n            {\n                \"sipContact\": \"sip4\"\n            },\n            {\n                \"sipContact\": \"sip5\"\n            }\n        ]\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos1\",\n    \"allowVideo\": true,\n    \"domain\": \"lab.tekvoice.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"},"url":"{{url}}/api/v2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"testdept@lab.tekvoice.net\",\n    \"lastName\": \"dsd\",\n    \"firstName\": \"dsd\",\n    \"callingLineIdLastName\": \"dsd\",\n    \"callingLineIdFirstName\": \"ddsdsd\",\n    \"hiraganaLastName\": \"dsd\",\n    \"hiraganaFirstName\": \"dsd\",\n    \"phoneNumber\": \"5136549859\",\n    \"extension\": \"9859\",\n    \"callingLineIdPhoneNumber\": \"9871515000\",\n    \"department\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin\",\n        \"name\": \"mayur\"\n    },\n    \"departmentFullPath\": \"mayur (grp.odin)\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/Denver\",\n    \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\",\n    \"defaultAlias\": \"testdept@lab.tekvoice.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"BroadWorks Media Server\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"unlimited\": \"true\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"broadworks-media-server\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"testdept_lin1@lab.tekvoice.net\",\n        \"staticRegistrationCapable\": \"true\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": [\n            {\n                \"sipContact\": \"sip1\"\n            },\n            {\n                \"sipContact\": \"sip2\"\n            },\n            {\n                \"sipContact\": \"sip3\"\n            },\n            {\n                \"sipContact\": \"sip4\"\n            },\n            {\n                \"sipContact\": \"sip5\"\n            }\n        ]\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos1\",\n    \"allowVideo\": true,\n    \"domain\": \"lab.tekvoice.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"}],"_postman_id":"38624669-4f00-457c-b6d3-b0ec2aeed6bd"},{"name":"User","id":"3da60da4-0ad5-4846-8974-155eb36759b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users?userId=test1234-1234@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users"],"host":["{{url}}"],"query":[{"key":"userId","value":"test1234-1234@odinapi.net"}],"variable":[]}},"response":[{"id":"5174bf9c-2914-4ceb-9c74-60afb28eca7d","name":"Users","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"url":{"raw":"{{url}}/api/v2/users?userId=new-test-user-1@microv-works.com","host":["{{url}}"],"path":["api","v2","users"],"query":[{"key":"userId","value":"new-test-user-1@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 19:47:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"3da60da4-0ad5-4846-8974-155eb36759b8"},{"name":"User Audit","id":"79d76413-94f5-45bb-84d6-152addda6fc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/users/audit?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","audit"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"disabled":true,"key":"audioUrl","value":"https://labxsp1.alliedtelecom.net"}],"variable":[]}},"response":[{"id":"3ad7b106-09da-4bb8-a6ff-653dc649f8fc","name":"User Audit","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/users/audit?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","audit"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"},{"key":"audioUrl","value":"https://labxsp1.alliedtelecom.net","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"Settings\": {\n        \"User\": {\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"callingLineIdLastName\": \"4001-lastname\",\n            \"callingLineIdFirstName\": \"4001-firstname\",\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"phoneNumber\": \"8595551401\",\n            \"extension\": \"1401\",\n            \"language\": \"English\",\n            \"timeZone\": \"America/New_York\",\n            \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n            \"defaultAlias\": \"4001@parkbenchsolutions.com\",\n            \"accessDeviceEndpoint\": {\n                \"accessDevice\": {\n                    \"deviceType\": \"Polycom VVX500\",\n                    \"protocol\": \"SIP 2.0\",\n                    \"numberOfPorts\": {\n                        \"quantity\": \"32\"\n                    },\n                    \"numberOfAssignedPorts\": 1,\n                    \"status\": \"Online\",\n                    \"configurationMode\": \"Default\",\n                    \"transportProtocol\": \"UDP\",\n                    \"useCustomUserNamePassword\": false,\n                    \"deviceName\": \"polycomvvx_500_iii\",\n                    \"deviceLevel\": \"Group\",\n                    \"accessDeviceCredentials\": {\n                        \"userName\": null\n                    },\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin\",\n                    \"tags\": [],\n                    \"relatedServices\": []\n                },\n                \"linePort\": \"4001@parkbenchsolutions.com\",\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"supportVisualDeviceManagement\": \"false\",\n                \"contacts\": []\n            },\n            \"title\": \"Programmer\",\n            \"pagerPhoneNumber\": \"100-555-1414\",\n            \"mobilePhoneNumber\": \"100-444-1414\",\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"yahooId\": \"developer@yahoo.com\",\n            \"addressLocation\": \"Main Building\",\n            \"address\": {\n                \"addressLine1\": \"123 main street\",\n                \"addressLine2\": \"suite 100\",\n                \"city\": \"disney\",\n                \"stateOrProvince\": \"Florida\",\n                \"zipOrPostalCode\": \"12345\",\n                \"country\": \"US\"\n            },\n            \"countryCode\": \"1\",\n            \"impId\": \"4001.ent.odin@lab.alliedtelecom.net\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"callingLineIdPhoneNumber\": \"\",\n            \"domain\": \"parkbenchsolutions.com\",\n            \"endpointType\": \"accessDeviceEndpoint\",\n            \"aliases\": [],\n            \"trunkAddressing\": {\n                \"trunkGroupDeviceEndpoint\": {\n                    \"contacts\": []\n                }\n            },\n            \"isEnterprise\": true,\n            \"passwordExpiresDays\": 2147483647\n        },\n        \"Alternate User Id\": {\n            \"users\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        },\n        \"Announcement File\": {\n            \"totalFileSize\": 0,\n            \"maxFileSize\": 1000,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"announcementType\": \"\",\n            \"announcements\": []\n        },\n        \"Call Policies\": {\n            \"redirectedCallsCOLPPrivacy\": \"Privacy For All Calls\",\n            \"callBeingForwardedResponseCallType\": \"All Calls\",\n            \"callingLineIdentityForRedirectedCalls\": \"Redirecting User Identity For All Redirections\",\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        },\n        \"Call Processing Policy\": {\n            \"useUserCLIDSetting\": false,\n            \"useUserMediaSetting\": false,\n            \"useUserCallLimitsSetting\": false,\n            \"useUserDCLIDSetting\": false,\n            \"useMaxSimultaneousCalls\": true,\n            \"maxSimultaneousCalls\": 3,\n            \"useMaxSimultaneousVideoCalls\": true,\n            \"maxSimultaneousVideoCalls\": 1,\n            \"useMaxCallTimeForAnsweredCalls\": true,\n            \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n            \"useMaxCallTimeForUnansweredCalls\": false,\n            \"maxCallTimeForUnansweredCallsMinutes\": 2,\n            \"mediaPolicySelection\": \"No Restrictions\",\n            \"useMaxConcurrentRedirectedCalls\": false,\n            \"maxConcurrentRedirectedCalls\": 5,\n            \"useMaxFindMeFollowMeDepth\": true,\n            \"maxFindMeFollowMeDepth\": 3,\n            \"maxRedirectionDepth\": 5,\n            \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n            \"maxConcurrentFindMeFollowMeInvocations\": 3,\n            \"clidPolicy\": \"Use DN\",\n            \"emergencyClidPolicy\": \"Use DN\",\n            \"allowAlternateNumbersForRedirectingIdentity\": true,\n            \"useGroupName\": false,\n            \"blockCallingNameForExternalCalls\": false,\n            \"enableDialableCallerID\": false,\n            \"allowConfigurableCLIDForRedirectingIdentity\": true,\n            \"allowDepartmentCLIDNameOverride\": false,\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        },\n        \"Communication Barring\": {\n            \"useGroupSetting\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        },\n        \"Communication Barring Authorization Code\": [\n            {\n                \"code\": \"1234\",\n                \"description\": \"1234\",\n                \"userId\": \"4001@parkbenchsolutions.com\"\n            }\n        ],\n        \"Device Policies\": {\n            \"lineMode\": \"Single User Private and Shared\",\n            \"enableDeviceFeatureSynchronization\": true,\n            \"enableDnd\": false,\n            \"enableCallForwardingAlways\": false,\n            \"enableCallForwardingBusy\": false,\n            \"enableCallForwardingNoAnswer\": false,\n            \"enableAcd\": false,\n            \"enableExecutive\": false,\n            \"enableExecutiveAssistant\": false,\n            \"enableSecurityClassification\": false,\n            \"enableCallRecording\": false,\n            \"enableCallDecline\": false,\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        },\n        \"Feature Access Code\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"featureAccessCodes\": [\n                {\n                    \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n                    \"mainCode\": \"*29\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                    \"mainCode\": \"*95\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n                    \"mainCode\": \"*55\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Bridge\",\n                    \"mainCode\": \"*15\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n                    \"mainCode\": \"*65\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Park\",\n                    \"mainCode\": \"*68\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n                    \"mainCode\": \"*56*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Group Call Park\",\n                    \"mainCode\": \"#58\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n                    \"mainCode\": \"*24\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n                    \"mainCode\": \"#28\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n                    \"mainCode\": \"*99\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Speed Dial 100\",\n                    \"mainCode\": \"*75\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Cancel Call Waiting\",\n                    \"mainCode\": \"*70\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n                    \"mainCode\": \"#41\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n                    \"mainCode\": \"#29\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                    \"mainCode\": \"*90\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Recording - Pause\",\n                    \"mainCode\": \"*48\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Recording - Start\",\n                    \"mainCode\": \"*44\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n                    \"mainCode\": \"#23\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n                    \"mainCode\": \"#24\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n                    \"mainCode\": \"*78\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Speed Dial 8\",\n                    \"mainCode\": \"*74\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                    \"mainCode\": \"*87\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n                    \"mainCode\": \"*54*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Location Control Deactivation\",\n                    \"mainCode\": \"*13\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n                    \"mainCode\": \"*31\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n                    \"mainCode\": \"*33*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n                    \"mainCode\": \"#43\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n                    \"mainCode\": \"#31\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"No Answer Timer\",\n                    \"mainCode\": \"*610\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n                    \"mainCode\": \"*21\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                    \"mainCode\": \"*61*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                    \"mainCode\": \"*67*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Per-Call Account Code\",\n                    \"mainCode\": \"*71\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                    \"mainCode\": \"*92\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n                    \"mainCode\": \"*40\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n                    \"mainCode\": \"*23\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n                    \"mainCode\": \"#9\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                    \"mainCode\": \"*52*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                    \"mainCode\": \"*47\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n                    \"mainCode\": \"*67\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n                    \"mainCode\": \"*28\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n                    \"mainCode\": \"#33*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Recording - Stop\",\n                    \"mainCode\": \"*45\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                    \"mainCode\": \"*72\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                    \"mainCode\": \"*63*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Recording - Resume\",\n                    \"mainCode\": \"*49\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                    \"mainCode\": \"#53\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n                    \"mainCode\": \"*34\",\n                    \"alternateCode\": \"*3434\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n                    \"mainCode\": \"*86\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n                    \"mainCode\": \"#40\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                    \"mainCode\": \"*93\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                    \"mainCode\": \"#76\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n                    \"mainCode\": \"*51*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                    \"mainCode\": \"*77\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                    \"mainCode\": \"*21*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                    \"mainCode\": \"#52\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Retrieve\",\n                    \"mainCode\": \"*11\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                    \"mainCode\": \"*37\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                    \"mainCode\": \"#51\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Location Control Activation\",\n                    \"mainCode\": \"*12\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                    \"mainCode\": \"#77\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n                    \"mainCode\": \"*53*\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n                    \"mainCode\": \"*84\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n                    \"mainCode\": \"#21\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n                    \"mainCode\": \"*85\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Voice Portal Access\",\n                    \"mainCode\": \"*62\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Park Retrieve\",\n                    \"mainCode\": \"*88\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n                    \"mainCode\": \"*43\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n                    \"mainCode\": \"*79\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                    \"mainCode\": \"#0322\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n                    \"mainCode\": \"#8\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Push to Talk\",\n                    \"mainCode\": \"*50\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                    \"mainCode\": \"*60\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                    \"mainCode\": \"*73\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Pickup\",\n                    \"mainCode\": \"*98\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                    \"mainCode\": \"*91\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n                    \"mainCode\": \"*#33#\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n                    \"mainCode\": \"*33\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"FMFM Call Push\",\n                    \"mainCode\": \"*26\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                    \"mainCode\": \"*94\",\n                    \"enableFAC\": \"true\"\n                },\n                {\n                    \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n                    \"mainCode\": \"*41\",\n                    \"enableFAC\": \"true\"\n                }\n            ]\n        },\n        \"Portal Passcode\": {\n            \"isLoginDisabled\": false,\n            \"expirationDays\": 19,\n            \"passcode\": \"*****\",\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        },\n        \"Schedules\": [\n            {\n                \"name\": \"user schedule 1\",\n                \"type\": \"Time\",\n                \"level\": \"User\",\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"events\": [\n                    {\n                        \"eventName\": \"event 1\",\n                        \"startTime\": \"2019-04-30T00:00:00\",\n                        \"endTime\": \"2019-04-30T23:59:59\",\n                        \"allDayEvent\": true,\n                        \"name\": \"user schedule 1\",\n                        \"type\": \"Time\",\n                        \"userId\": \"4001@parkbenchsolutions.com\",\n                        \"rrule\": null\n                    }\n                ]\n            }\n        ]\n    },\n    \"OutgoingCallingPlan\": {\n        \"Outgoing Calling Plan Authorization Code\": {\n            \"settings\": {\n                \"useCustomSettings\": true,\n                \"userId\": \"4001@parkbenchsolutions.com\",\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"isEnterprise\": true\n            },\n            \"codes\": [\n                {\n                    \"code\": \"1001\",\n                    \"description\": \"1001\"\n                },\n                {\n                    \"code\": \"1002\",\n                    \"description\": \"1002\"\n                }\n            ],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Call Me Now\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": true,\n                \"premiumServicesII\": true,\n                \"casual\": true,\n                \"urlDialing\": true,\n                \"unknown\": true\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Digit Plan Call Me Now\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Digit Plan Originating\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Digit Plan Redirecting\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Originating\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": {\n                \"group\": \"Allow\",\n                \"local\": \"Allow\",\n                \"tollFree\": \"Allow\",\n                \"toll\": \"Allow\",\n                \"international\": \"Allow\",\n                \"operatorAssisted\": \"Allow\",\n                \"chargeableDirectoryAssisted\": \"Allow\",\n                \"specialServicesI\": \"Allow\",\n                \"specialServicesII\": \"Allow\",\n                \"premiumServicesI\": \"Allow\",\n                \"premiumServicesII\": \"Allow\",\n                \"casual\": \"Allow\",\n                \"urlDialing\": \"Allow\",\n                \"unknown\": \"Allow\"\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Redirected\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": {\n                \"outsideGroup\": true\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Redirecting\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": {\n                \"group\": true,\n                \"local\": true,\n                \"tollFree\": true,\n                \"toll\": true,\n                \"international\": true,\n                \"operatorAssisted\": true,\n                \"chargeableDirectoryAssisted\": true,\n                \"specialServicesI\": true,\n                \"specialServicesII\": true,\n                \"premiumServicesI\": true,\n                \"premiumServicesII\": true,\n                \"casual\": true,\n                \"urlDialing\": true,\n                \"unknown\": true\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Transfer Numbers\": {\n            \"useCustomSettings\": true,\n            \"userNumbers\": {\n                \"phoneNumber01\": \"123\",\n                \"phoneNumber02\": \"123\",\n                \"phoneNumber03\": \"123\"\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Pinhole Digit Plan Call Me Now\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Pinhole Digit Plan Originating\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outgoing Calling Plan Pinhole Digit Plan Redirecting\": {\n            \"useCustomSettings\": true,\n            \"userPermissions\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        }\n    },\n    \"UserServices\": {\n        \"servicesAssignment\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Anonymous Call Rejection\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Anonymous Call Rejection\"\n                },\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Authentication\"\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Always\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Forwarding Always\"\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Busy\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Forwarding Busy\"\n                },\n                {\n                    \"serviceName\": \"Call Forwarding No Answer\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Forwarding No Answer\"\n                },\n                {\n                    \"serviceName\": \"Call Notify\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Notify\"\n                },\n                {\n                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                },\n                {\n                    \"serviceName\": \"CommPilot Express\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"CommPilot Express\"\n                },\n                {\n                    \"serviceName\": \"CommPilot Call Manager\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"CommPilot Call Manager\"\n                },\n                {\n                    \"serviceName\": \"Do Not Disturb\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Do Not Disturb\"\n                },\n                {\n                    \"serviceName\": \"Intercept User\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Intercept User\"\n                },\n                {\n                    \"serviceName\": \"Last Number Redial\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Last Number Redial\"\n                },\n                {\n                    \"serviceName\": \"Outlook Integration\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Outlook Integration\"\n                },\n                {\n                    \"serviceName\": \"Priority Alert\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Priority Alert\"\n                },\n                {\n                    \"serviceName\": \"Call Return\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Call Return\"\n                },\n                {\n                    \"serviceName\": \"Remote Office\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Remote Office\"\n                },\n                {\n                    \"serviceName\": \"Selective Call Acceptance\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Selective Call Acceptance\"\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Selective\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Forwarding Selective\"\n                },\n                {\n                    \"serviceName\": \"Selective Call Rejection\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Selective Call Rejection\"\n                },\n                {\n                    \"serviceName\": \"Service Scripts User\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Service Scripts User\"\n                },\n                {\n                    \"serviceName\": \"Simultaneous Ring Personal\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Simultaneous Ring Personal\"\n                },\n                {\n                    \"serviceName\": \"Voice Messaging User\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Voice Messaging User\"\n                },\n                {\n                    \"serviceName\": \"Alternate Numbers\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Alternate Numbers\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance\",\n                    \"assigned\": true,\n                    \"tags\": [\n                        \"UC-One\"\n                    ],\n                    \"alias\": \"Shared Call Appearance\"\n                },\n                {\n                    \"serviceName\": \"Speed Dial 8\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Speed Dial 8\"\n                },\n                {\n                    \"serviceName\": \"Customer Originated Trace\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Customer Originated Trace\"\n                },\n                {\n                    \"serviceName\": \"Attendant Console\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Attendant Console\"\n                },\n                {\n                    \"serviceName\": \"Third-Party MWI Control\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Third-Party MWI Control\"\n                },\n                {\n                    \"serviceName\": \"Client Call Control\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Client Call Control\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance 5\",\n                    \"assigned\": false,\n                    \"tags\": [\n                        \"UC-One\"\n                    ],\n                    \"alias\": \"Shared Call Appearance 5\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance 10\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Shared Call Appearance 10\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance 15\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Shared Call Appearance 15\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance 20\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Shared Call Appearance 20\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance 25\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Shared Call Appearance 25\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance 30\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Shared Call Appearance 30\"\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance 35\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Shared Call Appearance 35\"\n                },\n                {\n                    \"serviceName\": \"Calling Name Retrieval\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Calling Name Retrieval\"\n                },\n                {\n                    \"serviceName\": \"Flash Call Hold\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Flash Call Hold\"\n                },\n                {\n                    \"serviceName\": \"Speed Dial 100\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Speed Dial 100\"\n                },\n                {\n                    \"serviceName\": \"Directed Call Pickup\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Directed Call Pickup\"\n                },\n                {\n                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Third-Party Voice Mail Support\"\n                },\n                {\n                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                },\n                {\n                    \"serviceName\": \"Voice Portal Calling\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Voice Portal Calling\"\n                },\n                {\n                    \"serviceName\": \"External Calling Line ID Delivery\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"External Calling Line ID Delivery\"\n                },\n                {\n                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Internal Calling Line ID Delivery\"\n                },\n                {\n                    \"serviceName\": \"Automatic Callback\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Automatic Callback\"\n                },\n                {\n                    \"serviceName\": \"Call Waiting\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Waiting\"\n                },\n                {\n                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Calling Line ID Blocking Override\"\n                },\n                {\n                    \"serviceName\": \"Calling Party Category\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Calling Party Category\"\n                },\n                {\n                    \"serviceName\": \"Barge-in Exempt\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Barge-in Exempt\"\n                },\n                {\n                    \"serviceName\": \"Video Add-On\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Video Add-On\"\n                },\n                {\n                    \"serviceName\": \"Malicious Call Trace\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Malicious Call Trace\"\n                },\n                {\n                    \"serviceName\": \"Preferred Carrier User\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Preferred Carrier User\"\n                },\n                {\n                    \"serviceName\": \"Push to Talk\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Push to Talk\"\n                },\n                {\n                    \"serviceName\": \"Basic Call Logs\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Basic Call Logs\"\n                },\n                {\n                    \"serviceName\": \"Enhanced Call Logs\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Enhanced Call Logs\"\n                },\n                {\n                    \"serviceName\": \"Hoteling Host\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Hoteling Host\"\n                },\n                {\n                    \"serviceName\": \"Hoteling Guest\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Hoteling Guest\"\n                },\n                {\n                    \"serviceName\": \"Voice Messaging User - Video\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Voice Messaging User - Video\"\n                },\n                {\n                    \"serviceName\": \"Diversion Inhibitor\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Diversion Inhibitor\"\n                },\n                {\n                    \"serviceName\": \"Multiple Call Arrangement\",\n                    \"assigned\": false,\n                    \"tags\": [\n                        \"UC-One\"\n                    ],\n                    \"alias\": \"Multiple Call Arrangement\"\n                },\n                {\n                    \"serviceName\": \"Custom Ringback User\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Custom Ringback User\"\n                },\n                {\n                    \"serviceName\": \"Custom Ringback User - Video\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Custom Ringback User - Video\"\n                },\n                {\n                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Automatic Hold/Retrieve\"\n                },\n                {\n                    \"serviceName\": \"Busy Lamp Field\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Busy Lamp Field\"\n                },\n                {\n                    \"serviceName\": \"Three-Way Call\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Three-Way Call\"\n                },\n                {\n                    \"serviceName\": \"Call Transfer\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Transfer\"\n                },\n                {\n                    \"serviceName\": \"Privacy\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Privacy\"\n                },\n                {\n                    \"serviceName\": \"Fax Messaging\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Fax Messaging\"\n                },\n                {\n                    \"serviceName\": \"Physical Location\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Physical Location\"\n                },\n                {\n                    \"serviceName\": \"Charge Number\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Charge Number\"\n                },\n                {\n                    \"serviceName\": \"BroadWorks Supervisor\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Supervisor\"\n                },\n                {\n                    \"serviceName\": \"BroadWorks Agent\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Agent\"\n                },\n                {\n                    \"serviceName\": \"N-Way Call\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"N-Way Call\"\n                },\n                {\n                    \"serviceName\": \"Two-Stage Dialing\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Two-Stage Dialing\"\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Forwarding Not Reachable\"\n                },\n                {\n                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                },\n                {\n                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                },\n                {\n                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Receptionist - Office\"\n                },\n                {\n                    \"serviceName\": \"External Custom Ringback\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"External Custom Ringback\"\n                },\n                {\n                    \"serviceName\": \"In-Call Service Activation\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"In-Call Service Activation\"\n                },\n                {\n                    \"serviceName\": \"Connected Line Identification Presentation\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Connected Line Identification Presentation\"\n                },\n                {\n                    \"serviceName\": \"Connected Line Identification Restriction\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Connected Line Identification Restriction\"\n                },\n                {\n                    \"serviceName\": \"BroadWorks Anywhere\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Anywhere\"\n                },\n                {\n                    \"serviceName\": \"Zone Calling Restrictions\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Zone Calling Restrictions\"\n                },\n                {\n                    \"serviceName\": \"Polycom Phone Services\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Polycom Phone Services\"\n                },\n                {\n                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                },\n                {\n                    \"serviceName\": \"Music On Hold User\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Music On Hold User\"\n                },\n                {\n                    \"serviceName\": \"Video On Hold User\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Video On Hold User\"\n                },\n                {\n                    \"serviceName\": \"Advice Of Charge\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Advice Of Charge\"\n                },\n                {\n                    \"serviceName\": \"Prepaid\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Prepaid\"\n                },\n                {\n                    \"serviceName\": \"Call Center - Basic\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Call Center - Basic\"\n                },\n                {\n                    \"serviceName\": \"Call Center - Standard\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Call Center - Standard\"\n                },\n                {\n                    \"serviceName\": \"Call Center - Premium\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Call Center - Premium\"\n                },\n                {\n                    \"serviceName\": \"Communication Barring User-Control\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Communication Barring User-Control\"\n                },\n                {\n                    \"serviceName\": \"Classmark\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Classmark\"\n                },\n                {\n                    \"serviceName\": \"Calling Name Delivery\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Calling Name Delivery\"\n                },\n                {\n                    \"serviceName\": \"Calling Number Delivery\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Calling Number Delivery\"\n                },\n                {\n                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                },\n                {\n                    \"serviceName\": \"Office Communicator Tab\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Office Communicator Tab\"\n                },\n                {\n                    \"serviceName\": \"Pre-alerting Announcement\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Pre-alerting Announcement\"\n                },\n                {\n                    \"serviceName\": \"Call Center Monitoring\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Call Center Monitoring\"\n                },\n                {\n                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Location-Based Calling Restrictions\"\n                },\n                {\n                    \"serviceName\": \"BroadWorks Mobility\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Mobility\"\n                },\n                {\n                    \"serviceName\": \"Call Me Now\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Call Me Now\"\n                },\n                {\n                    \"serviceName\": \"Call Recording\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Recording\"\n                },\n                {\n                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                },\n                {\n                    \"serviceName\": \"Integrated IMP\",\n                    \"assigned\": true,\n                    \"tags\": [\n                        \"UC-One\"\n                    ],\n                    \"alias\": \"Integrated IMP\"\n                },\n                {\n                    \"serviceName\": \"Group Night Forwarding\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Group Night Forwarding\"\n                },\n                {\n                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                },\n                {\n                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                },\n                {\n                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                },\n                {\n                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                },\n                {\n                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                },\n                {\n                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                },\n                {\n                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                    \"assigned\": false,\n                    \"tags\": [\n                        \"UC-One\"\n                    ],\n                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                },\n                {\n                    \"serviceName\": \"Executive\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Executive\"\n                },\n                {\n                    \"serviceName\": \"Executive-Assistant\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Executive-Assistant\"\n                },\n                {\n                    \"serviceName\": \"Client License 3\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                },\n                {\n                    \"serviceName\": \"Client License 4\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                },\n                {\n                    \"serviceName\": \"Client License 15\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Client License 15\"\n                },\n                {\n                    \"serviceName\": \"Client License 16\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Client License 16\"\n                },\n                {\n                    \"serviceName\": \"Client License 17\",\n                    \"assigned\": false,\n                    \"tags\": [\n                        \"UC-One\"\n                    ],\n                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                },\n                {\n                    \"serviceName\": \"Client License 18\",\n                    \"assigned\": false,\n                    \"tags\": [\n                        \"UC-One\"\n                    ],\n                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                },\n                {\n                    \"serviceName\": \"Client License 19\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"BroadTouch MobileLink\"\n                },\n                {\n                    \"serviceName\": \"Security Classification\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Security Classification\"\n                },\n                {\n                    \"serviceName\": \"Flexible Seating Guest\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Flexible Seating Guest\"\n                },\n                {\n                    \"serviceName\": \"Personal Assistant\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Personal Assistant\"\n                },\n                {\n                    \"serviceName\": \"Route List\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Route List\"\n                },\n                {\n                    \"serviceName\": \"Collaborate - Audio\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Collaborate - Audio\"\n                },\n                {\n                    \"serviceName\": \"Collaborate - Video\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Collaborate - Video\"\n                },\n                {\n                    \"serviceName\": \"Collaborate - Sharing\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Collaborate - Sharing\"\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Call Forwarding Always Secondary\"\n                },\n                {\n                    \"serviceName\": \"Silent Alerting\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Silent Alerting\"\n                },\n                {\n                    \"serviceName\": \"Conference Room\",\n                    \"assigned\": false,\n                    \"tags\": [],\n                    \"alias\": \"Conference Room\"\n                },\n                {\n                    \"serviceName\": \"Sequential Ring\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Sequential Ring\"\n                },\n                {\n                    \"serviceName\": \"Number Portability Announcement\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Number Portability Announcement\"\n                },\n                {\n                    \"serviceName\": \"Direct Route\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Direct Route\"\n                },\n                {\n                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                    \"assigned\": true,\n                    \"tags\": [],\n                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                }\n            ],\n            \"servicePackServices\": [\n                {\n                    \"assigned\": false,\n                    \"description\": \"Standard\",\n                    \"serviceName\": \"Standard\",\n                    \"alias\": \"Standard\"\n                },\n                {\n                    \"assigned\": false,\n                    \"description\": \"Premium\",\n                    \"serviceName\": \"Premium\",\n                    \"alias\": \"Premium\"\n                },\n                {\n                    \"assigned\": false,\n                    \"description\": \"Basic\",\n                    \"serviceName\": \"Basic\",\n                    \"alias\": \"Basic\"\n                }\n            ]\n        },\n        \"servicesAssigned\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Advice Of Charge\"\n                },\n                {\n                    \"serviceName\": \"Anonymous Call Rejection\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Attendant Console\"\n                },\n                {\n                    \"serviceName\": \"Authentication\"\n                },\n                {\n                    \"serviceName\": \"Automatic Callback\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Barge-in Exempt\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"BroadWorks Mobility\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Busy Lamp Field\"\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Always\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Busy\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Forwarding No Answer\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Forwarding Selective\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Notify\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Recording\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Call Transfer\"\n                },\n                {\n                    \"serviceName\": \"Call Waiting\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Calling Name Delivery\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Calling Name Retrieval\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Calling Number Delivery\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Calling Party Category\"\n                },\n                {\n                    \"serviceName\": \"Charge Number\"\n                },\n                {\n                    \"serviceName\": \"Classmark\"\n                },\n                {\n                    \"serviceName\": \"CommPilot Call Manager\"\n                },\n                {\n                    \"serviceName\": \"CommPilot Express\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Communication Barring User-Control\"\n                },\n                {\n                    \"serviceName\": \"Connected Line Identification Restriction\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Direct Route\"\n                },\n                {\n                    \"serviceName\": \"Directed Call Pickup with Barge-in\"\n                },\n                {\n                    \"serviceName\": \"Do Not Disturb\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"External Calling Line ID Delivery\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"External Custom Ringback\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Fax Messaging\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Group Night Forwarding\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Hoteling Guest\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Hoteling Host\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"In-Call Service Activation\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Integrated IMP\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Intercept User\",\n                    \"isActive\": false\n                },\n                {\n                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Malicious Call Trace\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Number Portability Announcement\",\n                    \"isActive\": false\n                },\n                {\n                    \"serviceName\": \"Outlook Integration\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Physical Location\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Prepaid\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Priority Alert\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Privacy\"\n                },\n                {\n                    \"serviceName\": \"Push to Talk\"\n                },\n                {\n                    \"serviceName\": \"Route List\"\n                },\n                {\n                    \"serviceName\": \"Security Classification\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Selective Call Acceptance\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Selective Call Rejection\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Sequential Ring\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Shared Call Appearance\"\n                },\n                {\n                    \"serviceName\": \"Silent Alerting\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Simultaneous Ring Personal\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Speed Dial 100\"\n                },\n                {\n                    \"serviceName\": \"Speed Dial 8\"\n                },\n                {\n                    \"serviceName\": \"Terminating Alternate Trunk Identity\"\n                },\n                {\n                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Two-Stage Dialing\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Video Add-On\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Voice Portal Calling\",\n                    \"isActive\": true\n                },\n                {\n                    \"serviceName\": \"Zone Calling Restrictions\"\n                }\n            ],\n            \"groupServices\": [\n                {\n                    \"serviceName\": \"Music On Hold\",\n                    \"isActive\": true\n                }\n            ]\n        },\n        \"Advice Of Charge\": {\n            \"isActive\": true,\n            \"aocType\": \"During Call\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Anonymous Call Rejection\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Attendant Console\": {\n            \"launchOnLogin\": true,\n            \"allowUserConfigCallDetails\": true,\n            \"allowUserViewCallDetails\": true,\n            \"users\": [\n                {\n                    \"userId\": \"4003@parkbenchsolutions.com\",\n                    \"lastName\": 4003,\n                    \"firstName\": 4003,\n                    \"hiraganaLastName\": 4003,\n                    \"hiraganaFirstName\": 4003,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": \"4003.ent.odin@lab.alliedtelecom.net\"\n                },\n                {\n                    \"userId\": \"4002@parkbenchsolutions.com\",\n                    \"lastName\": 4002,\n                    \"firstName\": 4002,\n                    \"hiraganaLastName\": 4002,\n                    \"hiraganaFirstName\": 4002,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": null\n                }\n            ],\n            \"displayColumns\": [\n                \"Status\",\n                \"Name\",\n                \"Phone Number\",\n                \"Extension\",\n                \"Action\",\n                \"Department\",\n                \"Email\",\n                \"Mobile\",\n                \"Pager\",\n                \"Title\"\n            ],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Automatic Callback\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Automatic Hold/Retrieve\": {\n            \"isActive\": true,\n            \"recallTimerSeconds\": 120,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Barge-in Exempt\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"BroadWorks Mobility\": {\n            \"isActive\": true,\n            \"phonesToRing\": \"Fixed\",\n            \"mobilePhoneNumber\": 5131114444,\n            \"alertClickToDialCalls\": true,\n            \"alertGroupPagingCalls\": true,\n            \"enableDiversionInhibitor\": true,\n            \"requireAnswerConfirmation\": true,\n            \"broadworksCallControl\": true,\n            \"useSettingLevel\": \"Group\",\n            \"denyCallOriginations\": true,\n            \"denyCallTerminations\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Busy Lamp Field\": {\n            \"listURI\": \"blf_4001@parkbenchsolutions.com\",\n            \"enableCallParkNotification\": true,\n            \"users\": [\n                {\n                    \"userId\": \"4002@parkbenchsolutions.com\",\n                    \"lastName\": 4002,\n                    \"firstName\": 4002,\n                    \"hiraganaLastName\": 4002,\n                    \"hiraganaFirstName\": 4002,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": null\n                },\n                {\n                    \"userId\": \"4003@parkbenchsolutions.com\",\n                    \"lastName\": 4003,\n                    \"firstName\": 4003,\n                    \"hiraganaLastName\": 4003,\n                    \"hiraganaFirstName\": 4003,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": \"4003.ent.odin@lab.alliedtelecom.net\"\n                },\n                {\n                    \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                    \"lastName\": \"odin-user-2\",\n                    \"firstName\": \"odin-user-2\",\n                    \"hiraganaLastName\": null,\n                    \"hiraganaFirstName\": null,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": null\n                }\n            ],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Forwarding Always\": {\n            \"isActive\": true,\n            \"forwardToPhoneNumber\": 1111,\n            \"isRingSplashActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Forwarding Always Secondary\": {\n            \"isActive\": true,\n            \"forwardToPhoneNumber\": 1111,\n            \"isRingSplashActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Forwarding Busy\": {\n            \"isActive\": true,\n            \"forwardToPhoneNumber\": 1111,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Forwarding No Answer\": {\n            \"isActive\": true,\n            \"forwardToPhoneNumber\": 1111,\n            \"numberOfRings\": 4,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Forwarding Not Reachable\": {\n            \"isActive\": true,\n            \"forwardToPhoneNumber\": 1111,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Forwarding Selective\": {\n            \"isActive\": true,\n            \"defaultForwardToPhoneNumber\": 1111,\n            \"playRingReminder\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"criteria\": [\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria1\",\n                    \"timeSchedule\": \"Every Day All Day\",\n                    \"blacklisted\": false,\n                    \"holidaySchedule\": \"None\",\n                    \"forwardTo\": 1111,\n                    \"callsToType\": null,\n                    \"callsToNumber\": null,\n                    \"callsToExtension\": null,\n                    \"callsFrom\": [\n                        \"All calls\"\n                    ],\n                    \"forwardToNumberSelection\": \"Forward To Specified Number\",\n                    \"forwardToPhoneNumber\": 1111,\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Any\",\n                        \"includeAnonymousCallers\": \"false\",\n                        \"includeUnavailableCallers\": \"false\",\n                        \"phoneNumbers\": []\n                    },\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Notify\": {\n            \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"criteria\": [\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria1\",\n                    \"timeSchedule\": null,\n                    \"callFrom\": \"All calls\",\n                    \"blacklisted\": true,\n                    \"holidaySchedule\": null,\n                    \"callsToType\": null,\n                    \"callsToNumber\": null,\n                    \"callsToExtension\": null,\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Any\",\n                        \"includeAnonymousCallers\": \"false\",\n                        \"includeUnavailableCallers\": \"false\",\n                        \"phoneNumbers\": []\n                    },\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Recording\": {\n            \"recordingOption\": \"Always\",\n            \"pauseResumeNotification\": \"Beep\",\n            \"enableCallRecordingAnnouncement\": true,\n            \"enableRecordCallRepeatWarningTone\": true,\n            \"recordCallRepeatWarningToneTimerSeconds\": 15,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Transfer\": {\n            \"isRecallActive\": true,\n            \"recallNumberOfRings\": 4,\n            \"useDiversionInhibitorForBlindTransfer\": true,\n            \"useDiversionInhibitorForConsultativeCalls\": true,\n            \"enableBusyCampOn\": true,\n            \"busyCampOnSeconds\": 120,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Call Waiting\": {\n            \"isActive\": true,\n            \"disableCallingLineIdDelivery\": false,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Calling Line ID Blocking Override\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Calling Line ID Delivery Blocking\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Calling Name Delivery\": {\n            \"isActiveForExternalCalls\": true,\n            \"isActiveForInternalCalls\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Calling Name Retrieval\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Calling Number Delivery\": {\n            \"isActiveForExternalCalls\": true,\n            \"isActiveForInternalCalls\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Calling Party Category\": {\n            \"category\": \"Special\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Charge Number\": {\n            \"phoneNumber\": 8135551001,\n            \"useChargeNumberForEnhancedTranslations\": true,\n            \"sendChargeNumberToNetwork\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Classmark\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"CommPilot Call Manager\": {\n            \"launchOnLogin\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"CommPilot Express\": {\n            \"profile\": \"Available In Office\",\n            \"availableInOffice\": {\n                \"busySetting\": {\n                    \"action\": \"Transfer To Voice Mail\"\n                },\n                \"noAnswerSetting\": {\n                    \"action\": \"Transfer To Voice Mail\"\n                }\n            },\n            \"availableOutOfOffice\": {\n                \"incomingCalls\": {\n                    \"action\": \"Transfer To Voice Mail\"\n                },\n                \"incomingCallNotify\": {\n                    \"sendEmail\": \"false\"\n                }\n            },\n            \"busy\": {\n                \"incomingCalls\": {\n                    \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                },\n                \"voiceMailNotify\": {\n                    \"sendEmail\": \"false\"\n                }\n            },\n            \"unavailable\": {\n                \"incomingCalls\": {\n                    \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                },\n                \"voiceMailGreeting\": \"No Answer\"\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Communication Barring User-Control\": {\n            \"lockoutStatus\": false,\n            \"profileTable\": [],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Connected Line Identification Restriction\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Direct Route\": {\n            \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n            \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n            \"routes\": {\n                \"dtgIdentity\": [\n                    \"1111\"\n                ],\n                \"trunkIdentity\": []\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Directed Call Pickup with Barge-in\": {\n            \"enableBargeInWarningTone\": true,\n            \"enableAutomaticTargetSelection\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Do Not Disturb\": {\n            \"isActive\": true,\n            \"ringSplash\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"External Calling Line ID Delivery\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"External Custom Ringback\": {\n            \"isActive\": true,\n            \"useSettingLevel\": \"User\",\n            \"sipRequestURI\": \"developer@parkbenchsolutions.com\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Fax Messaging\": {\n            \"isActive\": true,\n            \"phoneNumber\": 8135551002,\n            \"extension\": 1002,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"aliases\": [\n                {\n                    \"phoneNumber\": \"developer\",\n                    \"domain\": \"parkbenchsolutions.com\"\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Group Night Forwarding\": {\n            \"nightForwarding\": \"On\",\n            \"groupNightForwarding\": \"Off\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Hoteling Guest\": {\n            \"isActive\": true,\n            \"enableAssociationLimit\": true,\n            \"associationLimitHours\": 12,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Hoteling Host\": {\n            \"isActive\": true,\n            \"enforceAssociationLimit\": true,\n            \"associationLimitHours\": 24,\n            \"accessLevel\": \"Group\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"In-Call Service Activation\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Integrated IMP\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Intercept User\": {\n            \"isActive\": false,\n            \"announcementSelection\": \"Default\",\n            \"inboundCallMode\": \"Intercept All\",\n            \"alternateBlockingAnnouncement\": false,\n            \"exemptInboundMobilityCalls\": false,\n            \"disableParallelRingingToNetworkLocations\": false,\n            \"routeToVoiceMail\": false,\n            \"playNewPhoneNumber\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"outboundCallMode\": \"Block All\",\n            \"exemptOutboundMobilityCalls\": false,\n            \"rerouteOutboundCalls\": false,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Internal Calling Line ID Delivery\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Malicious Call Trace\": {\n            \"isActive\": true,\n            \"traceTypeSelection\": \"All Incoming\",\n            \"traceForTimePeriod\": true,\n            \"traceTimePeriod\": {\n                \"startDateTime\": \"2019-04-30T08:54:00.321-04:00\",\n                \"stopDateTime\": \"2019-05-01T08:54:00.321-04:00\"\n            },\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Number Portability Announcement\": {\n            \"enable\": false,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Outlook Integration\": {\n            \"isActive\": true,\n            \"contactRetrievalSelection\": \"Retrieve Default Contact Folder Only\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Physical Location\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Prepaid\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Priority Alert\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"isActive\": true,\n            \"criteria\": [\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria1\",\n                    \"timeSchedule\": \"Every Day All Day\",\n                    \"blacklisted\": true,\n                    \"holidaySchedule\": \"None\",\n                    \"callsToType\": null,\n                    \"callsToNumber\": null,\n                    \"callsToExtension\": null,\n                    \"callsFrom\": [\n                        \"1111\"\n                    ],\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                        \"includeAnonymousCallers\": \"false\",\n                        \"includeUnavailableCallers\": \"false\",\n                        \"phoneNumbers\": [\n                            \"1111\"\n                        ]\n                    },\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Privacy\": {\n            \"enableDirectoryPrivacy\": true,\n            \"enableAutoAttendantExtensionDialingPrivacy\": true,\n            \"enableAutoAttendantNameDialingPrivacy\": true,\n            \"enablePhoneStatusPrivacy\": true,\n            \"permittedMonitors\": [\n                {\n                    \"userId\": \"4003@parkbenchsolutions.com\",\n                    \"lastName\": 4003,\n                    \"firstName\": 4003,\n                    \"hiraganaLastName\": 4003,\n                    \"hiraganaFirstName\": 4003,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": \"4003.ent.odin@lab.alliedtelecom.net\"\n                },\n                {\n                    \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                    \"lastName\": \"odin-user-2\",\n                    \"firstName\": \"odin-user-2\",\n                    \"hiraganaLastName\": null,\n                    \"hiraganaFirstName\": null,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": null\n                },\n                {\n                    \"userId\": \"4002@parkbenchsolutions.com\",\n                    \"lastName\": 4002,\n                    \"firstName\": 4002,\n                    \"hiraganaLastName\": 4002,\n                    \"hiraganaFirstName\": 4002,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": null\n                }\n            ],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Push to Talk\": {\n            \"allowAutoAnswer\": false,\n            \"outgoingConnectionSelection\": \"One Way\",\n            \"accessListSelection\": \"Allow Calls From Everyone Except Selected Users\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"users\": [\n                {\n                    \"userId\": \"4003@parkbenchsolutions.com\",\n                    \"lastName\": 4003,\n                    \"firstName\": 4003,\n                    \"hiraganaLastName\": 4003,\n                    \"hiraganaFirstName\": 4003,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": \"4003.ent.odin@lab.alliedtelecom.net\"\n                },\n                {\n                    \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                    \"lastName\": \"odin-user-2\",\n                    \"firstName\": \"odin-user-2\",\n                    \"hiraganaLastName\": null,\n                    \"hiraganaFirstName\": null,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": null\n                },\n                {\n                    \"userId\": \"4002@parkbenchsolutions.com\",\n                    \"lastName\": 4002,\n                    \"firstName\": 4002,\n                    \"hiraganaLastName\": 4002,\n                    \"hiraganaFirstName\": 4002,\n                    \"phoneNumber\": null,\n                    \"extension\": null,\n                    \"department\": null,\n                    \"emailAddress\": null,\n                    \"iMPId\": null\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Route List\": {\n            \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n            \"useRouteListIdentityForNonEmergencyCalls\": true,\n            \"useRouteListIdentityForEmergencyCalls\": true,\n            \"dns\": [\n                {\n                    \"min\": \"+1-2123135000\",\n                    \"max\": \"+1-2123135999\",\n                    \"isActive\": true\n                }\n            ],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Security Classification\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Selective Call Acceptance\": {\n            \"criteria\": [\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria\",\n                    \"timeSchedule\": \"Every Day All Day\",\n                    \"callFrom\": \"All calls\",\n                    \"blacklisted\": false,\n                    \"holidaySchedule\": \"None\",\n                    \"callsToType\": null,\n                    \"callsToNumber\": null,\n                    \"callsToExtension\": null,\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Any\",\n                        \"includeAnonymousCallers\": false,\n                        \"includeUnavailableCallers\": false,\n                        \"phoneNumbers\": []\n                    },\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                }\n            ]\n        },\n        \"Selective Call Rejection\": {\n            \"criteria\": [\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria\",\n                    \"timeSchedule\": \"Every Day All Day\",\n                    \"callsFrom\": 1111,\n                    \"blacklisted\": true,\n                    \"holidaySchedule\": \"None\",\n                    \"callsToType\": null,\n                    \"callsToNumber\": null,\n                    \"callsToExtension\": null,\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                        \"includeAnonymousCallers\": \"false\",\n                        \"includeUnavailableCallers\": \"false\",\n                        \"phoneNumbers\": [\n                            \"1111\"\n                        ]\n                    },\n                    \"private\": false,\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                }\n            ],\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Sequential Ring\": {\n            \"ringBaseLocationFirst\": true,\n            \"baseLocationNumberOfRings\": 4,\n            \"continueIfBaseLocationIsBusy\": true,\n            \"callerMayStopSearch\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"locations\": [\n                {\n                    \"phoneNumber\": \"1111\",\n                    \"numberOfRings\": 3,\n                    \"answerConfirmationRequired\": false\n                },\n                {\n                    \"phoneNumber\": \"2222\",\n                    \"numberOfRings\": 3,\n                    \"answerConfirmationRequired\": false\n                },\n                {\n                    \"phoneNumber\": \"3333\",\n                    \"numberOfRings\": 3,\n                    \"answerConfirmationRequired\": false\n                },\n                {\n                    \"phoneNumber\": \"4444\",\n                    \"numberOfRings\": 3,\n                    \"answerConfirmationRequired\": false\n                },\n                {\n                    \"phoneNumber\": \"5555\",\n                    \"numberOfRings\": 3,\n                    \"answerConfirmationRequired\": false\n                }\n            ],\n            \"criteria\": [\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria1\",\n                    \"timeSchedule\": \"Every Day All Day\",\n                    \"blacklisted\": false,\n                    \"holidaySchedule\": {\n                        \"name\": \"Holidays\",\n                        \"level\": \"Group\",\n                        \"type\": \"Holiday\"\n                    },\n                    \"callsFrom\": [\n                        \"All calls\"\n                    ],\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Any\",\n                        \"includeAnonymousCallers\": \"false\",\n                        \"includeUnavailableCallers\": \"false\",\n                        \"phoneNumbers\": []\n                    },\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Shared Call Appearance\": {\n            \"alertAllAppearancesForClickToDialCalls\": true,\n            \"alertAllAppearancesForGroupPagingCalls\": true,\n            \"maxAppearances\": 2,\n            \"allowSCACallRetrieve\": true,\n            \"enableMultipleCallArrangement\": false,\n            \"multipleCallArrangementIsActive\": false,\n            \"allowBridgingBetweenLocations\": true,\n            \"bridgeWarningTone\": \"Barge-In\",\n            \"enableCallParkNotification\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"endpoints\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Silent Alerting\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Simultaneous Ring Personal\": {\n            \"isActive\": true,\n            \"doNotRingIfOnCall\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"criteria\": [\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria1\",\n                    \"timeSchedule\": \"Every Day All Day\",\n                    \"blacklisted\": false,\n                    \"holidaySchedule\": \"None\",\n                    \"callsFrom\": [\n                        \"All calls\"\n                    ],\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Any\",\n                        \"includeAnonymousCallers\": false,\n                        \"includeUnavailableCallers\": false,\n                        \"phoneNumbers\": []\n                    },\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                },\n                {\n                    \"isActive\": true,\n                    \"criteriaName\": \"criteria2\",\n                    \"timeSchedule\": \"Every Day All Day\",\n                    \"blacklisted\": false,\n                    \"holidaySchedule\": \"None\",\n                    \"callsFrom\": [\n                        \"1111\",\n                        \"2222\",\n                        \"3333...\"\n                    ],\n                    \"fromDnCriteria\": {\n                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                        \"includeAnonymousCallers\": false,\n                        \"includeUnavailableCallers\": false,\n                        \"phoneNumbers\": [\n                            \"1111\",\n                            \"2222\",\n                            \"3333\",\n                            \"4444\"\n                        ]\n                    },\n                    \"userId\": \"4001@parkbenchsolutions.com\"\n                }\n            ],\n            \"locations\": [\n                {\n                    \"phoneNumber\": \"1111\",\n                    \"answerConfirmationRequired\": true\n                },\n                {\n                    \"phoneNumber\": \"2222\",\n                    \"answerConfirmationRequired\": false\n                },\n                {\n                    \"phoneNumber\": \"3333\",\n                    \"answerConfirmationRequired\": false\n                },\n                {\n                    \"phoneNumber\": \"4444\",\n                    \"answerConfirmationRequired\": true\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Speed Dial 100\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"0000\",\n                    \"description\": \"0000\"\n                },\n                {\n                    \"speedCode\": \"1\",\n                    \"phoneNumber\": \"1111\",\n                    \"description\": \"1111\"\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Speed Dial 8\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"2\",\n                    \"phoneNumber\": \"222\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"333\"\n                },\n                {\n                    \"speedCode\": \"4\",\n                    \"phoneNumber\": \"444\"\n                },\n                {\n                    \"speedCode\": \"5\"\n                },\n                {\n                    \"speedCode\": \"6\"\n                },\n                {\n                    \"speedCode\": \"7\"\n                },\n                {\n                    \"speedCode\": \"8\"\n                },\n                {\n                    \"speedCode\": \"9\"\n                }\n            ],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Terminating Alternate Trunk Identity\": {\n            \"terminatingTrunkIdentity\": 1111,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Third-Party Voice Mail Support\": {\n            \"isActive\": true,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"serverSelection\": \"Group Mail Server\",\n            \"mailboxIdType\": \"User Or Group Phone Number\",\n            \"noAnswerNumberOfRings\": 4,\n            \"alwaysRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Two-Stage Dialing\": {\n            \"isActive\": true,\n            \"allowActivationWithUserAddresses\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Video Add-On\": {\n            \"isActive\": true,\n            \"maxOriginatingCallDelaySeconds\": 5,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Voice Portal Calling\": {\n            \"isActive\": true,\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        },\n        \"Zone Calling Restrictions\": {\n            \"homeZoneName\": \"Office\",\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"isEnterprise\": true\n        }\n    },\n    \"_eventId\": 168\n}"}],"_postman_id":"79d76413-94f5-45bb-84d6-152addda6fc8"},{"name":"User ID","id":"b1852899-c084-49eb-8361-eaf123ff1c59","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n\t\"newUserId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/user-id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","user-id"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9ba574d3-2292-4fc7-9f2f-91acc8600051","name":"User ID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n\t\"newUserId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":"{{url}}/api/v2/users/user-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 21:50:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b1852899-c084-49eb-8361-eaf123ff1c59"},{"name":"User Group Id Update","id":"ca3091d6-fccd-473e-bdfd-744cfbf54ac2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"demo_user_1@odinapi.net\",\n    \"newGroupId\": \"grp.odin\",\n    \"evaluateOnly\": false\n}"},"url":"{{url}}/api/v2/users/group-id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","group-id"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"10a8c995-d7b6-400d-afeb-7b4fd357f2cb","name":"User Group Id Update (Error)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"demo_user_1@odinapi.net\",\n    \"newGroupId\": \"grp.odin.audit\",\n    \"evaluateOnly\": false\n}"},"url":"{{url}}/api/v2/users/group-id"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"[Error 19605] User is assigned services not authorized to the new group: [Anonymous Call Rejection, Authentication, Call Forwarding Always, Call Forwarding Busy, Call Forwarding No Answer, Call Notify, Calling Line ID Delivery Blocking, Do Not Disturb, Intercept User, Priority Alert, Call Return, Remote Office, Call Forwarding Selective, Simultaneous Ring Personal, Voice Messaging User, Alternate Numbers, Speed Dial 8, Calling Name Retrieval, Speed Dial 100, Automatic Callback, Call Waiting, Calling Line ID Blocking Override, Calling Party Category, Barge-in Exempt, Push to Talk, Basic Call Logs, Enhanced Call Logs, Hoteling Host, Hoteling Guest, Voice Messaging User - Video, Busy Lamp Field, Call Transfer, Privacy, Fax Messaging, Charge Number, Call Forwarding Not Reachable, Advice Of Charge, Call Center - Basic, Call Center - Standard, Classmark, Calling Name Delivery, Calling Number Delivery, Call Me Now, Call Recording, Integrated IMP, Group Night Forwarding, Flexible Seating Guest, Collaborate - Audio, Collaborate - Sharing, Call Forwarding Always Secondary, Sequential Ring].\",\n    \"status\": 500,\n    \"path\": \"api/v2/users/group-id\",\n    \"details\": \"ODIN API Error\"\n}"},{"id":"f7b71b22-427c-4388-bd03-f99f44eeefe5","name":"User Group Id Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"demo_user_1@odinapi.net\",\n    \"newGroupId\": \"grp.odin\",\n    \"evaluateOnly\": false\n}"},"url":"{{url}}/api/v2/users/group-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"demo_user_1@odinapi.net\",\n    \"lastName\": \"user-1\",\n    \"firstName\": \"demo\",\n    \"callingLineIdLastName\": \"user-1\",\n    \"callingLineIdFirstName\": \"demo\",\n    \"hiraganaLastName\": \"user-1\",\n    \"hiraganaFirstName\": \"demo\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n    \"defaultAlias\": \"demo_user_1@odinapi.net\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Polycom Soundpoint IP 650\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"quantity\": \"34\"\n            },\n            \"numberOfAssignedPorts\": 1,\n            \"status\": \"Online\",\n            \"configurationMode\": \"Default\",\n            \"transportProtocol\": \"TCP\",\n            \"useCustomUserNamePassword\": false,\n            \"deviceName\": \"demo\",\n            \"macAddress\": \"\",\n            \"deviceLevel\": \"Group\",\n            \"accessDeviceCredentials\": {\n                \"userName\": null\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"demo_user_1@odinapi.net\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"true\",\n        \"contacts\": []\n    },\n    \"countryCode\": \"1\",\n    \"networkClassOfService\": \"testncos\",\n    \"allowVideo\": true,\n    \"callingLineIdPhoneNumber\": \"\",\n    \"phoneNumber\": \"\",\n    \"extension\": \"\",\n    \"domain\": \"odinapi.net\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"}],"_postman_id":"ca3091d6-fccd-473e-bdfd-744cfbf54ac2"},{"name":"User Login Info","id":"dacc3dca-f843-4125-91ec-979b782af2c3","request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v2/users/login-info?userId=ParkBench@voip.14ip.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","login-info"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"},{"disabled":true,"key":"userId","value":"TestPrithwi@voicecci.net"},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.prov"},{"disabled":true,"key":"userId","value":"bad-user-id"},{"disabled":true,"key":"userId","value":""},{"disabled":true,"key":"userId","value":"sys.odin.lab"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.reseller"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.ent"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.grp@voicecci.net"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.dept@voicecci.net"},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.user"},{"disabled":true,"key":"userId","value":"slatsa-user"},{"disabled":true,"key":"userId","value":"slatsa-grp"},{"key":"userId","value":"ParkBench@voip.14ip.net"}],"variable":[]}},"response":[{"id":"bbb966b6-c7f6-43db-84e3-35aed52a6ea5","name":"User Login Info","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n\t\"newUserId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"},"url":{"raw":"{{url}}/api/v2/users/login?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","login"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 21:53:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"299"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"loginType\": \"User\",\n    \"locale\": \"en_US\",\n    \"encoding\": \"ISO-8859-1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": -2147483648,\n    \"lastName\": \"mock-2000\",\n    \"firstName\": \"mock-2000\",\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\",\n    \"phoneNumber\": \"+19589582000\"\n}"}],"_postman_id":"dacc3dca-f843-4125-91ec-979b782af2c3"},{"name":"User Reset","id":"c2e9726e-8969-4634-bef1-cac9cf65ac12","request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"user-1@voicecci.net\",\n    \"removeFromGroupServices\": true,\n    \"removeCallRecords\": true,\n    \"removeAlternateUserIds\": true,\n    \"removeWebexPerson\": true,\n    \"cycleServicePacks\": true,\n    \"resetPasswordPasscode\": true\n}"},"url":"{{url}}/api/v2/users/reset","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","reset"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"},{"disabled":true,"key":"userId","value":"TestPrithwi@voicecci.net"},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.prov"},{"disabled":true,"key":"userId","value":"bad-user-id"},{"disabled":true,"key":"userId","value":""},{"disabled":true,"key":"userId","value":"sys.odin.lab"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.reseller"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.ent"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.grp@voicecci.net"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.dept@voicecci.net"},{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"userId","value":"odin.lab.slatsa.user"},{"disabled":true,"key":"userId","value":"slatsa-user"}],"variable":[]}},"response":[],"_postman_id":"c2e9726e-8969-4634-bef1-cac9cf65ac12"},{"name":"User Portal Passcode","id":"3d89c835-dfe2-4e98-b968-968028907d4f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/portal-passcode?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","portal-passcode"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"01f64bce-eb84-4631-afcc-7870db9945a5","name":"User Portal Passcode","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/portal-passcode?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","portal-passcode"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:18:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"108"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isLoginDisabled\": false,\n    \"expirationDays\": 30,\n    \"passcode\": \"*****\",\n    \"userId\": \"9589582000@as3.xdp.broadsoft.com\"\n}"}],"_postman_id":"3d89c835-dfe2-4e98-b968-968028907d4f"},{"name":"User Portal Passcode","id":"aa6abf08-1cbd-4fa1-a911-74b128cb9146","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\":\"5132655006@odinapi.net\",\n    \"newPasscode\":\"1235\",\n    \"oldPasscode\":\"1234\"\n}"},"url":"{{url}}/api/v2/users/portal-passcode","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","portal-passcode"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7e01e154-d990-4a72-a1ac-eccc38b8021f","name":"User Portal Passcode","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"userId\":\"9589582000@as3.xdp.broadsoft.com\",\"newPasscode\":\"8543\"}"},"url":"{{url}}/api/v2/users/portal-passcode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 22:18:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"aa6abf08-1cbd-4fa1-a911-74b128cb9146"},{"name":"Group User Audit","id":"c2e9c51b-9e74-4adf-a18e-099500e265b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/groups/users/audit?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","users","audit"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"e48237d3-d5a0-4f5b-9c35-00667e692e7a","name":"Group User Audit","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v2/groups/users/audit?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","users","audit"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"users\": [\n                {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin\",\n                    \"userId\": \"4003@parkbenchsolutions.com\",\n                    \"user\": {\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"lastName\": 4003,\n                        \"firstName\": 4003,\n                        \"callingLineIdLastName\": 4003,\n                        \"callingLineIdFirstName\": 4003,\n                        \"hiraganaLastName\": 4003,\n                        \"hiraganaFirstName\": 4003,\n                        \"phoneNumber\": \"8135551003\",\n                        \"extension\": \"1003\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"4003@parkbenchsolutions.com\",\n                        \"accessDeviceEndpoint\": {\n                            \"accessDevice\": {\n                                \"deviceType\": \"Polycom IP550\",\n                                \"protocol\": \"SIP 2.0\",\n                                \"macAddress\": 222222222222,\n                                \"numberOfPorts\": {\n                                    \"quantity\": \"4\"\n                                },\n                                \"numberOfAssignedPorts\": 1,\n                                \"status\": \"Online\",\n                                \"configurationMode\": \"Default\",\n                                \"transportProtocol\": \"UDP\",\n                                \"useCustomUserNamePassword\": false,\n                                \"deviceName\": \"4003-polycom550\",\n                                \"deviceLevel\": \"Group\",\n                                \"accessDeviceCredentials\": {\n                                    \"userName\": null\n                                },\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"tags\": [],\n                                \"relatedServices\": []\n                            },\n                            \"linePort\": \"4003@parkbenchsolutions.com\",\n                            \"staticRegistrationCapable\": \"false\",\n                            \"useDomain\": \"true\",\n                            \"supportVisualDeviceManagement\": \"false\",\n                            \"contacts\": []\n                        },\n                        \"countryCode\": \"1\",\n                        \"userId\": \"4003@parkbenchsolutions.com\",\n                        \"callingLineIdPhoneNumber\": \"\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"accessDeviceEndpoint\",\n                        \"aliases\": [\n                            \"4003-alias-1@parkbenchsolutions.com\",\n                            \"4003-alias-2@parkbenchsolutions.com\",\n                            \"4003-alias-3@parkbenchsolutions.com\"\n                        ],\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": 2147483647\n                    },\n                    \"outgoingCallingPlans\": {\n                        \"outgoingCallingPlanAuthorizationCode\": {\n                            \"settings\": {\n                                \"useCustomSettings\": true,\n                                \"userId\": \"4003@parkbenchsolutions.com\",\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"isEnterprise\": true\n                            },\n                            \"codes\": [\n                                {\n                                    \"code\": \"1001\",\n                                    \"description\": \"1001\"\n                                }\n                            ],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": false,\n                                \"toll\": true,\n                                \"international\": true,\n                                \"operatorAssisted\": false,\n                                \"chargeableDirectoryAssisted\": false,\n                                \"specialServicesI\": false,\n                                \"specialServicesII\": false,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": false,\n                                \"unknown\": false\n                            },\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": \"Allow\",\n                                \"local\": \"Allow\",\n                                \"tollFree\": \"Allow\",\n                                \"toll\": \"Allow\",\n                                \"international\": \"Disallow\",\n                                \"operatorAssisted\": \"Allow\",\n                                \"chargeableDirectoryAssisted\": \"Allow\",\n                                \"specialServicesI\": \"Allow\",\n                                \"specialServicesII\": \"Allow\",\n                                \"premiumServicesI\": \"Disallow\",\n                                \"premiumServicesII\": \"Disallow\",\n                                \"casual\": \"Disallow\",\n                                \"urlDialing\": \"Allow\",\n                                \"unknown\": \"Allow\"\n                            },\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirected\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"outsideGroup\": true\n                            },\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": true,\n                                \"toll\": true,\n                                \"international\": true,\n                                \"operatorAssisted\": true,\n                                \"chargeableDirectoryAssisted\": true,\n                                \"specialServicesI\": true,\n                                \"specialServicesII\": true,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": true,\n                                \"unknown\": true\n                            },\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanTransferNumbers\": {\n                            \"useCustomSettings\": true,\n                            \"userNumbers\": {},\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"assignedServices\": {\n                        \"userId\": \"4003@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\"\n                            }\n                        ],\n                        \"groupServices\": [\n                            {\n                                \"serviceName\": \"Music On Hold\",\n                                \"isActive\": true\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceAssignment\": {\n                        \"userId\": \"4003@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Anonymous Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Busy\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding No Answer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Notify\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Delivery Blocking\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Do Not Disturb\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Intercept User\"\n                            },\n                            {\n                                \"serviceName\": \"Last Number Redial\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Last Number Redial\"\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Outlook Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Priority Alert\"\n                            },\n                            {\n                                \"serviceName\": \"Call Return\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Return\"\n                            },\n                            {\n                                \"serviceName\": \"Remote Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Remote Office\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Acceptance\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Selective\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Service Scripts User\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Personal\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\",\n                                \"assigned\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Customer Originated Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Customer Originated Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party MWI Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party MWI Control\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 5\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance 5\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 10\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 10\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 15\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 20\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 20\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 25\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 25\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 30\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 30\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 35\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 35\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Retrieval\"\n                            },\n                            {\n                                \"serviceName\": \"Flash Call Hold\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flash Call Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party Voice Mail Support\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Portal Calling\"\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Internal Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Blocking Override\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Barge-in Exempt\"\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video Add-On\"\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Malicious Call Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Preferred Carrier User\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Enhanced Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Host\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Diversion Inhibitor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Diversion Inhibitor\"\n                            },\n                            {\n                                \"serviceName\": \"Multiple Call Arrangement\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Multiple Call Arrangement\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Hold/Retrieve\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Three-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Three-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Privacy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Fax Messaging\"\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Physical Location\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Supervisor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Supervisor\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"N-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"N-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Two-Stage Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Not Reachable\"\n                            },\n                            {\n                                \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Small Business\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Office\"\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Custom Ringback\"\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"In-Call Service Activation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Presentation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Presentation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Restriction\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Zone Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"Polycom Phone Services\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Polycom Phone Services\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Music On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Video On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Advice Of Charge\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Prepaid\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Standard\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Premium\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Premium\"\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Number Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Office Communicator Tab\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Office Communicator Tab\"\n                            },\n                            {\n                                \"serviceName\": \"Pre-alerting Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Pre-alerting Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center Monitoring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center Monitoring\"\n                            },\n                            {\n                                \"serviceName\": \"Location-Based Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Location-Based Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"Call Me Now\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Me Now\"\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Recording\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Integrated IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Group Night Forwarding\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Executive\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive\"\n                            },\n                            {\n                                \"serviceName\": \"Executive-Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive-Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 3\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Assistant - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 15\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 16\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 16\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 17\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 18\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 19\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch MobileLink\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Security Classification\"\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Flexible Seating Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Personal Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Personal Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Sharing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Sharing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always Secondary\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Silent Alerting\"\n                            },\n                            {\n                                \"serviceName\": \"Conference Room\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Conference Room\"\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Sequential Ring\"\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Number Portability Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Terminating Alternate Trunk Identity\"\n                            }\n                        ],\n                        \"servicePackServices\": [\n                            {\n                                \"assigned\": true,\n                                \"description\": \"Standard\",\n                                \"serviceName\": \"Standard\",\n                                \"alias\": \"Standard\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Premium\",\n                                \"serviceName\": \"Premium\",\n                                \"alias\": \"Premium\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Basic\",\n                                \"serviceName\": \"Basic\",\n                                \"alias\": \"Basic\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceSettings\": {\n                        \"Alternate Numbers\": {\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"distinctiveRing\": true,\n                            \"alternateEntries\": [\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 1\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 2\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 3\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 4\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 5\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 6\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 7\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 8\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 9\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 10\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Anonymous Call Rejection\": {\n                            \"isActive\": false,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Busy Lamp Field\": {\n                            \"enableCallParkNotification\": true,\n                            \"users\": [],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Always\": {\n                            \"isActive\": true,\n                            \"forwardToPhoneNumber\": 6500,\n                            \"isRingSplashActive\": false,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Busy\": {\n                            \"isActive\": false,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding No Answer\": {\n                            \"isActive\": false,\n                            \"numberOfRings\": 3,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Not Reachable\": {\n                            \"isActive\": false,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Selective\": {\n                            \"isActive\": false,\n                            \"playRingReminder\": false,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"criteria\": [],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"CommPilot Express\": {\n                            \"profile\": \"Available In Office\",\n                            \"availableInOffice\": {\n                                \"additionalPhoneNumberToRing\": \"1113334444\",\n                                \"busySetting\": {\n                                    \"action\": \"Transfer To Voice Mail\"\n                                },\n                                \"noAnswerSetting\": {\n                                    \"action\": \"Transfer To Voice Mail\"\n                                }\n                            },\n                            \"availableOutOfOffice\": {\n                                \"incomingCalls\": {\n                                    \"action\": \"Transfer To Voice Mail\"\n                                },\n                                \"incomingCallNotify\": {\n                                    \"sendEmail\": \"false\"\n                                }\n                            },\n                            \"busy\": {\n                                \"incomingCalls\": {\n                                    \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                                },\n                                \"voiceMailNotify\": {\n                                    \"sendEmail\": \"false\"\n                                }\n                            },\n                            \"unavailable\": {\n                                \"incomingCalls\": {\n                                    \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                                },\n                                \"voiceMailGreeting\": \"No Answer\"\n                            },\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Fax Messaging\": {\n                            \"isActive\": true,\n                            \"phoneNumber\": 8135551005,\n                            \"extension\": 1005,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"aliases\": [\n                                {\n                                    \"alias\": \"4004@parkbenchsolutions.com\",\n                                    \"phoneNumber\": \"4004\",\n                                    \"domain\": \"parkbenchsolutions.com\"\n                                },\n                                {\n                                    \"alias\": \"4005@parkbenchsolutions.com\",\n                                    \"phoneNumber\": \"4005\",\n                                    \"domain\": \"parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Intercept User\": {\n                            \"isActive\": false,\n                            \"announcementSelection\": \"Default\",\n                            \"inboundCallMode\": \"Intercept All\",\n                            \"alternateBlockingAnnouncement\": false,\n                            \"exemptInboundMobilityCalls\": true,\n                            \"disableParallelRingingToNetworkLocations\": true,\n                            \"routeToVoiceMail\": true,\n                            \"playNewPhoneNumber\": true,\n                            \"newPhoneNumber\": 123,\n                            \"transferOnZeroToPhoneNumber\": true,\n                            \"transferPhoneNumber\": 111111,\n                            \"outboundCallMode\": \"Block All\",\n                            \"exemptOutboundMobilityCalls\": true,\n                            \"rerouteOutboundCalls\": true,\n                            \"outboundReroutePhoneNumber\": 1234,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Selective Call Rejection\": {\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"Reject Calls\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"callsFrom\": \"12345,54321\",\n                                    \"blacklisted\": true,\n                                    \"holidaySchedule\": \"None\",\n                                    \"callsToType\": null,\n                                    \"callsToNumber\": null,\n                                    \"callsToExtension\": null,\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                                        \"includeAnonymousCallers\": \"false\",\n                                        \"includeUnavailableCallers\": \"false\",\n                                        \"phoneNumbers\": [\n                                            \"12345\",\n                                            \"54321\"\n                                        ]\n                                    },\n                                    \"private\": false,\n                                    \"userId\": \"4003@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Shared Call Appearance\": {\n                            \"alertAllAppearancesForClickToDialCalls\": true,\n                            \"alertAllAppearancesForGroupPagingCalls\": true,\n                            \"maxAppearances\": 2,\n                            \"allowSCACallRetrieve\": true,\n                            \"enableMultipleCallArrangement\": false,\n                            \"multipleCallArrangementIsActive\": false,\n                            \"allowBridgingBetweenLocations\": true,\n                            \"bridgeWarningTone\": \"Barge-In\",\n                            \"enableCallParkNotification\": true,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"endpoints\": [\n                                {\n                                    \"deviceLevel\": \"Group\",\n                                    \"deviceName\": \"shared_4003_1\",\n                                    \"deviceType\": \"Polycom IP550\",\n                                    \"portNumber\": null,\n                                    \"deviceSupportVisualDeviceManagement\": false,\n                                    \"isActive\": true,\n                                    \"allowOrigination\": true,\n                                    \"allowTermination\": true,\n                                    \"macAddress\": null,\n                                    \"linePort\": \"shared_4003_1@parkbenchsolutions.com\",\n                                    \"sipContact\": \"sip:\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Speed Dial 100\": {\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"speedCodes\": [\n                                {\n                                    \"speedCode\": \"0\",\n                                    \"phoneNumber\": \"1111\",\n                                    \"description\": \"1111\"\n                                },\n                                {\n                                    \"speedCode\": \"1\",\n                                    \"phoneNumber\": \"2000\",\n                                    \"description\": \"2000\"\n                                },\n                                {\n                                    \"speedCode\": \"2\",\n                                    \"phoneNumber\": \"2222\",\n                                    \"description\": \"2222\"\n                                },\n                                {\n                                    \"speedCode\": \"15\",\n                                    \"phoneNumber\": \"1415\",\n                                    \"description\": \"1515\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Speed Dial 8\": {\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"speedCodes\": [\n                                {\n                                    \"speedCode\": \"2\",\n                                    \"phoneNumber\": \"222\"\n                                },\n                                {\n                                    \"speedCode\": \"3\",\n                                    \"phoneNumber\": \"333\"\n                                },\n                                {\n                                    \"speedCode\": \"4\"\n                                },\n                                {\n                                    \"speedCode\": \"5\"\n                                },\n                                {\n                                    \"speedCode\": \"6\"\n                                },\n                                {\n                                    \"speedCode\": \"7\"\n                                },\n                                {\n                                    \"speedCode\": \"8\"\n                                },\n                                {\n                                    \"speedCode\": \"9\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Voice Portal Calling\": {\n                            \"isActive\": true,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Zone Calling Restrictions\": {\n                            \"homeZoneName\": \"Office\",\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"utilities\": {\n                        \"alternateUserId\": {\n                            \"users\": [\n                                {\n                                    \"userId\": \"userid12\",\n                                    \"alternate\": true,\n                                    \"description\": \"description1\"\n                                },\n                                {\n                                    \"userId\": \"userid45\",\n                                    \"alternate\": true,\n                                    \"description\": \"userid4\"\n                                },\n                                {\n                                    \"userId\": \"userTest\",\n                                    \"alternate\": true,\n                                    \"description\": \"userTest\"\n                                }\n                            ],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"announcementFile\": {\n                            \"totalFileSize\": 0,\n                            \"maxFileSize\": 1000,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"announcementType\": \"\",\n                            \"announcements\": []\n                        },\n                        \"callPolicies\": {\n                            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                            \"callBeingForwardedResponseCallType\": \"Never\",\n                            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"callProcessingPolicy\": {\n                            \"useUserCLIDSetting\": false,\n                            \"useUserMediaSetting\": false,\n                            \"useUserCallLimitsSetting\": false,\n                            \"useUserDCLIDSetting\": false,\n                            \"useMaxSimultaneousCalls\": true,\n                            \"maxSimultaneousCalls\": 3,\n                            \"useMaxSimultaneousVideoCalls\": true,\n                            \"maxSimultaneousVideoCalls\": 1,\n                            \"useMaxCallTimeForAnsweredCalls\": true,\n                            \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                            \"useMaxCallTimeForUnansweredCalls\": false,\n                            \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                            \"mediaPolicySelection\": \"No Restrictions\",\n                            \"useMaxConcurrentRedirectedCalls\": false,\n                            \"maxConcurrentRedirectedCalls\": 5,\n                            \"useMaxFindMeFollowMeDepth\": true,\n                            \"maxFindMeFollowMeDepth\": 3,\n                            \"maxRedirectionDepth\": 5,\n                            \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                            \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                            \"clidPolicy\": \"Use DN\",\n                            \"emergencyClidPolicy\": \"Use DN\",\n                            \"allowAlternateNumbersForRedirectingIdentity\": true,\n                            \"useGroupName\": false,\n                            \"blockCallingNameForExternalCalls\": false,\n                            \"enableDialableCallerID\": false,\n                            \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                            \"allowDepartmentCLIDNameOverride\": false,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"communicationBarring\": {\n                            \"useGroupSetting\": false,\n                            \"profileName\": \"test\",\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"devicePolicies\": {\n                            \"lineMode\": \"Single User Private and Shared\",\n                            \"enableDeviceFeatureSynchronization\": true,\n                            \"enableDnd\": false,\n                            \"enableCallForwardingAlways\": false,\n                            \"enableCallForwardingBusy\": false,\n                            \"enableCallForwardingNoAnswer\": false,\n                            \"enableAcd\": false,\n                            \"enableExecutive\": false,\n                            \"enableExecutiveAssistant\": false,\n                            \"enableSecurityClassification\": false,\n                            \"enableCallRecording\": false,\n                            \"enableCallDecline\": false,\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"featureAccessCode\": {\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"featureAccessCodes\": [\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                    \"mainCode\": \"*95\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Bridge\",\n                                    \"mainCode\": \"*15\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park\",\n                                    \"mainCode\": \"*68\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Group Call Park\",\n                                    \"mainCode\": \"#58\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Speed Dial 100\",\n                                    \"mainCode\": \"*75\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                    \"mainCode\": \"*90\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Speed Dial 8\",\n                                    \"mainCode\": \"*74\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                    \"mainCode\": \"*87\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Location Control Deactivation\",\n                                    \"mainCode\": \"*13\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"No Answer Timer\",\n                                    \"mainCode\": \"*610\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                    \"mainCode\": \"*61*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                    \"mainCode\": \"*67*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                    \"mainCode\": \"*71\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                    \"mainCode\": \"*92\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                    \"mainCode\": \"*52*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                    \"mainCode\": \"*47\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                    \"mainCode\": \"*72\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                    \"mainCode\": \"*63*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                    \"mainCode\": \"#53\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                    \"mainCode\": \"*93\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                    \"mainCode\": \"#76\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n                                    \"mainCode\": \"*51*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                    \"mainCode\": \"*77\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                    \"mainCode\": \"*21*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                    \"mainCode\": \"#52\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Retrieve\",\n                                    \"mainCode\": \"*11\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                    \"mainCode\": \"*37\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                    \"mainCode\": \"#51\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Location Control Activation\",\n                                    \"mainCode\": \"*12\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                    \"mainCode\": \"#77\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Voice Portal Access\",\n                                    \"mainCode\": \"*62\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                    \"mainCode\": \"*88\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                    \"mainCode\": \"#0322\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                    \"mainCode\": \"*60\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                    \"mainCode\": \"*73\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Pickup\",\n                                    \"mainCode\": \"*98\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                    \"mainCode\": \"*91\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"FMFM Call Push\",\n                                    \"mainCode\": \"*26\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                    \"mainCode\": \"*94\",\n                                    \"enableFAC\": \"true\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"portalPasscode\": {\n                            \"isLoginDisabled\": false,\n                            \"expirationDays\": -22,\n                            \"passcode\": \"*****\",\n                            \"userId\": \"4003@parkbenchsolutions.com\"\n                        },\n                        \"userSchedules\": {\n                            \"schedules\": [\n                                {\n                                    \"name\": \"user schedule1\",\n                                    \"type\": \"Holiday\",\n                                    \"level\": \"User\",\n                                    \"userId\": \"4003@parkbenchsolutions.com\",\n                                    \"events\": [\n                                        {\n                                            \"eventName\": \"Christmas\",\n                                            \"startTime\": \"2019-12-25T00:00:00\",\n                                            \"endTime\": \"2019-12-25T23:59:59\",\n                                            \"allDayEvent\": true,\n                                            \"name\": \"user schedule1\",\n                                            \"type\": \"Holiday\",\n                                            \"userId\": \"4003@parkbenchsolutions.com\",\n                                            \"rrule\": \"DTSTART:20191225T050000Z\\nRRULE:FREQ=YEARLY;BYMONTHDAY=25;BYMONTH=12\"\n                                        }\n                                    ]\n                                }\n                            ],\n                            \"userId\": \"4003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    }\n                },\n                {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin\",\n                    \"userId\": \"4002@parkbenchsolutions.com\",\n                    \"user\": {\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"lastName\": 4002,\n                        \"firstName\": 4002,\n                        \"callingLineIdLastName\": 4002,\n                        \"callingLineIdFirstName\": 4002,\n                        \"hiraganaLastName\": 4002,\n                        \"hiraganaFirstName\": 4002,\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"4002@parkbenchsolutions.com\",\n                        \"accessDeviceEndpoint\": {\n                            \"accessDevice\": {\n                                \"deviceType\": \"Polycom VVX1500\",\n                                \"protocol\": \"SIP 2.0\",\n                                \"numberOfPorts\": {\n                                    \"quantity\": \"6\"\n                                },\n                                \"numberOfAssignedPorts\": 1,\n                                \"status\": \"Online\",\n                                \"configurationMode\": \"Default\",\n                                \"transportProtocol\": \"UDP\",\n                                \"useCustomUserNamePassword\": false,\n                                \"deviceName\": \"4001-dev1-video\",\n                                \"deviceLevel\": \"Group\",\n                                \"accessDeviceCredentials\": {\n                                    \"userName\": null\n                                },\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"tags\": [],\n                                \"relatedServices\": []\n                            },\n                            \"linePort\": \"4002@parkbenchsolutions.com\",\n                            \"staticRegistrationCapable\": \"false\",\n                            \"useDomain\": \"true\",\n                            \"supportVisualDeviceManagement\": \"false\",\n                            \"contacts\": []\n                        },\n                        \"countryCode\": \"1\",\n                        \"userId\": \"4002@parkbenchsolutions.com\",\n                        \"callingLineIdPhoneNumber\": \"\",\n                        \"phoneNumber\": \"\",\n                        \"extension\": \"\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"accessDeviceEndpoint\",\n                        \"aliases\": [],\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": 2147483647\n                    },\n                    \"outgoingCallingPlans\": {\n                        \"outgoingCallingPlanAuthorizationCode\": {\n                            \"settings\": {\n                                \"useCustomSettings\": true,\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"isEnterprise\": true\n                            },\n                            \"codes\": [\n                                {\n                                    \"code\": \"1001\",\n                                    \"description\": \"1001\"\n                                },\n                                {\n                                    \"code\": \"1002\",\n                                    \"description\": \"1002\"\n                                }\n                            ],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": false,\n                                \"toll\": true,\n                                \"international\": false,\n                                \"operatorAssisted\": false,\n                                \"chargeableDirectoryAssisted\": false,\n                                \"specialServicesI\": false,\n                                \"specialServicesII\": false,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": false,\n                                \"unknown\": false\n                            },\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": \"Allow\",\n                                \"local\": \"Allow\",\n                                \"tollFree\": \"Allow\",\n                                \"toll\": \"Allow\",\n                                \"international\": \"Disallow\",\n                                \"operatorAssisted\": \"Allow\",\n                                \"chargeableDirectoryAssisted\": \"Allow\",\n                                \"specialServicesI\": \"Allow\",\n                                \"specialServicesII\": \"Allow\",\n                                \"premiumServicesI\": \"Disallow\",\n                                \"premiumServicesII\": \"Disallow\",\n                                \"casual\": \"Disallow\",\n                                \"urlDialing\": \"Allow\",\n                                \"unknown\": \"Allow\"\n                            },\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirected\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"outsideGroup\": true\n                            },\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": true,\n                                \"toll\": true,\n                                \"international\": false,\n                                \"operatorAssisted\": true,\n                                \"chargeableDirectoryAssisted\": true,\n                                \"specialServicesI\": true,\n                                \"specialServicesII\": true,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": true,\n                                \"unknown\": true\n                            },\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanTransferNumbers\": {\n                            \"useCustomSettings\": true,\n                            \"userNumbers\": {},\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"assignedServices\": {\n                        \"userId\": \"4002@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\"\n                            }\n                        ],\n                        \"groupServices\": [\n                            {\n                                \"serviceName\": \"Music On Hold\",\n                                \"isActive\": true\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceAssignment\": {\n                        \"userId\": \"4002@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Anonymous Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Busy\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding No Answer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Notify\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Delivery Blocking\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Do Not Disturb\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Intercept User\"\n                            },\n                            {\n                                \"serviceName\": \"Last Number Redial\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Last Number Redial\"\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Outlook Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Priority Alert\"\n                            },\n                            {\n                                \"serviceName\": \"Call Return\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Return\"\n                            },\n                            {\n                                \"serviceName\": \"Remote Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Remote Office\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Acceptance\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Selective\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Service Scripts User\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Personal\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Customer Originated Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Customer Originated Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party MWI Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party MWI Control\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 5\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance 5\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 10\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 10\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 15\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 20\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 20\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 25\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 25\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 30\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 30\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 35\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 35\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Retrieval\"\n                            },\n                            {\n                                \"serviceName\": \"Flash Call Hold\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flash Call Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party Voice Mail Support\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Portal Calling\"\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Internal Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Blocking Override\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Barge-in Exempt\"\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video Add-On\"\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Malicious Call Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Preferred Carrier User\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Enhanced Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Host\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Diversion Inhibitor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Diversion Inhibitor\"\n                            },\n                            {\n                                \"serviceName\": \"Multiple Call Arrangement\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Multiple Call Arrangement\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Hold/Retrieve\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Three-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Three-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Privacy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Fax Messaging\"\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Physical Location\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Supervisor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Supervisor\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"N-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"N-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Two-Stage Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Not Reachable\"\n                            },\n                            {\n                                \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Small Business\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Office\"\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Custom Ringback\"\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"In-Call Service Activation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Presentation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Presentation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Restriction\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Zone Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"Polycom Phone Services\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Polycom Phone Services\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Music On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Video On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Advice Of Charge\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Prepaid\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Standard\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Premium\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Premium\"\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Number Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Office Communicator Tab\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Office Communicator Tab\"\n                            },\n                            {\n                                \"serviceName\": \"Pre-alerting Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Pre-alerting Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center Monitoring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center Monitoring\"\n                            },\n                            {\n                                \"serviceName\": \"Location-Based Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Location-Based Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"Call Me Now\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Me Now\"\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Recording\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Integrated IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Group Night Forwarding\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                \"assigned\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Executive\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive\"\n                            },\n                            {\n                                \"serviceName\": \"Executive-Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive-Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 3\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Assistant - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 15\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 16\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 16\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 17\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 18\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 19\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch MobileLink\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Security Classification\"\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flexible Seating Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Personal Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Personal Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Sharing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Sharing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always Secondary\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Silent Alerting\"\n                            },\n                            {\n                                \"serviceName\": \"Conference Room\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Conference Room\"\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Sequential Ring\"\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Number Portability Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Terminating Alternate Trunk Identity\"\n                            }\n                        ],\n                        \"servicePackServices\": [\n                            {\n                                \"assigned\": true,\n                                \"description\": \"Standard\",\n                                \"serviceName\": \"Standard\",\n                                \"alias\": \"Standard\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Premium\",\n                                \"serviceName\": \"Premium\",\n                                \"alias\": \"Premium\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Basic\",\n                                \"serviceName\": \"Basic\",\n                                \"alias\": \"Basic\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceSettings\": {\n                        \"Advice Of Charge\": {\n                            \"isActive\": false,\n                            \"aocType\": \"During Call\",\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Alternate Numbers\": {\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"distinctiveRing\": true,\n                            \"alternateEntries\": [\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 1\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 2\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 3\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 4\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 5\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 6\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 7\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 8\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 9\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 10\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Anonymous Call Rejection\": {\n                            \"isActive\": false,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Attendant Console\": {\n                            \"launchOnLogin\": false,\n                            \"allowUserConfigCallDetails\": true,\n                            \"allowUserViewCallDetails\": true,\n                            \"users\": [],\n                            \"displayColumns\": [\n                                \"Status\",\n                                \"Name\",\n                                \"Phone Number\",\n                                \"Extension\",\n                                \"Action\"\n                            ],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Automatic Callback\": {\n                            \"isActive\": true,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Automatic Hold/Retrieve\": {\n                            \"isActive\": true,\n                            \"recallTimerSeconds\": 130,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Barge-in Exempt\": {\n                            \"isActive\": true,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"BroadWorks Anywhere\": {\n                            \"alertAllLocationsForClickToDialCalls\": true,\n                            \"alertAllLocationsForGroupPagingCalls\": true,\n                            \"phoneNumbers\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\"\n                        },\n                        \"BroadWorks Mobility\": {\n                            \"isActive\": true,\n                            \"phonesToRing\": \"Fixed\",\n                            \"mobilePhoneNumber\": 4141114002,\n                            \"alertClickToDialCalls\": true,\n                            \"alertGroupPagingCalls\": true,\n                            \"enableDiversionInhibitor\": true,\n                            \"requireAnswerConfirmation\": true,\n                            \"broadworksCallControl\": true,\n                            \"useSettingLevel\": \"Group\",\n                            \"denyCallOriginations\": true,\n                            \"denyCallTerminations\": true,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Busy Lamp Field\": {\n                            \"enableCallParkNotification\": false,\n                            \"users\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Always\": {\n                            \"isActive\": true,\n                            \"forwardToPhoneNumber\": 6500,\n                            \"isRingSplashActive\": false,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Busy\": {\n                            \"isActive\": false,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding No Answer\": {\n                            \"isActive\": false,\n                            \"numberOfRings\": 3,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Not Reachable\": {\n                            \"isActive\": false,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Selective\": {\n                            \"isActive\": false,\n                            \"playRingReminder\": false,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"criteria\": [],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Intercept User\": {\n                            \"isActive\": false,\n                            \"announcementSelection\": \"Default\",\n                            \"inboundCallMode\": \"Intercept All\",\n                            \"alternateBlockingAnnouncement\": false,\n                            \"exemptInboundMobilityCalls\": false,\n                            \"disableParallelRingingToNetworkLocations\": false,\n                            \"routeToVoiceMail\": false,\n                            \"playNewPhoneNumber\": false,\n                            \"transferOnZeroToPhoneNumber\": false,\n                            \"outboundCallMode\": \"Block All\",\n                            \"exemptOutboundMobilityCalls\": false,\n                            \"rerouteOutboundCalls\": false,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Simultaneous Ring Personal\": {\n                            \"isActive\": true,\n                            \"doNotRingIfOnCall\": true,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria schedule holiday\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"blacklisted\": false,\n                                    \"holidaySchedule\": {\n                                        \"name\": \"Holidays\",\n                                        \"level\": \"Group\",\n                                        \"type\": \"Holiday\"\n                                    },\n                                    \"callsFrom\": [\n                                        \"111\",\n                                        \"222\"\n                                    ],\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                                        \"includeAnonymousCallers\": false,\n                                        \"includeUnavailableCallers\": false,\n                                        \"phoneNumbers\": [\n                                            \"111\",\n                                            \"222\"\n                                        ]\n                                    },\n                                    \"userId\": \"4002@parkbenchsolutions.com\"\n                                },\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria1\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"blacklisted\": false,\n                                    \"holidaySchedule\": \"None\",\n                                    \"callsFrom\": [\n                                        \"All calls\"\n                                    ],\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Any\",\n                                        \"includeAnonymousCallers\": false,\n                                        \"includeUnavailableCallers\": false,\n                                        \"phoneNumbers\": []\n                                    },\n                                    \"userId\": \"4002@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"locations\": [\n                                {\n                                    \"phoneNumber\": \"123123\",\n                                    \"answerConfirmationRequired\": true\n                                },\n                                {\n                                    \"phoneNumber\": \"123123123\",\n                                    \"answerConfirmationRequired\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Speed Dial 8\": {\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"speedCodes\": [\n                                {\n                                    \"speedCode\": \"2\",\n                                    \"phoneNumber\": \"222\"\n                                },\n                                {\n                                    \"speedCode\": \"3\",\n                                    \"phoneNumber\": \"333\"\n                                },\n                                {\n                                    \"speedCode\": \"4\"\n                                },\n                                {\n                                    \"speedCode\": \"5\"\n                                },\n                                {\n                                    \"speedCode\": \"6\"\n                                },\n                                {\n                                    \"speedCode\": \"7\"\n                                },\n                                {\n                                    \"speedCode\": \"8\"\n                                },\n                                {\n                                    \"speedCode\": \"9\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"utilities\": {\n                        \"alternateUserId\": {\n                            \"users\": [],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"announcementFile\": {\n                            \"totalFileSize\": 0,\n                            \"maxFileSize\": 1000,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"announcementType\": \"\",\n                            \"announcements\": []\n                        },\n                        \"callPolicies\": {\n                            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                            \"callBeingForwardedResponseCallType\": \"Never\",\n                            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"callProcessingPolicy\": {\n                            \"useUserCLIDSetting\": false,\n                            \"useUserMediaSetting\": false,\n                            \"useUserCallLimitsSetting\": false,\n                            \"useUserDCLIDSetting\": false,\n                            \"useMaxSimultaneousCalls\": true,\n                            \"maxSimultaneousCalls\": 3,\n                            \"useMaxSimultaneousVideoCalls\": true,\n                            \"maxSimultaneousVideoCalls\": 1,\n                            \"useMaxCallTimeForAnsweredCalls\": true,\n                            \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                            \"useMaxCallTimeForUnansweredCalls\": false,\n                            \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                            \"mediaPolicySelection\": \"No Restrictions\",\n                            \"useMaxConcurrentRedirectedCalls\": false,\n                            \"maxConcurrentRedirectedCalls\": 5,\n                            \"useMaxFindMeFollowMeDepth\": true,\n                            \"maxFindMeFollowMeDepth\": 3,\n                            \"maxRedirectionDepth\": 5,\n                            \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                            \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                            \"clidPolicy\": \"Use DN\",\n                            \"emergencyClidPolicy\": \"Use DN\",\n                            \"allowAlternateNumbersForRedirectingIdentity\": true,\n                            \"useGroupName\": false,\n                            \"blockCallingNameForExternalCalls\": false,\n                            \"enableDialableCallerID\": false,\n                            \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                            \"allowDepartmentCLIDNameOverride\": false,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"communicationBarring\": {\n                            \"useGroupSetting\": true,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"devicePolicies\": {\n                            \"lineMode\": \"Single User Private and Shared\",\n                            \"enableDeviceFeatureSynchronization\": true,\n                            \"enableDnd\": false,\n                            \"enableCallForwardingAlways\": true,\n                            \"enableCallForwardingBusy\": false,\n                            \"enableCallForwardingNoAnswer\": false,\n                            \"enableAcd\": false,\n                            \"enableExecutive\": false,\n                            \"enableExecutiveAssistant\": false,\n                            \"enableSecurityClassification\": false,\n                            \"enableCallRecording\": false,\n                            \"enableCallDecline\": true,\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"featureAccessCode\": {\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"featureAccessCodes\": [\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n                                    \"mainCode\": \"*29\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                    \"mainCode\": \"*95\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Bridge\",\n                                    \"mainCode\": \"*15\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park\",\n                                    \"mainCode\": \"*68\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Group Call Park\",\n                                    \"mainCode\": \"#58\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n                                    \"mainCode\": \"*24\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n                                    \"mainCode\": \"#28\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n                                    \"mainCode\": \"#29\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                    \"mainCode\": \"*90\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n                                    \"mainCode\": \"#23\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n                                    \"mainCode\": \"#24\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Speed Dial 8\",\n                                    \"mainCode\": \"*74\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                    \"mainCode\": \"*87\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Location Control Deactivation\",\n                                    \"mainCode\": \"*13\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"No Answer Timer\",\n                                    \"mainCode\": \"*610\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                    \"mainCode\": \"*61*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                    \"mainCode\": \"*67*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                    \"mainCode\": \"*71\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                    \"mainCode\": \"*92\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n                                    \"mainCode\": \"*23\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n                                    \"mainCode\": \"#9\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                    \"mainCode\": \"*52*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                    \"mainCode\": \"*47\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n                                    \"mainCode\": \"*28\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                    \"mainCode\": \"*72\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                    \"mainCode\": \"*63*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                    \"mainCode\": \"#53\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n                                    \"mainCode\": \"*34\",\n                                    \"alternateCode\": \"*3434\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                    \"mainCode\": \"*93\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                    \"mainCode\": \"#76\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                    \"mainCode\": \"*77\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                    \"mainCode\": \"*21*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                    \"mainCode\": \"#52\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Retrieve\",\n                                    \"mainCode\": \"*11\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                    \"mainCode\": \"*37\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                    \"mainCode\": \"#51\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Location Control Activation\",\n                                    \"mainCode\": \"*12\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                    \"mainCode\": \"#77\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                    \"mainCode\": \"*88\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                    \"mainCode\": \"#0322\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n                                    \"mainCode\": \"#8\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                    \"mainCode\": \"*60\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                    \"mainCode\": \"*73\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Pickup\",\n                                    \"mainCode\": \"*98\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                    \"mainCode\": \"*91\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n                                    \"mainCode\": \"*14\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"FMFM Call Push\",\n                                    \"mainCode\": \"*26\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                    \"mainCode\": \"*94\",\n                                    \"enableFAC\": \"true\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"portalPasscode\": {\n                            \"isLoginDisabled\": false,\n                            \"expirationDays\": -138,\n                            \"passcode\": \"*****\",\n                            \"userId\": \"4002@parkbenchsolutions.com\"\n                        },\n                        \"userSchedules\": {\n                            \"schedules\": [\n                                {\n                                    \"name\": \"test\",\n                                    \"type\": \"Time\",\n                                    \"level\": \"User\",\n                                    \"userId\": \"4002@parkbenchsolutions.com\",\n                                    \"events\": []\n                                },\n                                {\n                                    \"name\": \"Test123\",\n                                    \"type\": \"Holiday\",\n                                    \"level\": \"User\",\n                                    \"userId\": \"4002@parkbenchsolutions.com\",\n                                    \"events\": []\n                                }\n                            ],\n                            \"userId\": \"4002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    }\n                },\n                {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin\",\n                    \"userId\": \"4001@parkbenchsolutions.com\",\n                    \"user\": {\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"lastName\": 4001,\n                        \"firstName\": 4001,\n                        \"callingLineIdLastName\": \"4001-lastname\",\n                        \"callingLineIdFirstName\": \"4001-firstname\",\n                        \"hiraganaLastName\": 4001,\n                        \"hiraganaFirstName\": 4001,\n                        \"phoneNumber\": \"8595551401\",\n                        \"extension\": \"1401\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"4001@parkbenchsolutions.com\",\n                        \"accessDeviceEndpoint\": {\n                            \"accessDevice\": {\n                                \"deviceType\": \"Polycom VVX500\",\n                                \"protocol\": \"SIP 2.0\",\n                                \"numberOfPorts\": {\n                                    \"quantity\": \"32\"\n                                },\n                                \"numberOfAssignedPorts\": 1,\n                                \"status\": \"Online\",\n                                \"configurationMode\": \"Default\",\n                                \"transportProtocol\": \"UDP\",\n                                \"useCustomUserNamePassword\": false,\n                                \"deviceName\": \"polycomvvx_500_iii\",\n                                \"deviceLevel\": \"Group\",\n                                \"accessDeviceCredentials\": {\n                                    \"userName\": null\n                                },\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"tags\": [],\n                                \"relatedServices\": []\n                            },\n                            \"linePort\": \"4001@parkbenchsolutions.com\",\n                            \"staticRegistrationCapable\": \"false\",\n                            \"useDomain\": \"true\",\n                            \"supportVisualDeviceManagement\": \"false\",\n                            \"contacts\": []\n                        },\n                        \"title\": \"Programmer\",\n                        \"pagerPhoneNumber\": \"100-555-1414\",\n                        \"mobilePhoneNumber\": \"100-444-1414\",\n                        \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                        \"yahooId\": \"developer@yahoo.com\",\n                        \"addressLocation\": \"Main Building\",\n                        \"address\": {\n                            \"addressLine1\": \"123 main street\",\n                            \"addressLine2\": \"suite 100\",\n                            \"city\": \"disney\",\n                            \"stateOrProvince\": \"Florida\",\n                            \"zipOrPostalCode\": \"12345\",\n                            \"country\": \"US\"\n                        },\n                        \"countryCode\": \"1\",\n                        \"impId\": \"4001.ent.odin@lab.alliedtelecom.net\",\n                        \"userId\": \"4001@parkbenchsolutions.com\",\n                        \"callingLineIdPhoneNumber\": \"\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"accessDeviceEndpoint\",\n                        \"aliases\": [],\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": 2147483647\n                    },\n                    \"outgoingCallingPlans\": {\n                        \"outgoingCallingPlanAuthorizationCode\": {\n                            \"settings\": {\n                                \"useCustomSettings\": true,\n                                \"userId\": \"4001@parkbenchsolutions.com\",\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"isEnterprise\": true\n                            },\n                            \"codes\": [\n                                {\n                                    \"code\": \"1001\",\n                                    \"description\": \"1001\"\n                                },\n                                {\n                                    \"code\": \"1002\",\n                                    \"description\": \"1002\"\n                                }\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": true,\n                                \"toll\": true,\n                                \"international\": true,\n                                \"operatorAssisted\": true,\n                                \"chargeableDirectoryAssisted\": true,\n                                \"specialServicesI\": true,\n                                \"specialServicesII\": true,\n                                \"premiumServicesI\": true,\n                                \"premiumServicesII\": true,\n                                \"casual\": true,\n                                \"urlDialing\": true,\n                                \"unknown\": true\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": \"Allow\",\n                                \"local\": \"Allow\",\n                                \"tollFree\": \"Allow\",\n                                \"toll\": \"Allow\",\n                                \"international\": \"Disallow\",\n                                \"operatorAssisted\": \"Allow\",\n                                \"chargeableDirectoryAssisted\": \"Allow\",\n                                \"specialServicesI\": \"Allow\",\n                                \"specialServicesII\": \"Allow\",\n                                \"premiumServicesI\": \"Allow\",\n                                \"premiumServicesII\": \"Allow\",\n                                \"casual\": \"Allow\",\n                                \"urlDialing\": \"Allow\",\n                                \"unknown\": \"Allow\"\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirected\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"outsideGroup\": true\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": true,\n                                \"toll\": true,\n                                \"international\": true,\n                                \"operatorAssisted\": true,\n                                \"chargeableDirectoryAssisted\": true,\n                                \"specialServicesI\": true,\n                                \"specialServicesII\": true,\n                                \"premiumServicesI\": true,\n                                \"premiumServicesII\": true,\n                                \"casual\": true,\n                                \"urlDialing\": true,\n                                \"unknown\": true\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanTransferNumbers\": {\n                            \"useCustomSettings\": true,\n                            \"userNumbers\": {\n                                \"phoneNumber01\": \"123\",\n                                \"phoneNumber02\": \"123\",\n                                \"phoneNumber03\": \"123\"\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"assignedServices\": {\n                        \"userId\": \"4001@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"isActive\": false\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\"\n                            }\n                        ],\n                        \"groupServices\": [\n                            {\n                                \"serviceName\": \"Music On Hold\",\n                                \"isActive\": true\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceAssignment\": {\n                        \"userId\": \"4001@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Anonymous Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Busy\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding No Answer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Notify\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Delivery Blocking\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Do Not Disturb\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Intercept User\"\n                            },\n                            {\n                                \"serviceName\": \"Last Number Redial\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Last Number Redial\"\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Outlook Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Priority Alert\"\n                            },\n                            {\n                                \"serviceName\": \"Call Return\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Return\"\n                            },\n                            {\n                                \"serviceName\": \"Remote Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Remote Office\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Acceptance\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Selective\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Service Scripts User\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Personal\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\",\n                                \"assigned\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Customer Originated Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Customer Originated Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party MWI Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party MWI Control\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 5\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance 5\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 10\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 10\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 15\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 20\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 20\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 25\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 25\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 30\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 30\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 35\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 35\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Retrieval\"\n                            },\n                            {\n                                \"serviceName\": \"Flash Call Hold\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flash Call Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party Voice Mail Support\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Portal Calling\"\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"External Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Internal Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Blocking Override\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Barge-in Exempt\"\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Video Add-On\"\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Malicious Call Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Preferred Carrier User\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Enhanced Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Host\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Diversion Inhibitor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Diversion Inhibitor\"\n                            },\n                            {\n                                \"serviceName\": \"Multiple Call Arrangement\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Multiple Call Arrangement\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Hold/Retrieve\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Three-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Three-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Privacy\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Fax Messaging\"\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Physical Location\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Supervisor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Supervisor\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"N-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"N-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Two-Stage Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Not Reachable\"\n                            },\n                            {\n                                \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Small Business\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Office\"\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"External Custom Ringback\"\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"In-Call Service Activation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Presentation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Presentation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Restriction\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Zone Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"Polycom Phone Services\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Polycom Phone Services\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Music On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Video On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Advice Of Charge\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Prepaid\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Standard\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Premium\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Premium\"\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Number Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Office Communicator Tab\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Office Communicator Tab\"\n                            },\n                            {\n                                \"serviceName\": \"Pre-alerting Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Pre-alerting Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center Monitoring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center Monitoring\"\n                            },\n                            {\n                                \"serviceName\": \"Location-Based Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Location-Based Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"Call Me Now\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Me Now\"\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Recording\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"assigned\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Integrated IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Group Night Forwarding\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Executive\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive\"\n                            },\n                            {\n                                \"serviceName\": \"Executive-Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive-Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 3\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Assistant - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 15\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 16\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 16\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 17\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 18\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 19\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch MobileLink\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Security Classification\"\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Flexible Seating Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Personal Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Personal Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Sharing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Sharing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always Secondary\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Silent Alerting\"\n                            },\n                            {\n                                \"serviceName\": \"Conference Room\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Conference Room\"\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Sequential Ring\"\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Number Portability Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Terminating Alternate Trunk Identity\"\n                            }\n                        ],\n                        \"servicePackServices\": [\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Standard\",\n                                \"serviceName\": \"Standard\",\n                                \"alias\": \"Standard\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Premium\",\n                                \"serviceName\": \"Premium\",\n                                \"alias\": \"Premium\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Basic\",\n                                \"serviceName\": \"Basic\",\n                                \"alias\": \"Basic\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceSettings\": {\n                        \"Advice Of Charge\": {\n                            \"isActive\": true,\n                            \"aocType\": \"During Call\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Alternate Numbers\": {\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"distinctiveRing\": true,\n                            \"alternateEntries\": [\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 1\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 2\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 3\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 4\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 5\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 6\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 7\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 8\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 9\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 10\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Anonymous Call Rejection\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Attendant Console\": {\n                            \"launchOnLogin\": true,\n                            \"allowUserConfigCallDetails\": true,\n                            \"allowUserViewCallDetails\": true,\n                            \"users\": [\n                                {\n                                    \"userId\": \"4002@parkbenchsolutions.com\",\n                                    \"lastName\": 4002,\n                                    \"firstName\": 4002,\n                                    \"hiraganaLastName\": 4002,\n                                    \"hiraganaFirstName\": 4002,\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"department\": null,\n                                    \"emailAddress\": null,\n                                    \"iMPId\": null\n                                }\n                            ],\n                            \"displayColumns\": [\n                                \"Status\",\n                                \"Name\",\n                                \"Phone Number\",\n                                \"Extension\",\n                                \"Action\",\n                                \"Department\",\n                                \"Email\",\n                                \"Mobile\",\n                                \"Pager\",\n                                \"Title\"\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Automatic Callback\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Automatic Hold/Retrieve\": {\n                            \"isActive\": true,\n                            \"recallTimerSeconds\": 120,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Barge-in Exempt\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"BroadWorks Anywhere\": {\n                            \"alertAllLocationsForClickToDialCalls\": false,\n                            \"alertAllLocationsForGroupPagingCalls\": false,\n                            \"phoneNumbers\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\"\n                        },\n                        \"BroadWorks Mobility\": {\n                            \"isActive\": true,\n                            \"phonesToRing\": \"Fixed\",\n                            \"mobilePhoneNumber\": 5131114444,\n                            \"alertClickToDialCalls\": true,\n                            \"alertGroupPagingCalls\": true,\n                            \"enableDiversionInhibitor\": true,\n                            \"requireAnswerConfirmation\": true,\n                            \"broadworksCallControl\": true,\n                            \"useSettingLevel\": \"Group\",\n                            \"denyCallOriginations\": true,\n                            \"denyCallTerminations\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Busy Lamp Field\": {\n                            \"enableCallParkNotification\": false,\n                            \"users\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Always\": {\n                            \"isActive\": true,\n                            \"forwardToPhoneNumber\": 6500,\n                            \"isRingSplashActive\": false,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Always Secondary\": {\n                            \"isActive\": true,\n                            \"forwardToPhoneNumber\": 1111,\n                            \"isRingSplashActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Busy\": {\n                            \"isActive\": true,\n                            \"forwardToPhoneNumber\": 1111,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding No Answer\": {\n                            \"isActive\": true,\n                            \"forwardToPhoneNumber\": 1111,\n                            \"numberOfRings\": 4,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Not Reachable\": {\n                            \"isActive\": true,\n                            \"forwardToPhoneNumber\": 1111,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Forwarding Selective\": {\n                            \"isActive\": true,\n                            \"defaultForwardToPhoneNumber\": 1111,\n                            \"playRingReminder\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria1\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"blacklisted\": false,\n                                    \"holidaySchedule\": \"None\",\n                                    \"forwardTo\": 1111,\n                                    \"callsToType\": null,\n                                    \"callsToNumber\": null,\n                                    \"callsToExtension\": null,\n                                    \"callsFrom\": [\n                                        \"All calls\"\n                                    ],\n                                    \"forwardToNumberSelection\": \"Forward To Specified Number\",\n                                    \"forwardToPhoneNumber\": 1111,\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Any\",\n                                        \"includeAnonymousCallers\": \"false\",\n                                        \"includeUnavailableCallers\": \"false\",\n                                        \"phoneNumbers\": []\n                                    },\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Notify\": {\n                            \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria1\",\n                                    \"timeSchedule\": null,\n                                    \"callFrom\": \"All calls\",\n                                    \"blacklisted\": true,\n                                    \"holidaySchedule\": null,\n                                    \"callsToType\": null,\n                                    \"callsToNumber\": null,\n                                    \"callsToExtension\": null,\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Any\",\n                                        \"includeAnonymousCallers\": \"false\",\n                                        \"includeUnavailableCallers\": \"false\",\n                                        \"phoneNumbers\": []\n                                    },\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Recording\": {\n                            \"recordingOption\": \"Always\",\n                            \"pauseResumeNotification\": \"Beep\",\n                            \"enableCallRecordingAnnouncement\": true,\n                            \"enableRecordCallRepeatWarningTone\": true,\n                            \"recordCallRepeatWarningToneTimerSeconds\": 15,\n                            \"enableVoiceMailRecording\": false,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Transfer\": {\n                            \"isRecallActive\": true,\n                            \"recallNumberOfRings\": 4,\n                            \"useDiversionInhibitorForBlindTransfer\": true,\n                            \"useDiversionInhibitorForConsultativeCalls\": true,\n                            \"enableBusyCampOn\": true,\n                            \"busyCampOnSeconds\": 120,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Call Waiting\": {\n                            \"isActive\": true,\n                            \"disableCallingLineIdDelivery\": false,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Calling Line ID Blocking Override\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Calling Line ID Delivery Blocking\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Calling Name Delivery\": {\n                            \"isActiveForExternalCalls\": true,\n                            \"isActiveForInternalCalls\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Calling Name Retrieval\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Calling Number Delivery\": {\n                            \"isActiveForExternalCalls\": true,\n                            \"isActiveForInternalCalls\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Calling Party Category\": {\n                            \"category\": \"Special\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Charge Number\": {\n                            \"phoneNumber\": 8135551001,\n                            \"useChargeNumberForEnhancedTranslations\": true,\n                            \"sendChargeNumberToNetwork\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Classmark\": {\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"CommPilot Call Manager\": {\n                            \"launchOnLogin\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"CommPilot Express\": {\n                            \"profile\": \"Available In Office\",\n                            \"availableInOffice\": {\n                                \"additionalPhoneNumberToRing\": \"123123123123123\",\n                                \"busySetting\": {\n                                    \"action\": \"Forward\",\n                                    \"forwardingPhoneNumber\": \"33333\"\n                                },\n                                \"noAnswerSetting\": {\n                                    \"action\": \"Forward\",\n                                    \"forwardingPhoneNumber\": \"123123\"\n                                }\n                            },\n                            \"availableOutOfOffice\": {\n                                \"incomingCalls\": {\n                                    \"action\": \"Forward\",\n                                    \"forwardingPhoneNumber\": \"123123\"\n                                },\n                                \"incomingCallNotify\": {\n                                    \"sendEmail\": \"false\",\n                                    \"emailAddress\": \"developer@parkbenchsolutions.com\"\n                                }\n                            },\n                            \"busy\": {\n                                \"incomingCalls\": {\n                                    \"sendCallsToVoiceMailExceptExcludedNumbers\": \"true\",\n                                    \"excludedPhoneNumber01\": \"+3333\",\n                                    \"excludedPhoneNumber02\": \"+1123123\",\n                                    \"excludedPhoneNumber03\": \"+1123123\",\n                                    \"forwardExcludedNumbersTo\": \"+1414\"\n                                },\n                                \"voiceMailNotify\": {\n                                    \"sendEmail\": \"true\",\n                                    \"emailAddress\": \"developer@parkbenchsolutions.com\"\n                                }\n                            },\n                            \"unavailable\": {\n                                \"incomingCalls\": {\n                                    \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\",\n                                    \"excludedPhoneNumber01\": \"+2442\",\n                                    \"excludedPhoneNumber02\": \"+1123123\",\n                                    \"excludedPhoneNumber03\": \"+1123123\"\n                                },\n                                \"voiceMailGreeting\": \"Unavailable\"\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Communication Barring User-Control\": {\n                            \"lockoutStatus\": false,\n                            \"profileTable\": [],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Connected Line Identification Restriction\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Direct Route\": {\n                            \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n                            \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n                            \"routes\": {\n                                \"dtgIdentity\": [\n                                    \"1111\"\n                                ],\n                                \"trunkIdentity\": []\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Directed Call Pickup with Barge-in\": {\n                            \"enableBargeInWarningTone\": true,\n                            \"enableAutomaticTargetSelection\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Do Not Disturb\": {\n                            \"isActive\": false,\n                            \"ringSplash\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"External Calling Line ID Delivery\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"External Custom Ringback\": {\n                            \"isActive\": true,\n                            \"useSettingLevel\": \"User\",\n                            \"sipRequestURI\": \"developer@parkbenchsolutions.com\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Fax Messaging\": {\n                            \"isActive\": true,\n                            \"phoneNumber\": 8135551002,\n                            \"extension\": 1002,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"aliases\": [\n                                {\n                                    \"alias\": \"developer@parkbenchsolutions.com\",\n                                    \"phoneNumber\": \"developer\",\n                                    \"domain\": \"parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Group Night Forwarding\": {\n                            \"nightForwarding\": \"On\",\n                            \"groupNightForwarding\": \"Off\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Hoteling Guest\": {\n                            \"isActive\": true,\n                            \"enableAssociationLimit\": true,\n                            \"associationLimitHours\": 12,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Hoteling Host\": {\n                            \"isActive\": true,\n                            \"enforceAssociationLimit\": true,\n                            \"associationLimitHours\": 24,\n                            \"accessLevel\": \"Group\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"In-Call Service Activation\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Integrated IMP\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Intercept User\": {\n                            \"isActive\": false,\n                            \"announcementSelection\": \"Default\",\n                            \"inboundCallMode\": \"Intercept All\",\n                            \"alternateBlockingAnnouncement\": false,\n                            \"exemptInboundMobilityCalls\": false,\n                            \"disableParallelRingingToNetworkLocations\": false,\n                            \"routeToVoiceMail\": false,\n                            \"playNewPhoneNumber\": false,\n                            \"transferOnZeroToPhoneNumber\": false,\n                            \"outboundCallMode\": \"Block All\",\n                            \"exemptOutboundMobilityCalls\": false,\n                            \"rerouteOutboundCalls\": false,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Internal Calling Line ID Delivery\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Malicious Call Trace\": {\n                            \"isActive\": true,\n                            \"traceTypeSelection\": \"All Incoming\",\n                            \"traceForTimePeriod\": true,\n                            \"traceTimePeriod\": {\n                                \"startDateTime\": \"2019-04-30T08:54:00.321-04:00\",\n                                \"stopDateTime\": \"2019-05-01T08:54:00.321-04:00\"\n                            },\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Number Portability Announcement\": {\n                            \"enable\": false,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Outlook Integration\": {\n                            \"isActive\": true,\n                            \"contactRetrievalSelection\": \"Retrieve Default Contact Folder Only\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Physical Location\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Prepaid\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Priority Alert\": {\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"isActive\": true,\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria1\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"blacklisted\": true,\n                                    \"holidaySchedule\": \"None\",\n                                    \"callsToType\": null,\n                                    \"callsToNumber\": null,\n                                    \"callsToExtension\": null,\n                                    \"callsFrom\": [\n                                        \"1111\"\n                                    ],\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                                        \"includeAnonymousCallers\": \"false\",\n                                        \"includeUnavailableCallers\": \"false\",\n                                        \"phoneNumbers\": [\n                                            \"1111\"\n                                        ]\n                                    },\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Privacy\": {\n                            \"enableDirectoryPrivacy\": true,\n                            \"enableAutoAttendantExtensionDialingPrivacy\": true,\n                            \"enableAutoAttendantNameDialingPrivacy\": true,\n                            \"enablePhoneStatusPrivacy\": true,\n                            \"permittedMonitors\": [\n                                {\n                                    \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                    \"lastName\": \"odin-user-2\",\n                                    \"firstName\": \"odin-user-2\",\n                                    \"hiraganaLastName\": null,\n                                    \"hiraganaFirstName\": null,\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"department\": null,\n                                    \"emailAddress\": null,\n                                    \"iMPId\": null\n                                },\n                                {\n                                    \"userId\": \"4002@parkbenchsolutions.com\",\n                                    \"lastName\": 4002,\n                                    \"firstName\": 4002,\n                                    \"hiraganaLastName\": 4002,\n                                    \"hiraganaFirstName\": 4002,\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"department\": null,\n                                    \"emailAddress\": null,\n                                    \"iMPId\": null\n                                }\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Push to Talk\": {\n                            \"allowAutoAnswer\": false,\n                            \"outgoingConnectionSelection\": \"One Way\",\n                            \"accessListSelection\": \"Allow Calls From Everyone Except Selected Users\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"users\": [\n                                {\n                                    \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                    \"lastName\": \"odin-user-2\",\n                                    \"firstName\": \"odin-user-2\",\n                                    \"hiraganaLastName\": null,\n                                    \"hiraganaFirstName\": null,\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"department\": null,\n                                    \"emailAddress\": null,\n                                    \"iMPId\": null\n                                },\n                                {\n                                    \"userId\": \"4002@parkbenchsolutions.com\",\n                                    \"lastName\": 4002,\n                                    \"firstName\": 4002,\n                                    \"hiraganaLastName\": 4002,\n                                    \"hiraganaFirstName\": 4002,\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"department\": null,\n                                    \"emailAddress\": null,\n                                    \"iMPId\": null\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Route List\": {\n                            \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n                            \"useRouteListIdentityForNonEmergencyCalls\": true,\n                            \"useRouteListIdentityForEmergencyCalls\": true,\n                            \"dns\": [\n                                {\n                                    \"min\": \"+1-2123135000\",\n                                    \"max\": \"+1-2123135999\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Security Classification\": {\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Selective Call Acceptance\": {\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"callFrom\": \"All calls\",\n                                    \"blacklisted\": false,\n                                    \"holidaySchedule\": \"None\",\n                                    \"callsToType\": null,\n                                    \"callsToNumber\": null,\n                                    \"callsToExtension\": null,\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Any\",\n                                        \"includeAnonymousCallers\": false,\n                                        \"includeUnavailableCallers\": false,\n                                        \"phoneNumbers\": []\n                                    },\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ]\n                        },\n                        \"Selective Call Rejection\": {\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"callsFrom\": 1111,\n                                    \"blacklisted\": true,\n                                    \"holidaySchedule\": \"None\",\n                                    \"callsToType\": null,\n                                    \"callsToNumber\": null,\n                                    \"callsToExtension\": null,\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                                        \"includeAnonymousCallers\": \"false\",\n                                        \"includeUnavailableCallers\": \"false\",\n                                        \"phoneNumbers\": [\n                                            \"1111\"\n                                        ]\n                                    },\n                                    \"private\": false,\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Sequential Ring\": {\n                            \"ringBaseLocationFirst\": true,\n                            \"baseLocationNumberOfRings\": 4,\n                            \"continueIfBaseLocationIsBusy\": true,\n                            \"callerMayStopSearch\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"locations\": [\n                                {\n                                    \"phoneNumber\": \"1111\",\n                                    \"numberOfRings\": 3,\n                                    \"answerConfirmationRequired\": false\n                                },\n                                {\n                                    \"phoneNumber\": \"2222\",\n                                    \"numberOfRings\": 3,\n                                    \"answerConfirmationRequired\": false\n                                },\n                                {\n                                    \"phoneNumber\": \"3333\",\n                                    \"numberOfRings\": 3,\n                                    \"answerConfirmationRequired\": false\n                                },\n                                {\n                                    \"phoneNumber\": \"4444\",\n                                    \"numberOfRings\": 3,\n                                    \"answerConfirmationRequired\": false\n                                },\n                                {\n                                    \"phoneNumber\": \"5555\",\n                                    \"numberOfRings\": 3,\n                                    \"answerConfirmationRequired\": false\n                                }\n                            ],\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria1\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"blacklisted\": false,\n                                    \"holidaySchedule\": {\n                                        \"name\": \"Holidays\",\n                                        \"level\": \"Group\",\n                                        \"type\": \"Holiday\"\n                                    },\n                                    \"callsFrom\": [\n                                        \"All calls\"\n                                    ],\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Any\",\n                                        \"includeAnonymousCallers\": \"false\",\n                                        \"includeUnavailableCallers\": \"false\",\n                                        \"phoneNumbers\": []\n                                    },\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Shared Call Appearance\": {\n                            \"alertAllAppearancesForClickToDialCalls\": true,\n                            \"alertAllAppearancesForGroupPagingCalls\": true,\n                            \"maxAppearances\": 2,\n                            \"allowSCACallRetrieve\": true,\n                            \"enableMultipleCallArrangement\": false,\n                            \"multipleCallArrangementIsActive\": false,\n                            \"allowBridgingBetweenLocations\": true,\n                            \"bridgeWarningTone\": \"Barge-In\",\n                            \"enableCallParkNotification\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"endpoints\": [],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Silent Alerting\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Simultaneous Ring Personal\": {\n                            \"isActive\": true,\n                            \"doNotRingIfOnCall\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"criteria\": [\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria1\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"blacklisted\": false,\n                                    \"holidaySchedule\": \"None\",\n                                    \"callsFrom\": [\n                                        \"All calls\"\n                                    ],\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Any\",\n                                        \"includeAnonymousCallers\": false,\n                                        \"includeUnavailableCallers\": false,\n                                        \"phoneNumbers\": []\n                                    },\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                },\n                                {\n                                    \"isActive\": true,\n                                    \"criteriaName\": \"criteria2\",\n                                    \"timeSchedule\": \"Every Day All Day\",\n                                    \"blacklisted\": false,\n                                    \"holidaySchedule\": \"None\",\n                                    \"callsFrom\": [\n                                        \"1111\",\n                                        \"2222\",\n                                        \"3333...\"\n                                    ],\n                                    \"fromDnCriteria\": {\n                                        \"fromDnCriteriaSelection\": \"Specified Only\",\n                                        \"includeAnonymousCallers\": false,\n                                        \"includeUnavailableCallers\": false,\n                                        \"phoneNumbers\": [\n                                            \"1111\",\n                                            \"2222\",\n                                            \"3333\",\n                                            \"4444\"\n                                        ]\n                                    },\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"locations\": [\n                                {\n                                    \"phoneNumber\": \"1111\",\n                                    \"answerConfirmationRequired\": true\n                                },\n                                {\n                                    \"phoneNumber\": \"2222\",\n                                    \"answerConfirmationRequired\": false\n                                },\n                                {\n                                    \"phoneNumber\": \"3333\",\n                                    \"answerConfirmationRequired\": false\n                                },\n                                {\n                                    \"phoneNumber\": \"4444\",\n                                    \"answerConfirmationRequired\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Speed Dial 100\": {\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"speedCodes\": [\n                                {\n                                    \"speedCode\": \"0\",\n                                    \"phoneNumber\": \"0000\",\n                                    \"description\": \"0000\"\n                                },\n                                {\n                                    \"speedCode\": \"1\",\n                                    \"phoneNumber\": \"1111\",\n                                    \"description\": \"1111\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Terminating Alternate Trunk Identity\": {\n                            \"terminatingTrunkIdentity\": 1111,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Third-Party Voice Mail Support\": {\n                            \"isActive\": true,\n                            \"busyRedirectToVoiceMail\": true,\n                            \"noAnswerRedirectToVoiceMail\": true,\n                            \"serverSelection\": \"Group Mail Server\",\n                            \"mailboxIdType\": \"User Or Group Phone Number\",\n                            \"noAnswerNumberOfRings\": 4,\n                            \"alwaysRedirectToVoiceMail\": true,\n                            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Two-Stage Dialing\": {\n                            \"isActive\": true,\n                            \"allowActivationWithUserAddresses\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Video Add-On\": {\n                            \"isActive\": true,\n                            \"maxOriginatingCallDelaySeconds\": 5,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Voice Portal Calling\": {\n                            \"isActive\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Zone Calling Restrictions\": {\n                            \"homeZoneName\": \"Office\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"utilities\": {\n                        \"alternateUserId\": {\n                            \"users\": [\n                                {\n                                    \"userId\": \"abc123\",\n                                    \"alternate\": true\n                                }\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"announcementFile\": {\n                            \"totalFileSize\": 176,\n                            \"maxFileSize\": 1000,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"announcementType\": \"\",\n                            \"announcements\": [\n                                {\n                                    \"description\": \"letsgo.wav\",\n                                    \"lastUploaded\": \"2019-06-03T13:08:36.981-04:00\",\n                                    \"usage\": [],\n                                    \"fileSize\": 88,\n                                    \"userId\": \"4001@parkbenchsolutions.com\",\n                                    \"name\": \"letsgo.wav\",\n                                    \"mediaType\": \"WAV\",\n                                    \"path\": \"/servlet/CPRCMF/user/4001@parkbenchsolutions.com/announcements/letsgo.wav.wav\"\n                                },\n                                {\n                                    \"description\": \"letsgo.wav\",\n                                    \"lastUploaded\": \"2019-06-10T12:26:28.994-04:00\",\n                                    \"usage\": [],\n                                    \"fileSize\": 88,\n                                    \"userId\": \"4001@parkbenchsolutions.com\",\n                                    \"name\": \"test\",\n                                    \"mediaType\": \"WAV\",\n                                    \"path\": \"/servlet/CPRCMF/user/4001@parkbenchsolutions.com/announcements/test.wav\"\n                                }\n                            ]\n                        },\n                        \"callPolicies\": {\n                            \"redirectedCallsCOLPPrivacy\": \"Privacy For All Calls\",\n                            \"callBeingForwardedResponseCallType\": \"All Calls\",\n                            \"callingLineIdentityForRedirectedCalls\": \"Redirecting User Identity For All Redirections\",\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"callProcessingPolicy\": {\n                            \"useUserCLIDSetting\": true,\n                            \"useUserMediaSetting\": false,\n                            \"useUserCallLimitsSetting\": true,\n                            \"useUserDCLIDSetting\": true,\n                            \"useMaxSimultaneousCalls\": true,\n                            \"maxSimultaneousCalls\": 4,\n                            \"useMaxSimultaneousVideoCalls\": true,\n                            \"maxSimultaneousVideoCalls\": 4,\n                            \"useMaxCallTimeForAnsweredCalls\": true,\n                            \"maxCallTimeForAnsweredCallsMinutes\": 2440,\n                            \"useMaxCallTimeForUnansweredCalls\": true,\n                            \"maxCallTimeForUnansweredCallsMinutes\": 4,\n                            \"mediaPolicySelection\": \"Use Uncompressed Codec\",\n                            \"supportedMediaSetName\": \"media\",\n                            \"useMaxConcurrentRedirectedCalls\": true,\n                            \"maxConcurrentRedirectedCalls\": 7,\n                            \"useMaxFindMeFollowMeDepth\": true,\n                            \"maxFindMeFollowMeDepth\": 1,\n                            \"maxRedirectionDepth\": 4,\n                            \"useMaxConcurrentFindMeFollowMeInvocations\": false,\n                            \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                            \"clidPolicy\": \"Use DN\",\n                            \"emergencyClidPolicy\": \"Use Configurable CLID\",\n                            \"allowAlternateNumbersForRedirectingIdentity\": true,\n                            \"useGroupName\": true,\n                            \"blockCallingNameForExternalCalls\": true,\n                            \"enableDialableCallerID\": true,\n                            \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                            \"allowDepartmentCLIDNameOverride\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"communicationBarring\": {\n                            \"useGroupSetting\": true,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"communicationBarringAuthorizationCode\": {\n                            \"codes\": [\n                                {\n                                    \"code\": \"1234\",\n                                    \"description\": \"1234\",\n                                    \"userId\": \"4001@parkbenchsolutions.com\"\n                                }\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"devicePolicies\": {\n                            \"lineMode\": \"Single User Private and Shared\",\n                            \"enableDeviceFeatureSynchronization\": true,\n                            \"enableDnd\": false,\n                            \"enableCallForwardingAlways\": false,\n                            \"enableCallForwardingBusy\": false,\n                            \"enableCallForwardingNoAnswer\": false,\n                            \"enableAcd\": false,\n                            \"enableExecutive\": false,\n                            \"enableExecutiveAssistant\": false,\n                            \"enableSecurityClassification\": false,\n                            \"enableCallRecording\": false,\n                            \"enableCallDecline\": false,\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"featureAccessCode\": {\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"featureAccessCodes\": [\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n                                    \"mainCode\": \"*29\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                    \"mainCode\": \"*95\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n                                    \"mainCode\": \"*55\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Bridge\",\n                                    \"mainCode\": \"*15\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n                                    \"mainCode\": \"*65\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park\",\n                                    \"mainCode\": \"*68\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n                                    \"mainCode\": \"*56*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Group Call Park\",\n                                    \"mainCode\": \"#58\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n                                    \"mainCode\": \"*24\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n                                    \"mainCode\": \"#28\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n                                    \"mainCode\": \"*99\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Speed Dial 100\",\n                                    \"mainCode\": \"*75\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Cancel Call Waiting\",\n                                    \"mainCode\": \"*70\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n                                    \"mainCode\": \"#41\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n                                    \"mainCode\": \"#29\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                    \"mainCode\": \"*90\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Recording - Pause\",\n                                    \"mainCode\": \"*48\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Recording - Start\",\n                                    \"mainCode\": \"*44\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n                                    \"mainCode\": \"#23\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n                                    \"mainCode\": \"#24\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n                                    \"mainCode\": \"*78\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                    \"mainCode\": \"*87\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n                                    \"mainCode\": \"*54*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Location Control Deactivation\",\n                                    \"mainCode\": \"*13\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n                                    \"mainCode\": \"*31\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n                                    \"mainCode\": \"*33*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n                                    \"mainCode\": \"#43\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n                                    \"mainCode\": \"#31\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"No Answer Timer\",\n                                    \"mainCode\": \"*610\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n                                    \"mainCode\": \"*21\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                    \"mainCode\": \"*61*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                    \"mainCode\": \"*67*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                    \"mainCode\": \"*71\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                    \"mainCode\": \"*92\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n                                    \"mainCode\": \"*40\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n                                    \"mainCode\": \"*23\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n                                    \"mainCode\": \"#9\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                    \"mainCode\": \"*52*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                    \"mainCode\": \"*47\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n                                    \"mainCode\": \"*67\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n                                    \"mainCode\": \"*28\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n                                    \"mainCode\": \"#33*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Recording - Stop\",\n                                    \"mainCode\": \"*45\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                    \"mainCode\": \"*72\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                    \"mainCode\": \"*63*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Recording - Resume\",\n                                    \"mainCode\": \"*49\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                    \"mainCode\": \"#53\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n                                    \"mainCode\": \"*34\",\n                                    \"alternateCode\": \"*3434\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n                                    \"mainCode\": \"*86\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n                                    \"mainCode\": \"#40\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                    \"mainCode\": \"*93\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                    \"mainCode\": \"#76\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n                                    \"mainCode\": \"*51*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                    \"mainCode\": \"*77\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                    \"mainCode\": \"*21*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                    \"mainCode\": \"#52\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Retrieve\",\n                                    \"mainCode\": \"*11\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                    \"mainCode\": \"*37\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                    \"mainCode\": \"#51\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Location Control Activation\",\n                                    \"mainCode\": \"*12\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                    \"mainCode\": \"#77\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n                                    \"mainCode\": \"*53*\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n                                    \"mainCode\": \"*84\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n                                    \"mainCode\": \"#21\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n                                    \"mainCode\": \"*85\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Voice Portal Access\",\n                                    \"mainCode\": \"*62\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                    \"mainCode\": \"*88\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n                                    \"mainCode\": \"*43\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n                                    \"mainCode\": \"*79\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                    \"mainCode\": \"#0322\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n                                    \"mainCode\": \"#8\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Push to Talk\",\n                                    \"mainCode\": \"*50\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                    \"mainCode\": \"*60\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                    \"mainCode\": \"*73\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Pickup\",\n                                    \"mainCode\": \"*98\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                    \"mainCode\": \"*91\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n                                    \"mainCode\": \"*#33#\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n                                    \"mainCode\": \"*14\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n                                    \"mainCode\": \"*33\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"FMFM Call Push\",\n                                    \"mainCode\": \"*26\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                    \"mainCode\": \"*94\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n                                    \"mainCode\": \"*41\",\n                                    \"enableFAC\": \"true\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"portalPasscode\": {\n                            \"isLoginDisabled\": false,\n                            \"expirationDays\": 5,\n                            \"passcode\": \"*****\",\n                            \"userId\": \"4001@parkbenchsolutions.com\"\n                        },\n                        \"userSchedules\": {\n                            \"schedules\": [\n                                {\n                                    \"name\": \"user schedule 1\",\n                                    \"type\": \"Time\",\n                                    \"level\": \"User\",\n                                    \"userId\": \"4001@parkbenchsolutions.com\",\n                                    \"events\": [\n                                        {\n                                            \"eventName\": \"event 1\",\n                                            \"startTime\": \"2019-04-30T00:00:00\",\n                                            \"endTime\": \"2019-04-30T23:59:59\",\n                                            \"allDayEvent\": true,\n                                            \"name\": \"user schedule 1\",\n                                            \"type\": \"Time\",\n                                            \"userId\": \"4001@parkbenchsolutions.com\",\n                                            \"rrule\": null\n                                        }\n                                    ]\n                                }\n                            ],\n                            \"userId\": \"4001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    }\n                },\n                {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin\",\n                    \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                    \"user\": {\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"lastName\": \"test-bulk-activate-1\",\n                        \"firstName\": \"test-bulk-activate-1\",\n                        \"callingLineIdLastName\": \"test-bulk-activate-1\",\n                        \"callingLineIdFirstName\": \"test-bulk-activate-1\",\n                        \"hiraganaLastName\": \"test-bulk-activate-1\",\n                        \"hiraganaFirstName\": \"test-bulk-activate-1\",\n                        \"phoneNumber\": \"8135551004\",\n                        \"extension\": \"1004\",\n                        \"callingLineIdPhoneNumber\": \"+18135551004\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": 2147483647\n                    },\n                    \"outgoingCallingPlans\": {\n                        \"outgoingCallingPlanAuthorizationCode\": {\n                            \"settings\": {\n                                \"useCustomSettings\": true,\n                                \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"isEnterprise\": true\n                            },\n                            \"codes\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": false,\n                                \"toll\": true,\n                                \"international\": false,\n                                \"operatorAssisted\": false,\n                                \"chargeableDirectoryAssisted\": false,\n                                \"specialServicesI\": false,\n                                \"specialServicesII\": false,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": false,\n                                \"unknown\": false\n                            },\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": \"Allow\",\n                                \"local\": \"Allow\",\n                                \"tollFree\": \"Allow\",\n                                \"toll\": \"Allow\",\n                                \"international\": \"Disallow\",\n                                \"operatorAssisted\": \"Allow\",\n                                \"chargeableDirectoryAssisted\": \"Allow\",\n                                \"specialServicesI\": \"Allow\",\n                                \"specialServicesII\": \"Allow\",\n                                \"premiumServicesI\": \"Disallow\",\n                                \"premiumServicesII\": \"Disallow\",\n                                \"casual\": \"Disallow\",\n                                \"urlDialing\": \"Allow\",\n                                \"unknown\": \"Allow\"\n                            },\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirected\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"outsideGroup\": true\n                            },\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": true,\n                                \"toll\": true,\n                                \"international\": false,\n                                \"operatorAssisted\": true,\n                                \"chargeableDirectoryAssisted\": true,\n                                \"specialServicesI\": true,\n                                \"specialServicesII\": true,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": true,\n                                \"unknown\": true\n                            },\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanTransferNumbers\": {\n                            \"useCustomSettings\": true,\n                            \"userNumbers\": {},\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"assignedServices\": {\n                        \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Authentication\"\n                            }\n                        ],\n                        \"groupServices\": [\n                            {\n                                \"serviceName\": \"Music On Hold\",\n                                \"isActive\": true\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceAssignment\": {\n                        \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Anonymous Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Busy\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding No Answer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Notify\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Delivery Blocking\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Do Not Disturb\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Intercept User\"\n                            },\n                            {\n                                \"serviceName\": \"Last Number Redial\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Last Number Redial\"\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Outlook Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Priority Alert\"\n                            },\n                            {\n                                \"serviceName\": \"Call Return\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Return\"\n                            },\n                            {\n                                \"serviceName\": \"Remote Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Remote Office\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Acceptance\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Selective\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Service Scripts User\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Personal\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Customer Originated Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Customer Originated Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party MWI Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party MWI Control\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 5\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance 5\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 10\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 10\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 15\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 20\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 20\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 25\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 25\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 30\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 30\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 35\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 35\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Retrieval\"\n                            },\n                            {\n                                \"serviceName\": \"Flash Call Hold\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flash Call Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party Voice Mail Support\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Portal Calling\"\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Internal Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Blocking Override\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Barge-in Exempt\"\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video Add-On\"\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Malicious Call Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Preferred Carrier User\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Enhanced Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Host\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Diversion Inhibitor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Diversion Inhibitor\"\n                            },\n                            {\n                                \"serviceName\": \"Multiple Call Arrangement\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Multiple Call Arrangement\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Hold/Retrieve\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Three-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Three-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Privacy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Fax Messaging\"\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Physical Location\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Supervisor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Supervisor\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"N-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"N-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Two-Stage Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Not Reachable\"\n                            },\n                            {\n                                \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Small Business\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Office\"\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Custom Ringback\"\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"In-Call Service Activation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Presentation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Presentation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Restriction\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Zone Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"Polycom Phone Services\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Polycom Phone Services\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Music On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Video On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Advice Of Charge\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Prepaid\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Standard\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Premium\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Premium\"\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Number Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Office Communicator Tab\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Office Communicator Tab\"\n                            },\n                            {\n                                \"serviceName\": \"Pre-alerting Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Pre-alerting Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center Monitoring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center Monitoring\"\n                            },\n                            {\n                                \"serviceName\": \"Location-Based Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Location-Based Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"Call Me Now\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Me Now\"\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Recording\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Integrated IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Group Night Forwarding\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Executive\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive\"\n                            },\n                            {\n                                \"serviceName\": \"Executive-Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive-Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 3\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Assistant - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 15\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 16\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 16\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 17\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 18\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 19\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch MobileLink\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Security Classification\"\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flexible Seating Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Personal Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Personal Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Sharing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Sharing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always Secondary\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Silent Alerting\"\n                            },\n                            {\n                                \"serviceName\": \"Conference Room\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Conference Room\"\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Sequential Ring\"\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Number Portability Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Terminating Alternate Trunk Identity\"\n                            }\n                        ],\n                        \"servicePackServices\": [\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Standard\",\n                                \"serviceName\": \"Standard\",\n                                \"alias\": \"Standard\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Premium\",\n                                \"serviceName\": \"Premium\",\n                                \"alias\": \"Premium\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Basic\",\n                                \"serviceName\": \"Basic\",\n                                \"alias\": \"Basic\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceSettings\": [],\n                    \"utilities\": {\n                        \"alternateUserId\": {\n                            \"users\": [],\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"announcementFile\": {\n                            \"totalFileSize\": 0,\n                            \"maxFileSize\": 1000,\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"announcementType\": \"\",\n                            \"announcements\": []\n                        },\n                        \"callPolicies\": {\n                            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                            \"callBeingForwardedResponseCallType\": \"Never\",\n                            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"callProcessingPolicy\": {\n                            \"useUserCLIDSetting\": false,\n                            \"useUserMediaSetting\": false,\n                            \"useUserCallLimitsSetting\": false,\n                            \"useUserDCLIDSetting\": false,\n                            \"useMaxSimultaneousCalls\": true,\n                            \"maxSimultaneousCalls\": 3,\n                            \"useMaxSimultaneousVideoCalls\": true,\n                            \"maxSimultaneousVideoCalls\": 1,\n                            \"useMaxCallTimeForAnsweredCalls\": true,\n                            \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                            \"useMaxCallTimeForUnansweredCalls\": false,\n                            \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                            \"mediaPolicySelection\": \"No Restrictions\",\n                            \"useMaxConcurrentRedirectedCalls\": false,\n                            \"maxConcurrentRedirectedCalls\": 5,\n                            \"useMaxFindMeFollowMeDepth\": true,\n                            \"maxFindMeFollowMeDepth\": 3,\n                            \"maxRedirectionDepth\": 5,\n                            \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                            \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                            \"clidPolicy\": \"Use DN\",\n                            \"emergencyClidPolicy\": \"Use DN\",\n                            \"allowAlternateNumbersForRedirectingIdentity\": true,\n                            \"useGroupName\": false,\n                            \"blockCallingNameForExternalCalls\": false,\n                            \"enableDialableCallerID\": false,\n                            \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                            \"allowDepartmentCLIDNameOverride\": false,\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"communicationBarring\": {\n                            \"useGroupSetting\": true,\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"devicePolicies\": {\n                            \"lineMode\": \"Single User Private and Shared\",\n                            \"enableDeviceFeatureSynchronization\": true,\n                            \"enableDnd\": false,\n                            \"enableCallForwardingAlways\": false,\n                            \"enableCallForwardingBusy\": false,\n                            \"enableCallForwardingNoAnswer\": false,\n                            \"enableAcd\": false,\n                            \"enableExecutive\": false,\n                            \"enableExecutiveAssistant\": false,\n                            \"enableSecurityClassification\": false,\n                            \"enableCallRecording\": false,\n                            \"enableCallDecline\": false,\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"featureAccessCode\": {\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\",\n                            \"featureAccessCodes\": [\n                                {\n                                    \"featureAccessCodeName\": \"Call Park\",\n                                    \"mainCode\": \"*68\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Group Call Park\",\n                                    \"mainCode\": \"#58\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                    \"mainCode\": \"*71\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                    \"mainCode\": \"*47\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                    \"mainCode\": \"#53\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                    \"mainCode\": \"#52\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                    \"mainCode\": \"*37\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                    \"mainCode\": \"#51\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                    \"mainCode\": \"*88\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                    \"mainCode\": \"#0322\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                    \"mainCode\": \"*60\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Pickup\",\n                                    \"mainCode\": \"*98\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"FMFM Call Push\",\n                                    \"mainCode\": \"*26\",\n                                    \"enableFAC\": \"true\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"portalPasscode\": {\n                            \"isLoginDisabled\": false,\n                            \"expirationDays\": -2,\n                            \"passcode\": \"*****\",\n                            \"userId\": \"test-bulk-activate-1@parkbenchsolutions.com\"\n                        }\n                    }\n                },\n                {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin\",\n                    \"userId\": \"ddoris@parkbenchsolutions.com\",\n                    \"user\": {\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"lastName\": \"doris\",\n                        \"firstName\": \"dusty\",\n                        \"callingLineIdLastName\": \"doris\",\n                        \"callingLineIdFirstName\": \"dusty\",\n                        \"hiraganaLastName\": \"doris\",\n                        \"hiraganaFirstName\": \"dusty\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"ddoris@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"ddoris@parkbenchsolutions.com\",\n                        \"callingLineIdPhoneNumber\": \"\",\n                        \"phoneNumber\": \"\",\n                        \"extension\": \"\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": 2147483647\n                    },\n                    \"outgoingCallingPlans\": {\n                        \"outgoingCallingPlanAuthorizationCode\": {\n                            \"settings\": {\n                                \"useCustomSettings\": true,\n                                \"userId\": \"ddoris@parkbenchsolutions.com\",\n                                \"serviceProviderId\": \"ent.odin\",\n                                \"groupId\": \"grp.odin\",\n                                \"isEnterprise\": true\n                            },\n                            \"codes\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": false,\n                                \"toll\": true,\n                                \"international\": false,\n                                \"operatorAssisted\": false,\n                                \"chargeableDirectoryAssisted\": false,\n                                \"specialServicesI\": false,\n                                \"specialServicesII\": false,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": false,\n                                \"unknown\": false\n                            },\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": \"Allow\",\n                                \"local\": \"Allow\",\n                                \"tollFree\": \"Allow\",\n                                \"toll\": \"Allow\",\n                                \"international\": \"Disallow\",\n                                \"operatorAssisted\": \"Allow\",\n                                \"chargeableDirectoryAssisted\": \"Allow\",\n                                \"specialServicesI\": \"Allow\",\n                                \"specialServicesII\": \"Allow\",\n                                \"premiumServicesI\": \"Disallow\",\n                                \"premiumServicesII\": \"Disallow\",\n                                \"casual\": \"Disallow\",\n                                \"urlDialing\": \"Allow\",\n                                \"unknown\": \"Allow\"\n                            },\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirected\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"outsideGroup\": true\n                            },\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": {\n                                \"group\": true,\n                                \"local\": true,\n                                \"tollFree\": true,\n                                \"toll\": true,\n                                \"international\": false,\n                                \"operatorAssisted\": true,\n                                \"chargeableDirectoryAssisted\": true,\n                                \"specialServicesI\": true,\n                                \"specialServicesII\": true,\n                                \"premiumServicesI\": false,\n                                \"premiumServicesII\": false,\n                                \"casual\": false,\n                                \"urlDialing\": true,\n                                \"unknown\": true\n                            },\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanTransferNumbers\": {\n                            \"useCustomSettings\": true,\n                            \"userNumbers\": {},\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanCallMeNow\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanOriginating\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"outgoingCallingPlanPinholeDigitPlanRedirecting\": {\n                            \"useCustomSettings\": true,\n                            \"userPermissions\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"assignedServices\": {\n                        \"userId\": \"ddoris@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"isActive\": true\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\"\n                            }\n                        ],\n                        \"groupServices\": [\n                            {\n                                \"serviceName\": \"Music On Hold\",\n                                \"isActive\": true\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceAssignment\": {\n                        \"userId\": \"ddoris@parkbenchsolutions.com\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Anonymous Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Busy\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding No Answer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Notify\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Delivery Blocking\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Do Not Disturb\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Intercept User\"\n                            },\n                            {\n                                \"serviceName\": \"Last Number Redial\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Last Number Redial\"\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Outlook Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Priority Alert\"\n                            },\n                            {\n                                \"serviceName\": \"Call Return\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Return\"\n                            },\n                            {\n                                \"serviceName\": \"Remote Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Remote Office\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Acceptance\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Selective\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Service Scripts User\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Personal\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Customer Originated Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Customer Originated Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party MWI Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party MWI Control\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 5\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance 5\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 10\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 10\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 15\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 20\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 20\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 25\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 25\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 30\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 30\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 35\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 35\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Retrieval\"\n                            },\n                            {\n                                \"serviceName\": \"Flash Call Hold\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flash Call Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party Voice Mail Support\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Portal Calling\"\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Internal Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Blocking Override\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Barge-in Exempt\"\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video Add-On\"\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Malicious Call Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Preferred Carrier User\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Call Logs\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Enhanced Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Host\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Diversion Inhibitor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Diversion Inhibitor\"\n                            },\n                            {\n                                \"serviceName\": \"Multiple Call Arrangement\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Multiple Call Arrangement\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Hold/Retrieve\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Three-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Three-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Privacy\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Fax Messaging\"\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Physical Location\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Supervisor\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Supervisor\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"N-Way Call\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"N-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Two-Stage Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Not Reachable\"\n                            },\n                            {\n                                \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Small Business\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Office\"\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Custom Ringback\"\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"In-Call Service Activation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Presentation\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Presentation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Restriction\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Zone Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"Polycom Phone Services\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Polycom Phone Services\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Music On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Video On Hold User\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Advice Of Charge\",\n                                \"assigned\": true,\n                                \"tags\": [],\n                                \"alias\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Prepaid\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Standard\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Premium\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Premium\"\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Number Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Office Communicator Tab\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Office Communicator Tab\"\n                            },\n                            {\n                                \"serviceName\": \"Pre-alerting Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Pre-alerting Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center Monitoring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center Monitoring\"\n                            },\n                            {\n                                \"serviceName\": \"Location-Based Calling Restrictions\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Location-Based Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"Call Me Now\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Me Now\"\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Recording\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Integrated IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Group Night Forwarding\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Executive\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive\"\n                            },\n                            {\n                                \"serviceName\": \"Executive-Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive-Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 3\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Assistant - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 15\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 15\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 16\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 16\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 17\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 18\",\n                                \"assigned\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 19\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch MobileLink\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Security Classification\"\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flexible Seating Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Personal Assistant\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Personal Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Audio\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Video\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Sharing\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Sharing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always Secondary\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Silent Alerting\"\n                            },\n                            {\n                                \"serviceName\": \"Conference Room\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Conference Room\"\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Sequential Ring\"\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Number Portability Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                \"assigned\": false,\n                                \"tags\": [],\n                                \"alias\": \"Terminating Alternate Trunk Identity\"\n                            }\n                        ],\n                        \"servicePackServices\": [\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Standard\",\n                                \"serviceName\": \"Standard\",\n                                \"alias\": \"Standard\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Premium\",\n                                \"serviceName\": \"Premium\",\n                                \"alias\": \"Premium\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"description\": \"Basic\",\n                                \"serviceName\": \"Basic\",\n                                \"alias\": \"Basic\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin\",\n                        \"isEnterprise\": true\n                    },\n                    \"serviceSettings\": {\n                        \"Advice Of Charge\": {\n                            \"isActive\": false,\n                            \"aocType\": \"During Call\",\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Alternate Numbers\": {\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"distinctiveRing\": true,\n                            \"alternateEntries\": [\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 1\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 2\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 3\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 4\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 5\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 6\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 7\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 8\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 9\n                                },\n                                {\n                                    \"phoneNumber\": null,\n                                    \"extension\": null,\n                                    \"ringPattern\": null,\n                                    \"alternateEntryId\": 10\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Busy Lamp Field\": {\n                            \"listURI\": \"_blf@parkbenchsolutions.com\",\n                            \"enableCallParkNotification\": false,\n                            \"users\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Intercept User\": {\n                            \"isActive\": true,\n                            \"announcementSelection\": \"Default\",\n                            \"inboundCallMode\": \"Intercept All\",\n                            \"alternateBlockingAnnouncement\": false,\n                            \"exemptInboundMobilityCalls\": false,\n                            \"disableParallelRingingToNetworkLocations\": false,\n                            \"routeToVoiceMail\": true,\n                            \"playNewPhoneNumber\": true,\n                            \"newPhoneNumber\": 5553334444,\n                            \"transferOnZeroToPhoneNumber\": true,\n                            \"transferPhoneNumber\": 5133334455,\n                            \"outboundCallMode\": \"Block All\",\n                            \"exemptOutboundMobilityCalls\": false,\n                            \"rerouteOutboundCalls\": true,\n                            \"outboundReroutePhoneNumber\": 5133334444,\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"Speed Dial 8\": {\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"speedCodes\": [\n                                {\n                                    \"speedCode\": \"2\",\n                                    \"phoneNumber\": \"222\"\n                                },\n                                {\n                                    \"speedCode\": \"3\",\n                                    \"phoneNumber\": \"333\"\n                                },\n                                {\n                                    \"speedCode\": \"4\"\n                                },\n                                {\n                                    \"speedCode\": \"5\"\n                                },\n                                {\n                                    \"speedCode\": \"6\"\n                                },\n                                {\n                                    \"speedCode\": \"7\"\n                                },\n                                {\n                                    \"speedCode\": \"8\"\n                                },\n                                {\n                                    \"speedCode\": \"9\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        }\n                    },\n                    \"utilities\": {\n                        \"alternateUserId\": {\n                            \"users\": [],\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"announcementFile\": {\n                            \"totalFileSize\": 0,\n                            \"maxFileSize\": 1000,\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"announcementType\": \"\",\n                            \"announcements\": []\n                        },\n                        \"callPolicies\": {\n                            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                            \"callBeingForwardedResponseCallType\": \"Never\",\n                            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"callProcessingPolicy\": {\n                            \"useUserCLIDSetting\": false,\n                            \"useUserMediaSetting\": false,\n                            \"useUserCallLimitsSetting\": false,\n                            \"useUserDCLIDSetting\": false,\n                            \"useMaxSimultaneousCalls\": true,\n                            \"maxSimultaneousCalls\": 3,\n                            \"useMaxSimultaneousVideoCalls\": true,\n                            \"maxSimultaneousVideoCalls\": 1,\n                            \"useMaxCallTimeForAnsweredCalls\": true,\n                            \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                            \"useMaxCallTimeForUnansweredCalls\": false,\n                            \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                            \"mediaPolicySelection\": \"No Restrictions\",\n                            \"useMaxConcurrentRedirectedCalls\": false,\n                            \"maxConcurrentRedirectedCalls\": 5,\n                            \"useMaxFindMeFollowMeDepth\": true,\n                            \"maxFindMeFollowMeDepth\": 3,\n                            \"maxRedirectionDepth\": 5,\n                            \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                            \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                            \"clidPolicy\": \"Use DN\",\n                            \"emergencyClidPolicy\": \"Use DN\",\n                            \"allowAlternateNumbersForRedirectingIdentity\": true,\n                            \"useGroupName\": false,\n                            \"blockCallingNameForExternalCalls\": false,\n                            \"enableDialableCallerID\": false,\n                            \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                            \"allowDepartmentCLIDNameOverride\": false,\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"communicationBarring\": {\n                            \"useGroupSetting\": true,\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"devicePolicies\": {\n                            \"lineMode\": \"Single User Private and Shared\",\n                            \"enableDeviceFeatureSynchronization\": true,\n                            \"enableDnd\": false,\n                            \"enableCallForwardingAlways\": false,\n                            \"enableCallForwardingBusy\": false,\n                            \"enableCallForwardingNoAnswer\": false,\n                            \"enableAcd\": false,\n                            \"enableExecutive\": false,\n                            \"enableExecutiveAssistant\": false,\n                            \"enableSecurityClassification\": false,\n                            \"enableCallRecording\": false,\n                            \"enableCallDecline\": false,\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"featureAccessCode\": {\n                            \"userId\": \"ddoris@parkbenchsolutions.com\",\n                            \"featureAccessCodes\": [\n                                {\n                                    \"featureAccessCodeName\": \"Call Park\",\n                                    \"mainCode\": \"*68\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Group Call Park\",\n                                    \"mainCode\": \"#58\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Speed Dial 8\",\n                                    \"mainCode\": \"*74\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                    \"mainCode\": \"*71\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                    \"mainCode\": \"*47\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                    \"mainCode\": \"#53\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n                                    \"mainCode\": \"*34\",\n                                    \"alternateCode\": \"*3434\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                    \"mainCode\": \"#52\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                    \"mainCode\": \"*37\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                    \"mainCode\": \"#51\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                    \"mainCode\": \"*88\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                    \"mainCode\": \"#0322\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                    \"mainCode\": \"*60\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"Call Pickup\",\n                                    \"mainCode\": \"*98\",\n                                    \"enableFAC\": \"true\"\n                                },\n                                {\n                                    \"featureAccessCodeName\": \"FMFM Call Push\",\n                                    \"mainCode\": \"*26\",\n                                    \"enableFAC\": \"true\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin\",\n                            \"isEnterprise\": true\n                        },\n                        \"portalPasscode\": {\n                            \"isLoginDisabled\": false,\n                            \"expirationDays\": -2,\n                            \"passcode\": \"*****\",\n                            \"userId\": \"ddoris@parkbenchsolutions.com\"\n                        }\n                    }\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"c2e9c51b-9e74-4adf-a18e-099500e265b5"}],"id":"d63bccca-4bb2-44d8-9507-ddd2be91a0a4","_postman_id":"d63bccca-4bb2-44d8-9507-ddd2be91a0a4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"UserCustomRingback","item":[{"name":"User Custom Ringback","id":"6fd1a067-afdc-4eaf-bbc2-d8102a165c63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/user-custom-ringback?userId=6testingnumber@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","user-custom-ringback"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"key":"userId","value":"6testingnumber@odinapi.net"}],"variable":[]}},"response":[{"id":"8424af48-54c8-4b33-80be-b8a3de047584","name":"User Custom Ringback","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/user-custom-ringback?userId=user-2@voicecci.net","host":["{{url}}"],"path":["api","v2","users","user-custom-ringback"],"query":[{"key":"userId","value":"user-2@voicecci.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 09 Oct 2023 15:51:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"826"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"test1\",\n            \"timeSchedule\": \"Daily1\",\n            \"callFrom\": \"Any private number,Any unavailable number,2345\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"Ken schedule2(Group)\",\n            \"callToNumber\": \"5139228888,\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \"8888,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5139228888\",\n                    \"extension\": \"8888\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"\",\n                    \"extension\": \"\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"test2\",\n            \"timeSchedule\": \"Every Day All Day\",\n            \"callFrom\": 5678,\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"None\",\n            \"callToNumber\": \"5139228888,5139228887\",\n            \"callToType\": \"Alternate1,Alternate2\",\n            \"callToExtension\": \"8888,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5139228888\",\n                    \"extension\": \"8888\"\n                },\n                {\n                    \"type\": \"Alternate2\",\n                    \"number\": \"5139228887\",\n                    \"extension\": \"\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"6fd1a067-afdc-4eaf-bbc2-d8102a165c63"},{"name":"User Custom Ringback Details","id":"13ac5d93-67d9-45dc-be19-689594664d63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/user-custom-ringback?userId=2testingnumber@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","user-custom-ringback"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"criteriaName","value":"test1"},{"key":"userId","value":"2testingnumber@odinapi.net"}],"variable":[]}},"response":[{"id":"018922bf-2852-4241-b102-80286b5404da","name":"User Custom Ringback Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/user-custom-ringback?userId=user-2@voicecci.net&criteriaName=test1","host":["{{url}}"],"path":["api","v2","users","user-custom-ringback"],"query":[{"key":"userId","value":"user-2@voicecci.net"},{"key":"criteriaName","value":"test1","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Oct 2023 20:14:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"633"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteriaName\": \"test1\",\n    \"timeSchedule\": {\n        \"name\": \"Daily1\",\n        \"level\": \"User\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Ken schedule2\",\n        \"level\": \"Group\",\n        \"type\": \"Holiday\"\n    },\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"2345\"\n        ]\n    },\n    \"audioSelection\": \"URL\",\n    \"audioFile\": {\n        \"name\": \"ATest no extension\",\n        \"mediaFileType\": \"WAV\",\n        \"level\": \"User\"\n    },\n    \"audioFileUrl\": \"http://google.com\",\n    \"videoSelection\": \"Default\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"5139228888\",\n            \"extension\": \"8888\"\n        },\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}"}],"_postman_id":"13ac5d93-67d9-45dc-be19-689594664d63"},{"name":"User Custom Ringback","id":"fa5e528e-b7bb-4209-bd3b-eee6d504dfa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"6testingnumber@odinapi.net\",\n    \"criteriaName\": \"test1\",\n    \"timeSchedule\": {\n        \"name\": \"test\",\n        \"level\": \"User\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"test\",\n        \"level\": \"Service Provider\",\n        \"type\": \"Holiday\"\n    },\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"2345\",\n            \"3456\"\n        ]\n    },\n    \"audioSelection\": \"URL\",\n    \"audioFile\": {\n        \"name\": \"aa1.wav.wav\",\n        \"mediaFileType\": \"WAV\",\n        \"level\": \"User\"\n    },\n    \"audioFileUrl\": \"http://google.com\",\n    \"videoSelection\": \"Default\",\n    \"callsToNumber\": [\n        // {\n        //     \"type\": \"Alternate\",\n        //     \"number\": \"5139228888\",\n        //     \"extension\": \"8888\"\n        // },\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/user-custom-ringback","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","user-custom-ringback"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"criteriaName","value":"test1"}],"variable":[]}},"response":[{"id":"70d4b44a-b0be-49ec-b6e1-bc382bfccdad","name":"User Custom Ringback","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"user-2@voicecci.net\",\n  \"criteriaName\": \"test1\",\n  \"timeSchedule\": {\n    \"name\": \"Daily1\",\n    \"level\": \"User\",\n    \"type\": \"Time\"\n  },\n  \"holidaySchedule\": {\n    \"name\": \"Ken schedule2\",\n    \"level\": \"Group\",\n    \"type\": \"Holiday\"\n  },\n  \"blacklisted\": false,\n  \"fromDnCriteria\": {\n    \"fromDnCriteriaSelection\": \"Specified Only\",\n    \"includeAnonymousCallers\": true,\n    \"includeUnavailableCallers\": true,\n    \"phoneNumbers\": [\n      \"2345\",\n      \"3456\"\n    ]\n  },\n  \"audioSelection\": \"URL\",\n  \"audioFile\": {\n    \"name\": \"ATest no extension\",\n    \"mediaFileType\": \"WAV\",\n    \"level\": \"User\"\n  },\n  \"audioFileUrl\": \"http://google.com\",\n  \"videoSelection\": \"Default\",\n  \"callsToNumber\": [\n    {\n      \"type\": \"Alternate1\",\n      \"number\": \"5139228888\",\n      \"extension\": \"8888\"\n    },\n    {\n      \"type\": \"Primary\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/users/user-custom-ringback","host":["{{url}}"],"path":["api","v2","users","user-custom-ringback"],"query":[{"key":"userId","value":"user-2@voicecci.net","disabled":true},{"key":"criteriaName","value":"test1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Oct 2023 20:27:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"640"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteriaName\": \"test1\",\n    \"timeSchedule\": {\n        \"name\": \"Daily1\",\n        \"level\": \"User\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Ken schedule2\",\n        \"level\": \"Group\",\n        \"type\": \"Holiday\"\n    },\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"2345\",\n            \"3456\"\n        ]\n    },\n    \"audioSelection\": \"URL\",\n    \"audioFile\": {\n        \"name\": \"ATest no extension\",\n        \"mediaFileType\": \"WAV\",\n        \"level\": \"User\"\n    },\n    \"audioFileUrl\": \"http://google.com\",\n    \"videoSelection\": \"Default\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"5139228888\",\n            \"extension\": \"8888\"\n        },\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}"}],"_postman_id":"fa5e528e-b7bb-4209-bd3b-eee6d504dfa5"},{"name":"User Custom Ringback","id":"cc1a1704-8ca6-4d04-a49a-abd381827f54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"6testingnumber@odinapi.net\",\n  \"criteriaName\": \"test2\",\n  \"newCriteriaName\": \"test1\",\n  \"timeSchedule\": {\n    \"name\": \"test\",\n    \"level\": \"User\",\n    \"type\": \"Time\"\n  },\n  \"holidaySchedule\":\n  {\n    \"name\": \"cricket\",\n    \"level\": \"Service Provider\",\n    \"type\": \"Holiday\"\n  },\n  \"blacklisted\": false,\n  \"fromDnCriteria\": {\n    \"fromDnCriteriaSelection\": \"Specified Only\",\n    \"includeAnonymousCallers\": true,\n    \"includeUnavailableCallers\": true,\n    \"phoneNumbers\": [\n      \"2345\",\n      \"3456\"\n    ]\n  },\n  \"audioSelection\": \"URL\",\n  \"audioFile\": {\n    \"name\": \"aa1.wav.wav\",\n    \"mediaFileType\": \"WAV\",\n    \"level\": \"User\"\n  },\n  \"audioFileUrl\": \"http://google.com\",\n  \"videoSelection\": \"Default\",\n  \"callsToNumber\": [\n    // {\n    //   \"type\": \"Alternate1\",\n    //   \"number\": \"5139228888\",\n    //   \"extension\": \"8888\"\n    // },\n    {\n      \"type\": \"Primary\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/user-custom-ringback","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","user-custom-ringback"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"criteriaName","value":"test1"}],"variable":[]}},"response":[{"id":"beea3dbd-2793-4bc6-80b5-8de594a96a46","name":"User Custom Ringback","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"user-2@voicecci.net\",\n  \"criteriaName\": \"test1\",\n  \"timeSchedule\": {\n    \"name\": \"Daily1\",\n    \"level\": \"User\",\n    \"type\": \"Time\"\n  },\n  \"holidaySchedule\": {\n    \"name\": \"Ken schedule2\",\n    \"level\": \"Group\",\n    \"type\": \"Holiday\"\n  },\n  \"blacklisted\": false,\n  \"fromDnCriteria\": {\n    \"fromDnCriteriaSelection\": \"Specified Only\",\n    \"includeAnonymousCallers\": true,\n    \"includeUnavailableCallers\": true,\n    \"phoneNumbers\": [\n      \"2345\",\n      \"3456\"\n    ]\n  },\n  \"audioSelection\": \"URL\",\n  \"audioFile\": {\n    \"name\": \"ATest no extension\",\n    \"mediaFileType\": \"WAV\",\n    \"level\": \"User\"\n  },\n  \"audioFileUrl\": \"http://google.com\",\n  \"videoSelection\": \"Default\",\n  \"callsToNumber\": [\n    {\n      \"type\": \"Alternate1\",\n      \"number\": \"5139228888\",\n      \"extension\": \"8888\"\n    },\n    {\n      \"type\": \"Primary\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/users/user-custom-ringback","host":["{{url}}"],"path":["api","v2","users","user-custom-ringback"],"query":[{"key":"userId","value":"user-2@voicecci.net","disabled":true},{"key":"criteriaName","value":"test1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Oct 2023 20:27:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"640"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteriaName\": \"test1\",\n    \"timeSchedule\": {\n        \"name\": \"Daily1\",\n        \"level\": \"User\",\n        \"type\": \"Time\"\n    },\n    \"holidaySchedule\": {\n        \"name\": \"Ken schedule2\",\n        \"level\": \"Group\",\n        \"type\": \"Holiday\"\n    },\n    \"blacklisted\": false,\n    \"fromDnCriteria\": {\n        \"fromDnCriteriaSelection\": \"Specified Only\",\n        \"includeAnonymousCallers\": \"true\",\n        \"includeUnavailableCallers\": \"true\",\n        \"phoneNumbers\": [\n            \"2345\",\n            \"3456\"\n        ]\n    },\n    \"audioSelection\": \"URL\",\n    \"audioFile\": {\n        \"name\": \"ATest no extension\",\n        \"mediaFileType\": \"WAV\",\n        \"level\": \"User\"\n    },\n    \"audioFileUrl\": \"http://google.com\",\n    \"videoSelection\": \"Default\",\n    \"callsToNumber\": [\n        {\n            \"type\": \"Alternate1\",\n            \"number\": \"5139228888\",\n            \"extension\": \"8888\"\n        },\n        {\n            \"type\": \"Primary\"\n        }\n    ]\n}"}],"_postman_id":"cc1a1704-8ca6-4d04-a49a-abd381827f54"},{"name":"User Custom Ringback Activation","id":"80e6fc39-54b7-44a6-a629-e5bf3e18e1b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"user-2@voicecci.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"criteriaName\": \"test1\",\n\t\t\t\"isActive\": true\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"test3\",\n\t\t\t\"isActive\": false\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/user-custom-ringback/activation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","user-custom-ringback","activation"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"user-2@voicecci.net"},{"disabled":true,"key":"criteriaName","value":"test1"}],"variable":[]}},"response":[{"id":"c9c737c5-236d-43cd-9847-b186a4bcd996","name":"User Custom Ringback Activation","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"userId\": \"user-2@voicecci.net\",\n\t\"criteria\": [\n\t\t{\n\t\t\t\"criteriaName\": \"test1\",\n\t\t\t\"isActive\": true\n\t\t},\n\t\t{\n\t\t\t\"criteriaName\": \"test3\",\n\t\t\t\"isActive\": false\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/users/user-custom-ringback/activation","host":["{{url}}"],"path":["api","v2","users","user-custom-ringback","activation"],"query":[{"key":"userId","value":"user-2@voicecci.net","disabled":true},{"key":"criteriaName","value":"test1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Oct 2023 20:16:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"850"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteria\": [\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"test1\",\n            \"timeSchedule\": \"Daily1\",\n            \"callFrom\": \"Any private number,Any unavailable number,2345\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"Ken schedule2(Group)\",\n            \"callToNumber\": \"5139228888,\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \"8888,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5139228888\",\n                    \"extension\": \"8888\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"\",\n                    \"extension\": \"\"\n                }\n            ]\n        },\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"test3\",\n            \"timeSchedule\": \"Daily1\",\n            \"callFrom\": \"Any private number,Any unavailable number,2345\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"Ken schedule2(Group)\",\n            \"callToNumber\": \"5139228888,\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \"8888,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5139228888\",\n                    \"extension\": \"8888\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"\",\n                    \"extension\": \"\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"80e6fc39-54b7-44a6-a629-e5bf3e18e1b6"},{"name":"User Custom Ringback","id":"dc870c28-ff1d-4134-8bff-d485c2817226","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteriaName\": \"test4\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/user-custom-ringback","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","user-custom-ringback"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a66843c4-63bc-43a9-85b2-cdd48f117a4f","name":"User Custom Ringback","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteriaName\": \"test4\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/user-custom-ringback"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Oct 2023 20:15:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"850"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"user-2@voicecci.net\",\n    \"criteria\": [\n        {\n            \"isActive\": false,\n            \"criteriaName\": \"test1\",\n            \"timeSchedule\": \"Daily1\",\n            \"callFrom\": \"Any private number,Any unavailable number,2345\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"Ken schedule2(Group)\",\n            \"callToNumber\": \"5139228888,\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \"8888,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5139228888\",\n                    \"extension\": \"8888\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"\",\n                    \"extension\": \"\"\n                }\n            ]\n        },\n        {\n            \"isActive\": true,\n            \"criteriaName\": \"test3\",\n            \"timeSchedule\": \"Daily1\",\n            \"callFrom\": \"Any private number,Any unavailable number,2345\",\n            \"blacklisted\": false,\n            \"holidaySchedule\": \"Ken schedule2(Group)\",\n            \"callToNumber\": \"5139228888,\",\n            \"callToType\": \"Alternate1,Primary\",\n            \"callToExtension\": \"8888,\",\n            \"callsToNumber\": [\n                {\n                    \"type\": \"Alternate1\",\n                    \"number\": \"5139228888\",\n                    \"extension\": \"8888\"\n                },\n                {\n                    \"type\": \"Primary\",\n                    \"number\": \"\",\n                    \"extension\": \"\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"dc870c28-ff1d-4134-8bff-d485c2817226"}],"id":"15b4caf0-f74a-47a6-9207-988999c0fa3b","_postman_id":"15b4caf0-f74a-47a6-9207-988999c0fa3b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Video Add On","item":[{"name":"User Video Add On","id":"bd7ad506-2938-4f7c-accb-34f27cfec300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/video-add-on?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","video-add-on"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"95e42254-d5ca-4a4c-9c07-3c27e3304b88","name":"User Video Add On","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/video-add-on?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","video-add-on"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": false,\n    \"maxOriginatingCallDelaySeconds\": 2,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"bd7ad506-2938-4f7c-accb-34f27cfec300"},{"name":"User Video Add On","id":"dfe0e2dd-f163-40c0-a5ee-2eb412f2640e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"maxOriginatingCallDelaySeconds\": 2,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"accessDeviceEndpoint\": {\n    \t\"accessDevice\": {\n    \t\t\"deviceLevel\": \"Group\",\n    \t\t\"deviceName\": \"4001-dev1-video\"\n    \t},\n    \t\"linePort\": \"4001@parkbenchsolutions.com\"\n    }\n}"},"url":"{{url}}/api/v2/users/video-add-on","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","video-add-on"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"df1999c3-04dc-4544-8657-28e48f9fda24","name":"User Video Add On","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"maxOriginatingCallDelaySeconds\": 2,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"accessDeviceEndpoint\": {\n    \t\"accessDevice\": {\n    \t\t\"deviceLevel\": \"Group\",\n    \t\t\"deviceName\": \"4001-dev1-video\"\n    \t},\n    \t\"linePort\": \"4001@parkbenchsolutions.com\"\n    }\n}"},"url":"{{url}}/api/v2/users/video-add-on"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"maxOriginatingCallDelaySeconds\": 2,\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceLevel\": \"Group\",\n            \"deviceName\": \"4001-dev1-video\"\n        },\n        \"linePort\": \"4001@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\"\n    },\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"dfe0e2dd-f163-40c0-a5ee-2eb412f2640e"}],"id":"140bb636-aec1-41d4-84df-8b3ac99c6d81","_postman_id":"140bb636-aec1-41d4-84df-8b3ac99c6d81","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Virtual On-Net Enterprise Extensions","item":[{"name":"System Virtual On-Net Enterprise Extensions","id":"6232fd7e-3b0c-47c9-8f3d-6eaee17f583d","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/virtual-on-net-enterprise-extensions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","virtual-on-net-enterprise-extensions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3a93d3e4-76f1-40ee-aa53-e36a64febccb","name":"System Virtual On-Net Enterprise Extensions","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/system/virtual-on-net-enterprise-extensions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Oct 2018 02:59:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"6232fd7e-3b0c-47c9-8f3d-6eaee17f583d"},{"name":"Group Virtual On-Net Enterprise Extensions Users Copy","id":"7db92e3d-d703-439a-8b60-f60930844ee9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/virtual-on-net-enterprise-extensions?serviceProviderId=ent.odin&groupId=grp.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","virtual-on-net-enterprise-extensions"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}],"variable":[]}},"response":[{"id":"2f325d8f-e38b-4a4b-9e99-8af7fe276f75","name":"Group Virtual On-Net Enterprise Extensions Users Copy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/virtual-on-net-enterprise-extensions?serviceProviderId=ent.odin&groupId=grp.odin","host":["{{url}}"],"path":["api","v2","groups","virtual-on-net-enterprise-extensions"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"key":"groupId","value":"grp.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"users\": [\n        {\n            \"lastName\": \"testlast\",\n            \"firstName\": \"testfirst\",\n            \"phoneNumber\": \"+1-1234567890\",\n            \"extension\": \"1111\",\n            \"virtualOnNetCallTypeName\": \"test01\"\n        },\n        {\n            \"lastName\": \"Kumar22\",\n            \"firstName\": \"Mayur\",\n            \"phoneNumber\": \"+1-0000232654\",\n            \"extension\": \"1235\",\n            \"virtualOnNetCallTypeName\": \"test02\"\n        },\n        {\n            \"lastName\": \"reverman\",\n            \"firstName\": \"mark\",\n            \"phoneNumber\": \"+1-1001001345\",\n            \"extension\": \"1345\",\n            \"virtualOnNetCallTypeName\": \"test01\"\n        }\n    ]\n}"}],"_postman_id":"7db92e3d-d703-439a-8b60-f60930844ee9"},{"name":"Group Virtual On-Net Enterprise Extensions User","id":"00c434c4-ab86-4c58-9749-28251335049d","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"phoneNumber\":\"5133334444\",\n\t\"lastName\":\"Test\",\n\t\"firstName\":\"Test\",\n\t\"callingLineIdLastName\":\"Test\",\n\t\"callingLineIdFirstName\":\"Test\",\n\t\"extension\":\"333\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"virtualOnNetCallTypeName\": \"\"\n}"},"url":"{{url}}/api/v2/groups/virtual-on-net-enterprise-extensions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","virtual-on-net-enterprise-extensions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"00c434c4-ab86-4c58-9749-28251335049d"},{"name":"Group Virtual On-Net Enterprise Extensions User","id":"cf5a1670-2be2-4d8a-a3c7-9cf5399dc933","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"phoneNumber\":\"5133334444\",\n\t\"lastName\":\"Test\",\n\t\"firstName\":\"Test\",\n\t\"callingLineIdLastName\":\"Test\",\n\t\"callingLineIdFirstName\":\"Test\",\n\t\"extension\":\"333\",\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\",\n\t\"virtualOnNetCallTypeName\": \"\"\n}"},"url":"{{url}}/api/v2/groups/virtual-on-net-enterprise-extensions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","virtual-on-net-enterprise-extensions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf5a1670-2be2-4d8a-a3c7-9cf5399dc933"},{"name":"Group Virtual On-Net Enterprise Extensions User","id":"d2ef0baf-0c98-42c6-943b-1abb300d0d03","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/virtual-on-net-enterprise-extensions?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&phoneNumber=5133334444","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","virtual-on-net-enterprise-extensions"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"phoneNumber","value":"5133334444"}],"variable":[]}},"response":[],"_postman_id":"d2ef0baf-0c98-42c6-943b-1abb300d0d03"},{"name":"Group Virtual On-Net Enterprise Extensions User","id":"3fc9933a-4bd5-4a59-982f-c927ff55ed29","request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/virtual-on-net-enterprise-extensions?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1&phoneNumber=5133334444","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","virtual-on-net-enterprise-extensions"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"phoneNumber","value":"5133334444"}],"variable":[]}},"response":[],"_postman_id":"3fc9933a-4bd5-4a59-982f-c927ff55ed29"}],"id":"5b581a45-0a27-402b-91c5-7f6b1e95a07b","_postman_id":"5b581a45-0a27-402b-91c5-7f6b1e95a07b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Voice Messaging","item":[{"name":"Group Voice Messaging","id":"46cf22d1-73eb-4338-b2fe-17a296d24d30","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/voice-messaging?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","voice-messaging"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"cd1360e6-4167-4773-af91-2b2a02dff486","name":"Group Voice Messaging","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/voice-messaging?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","voice-messaging"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 23:12:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"376"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"useMailServerSetting\": \"System Mail Server\",\n    \"warnCallerBeforeRecordingVoiceMessage\": false,\n    \"allowUsersConfiguringAdvancedSettings\": true,\n    \"allowComposeOrForwardMessageToEntireGroup\": false,\n    \"mailServerProtocol\": \"POP3\",\n    \"realDeleteForImap\": false,\n    \"maxMailboxLengthMinutes\": 30,\n    \"doesMessageAge\": false,\n    \"holdPeriodDays\": 15,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"46cf22d1-73eb-4338-b2fe-17a296d24d30"},{"name":"Group Voice Messaging","id":"10d5ddce-6d4a-4724-94f9-bfe8691ff5a4","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useMailServerSetting\":\"System Mail Server\",\n\t\"warnCallerBeforeRecordingVoiceMessage\":false,\n\t\"allowUsersConfiguringAdvancedSettings\":true,\n\t\"allowComposeOrForwardMessageToEntireGroup\":false,\n\t\"mailServerProtocol\":\"POP3\",\n\t\"realDeleteForImap\":false,\n\t\"maxMailboxLengthMinutes\":30,\n\t\"doesMessageAge\":false,\n\t\"holdPeriodDays\":15,\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/voice-messaging","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","voice-messaging"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"769947c0-c9ed-4dc1-b319-2f77bcf43665","name":"Group Voice Messaging","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"useMailServerSetting\":\"System Mail Server\",\n\t\"warnCallerBeforeRecordingVoiceMessage\":false,\n\t\"allowUsersConfiguringAdvancedSettings\":true,\n\t\"allowComposeOrForwardMessageToEntireGroup\":false,\n\t\"mailServerProtocol\":\"POP3\",\n\t\"realDeleteForImap\":false,\n\t\"maxMailboxLengthMinutes\":30,\n\t\"doesMessageAge\":false,\n\t\"holdPeriodDays\":15,\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/voice-messaging"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 23:13:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"10d5ddce-6d4a-4724-94f9-bfe8691ff5a4"},{"name":"Group Voice Messaging Voice Portal","id":"638d3585-087a-4863-b2a6-c60155d888f1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/voice-messaging/voice-portal?groupId=grp.odin&serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","voice-messaging","voice-portal"],"host":["{{url}}"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"ea3bfda6-c4e8-44c8-add0-c85a74e67d0e","name":"Group Voice Messaging Voice Portal","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/voice-messaging/voice-portal?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","voice-messaging","voice-portal"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 23:13:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"618"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceUserId\": \"224374430_261921865_VMR\",\n    \"serviceInstanceProfile\": {\n        \"name\": \"Voice Portal\",\n        \"callingLineIdLastName\": \"Voice Portal\",\n        \"callingLineIdFirstName\": \"Voice Portal\",\n        \"hiraganaLastName\": \"Voice Portal\",\n        \"hiraganaFirstName\": \"Voice Portal\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Denver\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (US) Mountain Time\"\n    },\n    \"isActive\": false,\n    \"enableExtendedScope\": false,\n    \"allowIdentificationByPhoneNumberOrVoiceMailAliasesOnLogin\": false,\n    \"useVoicePortalWizard\": true,\n    \"voicePortalExternalRoutingScope\": \"System\",\n    \"useExternalRouting\": false,\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"}],"_postman_id":"638d3585-087a-4863-b2a6-c60155d888f1"},{"name":"Group Voice Messaging Voice Portal","id":"d03f5711-82d3-4a59-84e7-f1d1339afdb8","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"224374430_261921865_VMR\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"Voice Portal\",\n\t\t\"callingLineIdLastName\":\"Voice Portal\",\n\t\t\"callingLineIdFirstName\":\"Voice Portal\",\n\t\t\"hiraganaLastName\":\"Voice Portal\",\n\t\t\"hiraganaFirstName\":\"Voice Portal\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\"\n\t},\n\t\"isActive\":false,\n\t\"enableExtendedScope\":false,\n\t\"allowIdentificationByPhoneNumberOrVoiceMailAliasesOnLogin\":false,\n\t\"useVoicePortalWizard\":true,\n\t\"voicePortalExternalRoutingScope\":\"System\",\n\t\"useExternalRouting\":false,\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/voice-messaging/voice-portal","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","voice-messaging","voice-portal"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"eede8453-4709-479e-a762-b47e2f99ce70","name":"Group Voice Messaging Voice Portal","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceUserId\":\"224374430_261921865_VMR\",\n\t\"serviceInstanceProfile\":{\n\t\t\"name\":\"Voice Portal\",\n\t\t\"callingLineIdLastName\":\"Voice Portal\",\n\t\t\"callingLineIdFirstName\":\"Voice Portal\",\n\t\t\"hiraganaLastName\":\"Voice Portal\",\n\t\t\"hiraganaFirstName\":\"Voice Portal\",\n\t\t\"language\":\"English\",\n\t\t\"timeZone\":\"America/Denver\"\n\t},\n\t\"isActive\":false,\n\t\"enableExtendedScope\":false,\n\t\"allowIdentificationByPhoneNumberOrVoiceMailAliasesOnLogin\":false,\n\t\"useVoicePortalWizard\":true,\n\t\"voicePortalExternalRoutingScope\":\"System\",\n\t\"useExternalRouting\":false,\n\t\"serviceProviderId\":\"odin.mock.ent1\",\n\t\"groupId\":\"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/voice-messaging/voice-portal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Oct 2018 23:15:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"d03f5711-82d3-4a59-84e7-f1d1339afdb8"},{"name":"User Voice Messaging","id":"fad5689b-6855-4705-8180-1de2e8039d97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging?userId=4001.5001@lab.tekvoice.net","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>processing</td>\n<td>string</td>\n<td>optional</td>\n<td>1. Unified Voice and Email Messaging <br /> 2. Deliver To Email Address Only</td>\n<td>Choices to handle a voice message.</td>\n</tr>\n<tr>\n<td>voiceMessageDeliveryEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>usePhoneMessageWaitingIndicator</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>sendVoiceMessageNotifyEmail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageNotifyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>sendCarbonCopyVoiceMessage</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageCarbonCopyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 80</td>\n<td></td>\n</tr>\n<tr>\n<td>transferOnZeroToPhoneNumber</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>transferPhoneNumber</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 30</td>\n<td>An outgoing phone number or a number meant to be dialed. It is longer than a DN so that equal access digits or access code digits may be be included.  It cannot be a SIP URL.</td>\n</tr>\n<tr>\n<td>alwaysRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>busyRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>noAnswerRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>outOfPrimaryZoneRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001.5001@lab.tekvoice.net"}],"variable":[]}},"response":[{"id":"1eec2d64-b8c0-4d16-a02a-6912b68e54bd","name":"User Voice Messaging","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging?userId=4001.5001@lab.tekvoice.net","host":["{{url}}"],"path":["api","v2","users","voice-messaging"],"query":[{"key":"userId","value":"4001.5001@lab.tekvoice.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Apr 2020 15:58:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"672"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"processing\": \"Unified Voice and Email Messaging\",\n    \"voiceMessageDeliveryEmailAddress\": \"pbs.cc@parkbenchsolutions.com\",\n    \"usePhoneMessageWaitingIndicator\": true,\n    \"sendVoiceMessageNotifyEmail\": true,\n    \"voiceMessageNotifyEmailAddress\": \"pbs.stt@parkbenchsolutions.com\",\n    \"sendCarbonCopyVoiceMessage\": true,\n    \"voiceMessageCarbonCopyEmailAddress\": \"pbs.cc@parkbenchsolutions.com\",\n    \"transferOnZeroToPhoneNumber\": true,\n    \"transferPhoneNumber\": 4500,\n    \"alwaysRedirectToVoiceMail\": false,\n    \"busyRedirectToVoiceMail\": true,\n    \"noAnswerRedirectToVoiceMail\": true,\n    \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"4001.5001@lab.tekvoice.net\"\n}"}],"_postman_id":"fad5689b-6855-4705-8180-1de2e8039d97"},{"name":"User Voice Messaging","id":"7e75ed47-697b-4e18-89f6-c3a7230b6f7b","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"processing\": \"Unified Voice and Email Messaging\",\n    \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n    \"usePhoneMessageWaitingIndicator\": true,\n    \"sendVoiceMessageNotifyEmail\": true,\n    \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n    \"sendCarbonCopyVoiceMessage\": true,\n    \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n    \"transferOnZeroToPhoneNumber\": true,\n    \"transferPhoneNumber\": 1005551414,\n    \"alwaysRedirectToVoiceMail\": false,\n    \"busyRedirectToVoiceMail\": true,\n    \"noAnswerRedirectToVoiceMail\": true,\n    \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"isEnterprise\": true\n}"},"url":"{{url}}/api/v2/users/voice-messaging","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>processing</td>\n<td>string</td>\n<td>optional</td>\n<td>1. Unified Voice and Email Messaging <br /> 2. Deliver To Email Address Only</td>\n<td>Choices to handle a voice message.</td>\n</tr>\n<tr>\n<td>voiceMessageDeliveryEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>usePhoneMessageWaitingIndicator</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>sendVoiceMessageNotifyEmail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageNotifyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>sendCarbonCopyVoiceMessage</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageCarbonCopyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 80</td>\n<td></td>\n</tr>\n<tr>\n<td>transferOnZeroToPhoneNumber</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>transferPhoneNumber</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 30</td>\n<td>An outgoing phone number or a number meant to be dialed. It is longer than a DN so that equal access digits or access code digits may be be included.  It cannot be a SIP URL.</td>\n</tr>\n<tr>\n<td>alwaysRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>busyRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>noAnswerRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>outOfPrimaryZoneRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a04edf4b-5c6e-45f2-95a3-51179afa5952","name":"User Voice Messaging","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"isActive\":true,\n\t\"processing\":\"Unified Voice and Email Messaging\",\n\t\"usePhoneMessageWaitingIndicator\":true,\n\t\"sendVoiceMessageNotifyEmail\":false,\n\t\"sendCarbonCopyVoiceMessage\":false,\n\t\"transferOnZeroToPhoneNumber\":false,\n\t\"alwaysRedirectToVoiceMail\":false,\n\t\"busyRedirectToVoiceMail\":true,\n\t\"noAnswerRedirectToVoiceMail\":true,\n\t\"outOfPrimaryZoneRedirectToVoiceMail\":false,\n\t\"userId\":\"9709580001@microv-works.com\"\n}"},"url":"{{url}}/api/v2/users/voice-messaging"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 19:27:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"7e75ed47-697b-4e18-89f6-c3a7230b6f7b"},{"name":"User Voice Messaging Messages","id":"df45dc2e-e41b-4a1d-9bdc-2cc8760c1305","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/messages?userId=abowman@alliedtelecom.net","description":"<h6 id=\"voice-messaging-messages-will-return-a-list-of-voicemails-for-a-userid\">Voice Messaging Messages will return a list of voicemails for a userId</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","messages"],"host":["{{url}}"],"query":[{"key":"userId","value":"abowman@alliedtelecom.net"},{"disabled":true,"key":"userId","value":"dwood.test@alliedtelecom.net"}],"variable":[]}},"response":[{"id":"1efb163a-1ef0-46c1-a505-5e854d2c58ab","name":"User Voice Messaging Messages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/messages?userId=dwood.test@alliedtelecom.net","host":["{{url}}"],"path":["api","v2","users","voice-messaging","messages"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": [\n        {\n            \"duration\": \"8400\",\n            \"read\": true,\n            \"time\": \"1598022283436\",\n            \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/24227e30-4afb-4fd4-ad51-a26b542efc94\",\n            \"dateTime\": \"2020-08-21 15:04:43\",\n            \"seconds\": 8.4,\n            \"id\": \"24227e30-4afb-4fd4-ad51-a26b542efc94\",\n            \"callingPartyInfoName\": \"WOOD AWESOME\",\n            \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\"\n        },\n        {\n            \"duration\": \"6540\",\n            \"read\": true,\n            \"time\": \"1598020864225\",\n            \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/726d5cba-1046-492e-b7ab-4abfa12fe2e5\",\n            \"dateTime\": \"2020-08-21 14:41:04\",\n            \"seconds\": 6.54,\n            \"id\": \"726d5cba-1046-492e-b7ab-4abfa12fe2e5\",\n            \"callingPartyInfoName\": \"WOOD AWESOME\",\n            \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\"\n        },\n        {\n            \"duration\": \"6860\",\n            \"read\": true,\n            \"time\": \"1599069908638\",\n            \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/1c778318-b656-4d2f-a29b-ed50e4ebbcaf\",\n            \"dateTime\": \"2020-09-02 18:05:08\",\n            \"seconds\": 6.86,\n            \"id\": \"1c778318-b656-4d2f-a29b-ed50e4ebbcaf\",\n            \"callingPartyInfoName\": \"WOOD AWESOME\",\n            \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\"\n        }\n    ],\n    \"userId\": \"dwood.test@alliedtelecom.net\"\n}"}],"_postman_id":"df45dc2e-e41b-4a1d-9bdc-2cc8760c1305"},{"name":"User Voice Messaging Message Details","id":"a7a991ce-4eca-454b-9efe-f4d4774eaef5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/message?userId=dwood.test@alliedtelecom.net&id=24227e30-4afb-4fd4-ad51-a26b542efc94","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","message"],"host":["{{url}}"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"},{"key":"id","value":"24227e30-4afb-4fd4-ad51-a26b542efc94"}],"variable":[]}},"response":[{"id":"f5d14947-700b-43a2-9914-4d9bf5984bc4","name":"User Voice Messaging Message Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/message?userId=dwood.test@alliedtelecom.net&id=24227e30-4afb-4fd4-ad51-a26b542efc94","host":["{{url}}"],"path":["api","v2","users","voice-messaging","message"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"},{"key":"id","value":"24227e30-4afb-4fd4-ad51-a26b542efc94"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"duration\": \"8400\",\n    \"read\": true,\n    \"time\": \"1598022283436\",\n    \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/24227e30-4afb-4fd4-ad51-a26b542efc94/24227e30-4afb-4fd4-ad51-a26b542efc94\",\n    \"dateTime\": \"2020-08-21 15:04:43\",\n    \"seconds\": 8.4,\n    \"id\": \"24227e30-4afb-4fd4-ad51-a26b542efc94\",\n    \"callingPartyInfoName\": \"WOOD AWESOME\",\n    \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\",\n    \"fileName\": \"tmp_dwood.testMessage24227e30-4afb-4fd4-ad51-a26b542efc94.wav\",\n    \"mediaType\": \"WAV\",\n    \"mediaContent\": \"UklGRkmFAABXQVZFZm10IBQAAAARAAEAQB8AANcPAAAAAQQAAgD5AWZhY3QEAAAAhgYBAGRhdGEVhQAAAAAAAAAAcIqAcIuAgICAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BAgICAgICAgICAAAAAAAAAAA8K8HCAiACICAgIAICAgJAAAAAAAAAPBPgPCIhYCAgICAgICAgAgICAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAC8AMICIiAgJAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAADwAnCLgICAgICQAAAAAAAAAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAD/ioCAgICAgIAAAAAAAAAAAACnCAgICAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAPACgICAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAAAAAPACVw4ICAgICAgICIiAgJAAAAAAAAAAAAB3jICAgICAAAgICHCKgICAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACcIuAgICAgJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL/CDAAgICAj4AwgICAgAAAAAAAD/BAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAPCvBwgIgAiAgICACAgICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BAgICAgI+IMACAgICAgJAAAAAAAAAAAAAAD/BAgICAgIPwgICAiAgIAAAAAAAAAAAAAA/wQICAgICAgIP4CACAgICQAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAApwgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAKcICAgIAAAA8E+AgICAgICAgIAAAAAAAAAAAAAAAAAAAABwioCAgAAA8AKAgIAAAAAAAAAAAAAAAAAAAAB38ggICIgACAgIiICAkC8ACAgIAAAApwgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKcICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgIAAAAIAgAAAAACnCAgICAAAAAAAAPACgICAAAAAAC8ACAg/gAgICAkAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAAADwAoA/gIAACAgIAAAAAAAApwgIeIuAgHCLgICAgJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ACAgIAAAAAAAAAAAAAAAAAAAAAAAAAPBPgICAgICAgICAAABwioCAgAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAA8AKAgIAAAC8ACAgIAAAAAAAAAAAAAAAAAAAAAHCKgLcICAgICAgAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAKcICAgILwAICAgAAAAAAACnCAgICABwioCAgAAAAAAAAPACgICAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAKcICAgIAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAPACgICAAAAAAHCKt4CAgICAgJAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAACnCAj4AwiAgIAAAAAAAAAAAAAA8E+AgICAgICA8AMIiICAkAAAAAAApwgICAgAAAAAAAAAAACnCAgICAAAAACnCAgICADwT4CAgICA8IOAgIAACAgIAC8ACAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8E+2gAgICAgIgICAgICQAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAADwAoCAgAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAApwgICAgA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAPACgICAAAAAAAAAAAAAAAAA8AKAgIAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ACAgIAAAA8AKAgD+AAAgICAAAAAAAAPBPgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAcMcICAgICAiAgIAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMD/AAB3AggICAiAgIAAAAAAAAAAAAAAAACnCAgICAAAAAAAAAAAAAAAAC8ACAgIAHCK8AMICIiAgJAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioA/gIAACAi3CAgICAkAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAKcICAgIAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAD/BAgInwiAeAAICA+DDEgIDAOIAIgACAgIiICAkPAC3wgIB4CAAIjwg4CAgIA/+DAMAw2DgICAgAgICAiAgIAAAAAA/4qAcOIDCAgICAiIgIA/CIDwg49YCIAIgAiAgICACAgICQAAAAAAAAAAAAAAAAAAAADwAj8IgICAgIDwAj8ICAgICAgI8E/wg8AwCA0IhICMgIAAiICAgFcI+IBAPDsACAgICIivBggICI+EgICAgIAICAj484iFwICAhcADyAgEjICAYLgIUAiMQDuAgAD4g4CAgIAA+AOIgICAAAgIP4AICAgvAAAHAIDvaIA8i4CGgMAICAgGjIBQCAgICPhIiwQICAiIAAgICIjwT4CAgI+EgItQCAgICAgIgICAgICQAAAAAAAAAAAAAC8ACAgIAAAAAAAAAAAAAAAAAADwAt+GgICAgD+AgIAIgIA/CAgIgICAgICQAAAA8K8IeAGAgAifhYtoCAiMBAgNg9CAtIAIUAgICA8ICAgFPYAIPYCAgACIgICA8IMACAgICAgJAAAAAAAAAAAA/+SABAjYA8gw0AMIDcOAgAhggAgID8OAtEgIuAgIiAeAgICAjwiIAIiAgIAACAgIAAAAAAAAAAAAAHAngJ+1CFjAg4CAgPAIQMgDgMD/FACFgIDgMAiACIAICAgIgPCPeAgIyFgIDIPASLiAtQiEAAiOgIAAeIsAWICAgICAgIDwAwiIgICAgIAAAAAvAAgICAAAAAAA8ALwT4CAAIg/gICACPCD4AOMhICAgICAgPCKB4iLgIAHiACI8EgICICAgICACAgI+I8FCAjoSICAgICPAISAgPCDSwjICICAcIuAUICMtDCAgAA/yAi0SIBMuDCADQOACIAICAgIgICAAAAAAAAAAP+KcIuGwIBAi4CAhoDQMIDgMAgNg4CAgICAgIDPBggIiACIgICAAAgICP8ECAj4iYYADcODgACIjgQICOgw0ICAQICADgPA/xUAQICAgAiAgIDwXUsICAjoCAgICAgICAiIgICQAAAAAAAAAABweoWAgIDwaou0AzyAgPCAA4CAgICACAgICAgIAAAAAAD/ioCAgHDlgwsIhYDQSIsECAjoAwjYMICAAIiAgIAA+AMICIDwA78IB4CNQMBICwMIDjgA2EiAgIDwg4CAjUDASAgIjASIAA4ICAgICAiIcAMICAi/h4CAAIgACAgIiICAkAAAAAAAAAAAAAAAAPACgICAAAAAAC8ACAj4T4CA8FkIyAOAgICAgAgICAgICAAAAAAALwAICAgvAAj4n4CAF+CzCAgICIiAgIAACAgIAAAAAAAAAAAAwP8AAAAAcIqAgLcICGeAgD+ACIAIgIA/CAgI8At4wAMIgAiACAgICICAgAAAAAAvAAgICAAA8ALwT4DQgICFgIDgMIAIgAiAgICA71DACAgIeAiAyAgIeIA7gIAAj4SAgI0EyDCAgICACAgICICA8AOIgICQAAAAAAAAAPBPgICAgK8IeMCABIyEgICAgICAAPh7CAwDDQhIi4CGCwgIgAgHgOCAQAgIjUAI0AiEgIDgMMiEgICAgD8IgICAgICvhoAAiACIgICAAD+AgIAICAgJ8K8HCNgwAIgAiICAvwiAgHCLgBeAgAiAgL8HDDjAMDyADAgECAgIPwg9gICADwAAGADAMAwIAwiACICAgIDvhQCITbgwDEiAgOCACIAIgAgICPgNCHgLCAgICAgICIiAgJAAAAB3jIAHDEiAgAiACICAN48wwEiAgIDoCIBQ0DAMCAgIgAiAgICACAgICQAAAAAAcIqAgIAAAAAAAAAAAAAAd4yHgItQCAjYSIuFgIu1SAiACPCDgICAgICAgPCDgJ8FiICADwgIiACIgICAAAgICAAAAAAAAAAAAAAAAAB38gMIDgjDMAwD4DAICAiIAAiveIAIgICAgIAICAgIP4CACAgICQAAAAAAAAAA8K8HCAiACICAgIAICAgJ/3qAgACIAAgICD8ICAgICP8AABQAgA7DgICACIAICCeOAAgICAiIt4CAgIC3gICAgIAItwgIiHAH6IAEiNCABIgAiAD4g4CA8IgAiAAHyLMIaIu0gICAgLeAgAiACBcNCFiLgIC3MICA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CAgIgI+EgICAgICAgICAgIAAAAAAAAAAAAAALwAICAgAAC8ACAgIAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBPgICPhIuAgAiAFwCIAAAADQCA+AMICIjw84MACD4ICAgICAiAgICAgJAAAAAAAAAAAADwAoCAgAAAAAAA8E/wgLMICLZIgAyIgICAgAAICAh414CAtoCAgIaATIuEgICMgIaAgIyAgIcLhIAMSMADiICAgIAAv3A7i4WAgD0ACAgICAgICAgICAkAAAAAAAAAAAAAAAAAAAAAAPACgICAAAD/BAgICAgICAgICC8ACAgIAC/fhoAMCLQICAgICAgICICAgAB3Agj4aoDIhIDQgwCITQgICIgAiICAgAAICAgAAAAAAPACgICAAAAAAAAA/+QDCAiACICAgIAICAgJAAAAAADwAoDwA78ICHgAABMAPQxIwDDIAzyAgD2AgICAgAAICAgICAkALwAICAgAAAAAAAAAAAAAAAAAAAAALwAICAgA8AKAgIAALwAICAgAAAAALwAIP4CACAgI+QLfeAgIgICAgIAICAgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BPgDjISAgICAgICAgICAgIAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAC8A+PMKCAh40TAMCAgIeAAICPiDANgDyEiAgIAAiPCDPoCAgACIgICAAAgICAAAAAD/AAAQAIAIn4WLCIB4AA1ICDyACD2ADMOEgDyAgIAAiICAgAAICAgAAAAAAAAALwAICAgA/3rAAwgICAj4WQgMSLiESwgICAiACAgI+AMICPgDCAgICIDwj3i4QAgIDYMMCMSAgIAGCNgDCAgIP4AICAgICICAgICAkC8ACAgIAAAALwAIP4CACAgICQAA8K8HCA0IhIuFS4uESwgIgAiACD8ICAgICAiIgICQLwAICAgAAAAAAAAAAAAAAP8ECAgICAgICPgDCICAgPCvBwwIiIaAgICAgIAACD+PhICAgACIP+CDgACIAIifhQANg4CAgPgDCOiAgICGgNADCAgICAAADgCPWAgICIAIgICAgAgICPkCgICAAAAAAAAAAADwT4Dwg4DgAwgICAgIr2AIDAMNCAMNCASIgICAgAAIz2CAgICAgICAgD+AgICACAgICQAA8AKAgIDwAj+fgAiAeNGAgICAgHCBgD4MA4y0SICAgICACAgICICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv8G2LgICACAeADcMwAAiI8EgMCAiAtghYuEAICI0EiACIAIiAgIAACAgIAAAAAAAAAAD/BAj4wwMICPgwCA0IhAAICAgIiICAgD+AgAAIP4CACD+AgICAgJAAAAAALwAICAgAAC8A+E+AgICAgPAAABMAgPCDwAMIiACIgPB7gAiAgICAgAgICAgICAAAAC8A/7SEgICAAIiAgIAACAgIAAD/BPizSIuFwICESwgICAgIiICAgPCD8AOIAAgICIiAgJAAAAAAAAAAAADwAoDwT4AAj4SAgIwEDAjDMAxIi1AIDIMMA4AIgAgICAiAgIAAAAAAAPACgICAAAAAAAAA/+QwgICAj7SAgICAgAgICDfwiIC2A8hIwDDIMNADCD2AgICAAAgIPwgICL8HiAAICAgIiPCDjwSIAIgAiICAgN+GgICA8IOAgOADCAgI+IMAiACIgIDwA/gDiACIgICAAAgICAAAAADwAoCAgAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAvAAgICPACgPBPgACIAAgICIiAgPBPgICAgIA/gICAgIDwAwgICAgICfACgICALwAICAgAAAAAAAAv8I2HC4SLgAB4gAwDDcOAgIAFDINMuDCATbgDgICAgICAP4AICAgIgICA8AKAgIAAAADwAoCA8E/gAwiNhEu4hICAgIDwg4CAAIiArwaIAIgAiPCDgIDwWQgICAgICAgICICAgP8ECAgICPh7gICAgAAIP+gDCD2AgIAIgICAgAj4AwgICAgIAAAv8IMACM8GiNADCAgIgAAADgCAgICA74XAswiFgICAgIA/gICACAgICPADCAiIgICQAAAAAAAAAADwAoCAgC8ACAgIAC8AP4CAgAgICAkAAC8ACAgIAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAL/CDAAj4AwgICIiAgJAAAAAALwAICAgALwAICAjwAoCAgAAAAAAAAAAvAPgDCAiAgIDwrwh40YAEDIOAAIg/gICACICAgID4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CD2AgD2AgE0IjISAgIwECD2AgICAj0C4CMWAgACIB4jAAwg+iwQMgwAAFgCACIAIgIDwg4CAgIAA/0BLDMOAQAjIs4SATAgIPTsAiPAItAMICAiI8IOAD0gICNgDgIA+gIDwg4A8gICNBAgIgAjwg4CAAPjTSDuA0Eg7i4CACIAXAIjwAwgICAj44wPISICAgIAIgIA/PwgICIAIgIA/CD88gIA9gNBIgAg9gICAAPiIhYCAgACIgPCDgI+EAAgICAg/6DCACIAIgD/oAzyAgIDwg4CAgICA8IMAiICAP4Dwg4CAAAiveIAIgICAgID4aoCAjQQIPQjIgIBgCIwAiGCLBAjYAzyAgICAP8iESwgICOgDCAg+CICAPzuAgD6AgIA+gIDwg4DA/xUABAgI6APIA4Dwg4CAPcADPQiACD7ASDvAAzwIyEjAAwgICAgIiD/wg4CAgICAgD8ICAjwgw+DDMOABAgI6AMICPgDCD07AIjwAzzIMMADCOgDPAg8wAMI6AMICAj4Az07gICAgPjTAzzAg0u4hMADPQiACD6AgI0EyAMIgD6AgD2AgICAgPDjAwiNhIBLPICAgAiACAgICPADCD8IPwgICAgIgL94S4AIgOgIgICAcMAIgICAcIu1CLQDgIAIgIDw84PASDsACAj4wzA8gNADyAM8gICACICfhcADCAg/CAjYA4wECIgAiAAICAiIP/CDAIiAgD+AgIA/CAgIAAALAIA/8IM8wAMICD870INLuAiFgICAgAAI+PODgNADPDvQAzzAg4CAgICAn4WAgIA/gICAgIDwgz6AgICOBDy4hIAADsODSwgICAiAj1g70DA8O4CAgICAP4CAgIAICD8ICAgIgIA/gD+AgICAgIA/gAAICAgAAAD/BAj4A40AxICEgICAgICAPwgIPzzAwwPIA8gwgIAAiICAP4CAgPB7CAgI8AizCAiIABc9gDyAgICA8IOA8AiEgICAAIiAgIAA+I9gCIyEgMDDA4AIgAiAgICA74CAcEsIjISAANgDCAgI+MNIgDyADAPYhICAgAiACAj4Az8I2LOEgNADCMD/EwCAgICACAgIZ4CAgICAgICAgA==\",\n    \"userId\": \"dwood.test@alliedtelecom.net\"\n}"}],"_postman_id":"a7a991ce-4eca-454b-9efe-f4d4774eaef5"},{"name":"User Voice Messaging Message Download","id":"463388f1-6bb7-4213-a5b4-85123491435b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/messages/download?userId=dwood.test@alliedtelecom.net&id=726d5cba-1046-492e-b7ab-4abfa12fe2e5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","messages","download"],"host":["{{url}}"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"},{"key":"id","value":"726d5cba-1046-492e-b7ab-4abfa12fe2e5"}],"variable":[]}},"response":[],"_postman_id":"463388f1-6bb7-4213-a5b4-85123491435b"},{"name":"User Voice Messaging Messages Read","id":"32953ae0-e05e-4a3f-9880-5447fe6a630d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"messages\": [\n        {\n            \"id\": \"726d5cba-1046-492e-b7ab-4abfa12fe2e5\"\n        },\n        {\n            \"id\": \"f39e47f0-d75c-4095-9bd9-c33430665eb0\"\n        },\n        {\n            \"id\": \"1c778318-b656-4d2f-a29b-ed50e4ebbcaf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/voice-messaging/messages/read?userId=dwood.test@alliedtelecom.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","messages","read"],"host":["{{url}}"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"}],"variable":[]}},"response":[{"id":"54756e90-e0ba-43c4-bad2-225b9dece6b0","name":"User Voice Messaging Message Read","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/message/read?userId=dwood.test@alliedtelecom.net&id=24227e30-4afb-4fd4-ad51-a26b542efc94","host":["{{url}}"],"path":["api","v2","users","voice-messaging","message","read"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"},{"key":"id","value":"24227e30-4afb-4fd4-ad51-a26b542efc94"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"duration\": \"8400\",\n    \"read\": true,\n    \"time\": \"1598022283436\",\n    \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/24227e30-4afb-4fd4-ad51-a26b542efc94/24227e30-4afb-4fd4-ad51-a26b542efc94\",\n    \"dateTime\": \"2020-08-21 15:04:43\",\n    \"seconds\": 8.4,\n    \"id\": \"24227e30-4afb-4fd4-ad51-a26b542efc94\",\n    \"callingPartyInfoName\": \"WOOD AWESOME\",\n    \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\",\n    \"fileName\": \"tmp_dwood.testMessage24227e30-4afb-4fd4-ad51-a26b542efc94.wav\",\n    \"mediaType\": \"WAV\",\n    \"mediaContent\": \"UklGRkmFAABXQVZFZm10IBQAAAARAAEAQB8AANcPAAAAAQQAAgD5AWZhY3QEAAAAhgYBAGRhdGEVhQAAAAAAAAAAcIqAcIuAgICAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BAgICAgICAgICAAAAAAAAAAA8K8HCAiACICAgIAICAgJAAAAAAAAAPBPgPCIhYCAgICAgICAgAgICAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAC8AMICIiAgJAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAADwAnCLgICAgICQAAAAAAAAAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAD/ioCAgICAgIAAAAAAAAAAAACnCAgICAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAPACgICAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAAAAAPACVw4ICAgICAgICIiAgJAAAAAAAAAAAAB3jICAgICAAAgICHCKgICAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACcIuAgICAgJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL/CDAAgICAj4AwgICAgAAAAAAAD/BAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAPCvBwgIgAiAgICACAgICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BAgICAgI+IMACAgICAgJAAAAAAAAAAAAAAD/BAgICAgIPwgICAiAgIAAAAAAAAAAAAAA/wQICAgICAgIP4CACAgICQAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAApwgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAKcICAgIAAAA8E+AgICAgICAgIAAAAAAAAAAAAAAAAAAAABwioCAgAAA8AKAgIAAAAAAAAAAAAAAAAAAAAB38ggICIgACAgIiICAkC8ACAgIAAAApwgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKcICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgIAAAAIAgAAAAACnCAgICAAAAAAAAPACgICAAAAAAC8ACAg/gAgICAkAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAAADwAoA/gIAACAgIAAAAAAAApwgIeIuAgHCLgICAgJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ACAgIAAAAAAAAAAAAAAAAAAAAAAAAAPBPgICAgICAgICAAABwioCAgAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAA8AKAgIAAAC8ACAgIAAAAAAAAAAAAAAAAAAAAAHCKgLcICAgICAgAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAKcICAgILwAICAgAAAAAAACnCAgICABwioCAgAAAAAAAAPACgICAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAKcICAgIAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAPACgICAAAAAAHCKt4CAgICAgJAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAACnCAj4AwiAgIAAAAAAAAAAAAAA8E+AgICAgICA8AMIiICAkAAAAAAApwgICAgAAAAAAAAAAACnCAgICAAAAACnCAgICADwT4CAgICA8IOAgIAACAgIAC8ACAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8E+2gAgICAgIgICAgICQAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAADwAoCAgAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAApwgICAgA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAPACgICAAAAAAAAAAAAAAAAA8AKAgIAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ACAgIAAAA8AKAgD+AAAgICAAAAAAAAPBPgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAcMcICAgICAiAgIAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMD/AAB3AggICAiAgIAAAAAAAAAAAAAAAACnCAgICAAAAAAAAAAAAAAAAC8ACAgIAHCK8AMICIiAgJAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioA/gIAACAi3CAgICAkAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAKcICAgIAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAD/BAgInwiAeAAICA+DDEgIDAOIAIgACAgIiICAkPAC3wgIB4CAAIjwg4CAgIA/+DAMAw2DgICAgAgICAiAgIAAAAAA/4qAcOIDCAgICAiIgIA/CIDwg49YCIAIgAiAgICACAgICQAAAAAAAAAAAAAAAAAAAADwAj8IgICAgIDwAj8ICAgICAgI8E/wg8AwCA0IhICMgIAAiICAgFcI+IBAPDsACAgICIivBggICI+EgICAgIAICAj484iFwICAhcADyAgEjICAYLgIUAiMQDuAgAD4g4CAgIAA+AOIgICAAAgIP4AICAgvAAAHAIDvaIA8i4CGgMAICAgGjIBQCAgICPhIiwQICAiIAAgICIjwT4CAgI+EgItQCAgICAgIgICAgICQAAAAAAAAAAAAAC8ACAgIAAAAAAAAAAAAAAAAAADwAt+GgICAgD+AgIAIgIA/CAgIgICAgICQAAAA8K8IeAGAgAifhYtoCAiMBAgNg9CAtIAIUAgICA8ICAgFPYAIPYCAgACIgICA8IMACAgICAgJAAAAAAAAAAAA/+SABAjYA8gw0AMIDcOAgAhggAgID8OAtEgIuAgIiAeAgICAjwiIAIiAgIAACAgIAAAAAAAAAAAAAHAngJ+1CFjAg4CAgPAIQMgDgMD/FACFgIDgMAiACIAICAgIgPCPeAgIyFgIDIPASLiAtQiEAAiOgIAAeIsAWICAgICAgIDwAwiIgICAgIAAAAAvAAgICAAAAAAA8ALwT4CAAIg/gICACPCD4AOMhICAgICAgPCKB4iLgIAHiACI8EgICICAgICACAgI+I8FCAjoSICAgICPAISAgPCDSwjICICAcIuAUICMtDCAgAA/yAi0SIBMuDCADQOACIAICAgIgICAAAAAAAAAAP+KcIuGwIBAi4CAhoDQMIDgMAgNg4CAgICAgIDPBggIiACIgICAAAgICP8ECAj4iYYADcODgACIjgQICOgw0ICAQICADgPA/xUAQICAgAiAgIDwXUsICAjoCAgICAgICAiIgICQAAAAAAAAAABweoWAgIDwaou0AzyAgPCAA4CAgICACAgICAgIAAAAAAD/ioCAgHDlgwsIhYDQSIsECAjoAwjYMICAAIiAgIAA+AMICIDwA78IB4CNQMBICwMIDjgA2EiAgIDwg4CAjUDASAgIjASIAA4ICAgICAiIcAMICAi/h4CAAIgACAgIiICAkAAAAAAAAAAAAAAAAPACgICAAAAAAC8ACAj4T4CA8FkIyAOAgICAgAgICAgICAAAAAAALwAICAgvAAj4n4CAF+CzCAgICIiAgIAACAgIAAAAAAAAAAAAwP8AAAAAcIqAgLcICGeAgD+ACIAIgIA/CAgI8At4wAMIgAiACAgICICAgAAAAAAvAAgICAAA8ALwT4DQgICFgIDgMIAIgAiAgICA71DACAgIeAiAyAgIeIA7gIAAj4SAgI0EyDCAgICACAgICICA8AOIgICQAAAAAAAAAPBPgICAgK8IeMCABIyEgICAgICAAPh7CAwDDQhIi4CGCwgIgAgHgOCAQAgIjUAI0AiEgIDgMMiEgICAgD8IgICAgICvhoAAiACIgICAAD+AgIAICAgJ8K8HCNgwAIgAiICAvwiAgHCLgBeAgAiAgL8HDDjAMDyADAgECAgIPwg9gICADwAAGADAMAwIAwiACICAgIDvhQCITbgwDEiAgOCACIAIgAgICPgNCHgLCAgICAgICIiAgJAAAAB3jIAHDEiAgAiACICAN48wwEiAgIDoCIBQ0DAMCAgIgAiAgICACAgICQAAAAAAcIqAgIAAAAAAAAAAAAAAd4yHgItQCAjYSIuFgIu1SAiACPCDgICAgICAgPCDgJ8FiICADwgIiACIgICAAAgICAAAAAAAAAAAAAAAAAB38gMIDgjDMAwD4DAICAiIAAiveIAIgICAgIAICAgIP4CACAgICQAAAAAAAAAA8K8HCAiACICAgIAICAgJ/3qAgACIAAgICD8ICAgICP8AABQAgA7DgICACIAICCeOAAgICAiIt4CAgIC3gICAgIAItwgIiHAH6IAEiNCABIgAiAD4g4CA8IgAiAAHyLMIaIu0gICAgLeAgAiACBcNCFiLgIC3MICA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CAgIgI+EgICAgICAgICAgIAAAAAAAAAAAAAALwAICAgAAC8ACAgIAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBPgICPhIuAgAiAFwCIAAAADQCA+AMICIjw84MACD4ICAgICAiAgICAgJAAAAAAAAAAAADwAoCAgAAAAAAA8E/wgLMICLZIgAyIgICAgAAICAh414CAtoCAgIaATIuEgICMgIaAgIyAgIcLhIAMSMADiICAgIAAv3A7i4WAgD0ACAgICAgICAgICAkAAAAAAAAAAAAAAAAAAAAAAPACgICAAAD/BAgICAgICAgICC8ACAgIAC/fhoAMCLQICAgICAgICICAgAB3Agj4aoDIhIDQgwCITQgICIgAiICAgAAICAgAAAAAAPACgICAAAAAAAAA/+QDCAiACICAgIAICAgJAAAAAADwAoDwA78ICHgAABMAPQxIwDDIAzyAgD2AgICAgAAICAgICAkALwAICAgAAAAAAAAAAAAAAAAAAAAALwAICAgA8AKAgIAALwAICAgAAAAALwAIP4CACAgI+QLfeAgIgICAgIAICAgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BPgDjISAgICAgICAgICAgIAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAC8A+PMKCAh40TAMCAgIeAAICPiDANgDyEiAgIAAiPCDPoCAgACIgICAAAgICAAAAAD/AAAQAIAIn4WLCIB4AA1ICDyACD2ADMOEgDyAgIAAiICAgAAICAgAAAAAAAAALwAICAgA/3rAAwgICAj4WQgMSLiESwgICAiACAgI+AMICPgDCAgICIDwj3i4QAgIDYMMCMSAgIAGCNgDCAgIP4AICAgICICAgICAkC8ACAgIAAAALwAIP4CACAgICQAA8K8HCA0IhIuFS4uESwgIgAiACD8ICAgICAiIgICQLwAICAgAAAAAAAAAAAAAAP8ECAgICAgICPgDCICAgPCvBwwIiIaAgICAgIAACD+PhICAgACIP+CDgACIAIifhQANg4CAgPgDCOiAgICGgNADCAgICAAADgCPWAgICIAIgICAgAgICPkCgICAAAAAAAAAAADwT4Dwg4DgAwgICAgIr2AIDAMNCAMNCASIgICAgAAIz2CAgICAgICAgD+AgICACAgICQAA8AKAgIDwAj+fgAiAeNGAgICAgHCBgD4MA4y0SICAgICACAgICICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv8G2LgICACAeADcMwAAiI8EgMCAiAtghYuEAICI0EiACIAIiAgIAACAgIAAAAAAAAAAD/BAj4wwMICPgwCA0IhAAICAgIiICAgD+AgAAIP4CACD+AgICAgJAAAAAALwAICAgAAC8A+E+AgICAgPAAABMAgPCDwAMIiACIgPB7gAiAgICAgAgICAgICAAAAC8A/7SEgICAAIiAgIAACAgIAAD/BPizSIuFwICESwgICAgIiICAgPCD8AOIAAgICIiAgJAAAAAAAAAAAADwAoDwT4AAj4SAgIwEDAjDMAxIi1AIDIMMA4AIgAgICAiAgIAAAAAAAPACgICAAAAAAAAA/+QwgICAj7SAgICAgAgICDfwiIC2A8hIwDDIMNADCD2AgICAAAgIPwgICL8HiAAICAgIiPCDjwSIAIgAiICAgN+GgICA8IOAgOADCAgI+IMAiACIgIDwA/gDiACIgICAAAgICAAAAADwAoCAgAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAvAAgICPACgPBPgACIAAgICIiAgPBPgICAgIA/gICAgIDwAwgICAgICfACgICALwAICAgAAAAAAAAv8I2HC4SLgAB4gAwDDcOAgIAFDINMuDCATbgDgICAgICAP4AICAgIgICA8AKAgIAAAADwAoCA8E/gAwiNhEu4hICAgIDwg4CAAIiArwaIAIgAiPCDgIDwWQgICAgICAgICICAgP8ECAgICPh7gICAgAAIP+gDCD2AgIAIgICAgAj4AwgICAgIAAAv8IMACM8GiNADCAgIgAAADgCAgICA74XAswiFgICAgIA/gICACAgICPADCAiIgICQAAAAAAAAAADwAoCAgC8ACAgIAC8AP4CAgAgICAkAAC8ACAgIAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAL/CDAAj4AwgICIiAgJAAAAAALwAICAgALwAICAjwAoCAgAAAAAAAAAAvAPgDCAiAgIDwrwh40YAEDIOAAIg/gICACICAgID4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CD2AgD2AgE0IjISAgIwECD2AgICAj0C4CMWAgACIB4jAAwg+iwQMgwAAFgCACIAIgIDwg4CAgIAA/0BLDMOAQAjIs4SATAgIPTsAiPAItAMICAiI8IOAD0gICNgDgIA+gIDwg4A8gICNBAgIgAjwg4CAAPjTSDuA0Eg7i4CACIAXAIjwAwgICAj44wPISICAgIAIgIA/PwgICIAIgIA/CD88gIA9gNBIgAg9gICAAPiIhYCAgACIgPCDgI+EAAgICAg/6DCACIAIgD/oAzyAgIDwg4CAgICA8IMAiICAP4Dwg4CAAAiveIAIgICAgID4aoCAjQQIPQjIgIBgCIwAiGCLBAjYAzyAgICAP8iESwgICOgDCAg+CICAPzuAgD6AgIA+gIDwg4DA/xUABAgI6APIA4Dwg4CAPcADPQiACD7ASDvAAzwIyEjAAwgICAgIiD/wg4CAgICAgD8ICAjwgw+DDMOABAgI6AMICPgDCD07AIjwAzzIMMADCOgDPAg8wAMI6AMICAj4Az07gICAgPjTAzzAg0u4hMADPQiACD6AgI0EyAMIgD6AgD2AgICAgPDjAwiNhIBLPICAgAiACAgICPADCD8IPwgICAgIgL94S4AIgOgIgICAcMAIgICAcIu1CLQDgIAIgIDw84PASDsACAj4wzA8gNADyAM8gICACICfhcADCAg/CAjYA4wECIgAiAAICAiIP/CDAIiAgD+AgIA/CAgIAAALAIA/8IM8wAMICD870INLuAiFgICAgAAI+PODgNADPDvQAzzAg4CAgICAn4WAgIA/gICAgIDwgz6AgICOBDy4hIAADsODSwgICAiAj1g70DA8O4CAgICAP4CAgIAICD8ICAgIgIA/gD+AgICAgIA/gAAICAgAAAD/BAj4A40AxICEgICAgICAPwgIPzzAwwPIA8gwgIAAiICAP4CAgPB7CAgI8AizCAiIABc9gDyAgICA8IOA8AiEgICAAIiAgIAA+I9gCIyEgMDDA4AIgAiAgICA74CAcEsIjISAANgDCAgI+MNIgDyADAPYhICAgAiACAj4Az8I2LOEgNADCMD/EwCAgICACAgIZ4CAgICAgICAgA==\",\n    \"userId\": \"dwood.test@alliedtelecom.net\"\n}"}],"_postman_id":"32953ae0-e05e-4a3f-9880-5447fe6a630d"},{"name":"User Voice Messaging Messages Unread","id":"5aa121fe-762c-4888-bfdf-c0ee83302e11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"messages\": [\n        {\n            \"id\": \"726d5cba-1046-492e-b7ab-4abfa12fe2e5\"\n        },\n        {\n            \"id\": \"f39e47f0-d75c-4095-9bd9-c33430665eb0\"\n        },\n        {\n            \"id\": \"1c778318-b656-4d2f-a29b-ed50e4ebbcaf\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/voice-messaging/messages/unread?userId=dwood.test@alliedtelecom.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","messages","unread"],"host":["{{url}}"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"}],"variable":[]}},"response":[{"id":"6091e9e3-86e7-4b94-9ad5-ff5b826ebb38","name":"User Voice Messaging Message Unread","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/message/unread?userId=dwood.test@alliedtelecom.net&id=24227e30-4afb-4fd4-ad51-a26b542efc94","host":["{{url}}"],"path":["api","v2","users","voice-messaging","message","unread"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"},{"key":"id","value":"24227e30-4afb-4fd4-ad51-a26b542efc94"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"duration\": \"8400\",\n    \"time\": \"1598022283436\",\n    \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/24227e30-4afb-4fd4-ad51-a26b542efc94/24227e30-4afb-4fd4-ad51-a26b542efc94\",\n    \"dateTime\": \"2020-08-21 15:04:43\",\n    \"read\": false,\n    \"seconds\": 8.4,\n    \"id\": \"24227e30-4afb-4fd4-ad51-a26b542efc94\",\n    \"callingPartyInfoName\": \"WOOD AWESOME\",\n    \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\",\n    \"fileName\": \"tmp_dwood.testMessage24227e30-4afb-4fd4-ad51-a26b542efc94.wav\",\n    \"mediaType\": \"WAV\",\n    \"mediaContent\": \"UklGRkmFAABXQVZFZm10IBQAAAARAAEAQB8AANcPAAAAAQQAAgD5AWZhY3QEAAAAhgYBAGRhdGEVhQAAAAAAAAAAcIqAcIuAgICAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BAgICAgICAgICAAAAAAAAAAA8K8HCAiACICAgIAICAgJAAAAAAAAAPBPgPCIhYCAgICAgICAgAgICAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAC8AMICIiAgJAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAADwAnCLgICAgICQAAAAAAAAAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAD/ioCAgICAgIAAAAAAAAAAAACnCAgICAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAPACgICAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAAAAAPACVw4ICAgICAgICIiAgJAAAAAAAAAAAAB3jICAgICAAAgICHCKgICAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACcIuAgICAgJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL/CDAAgICAj4AwgICAgAAAAAAAD/BAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAPCvBwgIgAiAgICACAgICQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BAgICAgI+IMACAgICAgJAAAAAAAAAAAAAAD/BAgICAgIPwgICAiAgIAAAAAAAAAAAAAA/wQICAgICAgIP4CACAgICQAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAApwgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAKcICAgIAAAA8E+AgICAgICAgIAAAAAAAAAAAAAAAAAAAABwioCAgAAA8AKAgIAAAAAAAAAAAAAAAAAAAAB38ggICIgACAgIiICAkC8ACAgIAAAApwgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKcICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgIAAAAIAgAAAAACnCAgICAAAAAAAAPACgICAAAAAAC8ACAg/gAgICAkAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAAADwAoA/gIAACAgIAAAAAAAApwgIeIuAgHCLgICAgJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ACAgIAAAAAAAAAAAAAAAAAAAAAAAAAPBPgICAgICAgICAAABwioCAgAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAA8AKAgIAAAC8ACAgIAAAAAAAAAAAAAAAAAAAAAHCKgLcICAgICAgAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAAAAAAAKcICAgILwAICAgAAAAAAACnCAgICABwioCAgAAAAAAAAPACgICAAAAAAAAAAADwAoCAgAAAAAAAAAAAAAAAAAAAAKcICAgIAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAPACgICAAAAAAHCKt4CAgICAgJAAAAAAAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAACnCAj4AwiAgIAAAAAAAAAAAAAA8E+AgICAgICA8AMIiICAkAAAAAAApwgICAgAAAAAAAAAAACnCAgICAAAAACnCAgICADwT4CAgICA8IOAgIAACAgIAC8ACAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8E+2gAgICAgIgICAgICQAAAAAAAAAAAAcIqAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAADwAoCAgAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAApwgICAgA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAPACgICAAAAAAAAAAAAAAAAA8AKAgIAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ACAgIAAAA8AKAgD+AAAgICAAAAAAAAPBPgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAcMcICAgICAiAgIAAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAAAAAAAHCKgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMD/AAB3AggICAiAgIAAAAAAAAAAAAAAAACnCAgICAAAAAAAAAAAAAAAAC8ACAgIAHCK8AMICIiAgJAAAAAAAABwioCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwioA/gIAACAi3CAgICAkAAAAAAAAAAAAAAAAALwAICAgAAAAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcIqAgIAAAKcICAgIAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAD/BAgInwiAeAAICA+DDEgIDAOIAIgACAgIiICAkPAC3wgIB4CAAIjwg4CAgIA/+DAMAw2DgICAgAgICAiAgIAAAAAA/4qAcOIDCAgICAiIgIA/CIDwg49YCIAIgAiAgICACAgICQAAAAAAAAAAAAAAAAAAAADwAj8IgICAgIDwAj8ICAgICAgI8E/wg8AwCA0IhICMgIAAiICAgFcI+IBAPDsACAgICIivBggICI+EgICAgIAICAj484iFwICAhcADyAgEjICAYLgIUAiMQDuAgAD4g4CAgIAA+AOIgICAAAgIP4AICAgvAAAHAIDvaIA8i4CGgMAICAgGjIBQCAgICPhIiwQICAiIAAgICIjwT4CAgI+EgItQCAgICAgIgICAgICQAAAAAAAAAAAAAC8ACAgIAAAAAAAAAAAAAAAAAADwAt+GgICAgD+AgIAIgIA/CAgIgICAgICQAAAA8K8IeAGAgAifhYtoCAiMBAgNg9CAtIAIUAgICA8ICAgFPYAIPYCAgACIgICA8IMACAgICAgJAAAAAAAAAAAA/+SABAjYA8gw0AMIDcOAgAhggAgID8OAtEgIuAgIiAeAgICAjwiIAIiAgIAACAgIAAAAAAAAAAAAAHAngJ+1CFjAg4CAgPAIQMgDgMD/FACFgIDgMAiACIAICAgIgPCPeAgIyFgIDIPASLiAtQiEAAiOgIAAeIsAWICAgICAgIDwAwiIgICAgIAAAAAvAAgICAAAAAAA8ALwT4CAAIg/gICACPCD4AOMhICAgICAgPCKB4iLgIAHiACI8EgICICAgICACAgI+I8FCAjoSICAgICPAISAgPCDSwjICICAcIuAUICMtDCAgAA/yAi0SIBMuDCADQOACIAICAgIgICAAAAAAAAAAP+KcIuGwIBAi4CAhoDQMIDgMAgNg4CAgICAgIDPBggIiACIgICAAAgICP8ECAj4iYYADcODgACIjgQICOgw0ICAQICADgPA/xUAQICAgAiAgIDwXUsICAjoCAgICAgICAiIgICQAAAAAAAAAABweoWAgIDwaou0AzyAgPCAA4CAgICACAgICAgIAAAAAAD/ioCAgHDlgwsIhYDQSIsECAjoAwjYMICAAIiAgIAA+AMICIDwA78IB4CNQMBICwMIDjgA2EiAgIDwg4CAjUDASAgIjASIAA4ICAgICAiIcAMICAi/h4CAAIgACAgIiICAkAAAAAAAAAAAAAAAAPACgICAAAAAAC8ACAj4T4CA8FkIyAOAgICAgAgICAgICAAAAAAALwAICAgvAAj4n4CAF+CzCAgICIiAgIAACAgIAAAAAAAAAAAAwP8AAAAAcIqAgLcICGeAgD+ACIAIgIA/CAgI8At4wAMIgAiACAgICICAgAAAAAAvAAgICAAA8ALwT4DQgICFgIDgMIAIgAiAgICA71DACAgIeAiAyAgIeIA7gIAAj4SAgI0EyDCAgICACAgICICA8AOIgICQAAAAAAAAAPBPgICAgK8IeMCABIyEgICAgICAAPh7CAwDDQhIi4CGCwgIgAgHgOCAQAgIjUAI0AiEgIDgMMiEgICAgD8IgICAgICvhoAAiACIgICAAD+AgIAICAgJ8K8HCNgwAIgAiICAvwiAgHCLgBeAgAiAgL8HDDjAMDyADAgECAgIPwg9gICADwAAGADAMAwIAwiACICAgIDvhQCITbgwDEiAgOCACIAIgAgICPgNCHgLCAgICAgICIiAgJAAAAB3jIAHDEiAgAiACICAN48wwEiAgIDoCIBQ0DAMCAgIgAiAgICACAgICQAAAAAAcIqAgIAAAAAAAAAAAAAAd4yHgItQCAjYSIuFgIu1SAiACPCDgICAgICAgPCDgJ8FiICADwgIiACIgICAAAgICAAAAAAAAAAAAAAAAAB38gMIDgjDMAwD4DAICAiIAAiveIAIgICAgIAICAgIP4CACAgICQAAAAAAAAAA8K8HCAiACICAgIAICAgJ/3qAgACIAAgICD8ICAgICP8AABQAgA7DgICACIAICCeOAAgICAiIt4CAgIC3gICAgIAItwgIiHAH6IAEiNCABIgAiAD4g4CA8IgAiAAHyLMIaIu0gICAgLeAgAiACBcNCFiLgIC3MICA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CAgIgI+EgICAgICAgICAgIAAAAAAAAAAAAAALwAICAgAAC8ACAgIAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPBPgICPhIuAgAiAFwCIAAAADQCA+AMICIjw84MACD4ICAgICAiAgICAgJAAAAAAAAAAAADwAoCAgAAAAAAA8E/wgLMICLZIgAyIgICAgAAICAh414CAtoCAgIaATIuEgICMgIaAgIyAgIcLhIAMSMADiICAgIAAv3A7i4WAgD0ACAgICAgICAgICAkAAAAAAAAAAAAAAAAAAAAAAPACgICAAAD/BAgICAgICAgICC8ACAgIAC/fhoAMCLQICAgICAgICICAgAB3Agj4aoDIhIDQgwCITQgICIgAiICAgAAICAgAAAAAAPACgICAAAAAAAAA/+QDCAiACICAgIAICAgJAAAAAADwAoDwA78ICHgAABMAPQxIwDDIAzyAgD2AgICAgAAICAgICAkALwAICAgAAAAAAAAAAAAAAAAAAAAALwAICAgA8AKAgIAALwAICAgAAAAALwAIP4CACAgI+QLfeAgIgICAgIAICAgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/BPgDjISAgICAgICAgICAgIAAAAAAAAAAAAAAAAAA8AKAgIAAAAAAAAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAPACgICAAAAAAAAAAAAAAC8A+PMKCAh40TAMCAgIeAAICPiDANgDyEiAgIAAiPCDPoCAgACIgICAAAgICAAAAAD/AAAQAIAIn4WLCIB4AA1ICDyACD2ADMOEgDyAgIAAiICAgAAICAgAAAAAAAAALwAICAgA/3rAAwgICAj4WQgMSLiESwgICAiACAgI+AMICPgDCAgICIDwj3i4QAgIDYMMCMSAgIAGCNgDCAgIP4AICAgICICAgICAkC8ACAgIAAAALwAIP4CACAgICQAA8K8HCA0IhIuFS4uESwgIgAiACD8ICAgICAiIgICQLwAICAgAAAAAAAAAAAAAAP8ECAgICAgICPgDCICAgPCvBwwIiIaAgICAgIAACD+PhICAgACIP+CDgACIAIifhQANg4CAgPgDCOiAgICGgNADCAgICAAADgCPWAgICIAIgICAgAgICPkCgICAAAAAAAAAAADwT4Dwg4DgAwgICAgIr2AIDAMNCAMNCASIgICAgAAIz2CAgICAgICAgD+AgICACAgICQAA8AKAgIDwAj+fgAiAeNGAgICAgHCBgD4MA4y0SICAgICACAgICICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv8G2LgICACAeADcMwAAiI8EgMCAiAtghYuEAICI0EiACIAIiAgIAACAgIAAAAAAAAAAD/BAj4wwMICPgwCA0IhAAICAgIiICAgD+AgAAIP4CACD+AgICAgJAAAAAALwAICAgAAC8A+E+AgICAgPAAABMAgPCDwAMIiACIgPB7gAiAgICAgAgICAgICAAAAC8A/7SEgICAAIiAgIAACAgIAAD/BPizSIuFwICESwgICAgIiICAgPCD8AOIAAgICIiAgJAAAAAAAAAAAADwAoDwT4AAj4SAgIwEDAjDMAxIi1AIDIMMA4AIgAgICAiAgIAAAAAAAPACgICAAAAAAAAA/+QwgICAj7SAgICAgAgICDfwiIC2A8hIwDDIMNADCD2AgICAAAgIPwgICL8HiAAICAgIiPCDjwSIAIgAiICAgN+GgICA8IOAgOADCAgI+IMAiACIgIDwA/gDiACIgICAAAgICAAAAADwAoCAgAAAAAAAAAAAAAAvAAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAoCAgAAAAAAvAAgICPACgPBPgACIAAgICIiAgPBPgICAgIA/gICAgIDwAwgICAgICfACgICALwAICAgAAAAAAAAv8I2HC4SLgAB4gAwDDcOAgIAFDINMuDCATbgDgICAgICAP4AICAgIgICA8AKAgIAAAADwAoCA8E/gAwiNhEu4hICAgIDwg4CAAIiArwaIAIgAiPCDgIDwWQgICAgICAgICICAgP8ECAgICPh7gICAgAAIP+gDCD2AgIAIgICAgAj4AwgICAgIAAAv8IMACM8GiNADCAgIgAAADgCAgICA74XAswiFgICAgIA/gICACAgICPADCAiIgICQAAAAAAAAAADwAoCAgC8ACAgIAC8AP4CAgAgICAkAAC8ACAgIAAAAAAAAAAAAAP8ECAgICAgICAgIAAAAAAAAAAAAAAAAL/CDAAj4AwgICIiAgJAAAAAALwAICAgALwAICAjwAoCAgAAAAAAAAAAvAPgDCAiAgIDwrwh40YAEDIOAAIg/gICACICAgID4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CD2AgD2AgE0IjISAgIwECD2AgICAj0C4CMWAgACIB4jAAwg+iwQMgwAAFgCACIAIgIDwg4CAgIAA/0BLDMOAQAjIs4SATAgIPTsAiPAItAMICAiI8IOAD0gICNgDgIA+gIDwg4A8gICNBAgIgAjwg4CAAPjTSDuA0Eg7i4CACIAXAIjwAwgICAj44wPISICAgIAIgIA/PwgICIAIgIA/CD88gIA9gNBIgAg9gICAAPiIhYCAgACIgPCDgI+EAAgICAg/6DCACIAIgD/oAzyAgIDwg4CAgICA8IMAiICAP4Dwg4CAAAiveIAIgICAgID4aoCAjQQIPQjIgIBgCIwAiGCLBAjYAzyAgICAP8iESwgICOgDCAg+CICAPzuAgD6AgIA+gIDwg4DA/xUABAgI6APIA4Dwg4CAPcADPQiACD7ASDvAAzwIyEjAAwgICAgIiD/wg4CAgICAgD8ICAjwgw+DDMOABAgI6AMICPgDCD07AIjwAzzIMMADCOgDPAg8wAMI6AMICAj4Az07gICAgPjTAzzAg0u4hMADPQiACD6AgI0EyAMIgD6AgD2AgICAgPDjAwiNhIBLPICAgAiACAgICPADCD8IPwgICAgIgL94S4AIgOgIgICAcMAIgICAcIu1CLQDgIAIgIDw84PASDsACAj4wzA8gNADyAM8gICACICfhcADCAg/CAjYA4wECIgAiAAICAiIP/CDAIiAgD+AgIA/CAgIAAALAIA/8IM8wAMICD870INLuAiFgICAgAAI+PODgNADPDvQAzzAg4CAgICAn4WAgIA/gICAgIDwgz6AgICOBDy4hIAADsODSwgICAiAj1g70DA8O4CAgICAP4CAgIAICD8ICAgIgIA/gD+AgICAgIA/gAAICAgAAAD/BAj4A40AxICEgICAgICAPwgIPzzAwwPIA8gwgIAAiICAP4CAgPB7CAgI8AizCAiIABc9gDyAgICA8IOA8AiEgICAAIiAgIAA+I9gCIyEgMDDA4AIgAiAgICA74CAcEsIjISAANgDCAgI+MNIgDyADAPYhICAgAiACAj4Az8I2LOEgNADCMD/EwCAgICACAgIZ4CAgICAgICAgA==\",\n    \"userId\": \"dwood.test@alliedtelecom.net\"\n}"}],"_postman_id":"5aa121fe-762c-4888-bfdf-c0ee83302e11"},{"name":"User Voice Messaging Messages Delete","id":"b51e1d24-fb25-4d37-9637-bdd553cc954d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"messages\": [\n        {\n            \"id\": \"394c62bd-bd9c-4720-8d91-3b3a4ab6c798\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/users/voice-messaging/messages?userId=dwood.test@alliedtelecom.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","messages"],"host":["{{url}}"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"}],"variable":[]}},"response":[{"id":"5cc1fd5f-3bee-49c9-8be4-171d6fd8f845","name":"User Voice Messaging Message Delete","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/message?userId=dwood.test@alliedtelecom.net&id=24227e30-4afb-4fd4-ad51-a26b542efc94","host":["{{url}}"],"path":["api","v2","users","voice-messaging","message"],"query":[{"key":"userId","value":"dwood.test@alliedtelecom.net"},{"key":"id","value":"24227e30-4afb-4fd4-ad51-a26b542efc94"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": [\n        {\n            \"duration\": \"6540\",\n            \"time\": \"1598020864225\",\n            \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/726d5cba-1046-492e-b7ab-4abfa12fe2e5\",\n            \"dateTime\": \"2020-08-21 14:41:04\",\n            \"read\": false,\n            \"seconds\": 6.54,\n            \"id\": \"726d5cba-1046-492e-b7ab-4abfa12fe2e5\",\n            \"callingPartyInfoName\": \"WOOD AWESOME\",\n            \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\"\n        },\n        {\n            \"duration\": \"6860\",\n            \"time\": \"1599069908638\",\n            \"messageId\": \"/v2.0/user/dwood.test@alliedtelecom.net/VoiceMessagingMessages/1c778318-b656-4d2f-a29b-ed50e4ebbcaf\",\n            \"dateTime\": \"2020-09-02 18:05:08\",\n            \"read\": false,\n            \"seconds\": 6.86,\n            \"id\": \"1c778318-b656-4d2f-a29b-ed50e4ebbcaf\",\n            \"callingPartyInfoName\": \"WOOD AWESOME\",\n            \"callingPartyInfoAddress\": \"sip:+15555555555@alliedtelecom.net\"\n        }\n    ],\n    \"userId\": \"dwood.test@alliedtelecom.net\"\n}"}],"_postman_id":"b51e1d24-fb25-4d37-9637-bdd553cc954d"},{"name":"User Voice Messaging Voice Portal","event":[{"listen":"test","script":{"id":"03f6a2a4-00cc-4512-a03c-5e4a09dcdee5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"UserId exists in response\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.userId).to.eql(pm.request.url.query.get('userId'));","});",""],"type":"text/javascript"}}],"id":"f6948d7e-0117-4fb2-b22d-988a6356a24c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/voice-portal?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","voice-portal"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"71017@lab.alliedtelecom.net"},{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"b28755b2-e2f7-4d24-9458-7b69d6ad2b77","name":"User Voice Messaging Voice Portal","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/voice-portal?userId=9871515000@odinapi.net","host":["{{url}}"],"path":["api","v2","users","voice-messaging","voice-portal"],"query":[{"key":"userId","value":"71017@lab.alliedtelecom.net","disabled":true},{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"usePersonalizedName\": true,\n    \"voicePortalAutoLogin\": true,\n    \"personalizedNameAudioFile\": {\n        \"name\": \"Announcement\",\n        \"mediaFileType\": \"WAV\",\n        \"level\": \"User\"\n    },\n    \"userId\": \"9871515000@odinapi.net\"\n}"}],"_postman_id":"f6948d7e-0117-4fb2-b22d-988a6356a24c"},{"name":"User Voice Messaging Voice Portal","id":"ba2dfba3-5f7b-4a83-be80-4ef4c000d212","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"usePersonalizedName\": false,\n    \"voicePortalAutoLogin\": true,\n    \"personalizedNameAudioFile\": {\n        \"name\": \"Announcement\",\n        \"mediaFileType\": \"WAV\",\n        \"level\": \"User\"\n    },\n    \"userId\": \"9871515000@odinapi.net\"\n}"},"url":"{{url}}/api/v2/users/voice-messaging/voice-portal","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","voice-portal"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"85c0d546-8156-4d49-8056-420200b31822","name":"User Voice Messaging Voice Portal","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"usePersonalizedName\": true,\n    \"voicePortalAutoLogin\": true,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"9871515000@odinapi.net\",\n    \"audioFile\": {\n        \"name\": \"aa1.wav\",\n        \"mediaType\": \"WAV\",\n        \"level\": \"User\"\n    }\n}"},"url":"{{url}}/api/v2/users/voice-messaging/voice-portal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 01 Dec 2021 23:25:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"226"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"usePersonalizedName\": true,\n    \"voicePortalAutoLogin\": true,\n    \"personalizedNameAudioFile\": {\n        \"name\": \"aa1.wav\",\n        \"mediaFileType\": \"WAV\",\n        \"level\": \"User\"\n    },\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"9871515000@odinapi.net\"\n}"}],"_postman_id":"ba2dfba3-5f7b-4a83-be80-4ef4c000d212"},{"name":"User Voice Messaging Greetings","id":"03802c66-22a9-403c-b011-285c4ac0f69f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/greetings?userId=9709580001@microv-works.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","greetings"],"host":["{{url}}"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}],"variable":[]}},"response":[{"id":"a3c708b1-1b3e-4931-83c0-afcfc64644a9","name":"User Voice Messaging Greetings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/greetings?userId=9709580001@microv-works.com","host":["{{url}}"],"path":["api","v2","users","voice-messaging","greetings"],"query":[{"key":"userId","value":"9709580001@microv-works.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"219","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 19:29:24 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"busyAnnouncementSelection\":\"Default\",\"noAnswerAnnouncementSelection\":\"Default\",\"noAnswerNumberOfRings\":4,\"disableMessageDeposit\":false,\"disableMessageDepositAction\":\"Disconnect\",\"userId\":\"9709580001@microv-works.com\"}"}],"_postman_id":"03802c66-22a9-403c-b011-285c4ac0f69f"},{"name":"User Voice Messaging Greetings","id":"acb42958-81a6-41a1-996b-871d623a0179","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"busyAnnouncementSelection\": \"Default\",\n    \"noAnswerAnnouncementSelection\": \"Default\",\n    \"noAnswerAlternateGreeting01\": {\n        \"name\": \"\",\n        \"audio\": null\n    },\n    \"noAnswerAlternateGreeting02\": {\n        \"name\": \"\",\n        \"audio\": null\n    },\n    \"noAnswerAlternateGreeting03\": {\n        \"name\": \"\",\n        \"audio\": null\n    },\n    \"extendedAwayEnabled\": false,\n    \"extendedAwayDisableMessageDeposit\": true,\n    \"noAnswerNumberOfRings\": 3,\n    \"disableMessageDeposit\": false,\n    \"disableMessageDepositAction\": \"Disconnect\",\n    \"userId\": \"user.hwilkins@voicecci.net\",\n    \"busyPersonalAudio\": null,\n    \"noAnswerPersonalAudio\": null,\n    \"extendedAwayAudio\": null\n}"},"url":"{{url}}/api/v2/users/voice-messaging/greetings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","greetings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d5cb4caa-d5e0-4476-a5ff-7c8d6361bc33","name":"User Voice Messaging Greetings","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"busyAnnouncementSelection\":\"Default\",\n\t\"noAnswerAnnouncementSelection\":\"Default\",\n\t\"noAnswerNumberOfRings\":4,\n\t\"disableMessageDeposit\":false,\n\t\"disableMessageDepositAction\":\"Disconnect\",\n\t\"userId\":\"9709580001@microv-works.com\"\n}"},"url":"{{url}}/api/v2/users/voice-messaging/greetings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 19:30:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"acb42958-81a6-41a1-996b-871d623a0179"},{"name":"User Voice Messaging Advanced","id":"3e625d99-abe1-44d8-818d-44f11db2d0a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/advanced?userId=testuser1@cl1.lab.hosted-uc.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","advanced"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"4001.5001@lab.tekvoice.net"},{"key":"userId","value":"testuser1@cl1.lab.hosted-uc.com"}],"variable":[]}},"response":[{"id":"21d1d79d-0ef8-4066-b257-ad58094653c7","name":"User Voice Messaging Advanced","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/advanced?userId=4001.5001@lab.tekvoice.net","host":["{{url}}"],"path":["api","v2","users","voice-messaging","advanced"],"query":[{"key":"userId","value":"4001.5001@lab.tekvoice.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"mailServerSelection\": \"Group Mail Server\",\n    \"groupMailServerEmailAddress\": \"vm4001.5001@parkbenchsolutions.com\",\n    \"groupMailServerUserId\": \"vm4001.5001\",\n    \"useGroupDefaultMailServerFullMailboxLimit\": true,\n    \"personalMailServerProtocol\": \"POP3\",\n    \"personalMailServerRealDeleteForImap\": false,\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"userId\": \"4001.5001@lab.tekvoice.net\"\n}"}],"_postman_id":"3e625d99-abe1-44d8-818d-44f11db2d0a7"},{"name":"User Voice Messaging Advanced","id":"752cfaf1-f302-403e-b88b-0cefe6cd0513","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"mailServerSelection\":\"Personal Mail Server\",\n\t\"useGroupDefaultMailServerFullMailboxLimit\":true,\n\t\"personalMailServerProtocol\":\"POP3\",\n\t\"personalMailServerRealDeleteForImap\":false,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"personalMailServerNetAddress\":\"myhostname\",\n\t\"personalMailServerEmailAddress\":\"me@mydomain.com\",\n\t\"personalMailServerUserId\":\"me@mydomain.com\",\n\t\"personalMailServerPassword\":\"sx8-Lfnr\"\n}"},"url":"{{url}}/api/v2/users/voice-messaging/advanced","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","advanced"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"98ba8d5b-2e5a-4b10-9e75-12010c3c1983","name":"User Voice Messaging Advanced","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"mailServerSelection\":\"Personal Mail Server\",\n\t\"useGroupDefaultMailServerFullMailboxLimit\":true,\n\t\"personalMailServerProtocol\":\"POP3\",\n\t\"personalMailServerRealDeleteForImap\":false,\n\t\"userId\":\"9709580001@microv-works.com\",\n\t\"personalMailServerNetAddress\":\"myhostname\",\n\t\"personalMailServerEmailAddress\":\"me@mydomain.com\",\n\t\"personalMailServerUserId\":\"me@mydomain.com\",\n\t\"personalMailServerPassword\":\"sx8-Lfnr\"\n}"},"url":"{{url}}/api/v2/users/voice-messaging/advanced"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 19:33:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"752cfaf1-f302-403e-b88b-0cefe6cd0513"},{"name":"User Voice Messaging Bulk","id":"d5ec6f09-61f3-4fd8-8514-7a5b2623fcec","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","bulk"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"c13ea710-bccb-45c2-8302-bc67b220d853","name":"User Voice Messaging Bulk","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-messaging/bulk?groupId=grp.odin&serviceProviderId=ent.odin","host":["{{url}}"],"path":["api","v2","users","voice-messaging","bulk"],"query":[{"key":"groupId","value":"grp.odin"},{"key":"serviceProviderId","value":"ent.odin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"4002@parkbenchsolutions.com\",\n            \"lastName\": 4002,\n            \"firstName\": 4002,\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": 4002,\n            \"hiraganaFirstName\": 4002,\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {\n            \"isActive\": true,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"4002@parkbenchsolutions.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"5135564000@parkbenchsolutions.com\",\n            \"lastName\": \"Demo user\",\n            \"firstName\": \"Marc\",\n            \"department\": null,\n            \"phoneNumber\": \"+1-5135564000\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"Demo user\",\n            \"hiraganaFirstName\": \"Marc\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"64000\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {\n            \"isActive\": true,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"5135564000@parkbenchsolutions.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"6106424235X4020@parkbenchsolutions.com\",\n            \"lastName\": 4003,\n            \"firstName\": 4003,\n            \"department\": null,\n            \"phoneNumber\": \"+1-5134004003\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"hiraganaLastName\": 4003,\n            \"hiraganaFirstName\": 4003,\n            \"inTrunkGroup\": false,\n            \"extension\": \"04003\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {\n            \"isActive\": true,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"6106424235X4020@parkbenchsolutions.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"user4@parkbenchsolutions.com\",\n            \"lastName\": \"Sonkar\",\n            \"firstName\": \"Animesh\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"Sonkar\",\n            \"hiraganaFirstName\": \"Animesh\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"sandesh@parkbenchsolutions.com\",\n            \"lastName\": \"dixit\",\n            \"firstName\": \"sandesh\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"dixit\",\n            \"hiraganaFirstName\": \"sandesh\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"odin-device-test-1@parkbenchsolutions.com\",\n            \"lastName\": \"odin-device-test-1\",\n            \"firstName\": \"odin-device-test-1\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"odin-device-test-1\",\n            \"hiraganaFirstName\": \"odin-device-test-1\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"4001@parkbenchsolutions.com\",\n            \"lastName\": 4001,\n            \"firstName\": 4001,\n            \"department\": null,\n            \"phoneNumber\": \"+1-8595551401\",\n            \"phoneNumberActivated\": true,\n            \"emailAddress\": \"developer@parkbenchsolutions.com\",\n            \"hiraganaLastName\": 4001,\n            \"hiraganaFirstName\": 4001,\n            \"inTrunkGroup\": false,\n            \"extension\": \"51401\",\n            \"countryCode\": 1,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {\n            \"isActive\": true,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"4001@parkbenchsolutions.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": true,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"ddoris@parkbenchsolutions.com\",\n            \"lastName\": \"doris\",\n            \"firstName\": \"dusty\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"doris\",\n            \"hiraganaFirstName\": \"dusty\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {\n            \"isActive\": false,\n            \"processing\": \"Unified Voice and Email Messaging\",\n            \"usePhoneMessageWaitingIndicator\": true,\n            \"sendVoiceMessageNotifyEmail\": false,\n            \"sendCarbonCopyVoiceMessage\": false,\n            \"transferOnZeroToPhoneNumber\": false,\n            \"alwaysRedirectToVoiceMail\": false,\n            \"busyRedirectToVoiceMail\": true,\n            \"noAnswerRedirectToVoiceMail\": true,\n            \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"ddoris@parkbenchsolutions.com\"\n        }\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"1.grp.odin@parkbenchsolutions.com\",\n            \"lastName\": \"1.grp.odin\",\n            \"firstName\": \"1.grp.odin\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"1.grp.odin\",\n            \"hiraganaFirstName\": \"1.grp.odin\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"2.grp.odin@parkbenchsolutions.com\",\n            \"lastName\": \"2.grp.odin\",\n            \"firstName\": \"2.grp.odin\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"2.grp.odin\",\n            \"hiraganaFirstName\": \"2.grp.odin\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"grp.odin4000@parkbenchsolutions.com\",\n            \"lastName\": \"grp.odin4000\",\n            \"firstName\": \"grp.odin4000\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"grp.odin4000\",\n            \"hiraganaFirstName\": \"grp.odin4000\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"04000\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"grp.odin4001@parkbenchsolutions.com\",\n            \"lastName\": \"grp.odin4001\",\n            \"firstName\": \"grp.odin4001\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"grp.odin4001\",\n            \"hiraganaFirstName\": \"grp.odin4001\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"04001\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"grp.odin6001@parkbenchsolutions.com\",\n            \"lastName\": \"grp.odin6001\",\n            \"firstName\": \"grp.odin6001\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"grp.odin6001\",\n            \"hiraganaFirstName\": \"grp.odin6001\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"06001\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    },\n    {\n        \"service\": {\n            \"assigned\": false,\n            \"serviceName\": \"Voice Messaging User\"\n        },\n        \"user\": {\n            \"userId\": \"grp.odin6002@parkbenchsolutions.com\",\n            \"lastName\": \"grp.odin6002\",\n            \"firstName\": \"grp.odin6002\",\n            \"department\": null,\n            \"phoneNumber\": \"\",\n            \"phoneNumberActivated\": null,\n            \"emailAddress\": null,\n            \"hiraganaLastName\": \"grp.odin6002\",\n            \"hiraganaFirstName\": \"grp.odin6002\",\n            \"inTrunkGroup\": false,\n            \"extension\": \"06002\",\n            \"countryCode\": null,\n            \"nationalPrefix\": null,\n            \"domain\": \"parkbenchsolutions.com\"\n        },\n        \"data\": {}\n    }\n]"}],"_postman_id":"d5ec6f09-61f3-4fd8-8514-7a5b2623fcec"},{"name":"User Voice Messaging Bulk","id":"d70ba609-d0cc-464f-b125-49005951fe61","request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/voice-messaging/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ba5908ba-b119-4ee4-8734-522b609a1065","name":"User Voice Messaging Bulk","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"data\":{\n\t\t\"isActive\":true\n\t},\n\t\"users\":[\n\t\t{\"userId\":\"9709580001@microv-works.com\"},\n\t\t{\"userId\":\"9709580002@microv-works.com\"}\n\t]\n}"},"url":"{{url}}/api/v2/users/voice-messaging/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"118","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Oct 2018 19:33:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.2.10","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"isActive\":true},\"users\":[{\"userId\":\"9709580001@microv-works.com\"},{\"userId\":\"9709580002@microv-works.com\"}]}"}],"_postman_id":"d70ba609-d0cc-464f-b125-49005951fe61"},{"name":"User Voice Messaging User Distribution Lists","id":"9c25ba79-a44f-4cc2-aabd-013a8f1b3b68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/user-distribution-lists?userId=testuser1@cl1.lab.hosted-uc.com","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>processing</td>\n<td>string</td>\n<td>optional</td>\n<td>1. Unified Voice and Email Messaging <br /> 2. Deliver To Email Address Only</td>\n<td>Choices to handle a voice message.</td>\n</tr>\n<tr>\n<td>voiceMessageDeliveryEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>usePhoneMessageWaitingIndicator</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>sendVoiceMessageNotifyEmail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageNotifyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>sendCarbonCopyVoiceMessage</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageCarbonCopyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 80</td>\n<td></td>\n</tr>\n<tr>\n<td>transferOnZeroToPhoneNumber</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>transferPhoneNumber</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 30</td>\n<td>An outgoing phone number or a number meant to be dialed. It is longer than a DN so that equal access digits or access code digits may be be included.  It cannot be a SIP URL.</td>\n</tr>\n<tr>\n<td>alwaysRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>busyRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>noAnswerRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>outOfPrimaryZoneRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","user-distribution-lists"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"4001.5001@lab.tekvoice.net"},{"key":"userId","value":"testuser1@cl1.lab.hosted-uc.com"}],"variable":[]}},"response":[],"_postman_id":"9c25ba79-a44f-4cc2-aabd-013a8f1b3b68"},{"name":"User Voice Messaging User Distribution List","id":"bca385bf-0bba-4630-a401-c820d4794a85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-messaging/user-distribution-list?userId=testuser1@cl1.lab.hosted-uc.com&listId=0","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Type</th>\n<th>Required</th>\n<th>Values</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>required</td>\n<td><a href=\"mailto:4001@parkbenchsolutions.com\">4001@parkbenchsolutions.com</a></td>\n<td></td>\n</tr>\n<tr>\n<td>isActive</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>processing</td>\n<td>string</td>\n<td>optional</td>\n<td>1. Unified Voice and Email Messaging <br /> 2. Deliver To Email Address Only</td>\n<td>Choices to handle a voice message.</td>\n</tr>\n<tr>\n<td>voiceMessageDeliveryEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>usePhoneMessageWaitingIndicator</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>sendVoiceMessageNotifyEmail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageNotifyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1-80</td>\n<td></td>\n</tr>\n<tr>\n<td>sendCarbonCopyVoiceMessage</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessageCarbonCopyEmailAddress</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 80</td>\n<td></td>\n</tr>\n<tr>\n<td>transferOnZeroToPhoneNumber</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>transferPhoneNumber</td>\n<td>string</td>\n<td>optional</td>\n<td>char length 1 - 30</td>\n<td>An outgoing phone number or a number meant to be dialed. It is longer than a DN so that equal access digits or access code digits may be be included.  It cannot be a SIP URL.</td>\n</tr>\n<tr>\n<td>alwaysRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>busyRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>noAnswerRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n<tr>\n<td>outOfPrimaryZoneRedirectToVoiceMail</td>\n<td>boolean</td>\n<td>optional</td>\n<td>true or false</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","user-distribution-list"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"4001.5001@lab.tekvoice.net"},{"key":"userId","value":"testuser1@cl1.lab.hosted-uc.com"},{"key":"listId","value":"0"}],"variable":[]}},"response":[],"_postman_id":"bca385bf-0bba-4630-a401-c820d4794a85"},{"name":"User Voice Messaging User Distribution List","id":"f1acb31f-64af-4b1f-bb55-f92ef425a757","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"testuser1@cl1.lab.hosted-uc.com\",\n    \"listId\": \"0\",\n    \"description\": \"description-0\",\n    \"phoneNumbers\": [\n        \"5133334001\",\n        \"5133334002\"\n    ]\n}"},"url":"{{url}}/api/v2/users/voice-messaging/user-distribution-list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","user-distribution-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1acb31f-64af-4b1f-bb55-f92ef425a757"},{"name":"User Voice Messaging User Distribution List Bulk","id":"da70d8fe-91dc-4b00-88a3-d89f0a30de9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"\n{\n    \"userId\": \"testuser1@cl1.lab.hosted-uc.com\",\n    \"distributionList\": [\n        {\n            \"listId\": \"0\",\n            \"description\": \"description-0\",\n            \"phoneNumbers\": [\n                \"5133334001\",\n                \"5133334002\"\n            ]\n        },\n        {\n            \"listId\": \"3\",\n            \"description\": \"description-2\",\n            \"phoneNumbers\": [\n                \"5133334003\",\n                \"5133334004\"\n            ]\n        },\n        {\n            \"listId\": \"14\",\n            \"description\": \"description-14\",\n            \"phoneNumbers\": [\n                \"5133334003\",\n                \"5133334004\"\n            ]\n        },\n        {\n            \"listId\": \"13\",\n            \"description\": \"description-13\",\n            \"phoneNumbers\": [\n                \"5133334005\",\n                \"5133334006\"\n            ]\n        }\n    ]\n}\n"},"url":"{{url}}/api/v2/users/voice-messaging/user-distribution-list-bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-messaging","user-distribution-list-bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"da70d8fe-91dc-4b00-88a3-d89f0a30de9c"}],"id":"7799822e-e8c7-47a2-bc52-8ea05282b082","description":"<blockquote>\n<p>Voice Management allows you to specify how to handle your messages. Use Unified messaging if you want to use your phone to retrieve messages. You can also just choose to send the message to your e-mail and not use the phone for messaging. Note that the message settings here also apply to other types of messaging such as fax if enabled.</p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"1ad33a46-f641-4496-b5a2-3f3849cb1f85","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c56b8e4d-f775-41bd-8ef0-a7bb817a258a","type":"text/javascript","exec":[""]}}],"_postman_id":"7799822e-e8c7-47a2-bc52-8ea05282b082","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Voice Portal Calling","item":[{"name":"User Voice Portal","id":"916e0f55-3798-4301-b58a-1a9e0bc26e55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/voice-portal-calling?userId=9871515000@odinapi.net","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-portal-calling"],"host":["{{url}}"],"query":[{"key":"userId","value":"9871515000@odinapi.net"}],"variable":[]}},"response":[{"id":"55b53297-fd5a-4b6c-b3b8-e355e1f65b80","name":"User Voice Portal","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/voice-portal-calling?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","voice-portal-calling"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"916e0f55-3798-4301-b58a-1a9e0bc26e55"},{"name":"User Voice Portal","id":"c68ba2ac-053e-4926-9321-bc973b25b0b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/voice-portal-calling","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","voice-portal-calling"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bc249f68-dc42-4316-966f-fd4febe19b42","name":"User Voice Portal","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"},"url":"{{url}}/api/v2/users/voice-portal-calling"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"isActive\": true,\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7705\n}"}],"_postman_id":"c68ba2ac-053e-4926-9321-bc973b25b0b3"}],"id":"e106b7e2-d681-42de-9699-eb8c5e31dec2","_postman_id":"e106b7e2-d681-42de-9699-eb8c5e31dec2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Zone Calling Restrictions","item":[{"name":"User Zone Calling Restrictions","id":"02a403f5-d693-451d-9777-888c2bff097e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/zone-calling-restrictions?userId=4001@parkbenchsolutions.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","zone-calling-restrictions"],"host":["{{url}}"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}],"variable":[]}},"response":[{"id":"aeabeb2a-9844-4c49-954c-1824cdb75ed9","name":"User Zone Calling Restrictions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users/zone-calling-restrictions?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users","zone-calling-restrictions"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"4001@parkbenchsolutions.com\"\n}"}],"_postman_id":"02a403f5-d693-451d-9777-888c2bff097e"},{"name":"User Zone Calling Restrictions","id":"5ca239a6-c6de-4832-aa2a-a8c0a2f70283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"homeZoneName\": \"Office\"\n}"},"url":"{{url}}/api/v2/users/zone-calling-restrictions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","zone-calling-restrictions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"35059ad0-ea40-4041-89eb-f33f7f9b95f5","name":"User Zone Calling Restrictions","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"homeZoneName\": \"Office\"\n}"},"url":"{{url}}/api/v2/users/zone-calling-restrictions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"homeZoneName\": \"Office\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"_eventId\": 7666\n}"}],"_postman_id":"5ca239a6-c6de-4832-aa2a-a8c0a2f70283"}],"id":"33353cb7-df64-44e1-9134-265a80aeccc6","_postman_id":"33353cb7-df64-44e1-9134-265a80aeccc6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Branding","item":[{"name":"Branding Hostname","id":"89c679fd-9836-4d94-ae7e-ffe213c95c6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/hostnames?id=255","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","hostnames"],"host":["{{url}}"],"query":[{"key":"id","value":"255"}],"variable":[]}},"response":[{"id":"37e1dbc9-fae6-4091-a360-77608d76712c","name":"Odin Branding Hostname","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/hostnames?id=10","host":["{{url}}"],"path":["api","v2","branding","hostnames"],"query":[{"key":"id","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:08:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"32"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 10,\n    \"hostname\": \"localhost\"\n}"}],"_postman_id":"89c679fd-9836-4d94-ae7e-ffe213c95c6d"},{"name":"Branding Hostnames","id":"81429dd2-cddb-4b74-9184-92ba39792d39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/hostnames","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","hostnames"],"host":["{{url}}"],"query":[{"disabled":true,"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"be2458ea-2db3-4721-a519-10a7be07e5df","name":"Odin Branding Hostnames","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/hostnames"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:07:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"33"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"hostname\": \"127.0.0.1\"\n    }\n]"}],"_postman_id":"81429dd2-cddb-4b74-9184-92ba39792d39"},{"name":"Branding Hostname","id":"8c4be195-e049-4abc-b626-7342c20b0d7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostname\": \"aaa.ent1.odin.com\",\n    \"resellerId\": \"\",\n    \"serviceProviderId\": \"ent.odinsadfas\"\n}"},"url":"{{url}}/api/v2/branding/hostnames","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","hostnames"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"062723f9-fc73-4783-b711-75b695f34cac","name":"Odin Branding Hostname","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostname\": \"localhost\"\n}"},"url":"{{url}}/api/v2/branding/hostnames"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:08:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"32"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 10,\n    \"hostname\": \"localhost\"\n}"}],"_postman_id":"8c4be195-e049-4abc-b626-7342c20b0d7d"},{"name":"Branding Hostname","id":"bd3dcda9-aea2-4a45-bc85-1e91da5ceb22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 5,\n    \"hostname\": \"Test to see if email shows up again22\"\n}"},"url":"{{url}}/api/v2/branding/hostnames","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","hostnames"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3276594e-39bd-4a3f-a444-90e7b7affa9f","name":"Odin Branding Hostname","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"id\":10,\"hostname\":\"localhost2\"}"},"url":"{{url}}/api/v2/branding/hostnames"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:08:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"33"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 10,\n    \"hostname\": \"localhost2\"\n}"}],"_postman_id":"bd3dcda9-aea2-4a45-bc85-1e91da5ceb22"},{"name":"Branding Hostname","id":"84725f73-1201-4aa8-8069-9d31b5f1aa88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 33\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/hostnames","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","hostnames"],"host":["{{url}}"],"query":[{"disabled":true,"key":"id","value":"10"}],"variable":[]}},"response":[{"id":"997f6241-61b7-48df-b4ca-e5bb1301e584","name":"Odin Branding Hostname","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/hostnames?id=10","host":["{{url}}"],"path":["api","v2","branding","hostnames"],"query":[{"key":"id","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:08:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"11"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"10\"\n}"}],"_postman_id":"84725f73-1201-4aa8-8069-9d31b5f1aa88"},{"name":"Branding Hostname Clone","id":"8120cb0c-7a5d-4b0d-aa42-4fe0ea586c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 1,\n    \"hostname\": \"localhost test\",\n    \"resellerId\": \"sdf\",\n    \"serviceProviderId\": \"reseller.ent.odin\"\n}"},"url":"{{url}}/api/v2/branding/hostnames/clone","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","hostnames","clone"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1536b040-3837-4a42-ae0f-06cb3f29e045","name":"Odin Branding Hostname Clone","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"id\": 1, \"hostname\":\"localhost\"}"},"url":"{{url}}/api/v2/branding/hostnames/clone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:13:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"32"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14,\n    \"hostname\": \"localhost\"\n}"}],"_postman_id":"8120cb0c-7a5d-4b0d-aa42-4fe0ea586c3f"},{"name":"Branding Applications","id":"22f10ba1-c6dd-4c43-9653-111f7aeaba61","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/applications?hostnameId=16","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","applications"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"16"}],"variable":[]}},"response":[{"id":"5c78adc5-a8aa-4c8e-a016-007b7d7de872","name":"Branding Applications","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/applications?hostnameId=16","host":["{{url}}"],"path":["api","v2","branding","applications"],"query":[{"key":"hostnameId","value":"16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:20:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"195"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 6,\n        \"hostnameId\": 16,\n        \"name\": \"Test123\",\n        \"url\": \"http://www.google.com\",\n        \"description\": \"Search\",\n        \"window\": true,\n        \"createdAt\": \"2018-10-19 19:19:53\",\n        \"updatedAt\": \"2018-10-19 19:19:53\",\n        \"partner\": null\n    }\n]"}],"_postman_id":"22f10ba1-c6dd-4c43-9653-111f7aeaba61"},{"name":"Branding Application","id":"8a59fb89-5f8b-465b-a828-50b57469c0d1","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": \"16\",\n    \"window\": true,\n    \"name\": \"Test123\",\n    \"url\": \"http://www.google.com\",\n    \"description\": \"Search\"\n}"},"url":"{{url}}/api/v2/branding/applications","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","applications"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8f887423-8b3f-4c95-a989-22a864efebc2","name":"Branding Application","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": \"16\",\n    \"window\": true,\n    \"name\": \"Test123\",\n    \"url\": \"http://www.google.com\",\n    \"description\": \"Search\"\n}"},"url":"{{url}}/api/v2/branding/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:19:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"193"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 6,\n    \"hostnameId\": 16,\n    \"name\": \"Test123\",\n    \"url\": \"http://www.google.com\",\n    \"description\": \"Search\",\n    \"window\": true,\n    \"createdAt\": \"2018-10-19 19:19:53\",\n    \"updatedAt\": \"2018-10-19 19:19:53\",\n    \"partner\": null\n}"}],"_postman_id":"8a59fb89-5f8b-465b-a828-50b57469c0d1"},{"name":"Branding Application","id":"cf2f30d6-f0af-49b9-8c53-7633e670ac08","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/branding/applications?id=7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","applications"],"host":["{{url}}"],"query":[{"key":"id","value":"7"}],"variable":[]}},"response":[{"id":"7245b5c1-d410-43ee-9ef0-e83a5c135516","name":"Branding Application","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/branding/applications?id=7","host":["{{url}}"],"path":["api","v2","branding","applications"],"query":[{"key":"id","value":"7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:46:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"194"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 7,\n    \"hostnameId\": 16,\n    \"name\": \"Test1234\",\n    \"url\": \"http://www.google.com\",\n    \"description\": \"Search\",\n    \"window\": true,\n    \"createdAt\": \"2018-10-19 19:23:21\",\n    \"updatedAt\": \"2018-10-19 19:23:21\",\n    \"partner\": null\n}"}],"_postman_id":"cf2f30d6-f0af-49b9-8c53-7633e670ac08"},{"name":"Branding Application","id":"24587c2b-62de-4826-b43e-7c0dcef439b9","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 7,\n    \"hostnameId\": 16,\n    \"name\": \"Test1234\",\n    \"url\": \"http://www.google.com\",\n    \"description\": \"Search\",\n    \"window\": true,\n    \"createdAt\": \"2018-10-19 19:17:51\",\n    \"updatedAt\": \"2018-10-19 19:17:51\",\n    \"partner\": null\n}"},"url":"{{url}}/api/v2/branding/applications","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","applications"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e5e2f199-653f-4a5e-ac1b-0d9c61684650","name":"Branding Application","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 7,\n    \"hostnameId\": 16,\n    \"name\": \"Test1234\",\n    \"url\": \"http://www.google.com\",\n    \"description\": \"Search\",\n    \"window\": true,\n    \"createdAt\": \"2018-10-19 19:17:51\",\n    \"updatedAt\": \"2018-10-19 19:17:51\",\n    \"partner\": null\n}"},"url":"{{url}}/api/v2/branding/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:23:20 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"194"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 7,\n    \"hostnameId\": 16,\n    \"name\": \"Test1234\",\n    \"url\": \"http://www.google.com\",\n    \"description\": \"Search\",\n    \"window\": true,\n    \"createdAt\": \"2018-10-19 19:23:21\",\n    \"updatedAt\": \"2018-10-19 19:23:21\",\n    \"partner\": null\n}"}],"_postman_id":"24587c2b-62de-4826-b43e-7c0dcef439b9"},{"name":"Branding Application","id":"568b69a1-432a-4fd2-a304-b64c99fb46c3","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/applications?id=6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","applications"],"host":["{{url}}"],"query":[{"key":"id","value":"6"}],"variable":[]}},"response":[{"id":"2ad33b0b-d248-4c2b-8513-68a62b9c1c71","name":"Branding Application","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/applications?id=6","host":["{{url}}"],"path":["api","v2","branding","applications"],"query":[{"key":"id","value":"6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:21:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6\"\n}"}],"_postman_id":"568b69a1-432a-4fd2-a304-b64c99fb46c3"},{"name":"Branding Settings","id":"238b6cc7-1807-43c5-a684-85e1def2bffb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/settings?hostnameId=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"1"}],"variable":[]}},"response":[{"id":"74e8a99e-10a6-4915-8707-b02c77a1a5ab","name":"Branding Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/settings?hostnameId=16","host":["{{url}}"],"path":["api","v2","branding","settings"],"query":[{"key":"hostnameId","value":"16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:31:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"130"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 6,\n    \"hostnameId\": 16,\n    \"sessionTimeout\": null,\n    \"editCLID\": true,\n    \"createdAt\": \"2018-10-19 19:29:05\",\n    \"updatedAt\": \"2018-10-19 19:29:05\"\n}"}],"_postman_id":"238b6cc7-1807-43c5-a684-85e1def2bffb"},{"name":"Branding Settings","id":"8eef8b02-ce22-491e-897e-054d662b8617","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": \"8\",\n    \"type\": \"saml2\",\n    \"spLoginUrl\": \"https://localhost:8444/simplesaml/saml2/idp/SSOService.php?spentityid=http://localhost/api/v2/saml2/localsaml/metadata&RelayState=http://locahost/!%23/\",\n    \"idpLoginUrl\": \"https://localhost:8444/simplesaml/saml2/idp/SSOService.php?spentityid=http://localhost/api/v2/saml2/localsaml/metadata&RelayState=http://localhost:8080/#!/\",\n    \"editCLID\": false\n}"},"url":"{{url}}/api/v2/branding/security","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","security"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"198b9229-febb-439c-b8a9-fd6519cc3173","name":"Branding Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"hostnameId\":\"16\",\"editCLID\":true}"},"url":"{{url}}/api/v2/branding/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:32:10 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"130"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 6,\n    \"hostnameId\": 16,\n    \"sessionTimeout\": null,\n    \"editCLID\": true,\n    \"createdAt\": \"2018-10-19 19:32:11\",\n    \"updatedAt\": \"2018-10-19 19:32:11\"\n}"}],"_postman_id":"8eef8b02-ce22-491e-897e-054d662b8617"},{"name":"Branding Templates","id":"6d5117c3-3008-4160-ae88-1b6e5242b835","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/templates?hostnameId=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","templates"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"1"}],"variable":[]}},"response":[{"id":"3f40d62e-bcb4-4a72-8ec0-56a44f006d94","name":"Branding Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/templates?hostnameId=16","host":["{{url}}"],"path":["api","v2","branding","templates"],"query":[{"key":"hostnameId","value":"16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:37:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 10,\n    \"hostnameId\": 16,\n    \"pageTitle\": \"ODiN Localhost\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"styleMenuColor\": \"#3273dc\",\n    \"styleCustomCss\": null,\n    \"imageBackground\": null,\n    \"imageFooterLogo\": null,\n    \"imageLoginLogo\": \"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\",\n    \"imageUserLogo\": null,\n    \"imageIcon\": \"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\",\n    \"imageSplashPortrait\": null,\n    \"imageSplashLandscape\": null,\n    \"createdAt\": \"2018-10-19 19:37:02\",\n    \"updatedAt\": \"2018-10-19 19:37:02\",\n    \"pageLoginMessage\": null\n}"},{"id":"0915b15e-c177-4883-a76b-d25ee9e42cf4","name":"Branding Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/templates?hostnameId=1","host":["{{url}}"],"path":["api","v2","branding","templates"],"query":[{"key":"hostnameId","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Aug 2020 16:40:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"hostnameId\": 1,\n    \"pageTitle\": \"ODiN\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"styleMenuColor\": \"#3273dc\",\n    \"styleCustomCss\": null,\n    \"imageBackground\": null,\n    \"imageFooterLogo\": null,\n    \"imageLoginLogo\": \"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\",\n    \"imageUserLogo\": null,\n    \"imageIcon\": \"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\",\n    \"imageSplashPortrait\": null,\n    \"imageSplashLandscape\": null,\n    \"userLandingPage\": \"feature-quick-set\",\n    \"groupDashboardQuickLinksPanelLogo\": null,\n    \"groupDashboardReportsPanelLogo\": null,\n    \"groupDashboardResourcesManagementPanelLogo\": null,\n    \"groupDashboardGroupServicesPanelLogo\": null,\n    \"groupDashboardUsersPanelLogo\": null,\n    \"createdAt\": \"2020-07-21 12:56:53\",\n    \"updatedAt\": \"2020-07-21 12:56:52\",\n    \"pageLoginMessage\": null,\n    \"userLandingPageOptions\": [\n        \"basic-call-logs\",\n        \"call-records\",\n        \"feature-quick-set\"\n    ]\n}"}],"_postman_id":"6d5117c3-3008-4160-ae88-1b6e5242b835"},{"name":"Branding Templates","id":"664359cd-07bc-4791-9340-e0d31b623711","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 2,\n    \"hostnameId\": 1,\n    \"pageTitle\": \"ODiN\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"styleMenuColor\": \"#3273dc\",\n    \"styleCustomCss\": null,\n    \"imageBackground\": null,\n    \"imageFooterLogo\": null,\n    \"imageLoginLogo\": \"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\",\n    \"imageUserLogo\": null,\n    \"imageIcon\": \"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\",\n    \"imageSplashPortrait\": null,\n    \"imageSplashLandscape\": null,\n    \"userLandingPage\": \"feature-quick-set\",\n    \"groupDashboardQuickLinksPanelLogo\": \"groupDashboardQuickLinksPanelLogo\",\n    \"groupDashboardReportsPanelLogo\": null,\n    \"groupDashboardResourcesManagementPanelLogo\": null,\n    \"groupDashboardGroupServicesPanelLogo\": null,\n    \"groupDashboardUsersPanelLogo\": null,\n    \"createdAt\": \"2020-07-21 12:56:53\",\n    \"updatedAt\": \"2020-07-21 12:56:52\",\n    \"pageLoginMessage\": null\n}"},"url":"{{url}}/api/v2/branding/templates","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","templates"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"493e7c61-907a-4665-9c8d-1b5f235f35d5","name":"Branding Templates","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": \"16\",\n    \"pageTitle\": \"ODiN Localhost\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc\"\n}"},"url":"{{url}}/api/v2/branding/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:48:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"129"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"hostnameId\": 16,\n    \"pageTitle\": \"ODiN Localhost\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc\",\n    \"updatedAt\": \"2018-10-19 19:48:56\"\n}"},{"id":"111fc158-154e-40f9-9f1a-7c6cf3cbb8aa","name":"Branding Templates","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 2,\n    \"hostnameId\": 1,\n    \"pageTitle\": \"ODiN\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"styleMenuColor\": \"#3273dc\",\n    \"styleCustomCss\": null,\n    \"imageBackground\": null,\n    \"imageFooterLogo\": null,\n    \"imageLoginLogo\": \"iVBORw0KGgoAAAANSUhEUgAAAMgAAABVCAYAAAAMoKsDAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAAB3RJTUUH4QkNDCQns051ggAAEmhJREFUeNrtnVtsG1d+h78hKYoSLYkyfbeXppSu03XchE4c7Ga3haVFk7LAbiwDC+yDg0YqsH1gH2w1QPu2svatBRLJLwSKAGsZSB8WDWA6F4BxFhHdvTjbJjCdpkqc7FoM4ySWrcvoQkmkyGEfZmhREoecIYekZM0HGNZwzuV/Zs5vzv0cMDExMTExMTExMTExMTEx2RQI9TbAZHPg8Qd9gAsgHg5E6m3PZsEUyBbE4w/2AAOAL+/nEDAYDweiOsM6B5wFvHk/i8CFeDhwvt5prTemQLYYHn/wItBbxElfPBwYMSisaDwcOF7vNNcTS70NMNGOxx/spXiGBrioVJdKhXVOQ1g+jz94vt7priemQLYWAxrdnTXIDcBZjz/oqnfC64UpkC2CUip4NTrvMTAsF2vbOtsKUyBbB5eBbvWEta0xBbI9EettwFbBFMg2ROkKFnV4idbb5nphCmT7ckGju+F4OCDW29h6YQpkm6IMAkZKOIsCg/W2tZ6YAtnGxMOBbmQBiAVuDwPd27n0ALDV2wCT+hIPB857/MFh1nblRre7MHKYAjFBEUOk3nZsRswqlolJEUyBmJgUoaZVLI8/6Lo3c8S3nNqBzZrqSmfsuVsiEHXYF1j+w19H6v1QDEprF3K93gUcZu3Ujigwm0t3vddfePxBr2KrD4gBkXg4EKujPT7k5+Zl43MTgVit7KvqdHePP+hdXG7vWkq2nUquOH3pTKNXiz97QyJmtaQjTsf0tWbHTGgrNBiVl9oDnKK8uUsR4AoQKvTyFcGNag0sHg6UfLfKJMQB4FyB2yNAfy2efd6zOwl0afQmKs/smtozM4KqCMTjD/YuLre/uLC0u2s5taOisJoaRZodYsjpmL4UDwdC1bC30rQiz4z1GRhsBLiUv66jSgIZpXiGjFKlrl5FnD0Y9+xCyM8sZKSdhgrE4w/2placA+LCQW+lwlhPU6NIe8tXMZs12b8ZhKIIYwDts2LLIYb8FQ8ZLRDF/osagho0emWhshZlgOpMmowhLxqLGBGYIQJRXt7QbGK/b3ZhfxXSLGMRMrS33MHZNBVBzjjRqkWmnlYfcsby1TDaCHAJbRka0CSQcbSJW4yHA+1GJCKXT6jNswshC0WsJJCKe7E8/uCQlLWO3hc71cVhbwRnKziaSwdo2yH/E6wbbklZK1Nzh5maO9wF3FC+RDVDie8GtV8f0YUOcWjEq9GdS8sKxVIoKxNHqd2z6wHGlfX7ZVN2L5ZShxyVslbfvekjpNJN8o3WdnC2gMMpC8JqLRxAdhEaFyGZhbt2kJpU3GUgswTpBUjNQmaJxJIbSbLibvtiyOMPnsSAL4WGtA5Reonqw4qrXI/Ks7tIiUVcVbT7sscf7I+HA8PlBFCWQJQvymUpa/Xemz5CyuKC/XvBtVtdEDn2AHsEaHMCztXfv5Lg8wzck9a6F6yrpYpjH0gpSE2zlLQzM5/B3fpFD+D1+IPVbEzW8sv30LCJnt2Qxx98Ih4O9On1qLuKpYhjFPBOLTxCat9jcOQJcO8rLo424IQA3xbkv9dz0AJdDdDdAHuKmGWxy0JpO0qCx5hZOAzyCxg1eu30JnrBW45N+Ox6lV1cdKFLIHmJds01H2fp8Elw7SruyQZ8R4BjAjRqiGS3IhSfDRpKuHXsY76hi0S2A6ojkstsnhe81ahVY1wPvUrvnWY0C+SBOGx217K3G9H53dLVKSfwlAA7y0jKESt028FVoqNNsDKV6WZmxwmQX4ghjVmPPziE9kErkzw0bilULzRti5RDTxtkAJvdlzr2POLMrtKu9wAdwmoMO6DrAHTthJO7NzoXJbg5BaFvIDoBLCOLo9sOoykQs+pxSTCffgzJ1YBbvN7j8QfPV9J3r/R8nCvXf45WZyNHH3FztHMXbTtWi8/ZhSRjtyd5/6OvK41i06FkviEDg4wij5p7MW7M6bLHHzyupc2qSSAef7ALm/1c6tjzJC1uUoslPOxBbms4wNsBZ78NvXvBVaK86jkEA09AbAUu3YPhMRC/RptI5qwkWh5Bareze+bagMcfDJUzTpLX61I2P3n2Uf7mmQ6ee6ajpNur18d55/o4r797q5IoNxOViiOKPOYTKfT+lLGUU8i9Yt4y4/AifwDPl3Kodb7OjdSxH3ultgPM3RVYniviwQl8T4A/h/N/BgPu8p+UKMHgJAx/AnwOvJGCRBGRtGagPY1z6TZu8XpEWTGnCw3bcaryk2cfpf/M0xza26Lb752JeQb//XdcvT5e/gPLQ8NAYVZrWMjTTSKlHOkYnS9EBHnUvmQ86+KrZDZDR6k5XFraIOfSnhNeqe0AWYni4nAAPxbw/hXc8FUmDpBLnKE9MPo0uE4CZ0q02hfkNlGiqZNEU2eX3gaZMqtVlx+Qq1K/+tdTvPxPPyxLHACH9rbw6s/9vPpzP61OLb0ZmxKtOz+upz8eDmgSYT7KXLXjyBMrq2JvUYF4/EGX5Dp4Nv2tpwBILhRx7AZ6BXxH4YYXfAa+465mGPWA60kB/s4ODpWPowQsykmaaX2KtK1F7wvT/YKPdu7id5fO8L3HDxiS1uee6eBX//b8lhOJ0m7z6vQmAqfLHcQDeTWkMr5RzuYSvaV6PUuVIL1p7zMPAkguqGRML3BawHdAychVWIbla1TC/r4Af2kHp4otSTlyyWJnuu27Xq2lSDmlx9HOXVXJzNUKt8q8WIafPqMmniqdMiNleO0tdrNoVs7sP3ZWcq7Wkwo2zo8Azwq4dsHF/dURRw5fI1w+iFyoPq4iktTqb8v2vSSaOk5pDF7rZs6AXK16+aXuqmXinEi2AnlT1/UwaPSsbKUkiej0VlTYqtnZ4w/60gcf9+aus5L8bw1u4KQAdhjYb2y1So2uZjj3JPJofCGRLK9N0qLD06OUDqXo0WNH/wsnONqpobu7Ao527qL/haerGodB9Oh0H6vi4Tx6p5P4iuUPVYGkDzz+YrZxtcGZTq5zYAd+JGdObyucM2RCtDYGdoHrKHIn9aMNGzur84S85DjEUuOBnmLh6dztnKOdu/j7nsdrktZzZ06U3fCvISd1uq/aZnRKr9SITm9dajdUBSK5O1Q9AfCcXHIgwIAx7VPNuCxw7phy4RTAs04hqXWlSJO31AvsQgf9L5yoaXr7z2z6UsSnw21M6wlYFaBXgE+o3VAVSLbRqZ7oI4Cy9MPlgN42as7ZbwG5UuugFdrUGz8rtrauEsFp/gIe2tuiaQDQSJ77vnezN9h9OtyGqm2MUopEjbC/YK468A//3ZVfvVqDHXhytd7fU848KwNwWaCnM++HR9QnBaQadrpKtEN8aKTW4gC5Q8CobmSj0di+y+dajUyL6HDrUrtRUCAZd6d6or1AnnZOqQZdfXz78i6cAriV5Fg2DhLH95/xFgmq2L01PFOnjFqveDXg1ek+WiO7bupw61O7UVAg2eZ29UQ/ubbXyNtE3dgw6XGvMrvYvlEgDenZgmnS+wWsds/VZovXaGq435Yh8WgetWhoQu7WXVfz8tVRIK7WdT+4LaCy7H3F1uZVCUbt94JsgR4lEwPRNaxn+4t6m7sWX6H2z27z6Hd40HVtUiG6BGLZuwUy3yFzu2EFsd4GPAzoyk3pfXpcV59Yoakv7odTIHqrdvXcW/dhQnNuSreCYGPDCpLYSv2Mj91b94MdaCmcJFt6XlQLRk+cdybm65LWesW73SmYm4TlWXH9b9kGWRkW+9rfY6VWF1aR6Po8k/vIOjYmK21riRYKQ++Xduz2ZF3SqjNesS5GPoQUFkgyEVXzIDSwphS5Mls/42/ezbuwsbrNVuPGZO2a+Y1YJKiY1jiv12kduc54o3Ux8iGkoEDsH78ZFdIpVR/5pUhoun7Gh27nXRSZ7mJfmWEy9KNokaCK3VuDUUti9TCXSOrd4EFzekyKU1Ag8XBAFJbEmJonwb7qM7YIkTpUs0YmQfxGuXCwZpPGDYnMpiIlgtM8/eHOxHzNRXL19zHmEkk9XvSMIpsUQbWRLiSmIqq+BLDkBggzMDhRe8MHc1nAwsZ9t5JrF640LX95pURwEXQw9NoHNUvnXCLJ0H/8j15vutJjoo6qQBr+9F9X8qtZ1qW10zcE66pIIpO1LUWGZyCW2yXHzcb1IMurArGvzNCSuBUpFp6yvUxMa/xjtyf5ZeijmqT1l6H/1duDFTW7eI1DVSDxcCBkvTsmPnBYQABCg9JoX4a+r+RteqpNbAUGx4B7yOJYP9UlkVlz2bwci2rcHyukx46h1z6oeo/W2O1Jhl7TXXpcqqpR24yi4yDWux+P5JciDVMFAmiS2yQxEfq+oaqIEpz+CsSbyOIo1O5IrKrUlknQujCmNcNc0GPLXCLJSy+P6m0baGbs9iQ//ec3dD8iyt8Cx6QARQUiJBMXbOO/f3Btv1t4rzGLAywChETou0tVECXojkN0HMii3iifTT/4c+fs+yIaM0w5SzVzmdjoQbxcuGWIb0sceLqVKCqQeDgQs967NWKdjgHqAgG5qmWRYGRO+cobWN16II4l4As2VqvymZIF0pL4FEfy7gWdGUb3Wumx25P87T/+p2H77F69Pl6uOMRy7DcpjpapJoO2zyOikJzHsli4mpVDkMCSgVASjseMabiHFqBjHKJZ4FPWbMiwgXsrkM5iX5mhfe7DGDCsJ64yF/wzl0jy03+5wkuvvFd2aXJnYp6f/SLMz34RLrfadsFsnBtPSYHEw4GYkE4O2j95ByGdovHL4lu6CikQMhCzQvcEnP4GomW878gidH8Fp++D2ADcAmZKeJpYwb4yw57pX0P5Z3z3U+ZUjdffvcUPel/jpVfe0zxWcvX6OC+98h4/6H2tkvGVGDo/Biba0LS7ezwcGPb4g6fsH7/RBc+zeMSBVOQ8TssiSAJk7RBagdBd+TycnmY42QRdjo1+RAmiKbiSgNASxDLIU1qswBhQqgYzm8E+eZ8907/GIqVC5W5KFg8HRI8/2Id8eE5ZvP7uLV5/91Ytjz+o6hmN2xk954P0CYmpG/aP33C17uhGfHZ3UceWBGRXQHICAkQzyuRCrTUQAUgDn1FaHIB97OucOKLo3zxsDcq55MNUeEZIbopIlc8B0bUjuok+NE93V+q33UJiCue1N3C+X/o8CyEFlnmKtxvUmAc+RJM4dox9wr47b2GRUiIGfU3j4UA/m39EeqSKOxSaoHPBlDLg1kc6Reubv8X+5j1IFPcjpME6B5ZljZGkgdvAHyhZ2giLWZrH7rDz/yIgtxu6yzk0pwin2bwT/0bKObXVRB+6l98pu+L1WTIpXB9GsL6+iHBdgpkijfcsCEtgnQUhKV9vICeM3yr/F0FYzGK9k8Fx6x47P30HqiMOlJKom80nElMcNaKs9am5g0salqdE9/hbWD5bRng7g/B2Bj4tIhZJbsBbRbmNIkyD8AXy3NMIsjDShb0Ki1ksExK2P2awfpHBfn8S9/hbWDKpGFUQR15aRWSRjFQj/DIwxVFD9DTS1xAPB6Ief/B4w/LUZff4W77pw8+SmWlB+CBPHO3K/r125e8EsCDfF2aykJvFYoVso7wKK+sQwArCchYygKT8nUfD8lROHCFq0IOjhN/n8QdvYuwBlXoQkbuuR+oU97akoh0O4uFALB4OHG9Ynhrc/cfLYmNi3WSsmSxMZOHLLHwkwZ8k+XoiTxwAGbmEEBazWKYlLPclhHn5er04msXPcI+/LVoyqf54OHC6lt2byklIx6l94z0CHDdYHDGN7sQSpXNUYzh63VaKnrgiajcM2QIkHg6ct2SSx93jb420fXMdSyZVeaDrsK7MszP+Lq4714YtmWRHJcd2VZjWqHI4aB8G7d5XhBjyEWXdVRgl1zqJc6TE8xBLuclD14TQStBpl+qzMHyjK48/6M3YmgcS7mM9izu/45Ks9orCs67M0yTeFp0zn1ywpuZHNtt0CuWIt7Po2+G8FBHgUrWrUx5/8EYJu6PI7TuxRDguYJwim0AjH+us+9ThCtNXsV1V2wnO4w+60o3tPQvuYycz9pae5I6DLq1+LZkUtpQYsy1NR1xf/+aK0Ud1VSm9PuSTlk5RnlgiwBXkGbmxGtnsQj62uUfFHs1VWGWP44sUPmtlGHlAU1NYBqexIrtqtlWixx/03n/ktE+yNfoyDS0gH1riArCkl0TJ1nTTujJPpqElcuDjV2ObraQoI71dyEJxIW8p4cu7HQVmkatQsXqPhCuZqEexVUT+qkbLDMvHquBEaij4rWiXiYmJiYmJiYmJiYmJiYmJiYmJiYmJiYmJiYmJiYnJ1uL/AZyOvS9Ogz+WAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE3LTA5LTEzVDEyOjM2OjM5KzAwOjAwHTWDqAAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNy0wOS0xM1QxMjozNjozOSswMDowMGxoOxQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAAElFTkSuQmCC\",\n    \"imageUserLogo\": null,\n    \"imageIcon\": \"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\",\n    \"imageSplashPortrait\": null,\n    \"imageSplashLandscape\": null,\n    \"userLandingPage\": \"feature-quick-set\",\n    \"groupDashboardQuickLinksPanelLogo\": \"groupDashboardQuickLinksPanelLogo\",\n    \"groupDashboardReportsPanelLogo\": null,\n    \"groupDashboardResourcesManagementPanelLogo\": null,\n    \"groupDashboardGroupServicesPanelLogo\": null,\n    \"groupDashboardUsersPanelLogo\": null,\n    \"createdAt\": \"2020-07-21 12:56:53\",\n    \"updatedAt\": \"2020-07-21 12:56:52\",\n    \"pageLoginMessage\": null\n}"},"url":"{{url}}/api/v2/branding/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Aug 2020 16:43:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"hostnameId\": 1,\n    \"pageTitle\": \"ODiN\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"styleMenuColor\": \"#3273dc\",\n    \"styleCustomCss\": null,\n    \"imageBackground\": null,\n    \"imageFooterLogo\": null,\n    \"imageLoginLogo\": \"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\",\n    \"imageUserLogo\": null,\n    \"imageIcon\": \"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\",\n    \"imageSplashPortrait\": null,\n    \"imageSplashLandscape\": null,\n    \"userLandingPage\": \"feature-quick-set\",\n    \"groupDashboardQuickLinksPanelLogo\": \"groupDashboardQuickLinksPanelLogo\",\n    \"groupDashboardReportsPanelLogo\": null,\n    \"groupDashboardResourcesManagementPanelLogo\": null,\n    \"groupDashboardGroupServicesPanelLogo\": null,\n    \"groupDashboardUsersPanelLogo\": null,\n    \"createdAt\": \"2020-07-21 12:56:53\",\n    \"updatedAt\": \"2020-08-10 16:43:37\",\n    \"pageLoginMessage\": null,\n    \"userLandingPageOptions\": [\n        \"basic-call-logs\",\n        \"call-records\",\n        \"feature-quick-set\"\n    ]\n}"}],"_postman_id":"664359cd-07bc-4791-9340-e0d31b623711"},{"name":"Branding Module","id":"ed350881-beea-4813-974d-c03c3af1309a","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/branding/modules?hostnameId=16&id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","modules"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"16"},{"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"9737bed0-cfaf-40f6-816e-867d407bcd77","name":"Branding Module","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/branding/modules?hostnameId=16&id=1","host":["{{url}}"],"path":["api","v2","branding","modules"],"query":[{"key":"hostnameId","value":"16"},{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:48:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"583"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"hostnameId\": \"16\",\n    \"name\": \"Account/Authorization Codes\",\n    \"description\": \"Account and Authorization Codes\",\n    \"alias\": \"Account/Authorization Codes\",\n    \"url\": null,\n    \"createdAt\": \"2018-10-19 19:45:18\",\n    \"updatedAt\": \"2018-10-19 19:45:18\",\n    \"permissions\": {\n        \"system\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"provisioning\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"serviceProvider\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"group\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"user\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        }\n    }\n}"}],"_postman_id":"ed350881-beea-4813-974d-c03c3af1309a"},{"name":"Branding Module","id":"3d0d6fd1-732d-4ea4-9f4b-ffd81ab04383","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 1,\n    \"hostnameId\": \"16\",\n    \"name\": \"Account/Authorization Codes\",\n    \"description\": \"Account and Authorization Codes\",\n    \"alias\": \"Account/Authorization Codes\",\n    \"url\": null,\n    \"createdAt\": \"2018-10-19 19:43:18\",\n    \"updatedAt\": \"2018-10-19 19:43:18\",\n    \"permissions\": {\n        \"system\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"provisioning\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"serviceProvider\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"group\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"user\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        }\n    }\n}"},"url":"{{url}}/api/v2/branding/modules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","modules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d7d83115-6742-43dd-8e65-a8a081da8258","name":"Branding Modules","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 1,\n    \"hostnameId\": \"16\",\n    \"name\": \"Account/Authorization Codes\",\n    \"description\": \"Account and Authorization Codes\",\n    \"alias\": \"Account/Authorization Codes\",\n    \"url\": null,\n    \"createdAt\": \"2018-10-19 19:43:18\",\n    \"updatedAt\": \"2018-10-19 19:43:18\",\n    \"permissions\": {\n        \"system\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"provisioning\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"serviceProvider\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"group\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"user\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        }\n    }\n}"},"url":"{{url}}/api/v2/branding/modules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:45:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"583"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"hostnameId\": \"16\",\n    \"name\": \"Account/Authorization Codes\",\n    \"description\": \"Account and Authorization Codes\",\n    \"alias\": \"Account/Authorization Codes\",\n    \"url\": null,\n    \"createdAt\": \"2018-10-19 19:45:18\",\n    \"updatedAt\": \"2018-10-19 19:45:18\",\n    \"permissions\": {\n        \"system\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"provisioning\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"serviceProvider\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"group\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        },\n        \"user\": {\n            \"create\": true,\n            \"read\": true,\n            \"update\": true,\n            \"delete\": true\n        }\n    }\n}"}],"_postman_id":"3d0d6fd1-732d-4ea4-9f4b-ffd81ab04383"},{"name":"Branding Emails","id":"bb8b9a80-b477-4a9e-aa6c-9a0715bae4f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/emails?id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","emails"],"host":["{{url}}"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"75fce735-e346-4dcd-bd23-ab55110c59bb","name":"Branding Modules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/modules?hostnameId=16","host":["{{url}}"],"path":["api","v2","branding","modules"],"query":[{"key":"hostnameId","value":"16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:44:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"hostnameId\": \"16\",\n        \"name\": \"Account/Authorization Codes\",\n        \"description\": \"Account and Authorization Codes\",\n        \"alias\": \"Account/Authorization Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-10-19 19:43:30\",\n        \"updatedAt\": \"2018-10-19 19:43:30\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 2,\n        \"hostnameId\": \"16\",\n        \"name\": \"Advice Of Charge\",\n        \"description\": \"Advice Of Charge\",\n        \"alias\": \"Advice Of Charge\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 3,\n        \"hostnameId\": \"16\",\n        \"name\": \"Alternate Numbers\",\n        \"description\": \"Alternate Numbers\",\n        \"alias\": \"Alternate Numbers\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 4,\n        \"hostnameId\": \"16\",\n        \"name\": \"Anonymous Call Rejection\",\n        \"description\": \"Anonymous Call Rejection\",\n        \"alias\": \"Anonymous Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 6,\n        \"hostnameId\": \"16\",\n        \"name\": \"Authentication\",\n        \"description\": \"Authentication\",\n        \"alias\": \"Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 7,\n        \"hostnameId\": \"16\",\n        \"name\": \"Auto Attendant\",\n        \"description\": \"Auto Attendant\",\n        \"alias\": \"Auto Attendant\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 9,\n        \"hostnameId\": \"16\",\n        \"name\": \"Auto Attendant Report\",\n        \"description\": \"Auto Attendant Report\",\n        \"alias\": \"Auto Attendant Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 10,\n        \"hostnameId\": \"16\",\n        \"name\": \"Automatic Callback\",\n        \"description\": \"Automatic Callback\",\n        \"alias\": \"Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 11,\n        \"hostnameId\": \"16\",\n        \"name\": \"Automatic Hold/Retrieve\",\n        \"description\": \"Automatic Hold/Retrieve\",\n        \"alias\": \"Automatic Hold/Retrieve\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 12,\n        \"hostnameId\": \"16\",\n        \"name\": \"Barge-in Exempt\",\n        \"description\": \"Barge-in Exempt\",\n        \"alias\": \"Barge-in Exempt\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 13,\n        \"hostnameId\": \"16\",\n        \"name\": \"Basic Call Logs\",\n        \"description\": \"Basic Call Logs\",\n        \"alias\": \"Basic Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 15,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Agent\",\n        \"description\": \"BroadWorks Agent\",\n        \"alias\": \"BroadWorks Agent\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 16,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Anywhere\",\n        \"description\": \"BroadWorks Anywhere\",\n        \"alias\": \"BroadWorks Anywhere\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 17,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Mobility\",\n        \"description\": \"BroadWorks Mobility\",\n        \"alias\": \"BroadWorks Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 20,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Supervisor\",\n        \"description\": \"BroadWorks Supervisor\",\n        \"alias\": \"BroadWorks Supervisor\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 21,\n        \"hostnameId\": \"16\",\n        \"name\": \"Busy Lamp Field\",\n        \"description\": \"Busy Lamp Field\",\n        \"alias\": \"Busy Lamp Field\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 22,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Capacity Management\",\n        \"description\": \"Call Capacity Management\",\n        \"alias\": \"Call Capacity Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 23,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Center\",\n        \"description\": \"Call Center\",\n        \"alias\": \"Call Center\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 27,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Center Monitoring\",\n        \"description\": \"Call Center Monitoring\",\n        \"alias\": \"Call Center Monitoring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 29,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Always\",\n        \"description\": \"Call Forwarding Always\",\n        \"alias\": \"Call Forwarding Always\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 30,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Busy\",\n        \"description\": \"Call Forwarding Busy\",\n        \"alias\": \"Call Forwarding Busy\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 31,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding No Answer\",\n        \"description\": \"Call Forwarding No Answer\",\n        \"alias\": \"Call Forwarding No Answer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 32,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Not Reachable\",\n        \"description\": \"Call Forwarding Not Reachable\",\n        \"alias\": \"Call Forwarding Not Reachable\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 33,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Selective\",\n        \"description\": \"Call Forwarding Selective\",\n        \"alias\": \"Call Forwarding Selective\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 34,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Notify\",\n        \"description\": \"Call Notify\",\n        \"alias\": \"Call Notify\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 35,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Park\",\n        \"description\": \"Call Park\",\n        \"alias\": \"Call Park\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 36,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Pickup\",\n        \"description\": \"Call Pickup\",\n        \"alias\": \"Call Pickup\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 37,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Recording\",\n        \"description\": \"Call Recording\",\n        \"alias\": \"Call Recording\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 38,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Return\",\n        \"description\": \"Call Return\",\n        \"alias\": \"Call Return\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 39,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Transfer\",\n        \"description\": \"Call Transfer\",\n        \"alias\": \"Call Transfer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 40,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Waiting\",\n        \"description\": \"Call Waiting\",\n        \"alias\": \"Call Waiting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 41,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Line ID Blocking Override\",\n        \"description\": \"Calling Line ID Blocking Override\",\n        \"alias\": \"Calling Line ID Blocking Override\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 42,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Line ID Delivery Blocking\",\n        \"description\": \"Calling Line ID Delivery Blocking\",\n        \"alias\": \"Calling Line ID Delivery Blocking\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 43,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Name Delivery\",\n        \"description\": \"Calling Name Delivery\",\n        \"alias\": \"Calling Name Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 44,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Name Retrieval\",\n        \"description\": \"Calling Name Retrieval\",\n        \"alias\": \"Calling Name Retrieval\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 45,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Number Delivery\",\n        \"description\": \"Calling Number Delivery\",\n        \"alias\": \"Calling Number Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 46,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Party Category\",\n        \"description\": \"Calling Party Category\",\n        \"alias\": \"Calling Party Category\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 47,\n        \"hostnameId\": \"16\",\n        \"name\": \"Cds Call Logs\",\n        \"description\": \"Cds Call Logs\",\n        \"alias\": \"Cds Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 48,\n        \"hostnameId\": \"16\",\n        \"name\": \"Charge Number\",\n        \"description\": \"Charge Number\",\n        \"alias\": \"Charge Number\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 51,\n        \"hostnameId\": \"16\",\n        \"name\": \"Client Call Control\",\n        \"description\": \"Client Call Control\",\n        \"alias\": \"Client Call Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 76,\n        \"hostnameId\": \"16\",\n        \"name\": \"Communication Barring User-Control\",\n        \"description\": \"Communication Barring User-Control\",\n        \"alias\": \"Communication Barring User-Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 77,\n        \"hostnameId\": \"16\",\n        \"name\": \"Connected Line Identification Presentation\",\n        \"description\": \"Connected Line Identification Presentation\",\n        \"alias\": \"Connected Line Identification Presentation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 78,\n        \"hostnameId\": \"16\",\n        \"name\": \"Connected Line Identification Restriction\",\n        \"description\": \"Connected Line Identification Restriction\",\n        \"alias\": \"Connected Line Identification Restriction\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 84,\n        \"hostnameId\": \"16\",\n        \"name\": \"Customer Originated Trace\",\n        \"description\": \"Customer Originated Trace\",\n        \"alias\": \"Customer Originated Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 86,\n        \"hostnameId\": \"16\",\n        \"name\": \"Directed Call Pickup with Barge-in\",\n        \"description\": \"Directed Call Pickup with Barge-in\",\n        \"alias\": \"Directed Call Pickup with Barge-in\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 87,\n        \"hostnameId\": \"16\",\n        \"name\": \"Directory Number Hunting\",\n        \"description\": \"Directory Number Hunting\",\n        \"alias\": \"Directory Number Hunting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 89,\n        \"hostnameId\": \"16\",\n        \"name\": \"Do Not Disturb\",\n        \"description\": \"Do Not Disturb\",\n        \"alias\": \"Do Not Disturb\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 91,\n        \"hostnameId\": \"16\",\n        \"name\": \"Emergency Zones\",\n        \"description\": \"Emergency Zones\",\n        \"alias\": \"Emergency Zones\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 93,\n        \"hostnameId\": \"16\",\n        \"name\": \"Enhanced Outgoing Calling Plan\",\n        \"description\": \"Enhanced Outgoing Calling Plan\",\n        \"alias\": \"Enhanced Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 94,\n        \"hostnameId\": \"16\",\n        \"name\": \"External Calling Line ID Delivery\",\n        \"description\": \"External Calling Line ID Delivery\",\n        \"alias\": \"External Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 96,\n        \"hostnameId\": \"16\",\n        \"name\": \"Fax Messaging\",\n        \"description\": \"Fax Messaging\",\n        \"alias\": \"Fax Messaging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 98,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Calling Plans\",\n        \"description\": \"Group Calling Plans\",\n        \"alias\": \"Group Calling Plans\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 99,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Paging\",\n        \"description\": \"Group Paging\",\n        \"alias\": \"Group Paging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 101,\n        \"hostnameId\": \"16\",\n        \"name\": \"Historical Call Records\",\n        \"description\": \"Historical Call Records\",\n        \"alias\": \"Historical Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 102,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hoteling Guest\",\n        \"description\": \"Hoteling Guest\",\n        \"alias\": \"Hoteling Guest\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 103,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hoteling Host\",\n        \"description\": \"Hoteling Host\",\n        \"alias\": \"Hoteling Host\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 104,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hunt Group\",\n        \"description\": \"Hunt Group\",\n        \"alias\": \"Hunt Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 105,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hunt Group Report\",\n        \"description\": \"Hunt Group Report\",\n        \"alias\": \"Hunt Group Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 107,\n        \"hostnameId\": \"16\",\n        \"name\": \"In-Call Service Activation\",\n        \"description\": \"In-Call Service Activation\",\n        \"alias\": \"In-Call Service Activation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 108,\n        \"hostnameId\": \"16\",\n        \"name\": \"Incoming Calling Plan\",\n        \"description\": \"Incoming Calling Plan\",\n        \"alias\": \"Incoming Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 109,\n        \"hostnameId\": \"16\",\n        \"name\": \"Instant Conferencing\",\n        \"description\": \"Instant Conferencing\",\n        \"alias\": \"Instant Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 110,\n        \"hostnameId\": \"16\",\n        \"name\": \"Instant Group Call\",\n        \"description\": \"Instant Group Call\",\n        \"alias\": \"Instant Group Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 111,\n        \"hostnameId\": \"16\",\n        \"name\": \"Integrated IMP\",\n        \"description\": \"Integrated IMP\",\n        \"alias\": \"Integrated IMP\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 112,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intelligent Network Service Control\",\n        \"description\": \"Intelligent Network Service Control\",\n        \"alias\": \"Intelligent Network Service Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 113,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intercept Group\",\n        \"description\": \"Intercept Group\",\n        \"alias\": \"Intercept Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 114,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intercept User\",\n        \"description\": \"Intercept User\",\n        \"alias\": \"Intercept User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 115,\n        \"hostnameId\": \"16\",\n        \"name\": \"Internal Calling Line ID Delivery\",\n        \"description\": \"Internal Calling Line ID Delivery\",\n        \"alias\": \"Internal Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 116,\n        \"hostnameId\": \"16\",\n        \"name\": \"Inventory Report\",\n        \"description\": \"Inventory Report\",\n        \"alias\": \"Inventory Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 117,\n        \"hostnameId\": \"16\",\n        \"name\": \"Last Number Redial\",\n        \"description\": \"Last Number Redial\",\n        \"alias\": \"Last Number Redial\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 118,\n        \"hostnameId\": \"16\",\n        \"name\": \"LDAP Integration\",\n        \"description\": \"LDAP Integration\",\n        \"alias\": \"LDAP Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 119,\n        \"hostnameId\": \"16\",\n        \"name\": \"Legacy Automatic Callback\",\n        \"description\": \"Legacy Automatic Callback\",\n        \"alias\": \"Legacy Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 120,\n        \"hostnameId\": \"16\",\n        \"name\": \"Location-Based Calling Restrictions\",\n        \"description\": \"Location-Based Calling Restrictions\",\n        \"alias\": \"Location-Based Calling Restrictions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 121,\n        \"hostnameId\": \"16\",\n        \"name\": \"Malicious Call Trace\",\n        \"description\": \"Malicious Call Trace\",\n        \"alias\": \"Malicious Call Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 122,\n        \"hostnameId\": \"16\",\n        \"name\": \"Meet-Me Conferencing\",\n        \"description\": \"Meet-Me Conferencing\",\n        \"alias\": \"Meet-Me Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 123,\n        \"hostnameId\": \"16\",\n        \"name\": \"Mobile Extension to Extension Dialing\",\n        \"description\": \"Mobile Extension to Extension Dialing\",\n        \"alias\": \"Mobile Extension to Extension Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 124,\n        \"hostnameId\": \"16\",\n        \"name\": \"Mobility\",\n        \"description\": \"Mobility\",\n        \"alias\": \"Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 125,\n        \"hostnameId\": \"16\",\n        \"name\": \"Multiple Call Arrangement\",\n        \"description\": \"Multiple Call Arrangement\",\n        \"alias\": \"Multiple Call Arrangement\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 126,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold\",\n        \"description\": \"Music On Hold\",\n        \"alias\": \"Music On Hold\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 127,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold - Video\",\n        \"description\": \"Music On Hold - Video\",\n        \"alias\": \"Music On Hold - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 128,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold User\",\n        \"description\": \"Music On Hold User\",\n        \"alias\": \"Music On Hold User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 129,\n        \"hostnameId\": \"16\",\n        \"name\": \"MWI Delivery to Mobile Endpoint\",\n        \"description\": \"MWI Delivery to Mobile Endpoint\",\n        \"alias\": \"MWI Delivery to Mobile Endpoint\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 130,\n        \"hostnameId\": \"16\",\n        \"name\": \"N-Way Call\",\n        \"description\": \"N-Way Call\",\n        \"alias\": \"N-Way Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 131,\n        \"hostnameId\": \"16\",\n        \"name\": \"Office Communicator Tab\",\n        \"description\": \"Office Communicator Tab\",\n        \"alias\": \"Office Communicator Tab\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 132,\n        \"hostnameId\": \"16\",\n        \"name\": \"Outgoing Calling Plan\",\n        \"description\": \"Outgoing Calling Plan\",\n        \"alias\": \"Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 133,\n        \"hostnameId\": \"16\",\n        \"name\": \"Outlook Integration\",\n        \"description\": \"Outlook Integration\",\n        \"alias\": \"Outlook Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 134,\n        \"hostnameId\": \"16\",\n        \"name\": \"Package Management\",\n        \"description\": \"Package Management\",\n        \"alias\": \"Package Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 135,\n        \"hostnameId\": \"16\",\n        \"name\": \"Physical Location\",\n        \"description\": \"Physical Location\",\n        \"alias\": \"Physical Location\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 136,\n        \"hostnameId\": \"16\",\n        \"name\": \"Polycom Phone Services\",\n        \"description\": \"Polycom Phone Services\",\n        \"alias\": \"Polycom Phone Services\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 138,\n        \"hostnameId\": \"16\",\n        \"name\": \"Preferred Carrier Group\",\n        \"description\": \"Preferred Carrier Group\",\n        \"alias\": \"Preferred Carrier Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 139,\n        \"hostnameId\": \"16\",\n        \"name\": \"Preferred Carrier User\",\n        \"description\": \"Preferred Carrier User\",\n        \"alias\": \"Preferred Carrier User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 140,\n        \"hostnameId\": \"16\",\n        \"name\": \"Premium Call Records\",\n        \"description\": \"Premium Call Records\",\n        \"alias\": \"Premium Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 142,\n        \"hostnameId\": \"16\",\n        \"name\": \"Priority Alert\",\n        \"description\": \"Priority Alert\",\n        \"alias\": \"Priority Alert\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 144,\n        \"hostnameId\": \"16\",\n        \"name\": \"Provisioning\",\n        \"description\": \"Provisioning\",\n        \"alias\": \"Provisioning\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 145,\n        \"hostnameId\": \"16\",\n        \"name\": \"Push to Talk\",\n        \"description\": \"Push to Talk\",\n        \"alias\": \"Push to Talk\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 146,\n        \"hostnameId\": \"16\",\n        \"name\": \"Remote Office\",\n        \"description\": \"Remote Office\",\n        \"alias\": \"Remote Office\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 148,\n        \"hostnameId\": \"16\",\n        \"name\": \"Schedules\",\n        \"description\": \"Schedules\",\n        \"alias\": \"Schedules\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 149,\n        \"hostnameId\": \"16\",\n        \"name\": \"Selective Call Acceptance\",\n        \"description\": \"Selective Call Acceptance\",\n        \"alias\": \"Selective Call Acceptance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 150,\n        \"hostnameId\": \"16\",\n        \"name\": \"Selective Call Rejection\",\n        \"description\": \"Selective Call Rejection\",\n        \"alias\": \"Selective Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 151,\n        \"hostnameId\": \"16\",\n        \"name\": \"Sequential Ring\",\n        \"description\": \"Sequential Ring\",\n        \"alias\": \"Sequential Ring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 152,\n        \"hostnameId\": \"16\",\n        \"name\": \"Series Completion\",\n        \"description\": \"Series Completion\",\n        \"alias\": \"Series Completion\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 153,\n        \"hostnameId\": \"16\",\n        \"name\": \"Service Packs\",\n        \"description\": \"Service Packs\",\n        \"alias\": \"Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 156,\n        \"hostnameId\": \"16\",\n        \"name\": \"Shared Call Appearance\",\n        \"description\": \"Shared Call Appearance\",\n        \"alias\": \"Shared Call Appearance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 165,\n        \"hostnameId\": \"16\",\n        \"name\": \"Simultaneous Ring Personal\",\n        \"description\": \"Simultaneous Ring Personal\",\n        \"alias\": \"Simultaneous Ring Personal\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 169,\n        \"hostnameId\": \"16\",\n        \"name\": \"Speed Dial 100\",\n        \"description\": \"Speed Dial 100\",\n        \"alias\": \"Speed Dial 100\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 170,\n        \"hostnameId\": \"16\",\n        \"name\": \"Speed Dial 8\",\n        \"description\": \"Speed Dial 8\",\n        \"alias\": \"Speed Dial 8\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 175,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group\",\n        \"description\": \"Trunk Group\",\n        \"alias\": \"Trunk Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 176,\n        \"hostnameId\": \"16\",\n        \"name\": \"Two-Stage Dialing\",\n        \"description\": \"Two-Stage Dialing\",\n        \"alias\": \"Two-Stage Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 177,\n        \"hostnameId\": \"16\",\n        \"name\": \"User Report\",\n        \"description\": \"User Report\",\n        \"alias\": \"User Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 178,\n        \"hostnameId\": \"16\",\n        \"name\": \"VDM\",\n        \"description\": \"VDM\",\n        \"alias\": \"VDM\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 181,\n        \"hostnameId\": \"16\",\n        \"name\": \"Viewable Service Packs\",\n        \"description\": \"Viewable Service Packs\",\n        \"alias\": \"Viewable Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 182,\n        \"hostnameId\": \"16\",\n        \"name\": \"Virtual On-Net Enterprise Extensions\",\n        \"description\": \"Virtual On-Net Enterprise Extensions\",\n        \"alias\": \"Virtual On-Net Enterprise Extensions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 183,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging Group\",\n        \"description\": \"Voice Messaging Group\",\n        \"alias\": \"Voice Messaging Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 184,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging User\",\n        \"description\": \"Voice Messaging User\",\n        \"alias\": \"Voice Messaging User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 186,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Portal Calling\",\n        \"description\": \"Voice Portal Calling\",\n        \"alias\": \"Voice Portal Calling\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 188,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging User - Advanced\",\n        \"description\": \"Voice Messaging User - Advanced\",\n        \"alias\": \"Voice Messaging User - Advanced\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 189,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group - Authentication\",\n        \"description\": \"Trunk Group - Authentication\",\n        \"alias\": \"Trunk Group - Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 190,\n        \"hostnameId\": \"16\",\n        \"name\": \"VDM - Custom Config\",\n        \"description\": \"VDM - Custom Config\",\n        \"alias\": \"VDM - Custom Config\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 191,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Night Forwarding\",\n        \"description\": \"Group Night Forwarding\",\n        \"alias\": \"Group Night Forwarding\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 192,\n        \"hostnameId\": \"16\",\n        \"name\": \"Collaborate - Audio\",\n        \"description\": \"Collaborate - Audio\",\n        \"alias\": \"Collaborate - Audio\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 193,\n        \"hostnameId\": \"16\",\n        \"name\": \"Collaborate - Video\",\n        \"description\": \"Collaborate - Video\",\n        \"alias\": \"Collaborate - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 194,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group - Pilot User\",\n        \"description\": \"Trunk Group - Pilot User\",\n        \"alias\": \"Trunk Group - Pilot User\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-10 17:35:14\",\n        \"updatedAt\": \"2018-07-10 17:35:14\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 196,\n        \"hostnameId\": \"16\",\n        \"name\": \"Routing Profile\",\n        \"description\": \"Routing Profile\",\n        \"alias\": \"Routing Profile\",\n        \"url\": null,\n        \"createdAt\": \"2018-08-02 18:57:18\",\n        \"updatedAt\": \"2018-08-02 18:57:18\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 197,\n        \"hostnameId\": \"16\",\n        \"name\": \"Privacy\",\n        \"description\": \"Privacy\",\n        \"alias\": \"Privacy\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-11 19:38:15\",\n        \"updatedAt\": \"2018-09-11 19:38:15\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 198,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Feature Access Codes\",\n        \"description\": \"Group Feature Access Codes\",\n        \"alias\": \"Group Feature Access Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-21 16:57:35\",\n        \"updatedAt\": \"2018-09-21 16:57:35\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    }\n]"}],"_postman_id":"bb8b9a80-b477-4a9e-aa6c-9a0715bae4f7"},{"name":"Branding Emails enable forgot passowrd","id":"4e7c7075-6007-4bc5-a5af-e3dfb4716720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 2,\n    \"forgotPasswordEnabled\": false,\n    \"mailDriver\": \"junk\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/emails/enable-forget-password","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","emails","enable-forget-password"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"22bdd8e5-b4f4-462b-a0f1-2cd7d5f03801","name":"Branding Modules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/modules?hostnameId=16","host":["{{url}}"],"path":["api","v2","branding","modules"],"query":[{"key":"hostnameId","value":"16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:44:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"hostnameId\": \"16\",\n        \"name\": \"Account/Authorization Codes\",\n        \"description\": \"Account and Authorization Codes\",\n        \"alias\": \"Account/Authorization Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-10-19 19:43:30\",\n        \"updatedAt\": \"2018-10-19 19:43:30\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 2,\n        \"hostnameId\": \"16\",\n        \"name\": \"Advice Of Charge\",\n        \"description\": \"Advice Of Charge\",\n        \"alias\": \"Advice Of Charge\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 3,\n        \"hostnameId\": \"16\",\n        \"name\": \"Alternate Numbers\",\n        \"description\": \"Alternate Numbers\",\n        \"alias\": \"Alternate Numbers\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 4,\n        \"hostnameId\": \"16\",\n        \"name\": \"Anonymous Call Rejection\",\n        \"description\": \"Anonymous Call Rejection\",\n        \"alias\": \"Anonymous Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 6,\n        \"hostnameId\": \"16\",\n        \"name\": \"Authentication\",\n        \"description\": \"Authentication\",\n        \"alias\": \"Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 7,\n        \"hostnameId\": \"16\",\n        \"name\": \"Auto Attendant\",\n        \"description\": \"Auto Attendant\",\n        \"alias\": \"Auto Attendant\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 9,\n        \"hostnameId\": \"16\",\n        \"name\": \"Auto Attendant Report\",\n        \"description\": \"Auto Attendant Report\",\n        \"alias\": \"Auto Attendant Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 10,\n        \"hostnameId\": \"16\",\n        \"name\": \"Automatic Callback\",\n        \"description\": \"Automatic Callback\",\n        \"alias\": \"Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 11,\n        \"hostnameId\": \"16\",\n        \"name\": \"Automatic Hold/Retrieve\",\n        \"description\": \"Automatic Hold/Retrieve\",\n        \"alias\": \"Automatic Hold/Retrieve\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 12,\n        \"hostnameId\": \"16\",\n        \"name\": \"Barge-in Exempt\",\n        \"description\": \"Barge-in Exempt\",\n        \"alias\": \"Barge-in Exempt\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 13,\n        \"hostnameId\": \"16\",\n        \"name\": \"Basic Call Logs\",\n        \"description\": \"Basic Call Logs\",\n        \"alias\": \"Basic Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 15,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Agent\",\n        \"description\": \"BroadWorks Agent\",\n        \"alias\": \"BroadWorks Agent\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 16,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Anywhere\",\n        \"description\": \"BroadWorks Anywhere\",\n        \"alias\": \"BroadWorks Anywhere\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 17,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Mobility\",\n        \"description\": \"BroadWorks Mobility\",\n        \"alias\": \"BroadWorks Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 20,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Supervisor\",\n        \"description\": \"BroadWorks Supervisor\",\n        \"alias\": \"BroadWorks Supervisor\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 21,\n        \"hostnameId\": \"16\",\n        \"name\": \"Busy Lamp Field\",\n        \"description\": \"Busy Lamp Field\",\n        \"alias\": \"Busy Lamp Field\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 22,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Capacity Management\",\n        \"description\": \"Call Capacity Management\",\n        \"alias\": \"Call Capacity Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 23,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Center\",\n        \"description\": \"Call Center\",\n        \"alias\": \"Call Center\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 27,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Center Monitoring\",\n        \"description\": \"Call Center Monitoring\",\n        \"alias\": \"Call Center Monitoring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 29,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Always\",\n        \"description\": \"Call Forwarding Always\",\n        \"alias\": \"Call Forwarding Always\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 30,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Busy\",\n        \"description\": \"Call Forwarding Busy\",\n        \"alias\": \"Call Forwarding Busy\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 31,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding No Answer\",\n        \"description\": \"Call Forwarding No Answer\",\n        \"alias\": \"Call Forwarding No Answer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 32,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Not Reachable\",\n        \"description\": \"Call Forwarding Not Reachable\",\n        \"alias\": \"Call Forwarding Not Reachable\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 33,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Selective\",\n        \"description\": \"Call Forwarding Selective\",\n        \"alias\": \"Call Forwarding Selective\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 34,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Notify\",\n        \"description\": \"Call Notify\",\n        \"alias\": \"Call Notify\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 35,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Park\",\n        \"description\": \"Call Park\",\n        \"alias\": \"Call Park\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 36,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Pickup\",\n        \"description\": \"Call Pickup\",\n        \"alias\": \"Call Pickup\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 37,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Recording\",\n        \"description\": \"Call Recording\",\n        \"alias\": \"Call Recording\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 38,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Return\",\n        \"description\": \"Call Return\",\n        \"alias\": \"Call Return\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 39,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Transfer\",\n        \"description\": \"Call Transfer\",\n        \"alias\": \"Call Transfer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 40,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Waiting\",\n        \"description\": \"Call Waiting\",\n        \"alias\": \"Call Waiting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 41,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Line ID Blocking Override\",\n        \"description\": \"Calling Line ID Blocking Override\",\n        \"alias\": \"Calling Line ID Blocking Override\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 42,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Line ID Delivery Blocking\",\n        \"description\": \"Calling Line ID Delivery Blocking\",\n        \"alias\": \"Calling Line ID Delivery Blocking\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 43,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Name Delivery\",\n        \"description\": \"Calling Name Delivery\",\n        \"alias\": \"Calling Name Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 44,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Name Retrieval\",\n        \"description\": \"Calling Name Retrieval\",\n        \"alias\": \"Calling Name Retrieval\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 45,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Number Delivery\",\n        \"description\": \"Calling Number Delivery\",\n        \"alias\": \"Calling Number Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 46,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Party Category\",\n        \"description\": \"Calling Party Category\",\n        \"alias\": \"Calling Party Category\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 47,\n        \"hostnameId\": \"16\",\n        \"name\": \"Cds Call Logs\",\n        \"description\": \"Cds Call Logs\",\n        \"alias\": \"Cds Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 48,\n        \"hostnameId\": \"16\",\n        \"name\": \"Charge Number\",\n        \"description\": \"Charge Number\",\n        \"alias\": \"Charge Number\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 51,\n        \"hostnameId\": \"16\",\n        \"name\": \"Client Call Control\",\n        \"description\": \"Client Call Control\",\n        \"alias\": \"Client Call Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 76,\n        \"hostnameId\": \"16\",\n        \"name\": \"Communication Barring User-Control\",\n        \"description\": \"Communication Barring User-Control\",\n        \"alias\": \"Communication Barring User-Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 77,\n        \"hostnameId\": \"16\",\n        \"name\": \"Connected Line Identification Presentation\",\n        \"description\": \"Connected Line Identification Presentation\",\n        \"alias\": \"Connected Line Identification Presentation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 78,\n        \"hostnameId\": \"16\",\n        \"name\": \"Connected Line Identification Restriction\",\n        \"description\": \"Connected Line Identification Restriction\",\n        \"alias\": \"Connected Line Identification Restriction\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 84,\n        \"hostnameId\": \"16\",\n        \"name\": \"Customer Originated Trace\",\n        \"description\": \"Customer Originated Trace\",\n        \"alias\": \"Customer Originated Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 86,\n        \"hostnameId\": \"16\",\n        \"name\": \"Directed Call Pickup with Barge-in\",\n        \"description\": \"Directed Call Pickup with Barge-in\",\n        \"alias\": \"Directed Call Pickup with Barge-in\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 87,\n        \"hostnameId\": \"16\",\n        \"name\": \"Directory Number Hunting\",\n        \"description\": \"Directory Number Hunting\",\n        \"alias\": \"Directory Number Hunting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 89,\n        \"hostnameId\": \"16\",\n        \"name\": \"Do Not Disturb\",\n        \"description\": \"Do Not Disturb\",\n        \"alias\": \"Do Not Disturb\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 91,\n        \"hostnameId\": \"16\",\n        \"name\": \"Emergency Zones\",\n        \"description\": \"Emergency Zones\",\n        \"alias\": \"Emergency Zones\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 93,\n        \"hostnameId\": \"16\",\n        \"name\": \"Enhanced Outgoing Calling Plan\",\n        \"description\": \"Enhanced Outgoing Calling Plan\",\n        \"alias\": \"Enhanced Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 94,\n        \"hostnameId\": \"16\",\n        \"name\": \"External Calling Line ID Delivery\",\n        \"description\": \"External Calling Line ID Delivery\",\n        \"alias\": \"External Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 96,\n        \"hostnameId\": \"16\",\n        \"name\": \"Fax Messaging\",\n        \"description\": \"Fax Messaging\",\n        \"alias\": \"Fax Messaging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 98,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Calling Plans\",\n        \"description\": \"Group Calling Plans\",\n        \"alias\": \"Group Calling Plans\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 99,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Paging\",\n        \"description\": \"Group Paging\",\n        \"alias\": \"Group Paging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 101,\n        \"hostnameId\": \"16\",\n        \"name\": \"Historical Call Records\",\n        \"description\": \"Historical Call Records\",\n        \"alias\": \"Historical Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 102,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hoteling Guest\",\n        \"description\": \"Hoteling Guest\",\n        \"alias\": \"Hoteling Guest\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 103,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hoteling Host\",\n        \"description\": \"Hoteling Host\",\n        \"alias\": \"Hoteling Host\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 104,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hunt Group\",\n        \"description\": \"Hunt Group\",\n        \"alias\": \"Hunt Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 105,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hunt Group Report\",\n        \"description\": \"Hunt Group Report\",\n        \"alias\": \"Hunt Group Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 107,\n        \"hostnameId\": \"16\",\n        \"name\": \"In-Call Service Activation\",\n        \"description\": \"In-Call Service Activation\",\n        \"alias\": \"In-Call Service Activation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 108,\n        \"hostnameId\": \"16\",\n        \"name\": \"Incoming Calling Plan\",\n        \"description\": \"Incoming Calling Plan\",\n        \"alias\": \"Incoming Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 109,\n        \"hostnameId\": \"16\",\n        \"name\": \"Instant Conferencing\",\n        \"description\": \"Instant Conferencing\",\n        \"alias\": \"Instant Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 110,\n        \"hostnameId\": \"16\",\n        \"name\": \"Instant Group Call\",\n        \"description\": \"Instant Group Call\",\n        \"alias\": \"Instant Group Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 111,\n        \"hostnameId\": \"16\",\n        \"name\": \"Integrated IMP\",\n        \"description\": \"Integrated IMP\",\n        \"alias\": \"Integrated IMP\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 112,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intelligent Network Service Control\",\n        \"description\": \"Intelligent Network Service Control\",\n        \"alias\": \"Intelligent Network Service Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 113,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intercept Group\",\n        \"description\": \"Intercept Group\",\n        \"alias\": \"Intercept Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 114,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intercept User\",\n        \"description\": \"Intercept User\",\n        \"alias\": \"Intercept User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 115,\n        \"hostnameId\": \"16\",\n        \"name\": \"Internal Calling Line ID Delivery\",\n        \"description\": \"Internal Calling Line ID Delivery\",\n        \"alias\": \"Internal Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 116,\n        \"hostnameId\": \"16\",\n        \"name\": \"Inventory Report\",\n        \"description\": \"Inventory Report\",\n        \"alias\": \"Inventory Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 117,\n        \"hostnameId\": \"16\",\n        \"name\": \"Last Number Redial\",\n        \"description\": \"Last Number Redial\",\n        \"alias\": \"Last Number Redial\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 118,\n        \"hostnameId\": \"16\",\n        \"name\": \"LDAP Integration\",\n        \"description\": \"LDAP Integration\",\n        \"alias\": \"LDAP Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 119,\n        \"hostnameId\": \"16\",\n        \"name\": \"Legacy Automatic Callback\",\n        \"description\": \"Legacy Automatic Callback\",\n        \"alias\": \"Legacy Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 120,\n        \"hostnameId\": \"16\",\n        \"name\": \"Location-Based Calling Restrictions\",\n        \"description\": \"Location-Based Calling Restrictions\",\n        \"alias\": \"Location-Based Calling Restrictions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 121,\n        \"hostnameId\": \"16\",\n        \"name\": \"Malicious Call Trace\",\n        \"description\": \"Malicious Call Trace\",\n        \"alias\": \"Malicious Call Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 122,\n        \"hostnameId\": \"16\",\n        \"name\": \"Meet-Me Conferencing\",\n        \"description\": \"Meet-Me Conferencing\",\n        \"alias\": \"Meet-Me Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 123,\n        \"hostnameId\": \"16\",\n        \"name\": \"Mobile Extension to Extension Dialing\",\n        \"description\": \"Mobile Extension to Extension Dialing\",\n        \"alias\": \"Mobile Extension to Extension Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 124,\n        \"hostnameId\": \"16\",\n        \"name\": \"Mobility\",\n        \"description\": \"Mobility\",\n        \"alias\": \"Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 125,\n        \"hostnameId\": \"16\",\n        \"name\": \"Multiple Call Arrangement\",\n        \"description\": \"Multiple Call Arrangement\",\n        \"alias\": \"Multiple Call Arrangement\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 126,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold\",\n        \"description\": \"Music On Hold\",\n        \"alias\": \"Music On Hold\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 127,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold - Video\",\n        \"description\": \"Music On Hold - Video\",\n        \"alias\": \"Music On Hold - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 128,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold User\",\n        \"description\": \"Music On Hold User\",\n        \"alias\": \"Music On Hold User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 129,\n        \"hostnameId\": \"16\",\n        \"name\": \"MWI Delivery to Mobile Endpoint\",\n        \"description\": \"MWI Delivery to Mobile Endpoint\",\n        \"alias\": \"MWI Delivery to Mobile Endpoint\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 130,\n        \"hostnameId\": \"16\",\n        \"name\": \"N-Way Call\",\n        \"description\": \"N-Way Call\",\n        \"alias\": \"N-Way Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 131,\n        \"hostnameId\": \"16\",\n        \"name\": \"Office Communicator Tab\",\n        \"description\": \"Office Communicator Tab\",\n        \"alias\": \"Office Communicator Tab\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 132,\n        \"hostnameId\": \"16\",\n        \"name\": \"Outgoing Calling Plan\",\n        \"description\": \"Outgoing Calling Plan\",\n        \"alias\": \"Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 133,\n        \"hostnameId\": \"16\",\n        \"name\": \"Outlook Integration\",\n        \"description\": \"Outlook Integration\",\n        \"alias\": \"Outlook Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 134,\n        \"hostnameId\": \"16\",\n        \"name\": \"Package Management\",\n        \"description\": \"Package Management\",\n        \"alias\": \"Package Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 135,\n        \"hostnameId\": \"16\",\n        \"name\": \"Physical Location\",\n        \"description\": \"Physical Location\",\n        \"alias\": \"Physical Location\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 136,\n        \"hostnameId\": \"16\",\n        \"name\": \"Polycom Phone Services\",\n        \"description\": \"Polycom Phone Services\",\n        \"alias\": \"Polycom Phone Services\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 138,\n        \"hostnameId\": \"16\",\n        \"name\": \"Preferred Carrier Group\",\n        \"description\": \"Preferred Carrier Group\",\n        \"alias\": \"Preferred Carrier Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 139,\n        \"hostnameId\": \"16\",\n        \"name\": \"Preferred Carrier User\",\n        \"description\": \"Preferred Carrier User\",\n        \"alias\": \"Preferred Carrier User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 140,\n        \"hostnameId\": \"16\",\n        \"name\": \"Premium Call Records\",\n        \"description\": \"Premium Call Records\",\n        \"alias\": \"Premium Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 142,\n        \"hostnameId\": \"16\",\n        \"name\": \"Priority Alert\",\n        \"description\": \"Priority Alert\",\n        \"alias\": \"Priority Alert\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 144,\n        \"hostnameId\": \"16\",\n        \"name\": \"Provisioning\",\n        \"description\": \"Provisioning\",\n        \"alias\": \"Provisioning\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 145,\n        \"hostnameId\": \"16\",\n        \"name\": \"Push to Talk\",\n        \"description\": \"Push to Talk\",\n        \"alias\": \"Push to Talk\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 146,\n        \"hostnameId\": \"16\",\n        \"name\": \"Remote Office\",\n        \"description\": \"Remote Office\",\n        \"alias\": \"Remote Office\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 148,\n        \"hostnameId\": \"16\",\n        \"name\": \"Schedules\",\n        \"description\": \"Schedules\",\n        \"alias\": \"Schedules\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 149,\n        \"hostnameId\": \"16\",\n        \"name\": \"Selective Call Acceptance\",\n        \"description\": \"Selective Call Acceptance\",\n        \"alias\": \"Selective Call Acceptance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 150,\n        \"hostnameId\": \"16\",\n        \"name\": \"Selective Call Rejection\",\n        \"description\": \"Selective Call Rejection\",\n        \"alias\": \"Selective Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 151,\n        \"hostnameId\": \"16\",\n        \"name\": \"Sequential Ring\",\n        \"description\": \"Sequential Ring\",\n        \"alias\": \"Sequential Ring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 152,\n        \"hostnameId\": \"16\",\n        \"name\": \"Series Completion\",\n        \"description\": \"Series Completion\",\n        \"alias\": \"Series Completion\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 153,\n        \"hostnameId\": \"16\",\n        \"name\": \"Service Packs\",\n        \"description\": \"Service Packs\",\n        \"alias\": \"Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 156,\n        \"hostnameId\": \"16\",\n        \"name\": \"Shared Call Appearance\",\n        \"description\": \"Shared Call Appearance\",\n        \"alias\": \"Shared Call Appearance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 165,\n        \"hostnameId\": \"16\",\n        \"name\": \"Simultaneous Ring Personal\",\n        \"description\": \"Simultaneous Ring Personal\",\n        \"alias\": \"Simultaneous Ring Personal\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 169,\n        \"hostnameId\": \"16\",\n        \"name\": \"Speed Dial 100\",\n        \"description\": \"Speed Dial 100\",\n        \"alias\": \"Speed Dial 100\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 170,\n        \"hostnameId\": \"16\",\n        \"name\": \"Speed Dial 8\",\n        \"description\": \"Speed Dial 8\",\n        \"alias\": \"Speed Dial 8\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 175,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group\",\n        \"description\": \"Trunk Group\",\n        \"alias\": \"Trunk Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 176,\n        \"hostnameId\": \"16\",\n        \"name\": \"Two-Stage Dialing\",\n        \"description\": \"Two-Stage Dialing\",\n        \"alias\": \"Two-Stage Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 177,\n        \"hostnameId\": \"16\",\n        \"name\": \"User Report\",\n        \"description\": \"User Report\",\n        \"alias\": \"User Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 178,\n        \"hostnameId\": \"16\",\n        \"name\": \"VDM\",\n        \"description\": \"VDM\",\n        \"alias\": \"VDM\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 181,\n        \"hostnameId\": \"16\",\n        \"name\": \"Viewable Service Packs\",\n        \"description\": \"Viewable Service Packs\",\n        \"alias\": \"Viewable Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 182,\n        \"hostnameId\": \"16\",\n        \"name\": \"Virtual On-Net Enterprise Extensions\",\n        \"description\": \"Virtual On-Net Enterprise Extensions\",\n        \"alias\": \"Virtual On-Net Enterprise Extensions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 183,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging Group\",\n        \"description\": \"Voice Messaging Group\",\n        \"alias\": \"Voice Messaging Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 184,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging User\",\n        \"description\": \"Voice Messaging User\",\n        \"alias\": \"Voice Messaging User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 186,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Portal Calling\",\n        \"description\": \"Voice Portal Calling\",\n        \"alias\": \"Voice Portal Calling\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 188,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging User - Advanced\",\n        \"description\": \"Voice Messaging User - Advanced\",\n        \"alias\": \"Voice Messaging User - Advanced\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 189,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group - Authentication\",\n        \"description\": \"Trunk Group - Authentication\",\n        \"alias\": \"Trunk Group - Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 190,\n        \"hostnameId\": \"16\",\n        \"name\": \"VDM - Custom Config\",\n        \"description\": \"VDM - Custom Config\",\n        \"alias\": \"VDM - Custom Config\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 191,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Night Forwarding\",\n        \"description\": \"Group Night Forwarding\",\n        \"alias\": \"Group Night Forwarding\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 192,\n        \"hostnameId\": \"16\",\n        \"name\": \"Collaborate - Audio\",\n        \"description\": \"Collaborate - Audio\",\n        \"alias\": \"Collaborate - Audio\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 193,\n        \"hostnameId\": \"16\",\n        \"name\": \"Collaborate - Video\",\n        \"description\": \"Collaborate - Video\",\n        \"alias\": \"Collaborate - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 194,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group - Pilot User\",\n        \"description\": \"Trunk Group - Pilot User\",\n        \"alias\": \"Trunk Group - Pilot User\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-10 17:35:14\",\n        \"updatedAt\": \"2018-07-10 17:35:14\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 196,\n        \"hostnameId\": \"16\",\n        \"name\": \"Routing Profile\",\n        \"description\": \"Routing Profile\",\n        \"alias\": \"Routing Profile\",\n        \"url\": null,\n        \"createdAt\": \"2018-08-02 18:57:18\",\n        \"updatedAt\": \"2018-08-02 18:57:18\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 197,\n        \"hostnameId\": \"16\",\n        \"name\": \"Privacy\",\n        \"description\": \"Privacy\",\n        \"alias\": \"Privacy\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-11 19:38:15\",\n        \"updatedAt\": \"2018-09-11 19:38:15\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 198,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Feature Access Codes\",\n        \"description\": \"Group Feature Access Codes\",\n        \"alias\": \"Group Feature Access Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-21 16:57:35\",\n        \"updatedAt\": \"2018-09-21 16:57:35\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    }\n]"}],"_postman_id":"4e7c7075-6007-4bc5-a5af-e3dfb4716720"},{"name":"Branding Security","id":"8745862f-ba47-4c10-98da-2ec8c91a4da2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/security?hostnameId=8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","security"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"8"}],"variable":[]}},"response":[{"id":"2d84bfa3-c25b-4648-ac37-5b2fe093c817","name":"Branding Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/templates?hostnameId=1","host":["{{url}}"],"path":["api","v2","branding","templates"],"query":[{"key":"hostnameId","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Aug 2020 16:40:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"hostnameId\": 1,\n    \"pageTitle\": \"ODiN\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"styleMenuColor\": \"#3273dc\",\n    \"styleCustomCss\": null,\n    \"imageBackground\": null,\n    \"imageFooterLogo\": null,\n    \"imageLoginLogo\": \"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\",\n    \"imageUserLogo\": null,\n    \"imageIcon\": \"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\",\n    \"imageSplashPortrait\": null,\n    \"imageSplashLandscape\": null,\n    \"userLandingPage\": \"feature-quick-set\",\n    \"groupDashboardQuickLinksPanelLogo\": null,\n    \"groupDashboardReportsPanelLogo\": null,\n    \"groupDashboardResourcesManagementPanelLogo\": null,\n    \"groupDashboardGroupServicesPanelLogo\": null,\n    \"groupDashboardUsersPanelLogo\": null,\n    \"createdAt\": \"2020-07-21 12:56:53\",\n    \"updatedAt\": \"2020-07-21 12:56:52\",\n    \"pageLoginMessage\": null,\n    \"userLandingPageOptions\": [\n        \"basic-call-logs\",\n        \"call-records\",\n        \"feature-quick-set\"\n    ]\n}"},{"id":"f2be2a56-d628-487a-a705-05d4eade726f","name":"Branding Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/templates?hostnameId=16","host":["{{url}}"],"path":["api","v2","branding","templates"],"query":[{"key":"hostnameId","value":"16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:37:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 10,\n    \"hostnameId\": 16,\n    \"pageTitle\": \"ODiN Localhost\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"styleMenuColor\": \"#3273dc\",\n    \"styleCustomCss\": null,\n    \"imageBackground\": null,\n    \"imageFooterLogo\": null,\n    \"imageLoginLogo\": \"iVBORw0KGgoAAAANSUhEUgAAAMgAAABVCAYAAAAMoKsDAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAAB3RJTUUH4QkNDCQns051ggAAEmhJREFUeNrtnVtsG1d+h78hKYoSLYkyfbeXppSu03XchE4c7Ga3haVFk7LAbiwDC+yDg0YqsH1gH2w1QPu2svatBRLJLwSKAGsZSB8WDWA6F4BxFhHdvTjbJjCdpkqc7FoM4ySWrcvoQkmkyGEfZmhREoecIYekZM0HGNZwzuV/Zs5vzv0cMDExMTExMTExMTExMTEx2RQI9TbAZHPg8Qd9gAsgHg5E6m3PZsEUyBbE4w/2AAOAL+/nEDAYDweiOsM6B5wFvHk/i8CFeDhwvt5prTemQLYYHn/wItBbxElfPBwYMSisaDwcOF7vNNcTS70NMNGOxx/spXiGBrioVJdKhXVOQ1g+jz94vt7priemQLYWAxrdnTXIDcBZjz/oqnfC64UpkC2CUip4NTrvMTAsF2vbOtsKUyBbB5eBbvWEta0xBbI9EettwFbBFMg2ROkKFnV4idbb5nphCmT7ckGju+F4OCDW29h6YQpkm6IMAkZKOIsCg/W2tZ6YAtnGxMOBbmQBiAVuDwPd27n0ALDV2wCT+hIPB857/MFh1nblRre7MHKYAjFBEUOk3nZsRswqlolJEUyBmJgUoaZVLI8/6Lo3c8S3nNqBzZrqSmfsuVsiEHXYF1j+w19H6v1QDEprF3K93gUcZu3Ujigwm0t3vddfePxBr2KrD4gBkXg4EKujPT7k5+Zl43MTgVit7KvqdHePP+hdXG7vWkq2nUquOH3pTKNXiz97QyJmtaQjTsf0tWbHTGgrNBiVl9oDnKK8uUsR4AoQKvTyFcGNag0sHg6UfLfKJMQB4FyB2yNAfy2efd6zOwl0afQmKs/smtozM4KqCMTjD/YuLre/uLC0u2s5taOisJoaRZodYsjpmL4UDwdC1bC30rQiz4z1GRhsBLiUv66jSgIZpXiGjFKlrl5FnD0Y9+xCyM8sZKSdhgrE4w/2placA+LCQW+lwlhPU6NIe8tXMZs12b8ZhKIIYwDts2LLIYb8FQ8ZLRDF/osagho0emWhshZlgOpMmowhLxqLGBGYIQJRXt7QbGK/b3ZhfxXSLGMRMrS33MHZNBVBzjjRqkWmnlYfcsby1TDaCHAJbRka0CSQcbSJW4yHA+1GJCKXT6jNswshC0WsJJCKe7E8/uCQlLWO3hc71cVhbwRnKziaSwdo2yH/E6wbbklZK1Nzh5maO9wF3FC+RDVDie8GtV8f0YUOcWjEq9GdS8sKxVIoKxNHqd2z6wHGlfX7ZVN2L5ZShxyVslbfvekjpNJN8o3WdnC2gMMpC8JqLRxAdhEaFyGZhbt2kJpU3GUgswTpBUjNQmaJxJIbSbLibvtiyOMPnsSAL4WGtA5Reonqw4qrXI/Ks7tIiUVcVbT7sscf7I+HA8PlBFCWQJQvymUpa/Xemz5CyuKC/XvBtVtdEDn2AHsEaHMCztXfv5Lg8wzck9a6F6yrpYpjH0gpSE2zlLQzM5/B3fpFD+D1+IPVbEzW8sv30LCJnt2Qxx98Ih4O9On1qLuKpYhjFPBOLTxCat9jcOQJcO8rLo424IQA3xbkv9dz0AJdDdDdAHuKmGWxy0JpO0qCx5hZOAzyCxg1eu30JnrBW45N+Ox6lV1cdKFLIHmJds01H2fp8Elw7SruyQZ8R4BjAjRqiGS3IhSfDRpKuHXsY76hi0S2A6ojkstsnhe81ahVY1wPvUrvnWY0C+SBOGx217K3G9H53dLVKSfwlAA7y0jKESt028FVoqNNsDKV6WZmxwmQX4ghjVmPPziE9kErkzw0bilULzRti5RDTxtkAJvdlzr2POLMrtKu9wAdwmoMO6DrAHTthJO7NzoXJbg5BaFvIDoBLCOLo9sOoykQs+pxSTCffgzJ1YBbvN7j8QfPV9J3r/R8nCvXf45WZyNHH3FztHMXbTtWi8/ZhSRjtyd5/6OvK41i06FkviEDg4wij5p7MW7M6bLHHzyupc2qSSAef7ALm/1c6tjzJC1uUoslPOxBbms4wNsBZ78NvXvBVaK86jkEA09AbAUu3YPhMRC/RptI5qwkWh5Bareze+bagMcfDJUzTpLX61I2P3n2Uf7mmQ6ee6ajpNur18d55/o4r797q5IoNxOViiOKPOYTKfT+lLGUU8i9Yt4y4/AifwDPl3Kodb7OjdSxH3ultgPM3RVYniviwQl8T4A/h/N/BgPu8p+UKMHgJAx/AnwOvJGCRBGRtGagPY1z6TZu8XpEWTGnCw3bcaryk2cfpf/M0xza26Lb752JeQb//XdcvT5e/gPLQ8NAYVZrWMjTTSKlHOkYnS9EBHnUvmQ86+KrZDZDR6k5XFraIOfSnhNeqe0AWYni4nAAPxbw/hXc8FUmDpBLnKE9MPo0uE4CZ0q02hfkNlGiqZNEU2eX3gaZMqtVlx+Qq1K/+tdTvPxPPyxLHACH9rbw6s/9vPpzP61OLb0ZmxKtOz+upz8eDmgSYT7KXLXjyBMrq2JvUYF4/EGX5Dp4Nv2tpwBILhRx7AZ6BXxH4YYXfAa+465mGPWA60kB/s4ODpWPowQsykmaaX2KtK1F7wvT/YKPdu7id5fO8L3HDxiS1uee6eBX//b8lhOJ0m7z6vQmAqfLHcQDeTWkMr5RzuYSvaV6PUuVIL1p7zMPAkguqGRML3BawHdAychVWIbla1TC/r4Af2kHp4otSTlyyWJnuu27Xq2lSDmlx9HOXVXJzNUKt8q8WIafPqMmniqdMiNleO0tdrNoVs7sP3ZWcq7Wkwo2zo8Azwq4dsHF/dURRw5fI1w+iFyoPq4iktTqb8v2vSSaOk5pDF7rZs6AXK16+aXuqmXinEi2AnlT1/UwaPSsbKUkiej0VlTYqtnZ4w/60gcf9+aus5L8bw1u4KQAdhjYb2y1So2uZjj3JPJofCGRLK9N0qLD06OUDqXo0WNH/wsnONqpobu7Ao527qL/haerGodB9Oh0H6vi4Tx6p5P4iuUPVYGkDzz+YrZxtcGZTq5zYAd+JGdObyucM2RCtDYGdoHrKHIn9aMNGzur84S85DjEUuOBnmLh6dztnKOdu/j7nsdrktZzZ06U3fCvISd1uq/aZnRKr9SITm9dajdUBSK5O1Q9AfCcXHIgwIAx7VPNuCxw7phy4RTAs04hqXWlSJO31AvsQgf9L5yoaXr7z2z6UsSnw21M6wlYFaBXgE+o3VAVSLbRqZ7oI4Cy9MPlgN42as7ZbwG5UuugFdrUGz8rtrauEsFp/gIe2tuiaQDQSJ77vnezN9h9OtyGqm2MUopEjbC/YK468A//3ZVfvVqDHXhytd7fU848KwNwWaCnM++HR9QnBaQadrpKtEN8aKTW4gC5Q8CobmSj0di+y+dajUyL6HDrUrtRUCAZd6d6or1AnnZOqQZdfXz78i6cAriV5Fg2DhLH95/xFgmq2L01PFOnjFqveDXg1ek+WiO7bupw61O7UVAg2eZ29UQ/ubbXyNtE3dgw6XGvMrvYvlEgDenZgmnS+wWsds/VZovXaGq435Yh8WgetWhoQu7WXVfz8tVRIK7WdT+4LaCy7H3F1uZVCUbt94JsgR4lEwPRNaxn+4t6m7sWX6H2z27z6Hd40HVtUiG6BGLZuwUy3yFzu2EFsd4GPAzoyk3pfXpcV59Yoakv7odTIHqrdvXcW/dhQnNuSreCYGPDCpLYSv2Mj91b94MdaCmcJFt6XlQLRk+cdybm65LWesW73SmYm4TlWXH9b9kGWRkW+9rfY6VWF1aR6Po8k/vIOjYmK21riRYKQ++Xduz2ZF3SqjNesS5GPoQUFkgyEVXzIDSwphS5Mls/42/ezbuwsbrNVuPGZO2a+Y1YJKiY1jiv12kduc54o3Ux8iGkoEDsH78ZFdIpVR/5pUhoun7Gh27nXRSZ7mJfmWEy9KNokaCK3VuDUUti9TCXSOrd4EFzekyKU1Ag8XBAFJbEmJonwb7qM7YIkTpUs0YmQfxGuXCwZpPGDYnMpiIlgtM8/eHOxHzNRXL19zHmEkk9XvSMIpsUQbWRLiSmIqq+BLDkBggzMDhRe8MHc1nAwsZ9t5JrF640LX95pURwEXQw9NoHNUvnXCLJ0H/8j15vutJjoo6qQBr+9F9X8qtZ1qW10zcE66pIIpO1LUWGZyCW2yXHzcb1IMurArGvzNCSuBUpFp6yvUxMa/xjtyf5ZeijmqT1l6H/1duDFTW7eI1DVSDxcCBkvTsmPnBYQABCg9JoX4a+r+RteqpNbAUGx4B7yOJYP9UlkVlz2bwci2rcHyukx46h1z6oeo/W2O1Jhl7TXXpcqqpR24yi4yDWux+P5JciDVMFAmiS2yQxEfq+oaqIEpz+CsSbyOIo1O5IrKrUlknQujCmNcNc0GPLXCLJSy+P6m0baGbs9iQ//ec3dD8iyt8Cx6QARQUiJBMXbOO/f3Btv1t4rzGLAywChETou0tVECXojkN0HMii3iifTT/4c+fs+yIaM0w5SzVzmdjoQbxcuGWIb0sceLqVKCqQeDgQs967NWKdjgHqAgG5qmWRYGRO+cobWN16II4l4As2VqvymZIF0pL4FEfy7gWdGUb3Wumx25P87T/+p2H77F69Pl6uOMRy7DcpjpapJoO2zyOikJzHsli4mpVDkMCSgVASjseMabiHFqBjHKJZ4FPWbMiwgXsrkM5iX5mhfe7DGDCsJ64yF/wzl0jy03+5wkuvvFd2aXJnYp6f/SLMz34RLrfadsFsnBtPSYHEw4GYkE4O2j95ByGdovHL4lu6CikQMhCzQvcEnP4GomW878gidH8Fp++D2ADcAmZKeJpYwb4yw57pX0P5Z3z3U+ZUjdffvcUPel/jpVfe0zxWcvX6OC+98h4/6H2tkvGVGDo/Biba0LS7ezwcGPb4g6fsH7/RBc+zeMSBVOQ8TssiSAJk7RBagdBd+TycnmY42QRdjo1+RAmiKbiSgNASxDLIU1qswBhQqgYzm8E+eZ8907/GIqVC5W5KFg8HRI8/2Id8eE5ZvP7uLV5/91Ytjz+o6hmN2xk954P0CYmpG/aP33C17uhGfHZ3UceWBGRXQHICAkQzyuRCrTUQAUgDn1FaHIB97OucOKLo3zxsDcq55MNUeEZIbopIlc8B0bUjuok+NE93V+q33UJiCue1N3C+X/o8CyEFlnmKtxvUmAc+RJM4dox9wr47b2GRUiIGfU3j4UA/m39EeqSKOxSaoHPBlDLg1kc6Reubv8X+5j1IFPcjpME6B5ZljZGkgdvAHyhZ2giLWZrH7rDz/yIgtxu6yzk0pwin2bwT/0bKObXVRB+6l98pu+L1WTIpXB9GsL6+iHBdgpkijfcsCEtgnQUhKV9vICeM3yr/F0FYzGK9k8Fx6x47P30HqiMOlJKom80nElMcNaKs9am5g0salqdE9/hbWD5bRng7g/B2Bj4tIhZJbsBbRbmNIkyD8AXy3NMIsjDShb0Ki1ksExK2P2awfpHBfn8S9/hbWDKpGFUQR15aRWSRjFQj/DIwxVFD9DTS1xAPB6Ief/B4w/LUZff4W77pw8+SmWlB+CBPHO3K/r125e8EsCDfF2aykJvFYoVso7wKK+sQwArCchYygKT8nUfD8lROHCFq0IOjhN/n8QdvYuwBlXoQkbuuR+oU97akoh0O4uFALB4OHG9Ynhrc/cfLYmNi3WSsmSxMZOHLLHwkwZ8k+XoiTxwAGbmEEBazWKYlLPclhHn5er04msXPcI+/LVoyqf54OHC6lt2byklIx6l94z0CHDdYHDGN7sQSpXNUYzh63VaKnrgiajcM2QIkHg6ct2SSx93jb420fXMdSyZVeaDrsK7MszP+Lq4714YtmWRHJcd2VZjWqHI4aB8G7d5XhBjyEWXdVRgl1zqJc6TE8xBLuclD14TQStBpl+qzMHyjK48/6M3YmgcS7mM9izu/45Ks9orCs67M0yTeFp0zn1ywpuZHNtt0CuWIt7Po2+G8FBHgUrWrUx5/8EYJu6PI7TuxRDguYJwim0AjH+us+9ThCtNXsV1V2wnO4w+60o3tPQvuYycz9pae5I6DLq1+LZkUtpQYsy1NR1xf/+aK0Ud1VSm9PuSTlk5RnlgiwBXkGbmxGtnsQj62uUfFHs1VWGWP44sUPmtlGHlAU1NYBqexIrtqtlWixx/03n/ktE+yNfoyDS0gH1riArCkl0TJ1nTTujJPpqElcuDjV2ObraQoI71dyEJxIW8p4cu7HQVmkatQsXqPhCuZqEexVUT+qkbLDMvHquBEaij4rWiXiYmJiYmJiYmJiYmJiYmJiYmJiYmJiYmJiYmJiYnJ1uL/AZyOvS9Ogz+WAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE3LTA5LTEzVDEyOjM2OjM5KzAwOjAwHTWDqAAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNy0wOS0xM1QxMjozNjozOSswMDowMGxoOxQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAAElFTkSuQmCC\",\n    \"imageUserLogo\": null,\n    \"imageIcon\": \"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\",\n    \"imageSplashPortrait\": null,\n    \"imageSplashLandscape\": null,\n    \"createdAt\": \"2018-10-19 19:37:02\",\n    \"updatedAt\": \"2018-10-19 19:37:02\",\n    \"pageLoginMessage\": null\n}"}],"_postman_id":"8745862f-ba47-4c10-98da-2ec8c91a4da2"},{"name":"Branding Security","id":"8d7646f5-7ce5-4184-a944-ca3cc866f14b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"oauth2\",\n    \"editCLID\": false,\n    \"spLoginUrl\": \"https://localhost:8444/simplesaml/saml2/idp/SSOService.php?spentityid=http://localhost/api/v2/saml2/localsaml/metadata&RelayState=http://locahost/!%23/\",\n    \"idpLoginUrl\": \"https://localhost:8444/simplesaml/saml2/idp/SSOService.php?spentityid=http://localhost/api/v2/saml2/localsaml/metadata&RelayState=http://localhost:8080/#!/\",\n    \"id\": 2,\n    \"hostnameId\": 8\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/security","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","security"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"077ae9c3-3d17-48dc-ba22-e009aae6d9a4","name":"Branding Modules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/modules?hostnameId=16","host":["{{url}}"],"path":["api","v2","branding","modules"],"query":[{"key":"hostnameId","value":"16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 19:44:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"hostnameId\": \"16\",\n        \"name\": \"Account/Authorization Codes\",\n        \"description\": \"Account and Authorization Codes\",\n        \"alias\": \"Account/Authorization Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-10-19 19:43:30\",\n        \"updatedAt\": \"2018-10-19 19:43:30\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 2,\n        \"hostnameId\": \"16\",\n        \"name\": \"Advice Of Charge\",\n        \"description\": \"Advice Of Charge\",\n        \"alias\": \"Advice Of Charge\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 3,\n        \"hostnameId\": \"16\",\n        \"name\": \"Alternate Numbers\",\n        \"description\": \"Alternate Numbers\",\n        \"alias\": \"Alternate Numbers\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 4,\n        \"hostnameId\": \"16\",\n        \"name\": \"Anonymous Call Rejection\",\n        \"description\": \"Anonymous Call Rejection\",\n        \"alias\": \"Anonymous Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 6,\n        \"hostnameId\": \"16\",\n        \"name\": \"Authentication\",\n        \"description\": \"Authentication\",\n        \"alias\": \"Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 7,\n        \"hostnameId\": \"16\",\n        \"name\": \"Auto Attendant\",\n        \"description\": \"Auto Attendant\",\n        \"alias\": \"Auto Attendant\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 9,\n        \"hostnameId\": \"16\",\n        \"name\": \"Auto Attendant Report\",\n        \"description\": \"Auto Attendant Report\",\n        \"alias\": \"Auto Attendant Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 10,\n        \"hostnameId\": \"16\",\n        \"name\": \"Automatic Callback\",\n        \"description\": \"Automatic Callback\",\n        \"alias\": \"Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 11,\n        \"hostnameId\": \"16\",\n        \"name\": \"Automatic Hold/Retrieve\",\n        \"description\": \"Automatic Hold/Retrieve\",\n        \"alias\": \"Automatic Hold/Retrieve\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 12,\n        \"hostnameId\": \"16\",\n        \"name\": \"Barge-in Exempt\",\n        \"description\": \"Barge-in Exempt\",\n        \"alias\": \"Barge-in Exempt\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 13,\n        \"hostnameId\": \"16\",\n        \"name\": \"Basic Call Logs\",\n        \"description\": \"Basic Call Logs\",\n        \"alias\": \"Basic Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 15,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Agent\",\n        \"description\": \"BroadWorks Agent\",\n        \"alias\": \"BroadWorks Agent\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 16,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Anywhere\",\n        \"description\": \"BroadWorks Anywhere\",\n        \"alias\": \"BroadWorks Anywhere\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 17,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Mobility\",\n        \"description\": \"BroadWorks Mobility\",\n        \"alias\": \"BroadWorks Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 20,\n        \"hostnameId\": \"16\",\n        \"name\": \"BroadWorks Supervisor\",\n        \"description\": \"BroadWorks Supervisor\",\n        \"alias\": \"BroadWorks Supervisor\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 21,\n        \"hostnameId\": \"16\",\n        \"name\": \"Busy Lamp Field\",\n        \"description\": \"Busy Lamp Field\",\n        \"alias\": \"Busy Lamp Field\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 22,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Capacity Management\",\n        \"description\": \"Call Capacity Management\",\n        \"alias\": \"Call Capacity Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 23,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Center\",\n        \"description\": \"Call Center\",\n        \"alias\": \"Call Center\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 27,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Center Monitoring\",\n        \"description\": \"Call Center Monitoring\",\n        \"alias\": \"Call Center Monitoring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 29,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Always\",\n        \"description\": \"Call Forwarding Always\",\n        \"alias\": \"Call Forwarding Always\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 30,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Busy\",\n        \"description\": \"Call Forwarding Busy\",\n        \"alias\": \"Call Forwarding Busy\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 31,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding No Answer\",\n        \"description\": \"Call Forwarding No Answer\",\n        \"alias\": \"Call Forwarding No Answer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 32,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Not Reachable\",\n        \"description\": \"Call Forwarding Not Reachable\",\n        \"alias\": \"Call Forwarding Not Reachable\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 33,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Forwarding Selective\",\n        \"description\": \"Call Forwarding Selective\",\n        \"alias\": \"Call Forwarding Selective\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 34,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Notify\",\n        \"description\": \"Call Notify\",\n        \"alias\": \"Call Notify\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 35,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Park\",\n        \"description\": \"Call Park\",\n        \"alias\": \"Call Park\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 36,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Pickup\",\n        \"description\": \"Call Pickup\",\n        \"alias\": \"Call Pickup\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 37,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Recording\",\n        \"description\": \"Call Recording\",\n        \"alias\": \"Call Recording\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 38,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Return\",\n        \"description\": \"Call Return\",\n        \"alias\": \"Call Return\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 39,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Transfer\",\n        \"description\": \"Call Transfer\",\n        \"alias\": \"Call Transfer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 40,\n        \"hostnameId\": \"16\",\n        \"name\": \"Call Waiting\",\n        \"description\": \"Call Waiting\",\n        \"alias\": \"Call Waiting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 41,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Line ID Blocking Override\",\n        \"description\": \"Calling Line ID Blocking Override\",\n        \"alias\": \"Calling Line ID Blocking Override\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 42,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Line ID Delivery Blocking\",\n        \"description\": \"Calling Line ID Delivery Blocking\",\n        \"alias\": \"Calling Line ID Delivery Blocking\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 43,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Name Delivery\",\n        \"description\": \"Calling Name Delivery\",\n        \"alias\": \"Calling Name Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 44,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Name Retrieval\",\n        \"description\": \"Calling Name Retrieval\",\n        \"alias\": \"Calling Name Retrieval\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 45,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Number Delivery\",\n        \"description\": \"Calling Number Delivery\",\n        \"alias\": \"Calling Number Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 46,\n        \"hostnameId\": \"16\",\n        \"name\": \"Calling Party Category\",\n        \"description\": \"Calling Party Category\",\n        \"alias\": \"Calling Party Category\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 47,\n        \"hostnameId\": \"16\",\n        \"name\": \"Cds Call Logs\",\n        \"description\": \"Cds Call Logs\",\n        \"alias\": \"Cds Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 48,\n        \"hostnameId\": \"16\",\n        \"name\": \"Charge Number\",\n        \"description\": \"Charge Number\",\n        \"alias\": \"Charge Number\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 51,\n        \"hostnameId\": \"16\",\n        \"name\": \"Client Call Control\",\n        \"description\": \"Client Call Control\",\n        \"alias\": \"Client Call Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 76,\n        \"hostnameId\": \"16\",\n        \"name\": \"Communication Barring User-Control\",\n        \"description\": \"Communication Barring User-Control\",\n        \"alias\": \"Communication Barring User-Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 77,\n        \"hostnameId\": \"16\",\n        \"name\": \"Connected Line Identification Presentation\",\n        \"description\": \"Connected Line Identification Presentation\",\n        \"alias\": \"Connected Line Identification Presentation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 78,\n        \"hostnameId\": \"16\",\n        \"name\": \"Connected Line Identification Restriction\",\n        \"description\": \"Connected Line Identification Restriction\",\n        \"alias\": \"Connected Line Identification Restriction\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 84,\n        \"hostnameId\": \"16\",\n        \"name\": \"Customer Originated Trace\",\n        \"description\": \"Customer Originated Trace\",\n        \"alias\": \"Customer Originated Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 86,\n        \"hostnameId\": \"16\",\n        \"name\": \"Directed Call Pickup with Barge-in\",\n        \"description\": \"Directed Call Pickup with Barge-in\",\n        \"alias\": \"Directed Call Pickup with Barge-in\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 87,\n        \"hostnameId\": \"16\",\n        \"name\": \"Directory Number Hunting\",\n        \"description\": \"Directory Number Hunting\",\n        \"alias\": \"Directory Number Hunting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 89,\n        \"hostnameId\": \"16\",\n        \"name\": \"Do Not Disturb\",\n        \"description\": \"Do Not Disturb\",\n        \"alias\": \"Do Not Disturb\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 91,\n        \"hostnameId\": \"16\",\n        \"name\": \"Emergency Zones\",\n        \"description\": \"Emergency Zones\",\n        \"alias\": \"Emergency Zones\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 93,\n        \"hostnameId\": \"16\",\n        \"name\": \"Enhanced Outgoing Calling Plan\",\n        \"description\": \"Enhanced Outgoing Calling Plan\",\n        \"alias\": \"Enhanced Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 94,\n        \"hostnameId\": \"16\",\n        \"name\": \"External Calling Line ID Delivery\",\n        \"description\": \"External Calling Line ID Delivery\",\n        \"alias\": \"External Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 96,\n        \"hostnameId\": \"16\",\n        \"name\": \"Fax Messaging\",\n        \"description\": \"Fax Messaging\",\n        \"alias\": \"Fax Messaging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 98,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Calling Plans\",\n        \"description\": \"Group Calling Plans\",\n        \"alias\": \"Group Calling Plans\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 99,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Paging\",\n        \"description\": \"Group Paging\",\n        \"alias\": \"Group Paging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 101,\n        \"hostnameId\": \"16\",\n        \"name\": \"Historical Call Records\",\n        \"description\": \"Historical Call Records\",\n        \"alias\": \"Historical Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 102,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hoteling Guest\",\n        \"description\": \"Hoteling Guest\",\n        \"alias\": \"Hoteling Guest\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 103,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hoteling Host\",\n        \"description\": \"Hoteling Host\",\n        \"alias\": \"Hoteling Host\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 104,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hunt Group\",\n        \"description\": \"Hunt Group\",\n        \"alias\": \"Hunt Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 105,\n        \"hostnameId\": \"16\",\n        \"name\": \"Hunt Group Report\",\n        \"description\": \"Hunt Group Report\",\n        \"alias\": \"Hunt Group Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 107,\n        \"hostnameId\": \"16\",\n        \"name\": \"In-Call Service Activation\",\n        \"description\": \"In-Call Service Activation\",\n        \"alias\": \"In-Call Service Activation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 108,\n        \"hostnameId\": \"16\",\n        \"name\": \"Incoming Calling Plan\",\n        \"description\": \"Incoming Calling Plan\",\n        \"alias\": \"Incoming Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 109,\n        \"hostnameId\": \"16\",\n        \"name\": \"Instant Conferencing\",\n        \"description\": \"Instant Conferencing\",\n        \"alias\": \"Instant Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 110,\n        \"hostnameId\": \"16\",\n        \"name\": \"Instant Group Call\",\n        \"description\": \"Instant Group Call\",\n        \"alias\": \"Instant Group Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 111,\n        \"hostnameId\": \"16\",\n        \"name\": \"Integrated IMP\",\n        \"description\": \"Integrated IMP\",\n        \"alias\": \"Integrated IMP\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 112,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intelligent Network Service Control\",\n        \"description\": \"Intelligent Network Service Control\",\n        \"alias\": \"Intelligent Network Service Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 113,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intercept Group\",\n        \"description\": \"Intercept Group\",\n        \"alias\": \"Intercept Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 114,\n        \"hostnameId\": \"16\",\n        \"name\": \"Intercept User\",\n        \"description\": \"Intercept User\",\n        \"alias\": \"Intercept User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 115,\n        \"hostnameId\": \"16\",\n        \"name\": \"Internal Calling Line ID Delivery\",\n        \"description\": \"Internal Calling Line ID Delivery\",\n        \"alias\": \"Internal Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 116,\n        \"hostnameId\": \"16\",\n        \"name\": \"Inventory Report\",\n        \"description\": \"Inventory Report\",\n        \"alias\": \"Inventory Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 117,\n        \"hostnameId\": \"16\",\n        \"name\": \"Last Number Redial\",\n        \"description\": \"Last Number Redial\",\n        \"alias\": \"Last Number Redial\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 118,\n        \"hostnameId\": \"16\",\n        \"name\": \"LDAP Integration\",\n        \"description\": \"LDAP Integration\",\n        \"alias\": \"LDAP Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 119,\n        \"hostnameId\": \"16\",\n        \"name\": \"Legacy Automatic Callback\",\n        \"description\": \"Legacy Automatic Callback\",\n        \"alias\": \"Legacy Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 120,\n        \"hostnameId\": \"16\",\n        \"name\": \"Location-Based Calling Restrictions\",\n        \"description\": \"Location-Based Calling Restrictions\",\n        \"alias\": \"Location-Based Calling Restrictions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 121,\n        \"hostnameId\": \"16\",\n        \"name\": \"Malicious Call Trace\",\n        \"description\": \"Malicious Call Trace\",\n        \"alias\": \"Malicious Call Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 122,\n        \"hostnameId\": \"16\",\n        \"name\": \"Meet-Me Conferencing\",\n        \"description\": \"Meet-Me Conferencing\",\n        \"alias\": \"Meet-Me Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 123,\n        \"hostnameId\": \"16\",\n        \"name\": \"Mobile Extension to Extension Dialing\",\n        \"description\": \"Mobile Extension to Extension Dialing\",\n        \"alias\": \"Mobile Extension to Extension Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 124,\n        \"hostnameId\": \"16\",\n        \"name\": \"Mobility\",\n        \"description\": \"Mobility\",\n        \"alias\": \"Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 125,\n        \"hostnameId\": \"16\",\n        \"name\": \"Multiple Call Arrangement\",\n        \"description\": \"Multiple Call Arrangement\",\n        \"alias\": \"Multiple Call Arrangement\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 126,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold\",\n        \"description\": \"Music On Hold\",\n        \"alias\": \"Music On Hold\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 127,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold - Video\",\n        \"description\": \"Music On Hold - Video\",\n        \"alias\": \"Music On Hold - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 128,\n        \"hostnameId\": \"16\",\n        \"name\": \"Music On Hold User\",\n        \"description\": \"Music On Hold User\",\n        \"alias\": \"Music On Hold User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 129,\n        \"hostnameId\": \"16\",\n        \"name\": \"MWI Delivery to Mobile Endpoint\",\n        \"description\": \"MWI Delivery to Mobile Endpoint\",\n        \"alias\": \"MWI Delivery to Mobile Endpoint\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 130,\n        \"hostnameId\": \"16\",\n        \"name\": \"N-Way Call\",\n        \"description\": \"N-Way Call\",\n        \"alias\": \"N-Way Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 131,\n        \"hostnameId\": \"16\",\n        \"name\": \"Office Communicator Tab\",\n        \"description\": \"Office Communicator Tab\",\n        \"alias\": \"Office Communicator Tab\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 132,\n        \"hostnameId\": \"16\",\n        \"name\": \"Outgoing Calling Plan\",\n        \"description\": \"Outgoing Calling Plan\",\n        \"alias\": \"Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 133,\n        \"hostnameId\": \"16\",\n        \"name\": \"Outlook Integration\",\n        \"description\": \"Outlook Integration\",\n        \"alias\": \"Outlook Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 134,\n        \"hostnameId\": \"16\",\n        \"name\": \"Package Management\",\n        \"description\": \"Package Management\",\n        \"alias\": \"Package Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 135,\n        \"hostnameId\": \"16\",\n        \"name\": \"Physical Location\",\n        \"description\": \"Physical Location\",\n        \"alias\": \"Physical Location\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 136,\n        \"hostnameId\": \"16\",\n        \"name\": \"Polycom Phone Services\",\n        \"description\": \"Polycom Phone Services\",\n        \"alias\": \"Polycom Phone Services\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 138,\n        \"hostnameId\": \"16\",\n        \"name\": \"Preferred Carrier Group\",\n        \"description\": \"Preferred Carrier Group\",\n        \"alias\": \"Preferred Carrier Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 139,\n        \"hostnameId\": \"16\",\n        \"name\": \"Preferred Carrier User\",\n        \"description\": \"Preferred Carrier User\",\n        \"alias\": \"Preferred Carrier User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 140,\n        \"hostnameId\": \"16\",\n        \"name\": \"Premium Call Records\",\n        \"description\": \"Premium Call Records\",\n        \"alias\": \"Premium Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 142,\n        \"hostnameId\": \"16\",\n        \"name\": \"Priority Alert\",\n        \"description\": \"Priority Alert\",\n        \"alias\": \"Priority Alert\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 144,\n        \"hostnameId\": \"16\",\n        \"name\": \"Provisioning\",\n        \"description\": \"Provisioning\",\n        \"alias\": \"Provisioning\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 145,\n        \"hostnameId\": \"16\",\n        \"name\": \"Push to Talk\",\n        \"description\": \"Push to Talk\",\n        \"alias\": \"Push to Talk\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 146,\n        \"hostnameId\": \"16\",\n        \"name\": \"Remote Office\",\n        \"description\": \"Remote Office\",\n        \"alias\": \"Remote Office\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 148,\n        \"hostnameId\": \"16\",\n        \"name\": \"Schedules\",\n        \"description\": \"Schedules\",\n        \"alias\": \"Schedules\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 149,\n        \"hostnameId\": \"16\",\n        \"name\": \"Selective Call Acceptance\",\n        \"description\": \"Selective Call Acceptance\",\n        \"alias\": \"Selective Call Acceptance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 150,\n        \"hostnameId\": \"16\",\n        \"name\": \"Selective Call Rejection\",\n        \"description\": \"Selective Call Rejection\",\n        \"alias\": \"Selective Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 151,\n        \"hostnameId\": \"16\",\n        \"name\": \"Sequential Ring\",\n        \"description\": \"Sequential Ring\",\n        \"alias\": \"Sequential Ring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 152,\n        \"hostnameId\": \"16\",\n        \"name\": \"Series Completion\",\n        \"description\": \"Series Completion\",\n        \"alias\": \"Series Completion\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 153,\n        \"hostnameId\": \"16\",\n        \"name\": \"Service Packs\",\n        \"description\": \"Service Packs\",\n        \"alias\": \"Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 156,\n        \"hostnameId\": \"16\",\n        \"name\": \"Shared Call Appearance\",\n        \"description\": \"Shared Call Appearance\",\n        \"alias\": \"Shared Call Appearance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 165,\n        \"hostnameId\": \"16\",\n        \"name\": \"Simultaneous Ring Personal\",\n        \"description\": \"Simultaneous Ring Personal\",\n        \"alias\": \"Simultaneous Ring Personal\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 169,\n        \"hostnameId\": \"16\",\n        \"name\": \"Speed Dial 100\",\n        \"description\": \"Speed Dial 100\",\n        \"alias\": \"Speed Dial 100\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 170,\n        \"hostnameId\": \"16\",\n        \"name\": \"Speed Dial 8\",\n        \"description\": \"Speed Dial 8\",\n        \"alias\": \"Speed Dial 8\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 175,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group\",\n        \"description\": \"Trunk Group\",\n        \"alias\": \"Trunk Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 176,\n        \"hostnameId\": \"16\",\n        \"name\": \"Two-Stage Dialing\",\n        \"description\": \"Two-Stage Dialing\",\n        \"alias\": \"Two-Stage Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 177,\n        \"hostnameId\": \"16\",\n        \"name\": \"User Report\",\n        \"description\": \"User Report\",\n        \"alias\": \"User Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 178,\n        \"hostnameId\": \"16\",\n        \"name\": \"VDM\",\n        \"description\": \"VDM\",\n        \"alias\": \"VDM\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 181,\n        \"hostnameId\": \"16\",\n        \"name\": \"Viewable Service Packs\",\n        \"description\": \"Viewable Service Packs\",\n        \"alias\": \"Viewable Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 182,\n        \"hostnameId\": \"16\",\n        \"name\": \"Virtual On-Net Enterprise Extensions\",\n        \"description\": \"Virtual On-Net Enterprise Extensions\",\n        \"alias\": \"Virtual On-Net Enterprise Extensions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 183,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging Group\",\n        \"description\": \"Voice Messaging Group\",\n        \"alias\": \"Voice Messaging Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 184,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging User\",\n        \"description\": \"Voice Messaging User\",\n        \"alias\": \"Voice Messaging User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 186,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Portal Calling\",\n        \"description\": \"Voice Portal Calling\",\n        \"alias\": \"Voice Portal Calling\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 188,\n        \"hostnameId\": \"16\",\n        \"name\": \"Voice Messaging User - Advanced\",\n        \"description\": \"Voice Messaging User - Advanced\",\n        \"alias\": \"Voice Messaging User - Advanced\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 189,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group - Authentication\",\n        \"description\": \"Trunk Group - Authentication\",\n        \"alias\": \"Trunk Group - Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 190,\n        \"hostnameId\": \"16\",\n        \"name\": \"VDM - Custom Config\",\n        \"description\": \"VDM - Custom Config\",\n        \"alias\": \"VDM - Custom Config\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 191,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Night Forwarding\",\n        \"description\": \"Group Night Forwarding\",\n        \"alias\": \"Group Night Forwarding\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 192,\n        \"hostnameId\": \"16\",\n        \"name\": \"Collaborate - Audio\",\n        \"description\": \"Collaborate - Audio\",\n        \"alias\": \"Collaborate - Audio\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 193,\n        \"hostnameId\": \"16\",\n        \"name\": \"Collaborate - Video\",\n        \"description\": \"Collaborate - Video\",\n        \"alias\": \"Collaborate - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 194,\n        \"hostnameId\": \"16\",\n        \"name\": \"Trunk Group - Pilot User\",\n        \"description\": \"Trunk Group - Pilot User\",\n        \"alias\": \"Trunk Group - Pilot User\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-10 17:35:14\",\n        \"updatedAt\": \"2018-07-10 17:35:14\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 196,\n        \"hostnameId\": \"16\",\n        \"name\": \"Routing Profile\",\n        \"description\": \"Routing Profile\",\n        \"alias\": \"Routing Profile\",\n        \"url\": null,\n        \"createdAt\": \"2018-08-02 18:57:18\",\n        \"updatedAt\": \"2018-08-02 18:57:18\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 197,\n        \"hostnameId\": \"16\",\n        \"name\": \"Privacy\",\n        \"description\": \"Privacy\",\n        \"alias\": \"Privacy\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-11 19:38:15\",\n        \"updatedAt\": \"2018-09-11 19:38:15\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"id\": 198,\n        \"hostnameId\": \"16\",\n        \"name\": \"Group Feature Access Codes\",\n        \"description\": \"Group Feature Access Codes\",\n        \"alias\": \"Group Feature Access Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-21 16:57:35\",\n        \"updatedAt\": \"2018-09-21 16:57:35\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    }\n]"}],"_postman_id":"8d7646f5-7ce5-4184-a944-ca3cc866f14b"},{"name":"Branding General Settings","id":"3d1c2d63-6964-43ba-8dec-34dc9a275518","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=emailTemplates","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"emailTemplates"}],"variable":[]}},"response":[{"id":"20847dd3-bd3d-4f8a-bbd4-80a8b30451b3","name":"Branding General Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=emailTemplates","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"emailTemplates"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"hostnameId\": 2,\n    \"key\": \"emailTemplates\",\n    \"value\": [\n        {\n            \"name\": \"welcomeMessage\",\n            \"subject\": \"welcome to odin\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}"}],"_postman_id":"3d1c2d63-6964-43ba-8dec-34dc9a275518"},{"name":"Branding General Settings","id":"ed1d2c46-b977-4b88-98c9-74b1f9a0b860","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 3,\n    \"hostnameId\": 2,\n    \"key\": \"emailTemplates\",\n    \"value\": [\n        {\n            \"name\": \"welcomeMessage\",\n            \"subject\": \"welcome to odin\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"disabled":true,"key":"hostnameId","value":"2"},{"disabled":true,"key":"key","value":"emailTemplates"}],"variable":[]}},"response":[{"id":"b21f7d18-b106-4275-8b5e-adc11fb9039f","name":"Branding General Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 3,\n    \"hostnameId\": 2,\n    \"key\": \"emailTemplates\",\n    \"value\": [\n        {\n            \"name\": \"welcomeMessage\",\n            \"subject\": \"welcome to odin\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/branding/general-settings","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"2","disabled":true},{"key":"key","value":"emailTemplates","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"hostnameId\": 2,\n    \"key\": \"emailTemplates\",\n    \"value\": [\n        {\n            \"name\": \"welcomeMessage\",\n            \"subject\": \"welcome to odin\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        }\n    ],\n    \"createdAt\": \"2021-06-23T10:19:41+00:00\",\n    \"updatedAt\": \"2021-06-23T14:39:09+00:00\"\n}"}],"_postman_id":"ed1d2c46-b977-4b88-98c9-74b1f9a0b860"},{"name":"Branding General Settings","id":"22fa9ab5-32c2-43a7-97bc-cc09b67e625d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 3,\n    \"hostnameId\": 2,\n    \"key\": \"emailTemplates\",\n    \"value\": [\n        {\n            \"name\": \"welcomeMessage\",\n            \"subject\": \"welcome to odin\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"welcome reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"disabled":true,"key":"hostnameId","value":"2"},{"disabled":true,"key":"key","value":"emailTemplates"}],"variable":[]}},"response":[{"id":"d9d61b51-2998-453b-a048-2f415ecb7f34","name":"Branding General Settings","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 3,\n    \"hostnameId\": 2,\n    \"key\": \"emailTemplates\",\n    \"value\": [\n        {\n            \"name\": \"welcomeMessage\",\n            \"subject\": \"welcome to odin\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"welcome reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/branding/general-settings","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"2","disabled":true},{"key":"key","value":"emailTemplates","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"hostnameId\": 2,\n    \"key\": \"emailTemplates\",\n    \"value\": [\n        {\n            \"name\": \"welcomeMessage\",\n            \"subject\": \"welcome to odin\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"password reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        },\n        {\n            \"name\": \"welcome reset 2\",\n            \"subject\": \"reset your password\",\n            \"emailMessage\": \"<p>{{ firstName }} {{ lastName }} {{ userId }} {{ emailAddressProfile }} {{ password }} {{ passcode }} {{ phoneNumber }},</p><p>We received a request to change your password.</p><p>Click HERE the link below to set a new password:</p><p><a href='{{ passwordResetUrl }}'>Reset My Password</a></p><p>The link is valid for 12 hours.</p></p>If you did not request a password reset for your account, please ignore this message.</p><p>All the best,<br>Your Portals Team</p>\"\n        }\n    ],\n    \"createdAt\": \"2021-06-23T10:19:41+00:00\",\n    \"updatedAt\": \"2021-06-23T14:46:53+00:00\"\n}"}],"_postman_id":"22fa9ab5-32c2-43a7-97bc-cc09b67e625d"},{"name":"Branding General Settings","id":"63567e97-be77-4bde-93fe-f11d4e15d6f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/general-settings?hostnameId=4&key=emailTemplates","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"4"},{"key":"key","value":"emailTemplates"}],"variable":[]}},"response":[{"id":"df474a7d-802b-4dda-9b47-8a200962b26b","name":"Branding General Settings","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=4&key=emailTemplates","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"4"},{"key":"key","value":"emailTemplates"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"63567e97-be77-4bde-93fe-f11d4e15d6f0"},{"name":"Branding General Settings Service Instance Profile","id":"49f04853-4282-41a1-a653-005b35544843","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=serviceInstanceProfile","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"serviceInstanceProfile"}],"variable":[]}},"response":[{"id":"8b7f2a2a-db30-4dd1-9198-79ad5a279211","name":"Branding General Settings User Instance Profile","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=1&key=userInstanceProfile","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"1"},{"key":"key","value":"userInstanceProfile"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Jul 2022 11:18:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"3796"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 18,\n    \"hostnameId\": 1,\n    \"key\": \"userInstanceProfile\",\n    \"value\": [\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"System\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Provisioning\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Reseller\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Service Provider\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Group\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Group Department\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"User\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}"},{"id":"9c647b30-e59b-4c9d-919a-9a78f0485026","name":"Branding General Settings Service Instance Profile","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=1&key=serviceInstanceProfile","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"1"},{"key":"key","value":"serviceInstanceProfile"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Jul 2022 11:21:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2343"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 108,\n    \"hostnameId\": 1,\n    \"key\": \"serviceInstanceProfile\",\n    \"value\": [\n        {\n            \"name\": true,\n            \"alias\": true,\n            \"language\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Provisioning\",\n            \"department\": true,\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"publicUserIdentity\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"name\": true,\n            \"alias\": true,\n            \"language\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Reseller\",\n            \"department\": true,\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"publicUserIdentity\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"name\": true,\n            \"alias\": true,\n            \"language\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Service Provider\",\n            \"department\": true,\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"publicUserIdentity\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"name\": true,\n            \"alias\": true,\n            \"language\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group\",\n            \"department\": true,\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"publicUserIdentity\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"name\": true,\n            \"alias\": true,\n            \"language\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group Department\",\n            \"department\": true,\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"publicUserIdentity\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"name\": true,\n            \"alias\": true,\n            \"language\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"User\",\n            \"department\": true,\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"publicUserIdentity\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        }\n    ],\n    \"createdAt\": \"2022-07-15T11:18:04+00:00\",\n    \"updatedAt\": \"2022-07-15T11:18:04+00:00\"\n}"}],"_postman_id":"49f04853-4282-41a1-a653-005b35544843"},{"name":"Branding General Settings Service Instance Profile","id":"6820a69d-9347-4d38-a4da-297b78f03659","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 17,\n    \"hostnameId\": 1,\n    \"key\": \"serviceInstanceProfile\",\n    \"value\": [\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Provisioning\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Reseller\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Service Provider\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group Department\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"User\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6ad61e8b-f6d1-4363-a033-dd06cac305ac","name":"Branding General Settings Service Instance Profile","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 17,\n    \"hostnameId\": 1,\n    \"key\": \"serviceInstanceProfile\",\n    \"value\": [\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Provisioning\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Reseller\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Service Provider\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group Department\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"User\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Jul 2022 11:15:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2319"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 17,\n    \"hostnameId\": 1,\n    \"key\": \"serviceInstanceProfile\",\n    \"value\": [\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Provisioning\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Reseller\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Service Provider\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group Department\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"User\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": \"2022-07-15T11:15:33+00:00\"\n}"}],"_postman_id":"6820a69d-9347-4d38-a4da-297b78f03659"},{"name":"Branding General Settings Service Instance Profile","id":"b0183bcc-fd59-40bd-a9fc-e790a8422b5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 8,\n    \"hostnameId\": 2,\n    \"key\": \"serviceInstanceProfile\",\n    \"value\": [\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Provisioner\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Reseller\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Service Provider\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group Department\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"User\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dc92a62c-3112-494a-b85a-3f0cf15b97a0","name":"Branding General Settings Service Instance Profile","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 1,\n    \"key\": \"serviceInstanceProfile\",\n    \"value\": [\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Provisioning\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Reseller\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Service Provider\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group Department\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"User\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Jul 2022 11:18:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2343"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 108,\n    \"hostnameId\": 1,\n    \"key\": \"serviceInstanceProfile\",\n    \"value\": [\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Provisioning\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Reseller\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Service Provider\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"Group Department\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        },\n        {\n            \"name\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"loginType\": \"User\",\n            \"countryCode\": true,\n            \"phoneNumber\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"timeZoneDisplayName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"password\": true,\n            \"alias\": true,\n            \"department\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"publicUserIdentity\": true\n        }\n    ],\n    \"updatedAt\": \"2022-07-15T11:18:04+00:00\",\n    \"createdAt\": \"2022-07-15T11:18:04+00:00\",\n}"},{"id":"6ae36aa6-65b8-471e-ab01-7e18ea63d3cf","name":"Branding General Settings User Instance Profile","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 1,\n    \"key\": \"userInstanceProfile\",\n    \"value\": [\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"System\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Provisioning\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Reseller\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Service Provider\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Group\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Group Department\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"User\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Jul 2022 11:19:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"3796"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 18,\n    \"hostnameId\": 1,\n    \"key\": \"userInstanceProfile\",\n    \"value\": [\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"System\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Provisioning\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Reseller\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Service Provider\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Group\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"Group Department\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        },\n        {\n            \"city\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"country\": true,\n            \"language\": true,\n            \"lastName\": true,\n            \"passcode\": true,\n            \"password\": true,\n            \"timeZone\": true,\n            \"extension\": true,\n            \"firstName\": true,\n            \"loginType\": \"User\",\n            \"department\": true,\n            \"phoneNumber\": true,\n            \"addressLine1\": true,\n            \"addressLine2\": true,\n            \"emailAddress\": true,\n            \"addressLocation\": true,\n            \"stateOrProvince\": true,\n            \"zipOrPostalCode\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"callingLineIdLastName\": true,\n            \"networkClassOfService\": true,\n            \"callingLineIdFirstName\": true,\n            \"callingLineIdPhoneNumber\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}"}],"_postman_id":"b0183bcc-fd59-40bd-a9fc-e790a8422b5c"},{"name":"Branding General Settings Service Instance Profile","id":"541eb485-4688-4dd9-ae3e-650bcdf28089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=serviceInstanceProfile","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"serviceInstanceProfile"}],"variable":[]}},"response":[{"id":"36658cfb-55e5-42cd-9161-1178a4101c36","name":"Branding General Settings Service Instance Profile","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=1&key=serviceInstanceProfile","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"1"},{"key":"key","value":"serviceInstanceProfile"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Fri, 15 Jul 2022 11:17:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"541eb485-4688-4dd9-ae3e-650bcdf28089"},{"name":"Branding General Settings Login Allow List","id":"3eb836d3-3e75-4933-a068-29d9a7882688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/general-settings?hostnameId=54&key=loginAllowlist","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"54"},{"key":"key","value":"loginAllowlist"}],"variable":[]}},"response":[{"id":"a1847477-3658-447d-8121-05a85e89f679","name":"Branding General Settings Login Allow List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=54&key=loginAllowlist","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"54"},{"key":"key","value":"loginAllowlist"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Aug 2022 14:14:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2325"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 197,\n    \"hostnameId\": 54,\n    \"key\": \"loginAllowList\",\n    \"value\": {\n        \"users\": [\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"odin.lab.slatsa.reseller\",\n                \"enabled\": true,\n                \"groupId\": null,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"Test reseller 1\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"odin.lab.slatsa.reseller@internal.ccivoiplab.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-prov\",\n                \"enabled\": true,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa-Prov\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Provisioning\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-prov@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin.domain\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"User\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"isAlternateUserId\": false,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"add\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-reseller\",\n                \"enabled\": false,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"resPankaj\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-reseller@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-grp\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Group\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-grp@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"dept\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-dept\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Dept\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group Department\",\n                \"isEnterprise\": true,\n                \"departmentName\": \"DepartmentABC\",\n                \"broadworksUserId\": \"slatsa-dept@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            }\n        ],\n        \"domains\": [\n            {\n                \"domain\": \"odinapi.net\"\n            }\n        ],\n        \"enabled\": true\n    },\n    \"createdAt\": \"2022-08-02T22:22:26+00:00\",\n    \"updatedAt\": \"2022-08-18T12:51:59+00:00\"\n}"}],"_postman_id":"3eb836d3-3e75-4933-a068-29d9a7882688"},{"name":"Branding General Settings Login Allow List","id":"e3bfc66c-eaad-4df3-a13c-60e7bbf800d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 197,\n    \"hostnameId\": 54,\n    \"key\": \"loginAllowList\",\n    \"value\": {\n        \"users\": [\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"odin.lab.slatsa.reseller\",\n                \"enabled\": true,\n                \"groupId\": null,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"Test reseller 1\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"odin.lab.slatsa.reseller@internal.ccivoiplab.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-prov\",\n                \"enabled\": true,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa-Prov\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Provisioning\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-prov@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin.domain\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"User\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"isAlternateUserId\": false,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"add\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-reseller\",\n                \"enabled\": false,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"resPankaj\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-reseller@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-grp\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Group\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-grp@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"dept\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-dept\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Dept\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group Department\",\n                \"isEnterprise\": true,\n                \"departmentName\": \"DepartmentABC\",\n                \"broadworksUserId\": \"slatsa-dept@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            }\n        ],\n        \"domains\": [\n            {\n                \"domain\": \"odinapi.net\"\n            }\n        ],\n        \"enabled\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d643b334-eed9-4d90-b8a9-6876097bef94","name":"Branding General Settings Login Allow List","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 197,\n    \"hostnameId\": 54,\n    \"key\": \"loginAllowList\",\n    \"value\": {\n        \"users\": [\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"odin.lab.slatsa.reseller\",\n                \"enabled\": true,\n                \"groupId\": null,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"Test reseller 1\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"odin.lab.slatsa.reseller@internal.ccivoiplab.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-prov\",\n                \"enabled\": true,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa-Prov\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Provisioning\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-prov@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin.domain\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"User\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"isAlternateUserId\": false,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"add\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-reseller\",\n                \"enabled\": false,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"resPankaj\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-reseller@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-grp\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Group\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-grp@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"dept\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-dept\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Dept\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group Department\",\n                \"isEnterprise\": true,\n                \"departmentName\": \"DepartmentABC\",\n                \"broadworksUserId\": \"slatsa-dept@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            }\n        ],\n        \"domains\": [\n            {\n                \"domain\": \"odinapi.net\"\n            }\n        ],\n        \"enabled\": true\n    },\n    \"createdAt\": \"2022-08-02T22:22:26+00:00\",\n    \"updatedAt\": \"2022-08-18T12:51:59+00:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Aug 2022 14:16:03 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2325"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 197,\n    \"hostnameId\": 54,\n    \"key\": \"loginAllowList\",\n    \"value\": {\n        \"users\": [\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"odin.lab.slatsa.reseller\",\n                \"enabled\": true,\n                \"groupId\": null,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"Test reseller 1\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"odin.lab.slatsa.reseller@internal.ccivoiplab.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-prov\",\n                \"enabled\": true,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa-Prov\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Provisioning\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-prov@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin.domain\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"User\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"isAlternateUserId\": false,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"add\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-reseller\",\n                \"enabled\": false,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"resPankaj\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-reseller@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-grp\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Group\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-grp@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"dept\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-dept\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Dept\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group Department\",\n                \"isEnterprise\": true,\n                \"departmentName\": \"DepartmentABC\",\n                \"broadworksUserId\": \"slatsa-dept@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            }\n        ],\n        \"domains\": [\n            {\n                \"domain\": \"odinapi.net\"\n            }\n        ],\n        \"enabled\": true\n    },\n    \"createdAt\": \"2022-08-02T22:22:26+00:00\",\n    \"updatedAt\": \"2022-08-18T12:51:59+00:00\"\n}"}],"_postman_id":"e3bfc66c-eaad-4df3-a13c-60e7bbf800d4"},{"name":"Branding General Settings Login Allow List","id":"0a7daaaf-3254-4836-8aea-7115a41d7f48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 72,\n    \"key\": \"loginAllowList\",\n    \"value\": {\n        \"users\": [\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"odin.lab.slatsa.reseller\",\n                \"enabled\": true,\n                \"groupId\": null,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"Test reseller 1\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"odin.lab.slatsa.reseller@internal.ccivoiplab.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-prov\",\n                \"enabled\": true,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa-Prov\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Provisioning\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-prov@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin.domain\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"User\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"isAlternateUserId\": false,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"add\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-reseller\",\n                \"enabled\": false,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"resPankaj\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-reseller@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-grp\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Group\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-grp@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"dept\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-dept\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Dept\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group Department\",\n                \"isEnterprise\": true,\n                \"departmentName\": \"DepartmentABC\",\n                \"broadworksUserId\": \"slatsa-dept@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            }\n        ],\n        \"domains\": [\n            {\n                \"domain\": \"odinapi.net\"\n            }\n        ],\n        \"enabled\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"51f2ee5a-12ef-4376-80f3-02255fc1a019","name":"Branding General Settings Login Allow List","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 72,\n    \"key\": \"loginAllowList\",\n    \"value\": {\n        \"users\": [\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"odin.lab.slatsa.reseller\",\n                \"enabled\": true,\n                \"groupId\": null,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"Test reseller 1\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"odin.lab.slatsa.reseller@internal.ccivoiplab.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-prov\",\n                \"enabled\": true,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa-Prov\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Provisioning\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-prov@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin.domain\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"User\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"isAlternateUserId\": false,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"add\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-reseller\",\n                \"enabled\": false,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"resPankaj\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-reseller@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-grp\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Group\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-grp@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"dept\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-dept\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Dept\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group Department\",\n                \"isEnterprise\": true,\n                \"departmentName\": \"DepartmentABC\",\n                \"broadworksUserId\": \"slatsa-dept@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            }\n        ],\n        \"domains\": [\n            {\n                \"domain\": \"odinapi.net\"\n            }\n        ],\n        \"enabled\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Aug 2022 14:20:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"2325"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 200,\n    \"hostnameId\": 72,\n    \"key\": \"loginAllowList\",\n    \"value\": {\n        \"users\": [\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"odin.lab.slatsa.reseller\",\n                \"enabled\": true,\n                \"groupId\": null,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"Test reseller 1\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"odin.lab.slatsa.reseller@internal.ccivoiplab.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-prov\",\n                \"enabled\": true,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa-Prov\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Provisioning\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-prov@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin.domain\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"User\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"grp.odin.user.domain@parkbenchsolutions.com\",\n                \"isAlternateUserId\": false,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"add\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-reseller\",\n                \"enabled\": false,\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Reseller\",\n                \"resellerId\": \"resPankaj\",\n                \"isEnterprise\": false,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-reseller@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-grp\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Group\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group\",\n                \"isEnterprise\": true,\n                \"departmentName\": null,\n                \"broadworksUserId\": \"slatsa-grp@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            },\n            {\n                \"notes\": \"dept\",\n                \"locale\": \"en_US\",\n                \"userId\": \"slatsa-dept\",\n                \"enabled\": true,\n                \"groupId\": \"grp.odin\",\n                \"encoding\": \"ISO-8859-1\",\n                \"lastName\": \"Latsa Dept\",\n                \"firstName\": \"Scott\",\n                \"loginType\": \"Group Department\",\n                \"isEnterprise\": true,\n                \"departmentName\": \"DepartmentABC\",\n                \"broadworksUserId\": \"slatsa-dept@odinapi.net\",\n                \"isAlternateUserId\": true,\n                \"serviceProviderId\": \"ent.odin\",\n                \"passwordExpiresDays\": 2147483647\n            }\n        ],\n        \"domains\": [\n            {\n                \"domain\": \"odinapi.net\"\n            }\n        ],\n        \"enabled\": true\n    },\n    \"createdAt\": \"2022-08-02T22:22:26+00:00\",\n    \"updatedAt\": \"2022-08-26T14:20:11+00:00\"\n}"}],"_postman_id":"0a7daaaf-3254-4836-8aea-7115a41d7f48"},{"name":"Branding General Settings Login Allow List","id":"c85a9fb4-46e1-48b5-94c9-1d3aab265528","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 1,\n    \"key\": \"loginWhitelist\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=serviceInstanceProfile","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"serviceInstanceProfile"}],"variable":[]}},"response":[{"id":"ec55a170-3154-422e-9af7-4afc67a21943","name":"Branding General Settings Login Allow List","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 1,\n    \"key\": \"loginWhitelist\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=serviceInstanceProfile","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"serviceInstanceProfile"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Fri, 15 Jul 2022 13:18:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c85a9fb4-46e1-48b5-94c9-1d3aab265528"},{"name":"Branding General Settings User Instance Profile","id":"af8b6e2d-b60c-4904-b62a-1cf1fd01b813","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=userInstanceProfile","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"userInstanceProfile"}],"variable":[]}},"response":[],"_postman_id":"af8b6e2d-b60c-4904-b62a-1cf1fd01b813"},{"name":"Branding General Settings User Instance Profile","id":"8978268c-3280-4cbe-a573-693e0b017e8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 8,\n    \"hostnameId\": 2,\n    \"key\": \"userInstanceProfile\",\n    \"value\": [\n        {\n            \"loginType\": \"Provisioner\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Reseller\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Service Provider\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Group\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Group Department\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"User\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8978268c-3280-4cbe-a573-693e0b017e8a"},{"name":"Branding General Settings User Instance Profile Copy","id":"d368445e-ca6c-4040-9ede-2fd4f02393c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 8,\n    \"hostnameId\": 2,\n    \"key\": \"userInstanceProfile\",\n    \"value\": [\n        {\n            \"loginType\": \"Provisioner\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Reseller\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Service Provider\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Group\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"Group Department\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        },\n        {\n            \"loginType\": \"User\",\n            \"lastName\": true,\n            \"firstName\": true,\n            \"callingLineIdLastName\": true,\n            \"callingLineIdFirstName\": true,\n            \"nameDialingName\": true,\n            \"hiraganaLastName\": true,\n            \"hiraganaFirstName\": true,\n            \"phoneNumber\": true,\n            \"extension\": true,\n            \"callingLineIdPhoneNumber\": true,\n            \"password\": true,\n            \"department\": true,\n            \"language\": true,\n            \"timeZone\": true,\n            \"alias\": true,\n            \"title\": true,\n            \"pagerPhoneNumber\": true,\n            \"mobilePhoneNumber\": true,\n            \"emailAddress\": true\n        }\n    ],\n    \"createdAt\": null,\n    \"updatedAt\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/branding/general-settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d368445e-ca6c-4040-9ede-2fd4f02393c0"},{"name":"Branding General Settings User Instance Profile","id":"c7b79df6-856c-4698-a014-3b9ed05d75c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=userInstanceProfile","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","branding","general-settings"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"userInstanceProfile"}],"variable":[]}},"response":[{"id":"fbc013eb-95e1-496a-a638-17821792de07","name":"Branding General Settings User Instance Profile","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/branding/general-settings?hostnameId=2&key=userInstanceProfile","host":["{{url}}"],"path":["api","v2","branding","general-settings"],"query":[{"key":"hostnameId","value":"2"},{"key":"key","value":"userInstanceProfile"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Fri, 15 Jul 2022 11:22:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c7b79df6-856c-4698-a014-3b9ed05d75c8"}],"id":"83daa24d-8990-41d5-a587-53c956688639","_postman_id":"83daa24d-8990-41d5-a587-53c956688639","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Callbacks","item":[{"name":"Callback Templates","id":"375b0891-f5bd-4631-8f15-c235811855a0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/callbacks/templates?name=Anonymous Call Rejection","description":"<p>Optional Params</p>\n<ul>\n<li>name: filter by service name (eg: Anonymous Call Rejection)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks","templates"],"host":["{{url}}"],"query":[{"key":"name","value":"Anonymous Call Rejection"}],"variable":[]}},"response":[{"id":"8c9a499a-b9d9-4531-a0a3-7de7bb701ab7","name":"Odin Callback Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/callbacks/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 17:50:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3260"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"Anonymous Call Rejection\",\n        \"path\": \"/services/users/anonymouscallrejection/{{userId}}\",\n        \"method\": \"update\",\n        \"active\": true,\n        \"schema\": {\n            \"type\": \"object\",\n            \"title\": \"Anonymous Call Rejection\",\n            \"properties\": {\n                \"isActive\": {\n                    \"title\": \"Is Active\",\n                    \"type\": \"boolean\"\n                }\n            }\n        },\n        \"created_at\": \"2018-07-05 20:14:37\",\n        \"updated_at\": \"2018-07-16 17:41:00\"\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Call Waiting\",\n        \"path\": \"/services/users/callwaiting/{{userId}}\",\n        \"method\": \"update\",\n        \"active\": true,\n        \"schema\": {\n            \"type\": \"object\",\n            \"title\": \"Call Waiting\",\n            \"properties\": {\n                \"isActive\": {\n                    \"title\": \"Is Active\",\n                    \"type\": \"boolean\"\n                },\n                \"disableCallingLineIdDelivery\": {\n                    \"title\": \"Disable Calling Line ID Delivery\",\n                    \"type\": \"boolean\"\n                }\n            }\n        },\n        \"created_at\": \"2018-07-05 20:14:37\",\n        \"updated_at\": \"2018-07-16 17:41:00\"\n    },\n    {\n        \"id\": 3,\n        \"name\": \"Hoteling Host\",\n        \"path\": \"/services/users/hotelinghost/{{userId}}\",\n        \"method\": \"update\",\n        \"active\": true,\n        \"schema\": {\n            \"type\": \"object\",\n            \"title\": \"Hoteling Host\",\n            \"properties\": {\n                \"isActive\": {\n                    \"title\": \"Is Active\",\n                    \"type\": \"boolean\"\n                },\n                \"enforceAssociationLimit\": {\n                    \"title\": \"Enforce Association Limit\",\n                    \"type\": \"boolean\"\n                },\n                \"associationLimitHours\": {\n                    \"title\": \"Association Limit Hours\",\n                    \"type\": \"integer\",\n                    \"minimum\": 1,\n                    \"maximum\": 999\n                },\n                \"accessLevel\": {\n                    \"title\": \"Access Level\",\n                    \"type\": \"string\",\n                    \"enum\": [\n                        \"Enterprise\",\n                        \"Group\"\n                    ]\n                },\n                \"removeGuestAssociation\": {\n                    \"title\": \"Remove Guest Association\",\n                    \"type\": \"boolean\"\n                }\n            }\n        },\n        \"created_at\": \"2018-07-05 20:14:37\",\n        \"updated_at\": \"2018-07-16 17:41:00\"\n    },\n    {\n        \"id\": 4,\n        \"name\": \"Hoteling Guest\",\n        \"path\": \"/services/users/hotelingguest/{{userId}}\",\n        \"method\": \"update\",\n        \"active\": true,\n        \"schema\": {\n            \"type\": \"object\",\n            \"title\": \"Hoteling Guest\",\n            \"properties\": {\n                \"isActive\": {\n                    \"title\": \"Is Active\",\n                    \"type\": \"boolean\"\n                },\n                \"enableAssociationLimit\": {\n                    \"title\": \"Enable Association Limit\",\n                    \"type\": \"boolean\"\n                },\n                \"associationLimitHours\": {\n                    \"title\": \"Association Limit Hours\",\n                    \"type\": \"integer\",\n                    \"minimum\": 1,\n                    \"maximum\": 999\n                },\n                \"hostUserId\": {\n                    \"title\": \"Host User ID\",\n                    \"type\": \"string\",\n                    \"minLength\": 1,\n                    \"maxLength\": 161\n                }\n            }\n        },\n        \"created_at\": \"2018-07-05 20:14:37\",\n        \"updated_at\": \"2018-07-16 17:41:00\"\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Calling Name Retrieval\",\n        \"path\": \"/services/users/callingnameretrieval/{{userId}}\",\n        \"method\": \"update\",\n        \"active\": true,\n        \"schema\": {\n            \"type\": \"object\",\n            \"title\": \"Calling Name Retrieval\",\n            \"properties\": {\n                \"isActive\": {\n                    \"title\": \"Is Active\",\n                    \"type\": \"boolean\"\n                }\n            }\n        },\n        \"created_at\": \"2018-07-05 20:14:37\",\n        \"updated_at\": \"2018-07-16 17:42:13\"\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Call Forwarding No Answer\",\n        \"path\": \"/services/users/callforwardingnoanswer/{{userId}}\",\n        \"method\": \"update\",\n        \"active\": true,\n        \"schema\": {\n            \"type\": \"object\",\n            \"title\": \"Call Forwarding No Answer\",\n            \"properties\": {\n                \"isActive\": {\n                    \"title\": \"Is Active\",\n                    \"type\": \"boolean\"\n                },\n                \"forwardToPhoneNumber\": {\n                    \"title\": \"Forward To Number\",\n                    \"type\": \"string\",\n                    \"minLength\": 1,\n                    \"maxLength\": 161\n                },\n                \"numberOfRings\": {\n                    \"title\": \"Number of Rings\",\n                    \"type\": \"integer\",\n                    \"enum\": [\n                        0,\n                        2,\n                        3,\n                        4,\n                        5,\n                        6,\n                        7,\n                        8,\n                        9,\n                        10,\n                        11,\n                        12,\n                        13,\n                        14,\n                        15,\n                        16,\n                        17,\n                        18,\n                        19,\n                        20\n                    ]\n                }\n            }\n        },\n        \"created_at\": \"2018-07-05 20:14:37\",\n        \"updated_at\": \"2018-07-16 17:42:13\"\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Busy Lamp Field\",\n        \"path\": \"/services/users/busylampfield/{{userId}}\",\n        \"method\": \"update\",\n        \"active\": true,\n        \"schema\": {\n            \"type\": \"object\",\n            \"title\": \"Busy Lamp Field\",\n            \"properties\": {\n                \"enableCallParkNotification\": {\n                    \"title\": \"Enable Call Park Notification\",\n                    \"type\": \"boolean\"\n                },\n                \"listURI\": {\n                    \"title\": \"List UI\",\n                    \"type\": \"string\",\n                    \"minLength\": 1,\n                    \"maxLength\": 161\n                }\n            }\n        },\n        \"created_at\": \"2018-08-02 18:57:18\",\n        \"updated_at\": \"2018-08-02 18:57:18\"\n    }\n]"}],"_postman_id":"375b0891-f5bd-4631-8f15-c235811855a0"},{"name":"Callback Template","id":"fd7c8552-eeaa-461d-be0c-03cd60c790b1","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/callbacks/templates?id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks","templates"],"host":["{{url}}"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"114039f8-db12-407c-b872-75fcfe37f1b9","name":"Odin Callback Template","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/callbacks/templates?id=1","host":["{{url}}"],"path":["api","v2","callbacks","templates"],"query":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 17:55:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"334"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"name\": \"Anonymous Call Rejection\",\n    \"path\": \"/services/users/anonymouscallrejection/{{userId}}\",\n    \"method\": \"update\",\n    \"active\": true,\n    \"schema\": {\n        \"type\": \"object\",\n        \"title\": \"Anonymous Call Rejection\",\n        \"properties\": {\n            \"isActive\": {\n                \"title\": \"Is Active\",\n                \"type\": \"boolean\"\n            }\n        }\n    },\n    \"created_at\": \"2018-07-05 20:14:37\",\n    \"updated_at\": \"2018-07-16 17:41:00\"\n}"}],"_postman_id":"fd7c8552-eeaa-461d-be0c-03cd60c790b1"},{"name":"Callbacks","id":"8170626e-0baa-46d0-bd7b-22bf3513462c","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/callbacks?active=true","description":"<p>Optional Params</p>\n<ul>\n<li>active: Returns only active callbacks when set to true</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks"],"host":["{{url}}"],"query":[{"key":"active","value":"true"}],"variable":[]}},"response":[{"id":"b3ed268f-d43b-4eb6-b526-3b1de2722b6a","name":"Odin Callbacks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/callbacks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 17:57:11 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"4150"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 3,\n        \"callback_template_id\": 1,\n        \"active\": true,\n        \"serviceProviderId\": null,\n        \"groupId\": null,\n        \"data\": {\n            \"isActive\": true\n        },\n        \"created_at\": \"2018-07-16 20:14:05\",\n        \"updated_at\": \"2018-07-16 20:14:05\",\n        \"template\": {\n            \"id\": 1,\n            \"name\": \"Anonymous Call Rejection\",\n            \"path\": \"/services/users/anonymouscallrejection/{{userId}}\",\n            \"method\": \"update\",\n            \"active\": true,\n            \"schema\": {\n                \"type\": \"object\",\n                \"title\": \"Anonymous Call Rejection\",\n                \"properties\": {\n                    \"isActive\": {\n                        \"title\": \"Is Active\",\n                        \"type\": \"boolean\"\n                    }\n                }\n            },\n            \"created_at\": \"2018-07-05 20:14:37\",\n            \"updated_at\": \"2018-07-16 17:41:00\"\n        }\n    },\n    {\n        \"id\": 5,\n        \"callback_template_id\": 4,\n        \"active\": true,\n        \"serviceProviderId\": null,\n        \"groupId\": null,\n        \"data\": {\n            \"isActive\": true,\n            \"enableAssociationLimit\": true,\n            \"associationLimitHours\": 3,\n            \"hostUserId\": \"\"\n        },\n        \"created_at\": \"2018-07-16 20:14:30\",\n        \"updated_at\": \"2018-07-16 21:05:58\",\n        \"template\": {\n            \"id\": 4,\n            \"name\": \"Hoteling Guest\",\n            \"path\": \"/services/users/hotelingguest/{{userId}}\",\n            \"method\": \"update\",\n            \"active\": true,\n            \"schema\": {\n                \"type\": \"object\",\n                \"title\": \"Hoteling Guest\",\n                \"properties\": {\n                    \"isActive\": {\n                        \"title\": \"Is Active\",\n                        \"type\": \"boolean\"\n                    },\n                    \"enableAssociationLimit\": {\n                        \"title\": \"Enable Association Limit\",\n                        \"type\": \"boolean\"\n                    },\n                    \"associationLimitHours\": {\n                        \"title\": \"Association Limit Hours\",\n                        \"type\": \"integer\",\n                        \"minimum\": 1,\n                        \"maximum\": 999\n                    },\n                    \"hostUserId\": {\n                        \"title\": \"Host User ID\",\n                        \"type\": \"string\",\n                        \"minLength\": 1,\n                        \"maxLength\": 161\n                    }\n                }\n            },\n            \"created_at\": \"2018-07-05 20:14:37\",\n            \"updated_at\": \"2018-07-16 17:41:00\"\n        }\n    },\n    {\n        \"id\": 6,\n        \"callback_template_id\": 2,\n        \"active\": true,\n        \"serviceProviderId\": null,\n        \"groupId\": null,\n        \"data\": {\n            \"isActive\": true,\n            \"disableCallingLineIdDelivery\": true\n        },\n        \"created_at\": \"2018-07-16 20:19:26\",\n        \"updated_at\": \"2018-07-16 21:00:58\",\n        \"template\": {\n            \"id\": 2,\n            \"name\": \"Call Waiting\",\n            \"path\": \"/services/users/callwaiting/{{userId}}\",\n            \"method\": \"update\",\n            \"active\": true,\n            \"schema\": {\n                \"type\": \"object\",\n                \"title\": \"Call Waiting\",\n                \"properties\": {\n                    \"isActive\": {\n                        \"title\": \"Is Active\",\n                        \"type\": \"boolean\"\n                    },\n                    \"disableCallingLineIdDelivery\": {\n                        \"title\": \"Disable Calling Line ID Delivery\",\n                        \"type\": \"boolean\"\n                    }\n                }\n            },\n            \"created_at\": \"2018-07-05 20:14:37\",\n            \"updated_at\": \"2018-07-16 17:41:00\"\n        }\n    },\n    {\n        \"id\": 7,\n        \"callback_template_id\": 5,\n        \"active\": true,\n        \"serviceProviderId\": null,\n        \"groupId\": null,\n        \"data\": {\n            \"isActive\": true\n        },\n        \"created_at\": \"2018-07-16 21:00:27\",\n        \"updated_at\": \"2018-07-16 21:00:27\",\n        \"template\": {\n            \"id\": 5,\n            \"name\": \"Calling Name Retrieval\",\n            \"path\": \"/services/users/callingnameretrieval/{{userId}}\",\n            \"method\": \"update\",\n            \"active\": true,\n            \"schema\": {\n                \"type\": \"object\",\n                \"title\": \"Calling Name Retrieval\",\n                \"properties\": {\n                    \"isActive\": {\n                        \"title\": \"Is Active\",\n                        \"type\": \"boolean\"\n                    }\n                }\n            },\n            \"created_at\": \"2018-07-05 20:14:37\",\n            \"updated_at\": \"2018-07-16 17:42:13\"\n        }\n    },\n    {\n        \"id\": 8,\n        \"callback_template_id\": 3,\n        \"active\": true,\n        \"serviceProviderId\": null,\n        \"groupId\": null,\n        \"data\": {\n            \"isActive\": true,\n            \"enforceAssociationLimit\": true,\n            \"associationLimitHours\": 3,\n            \"accessLevel\": \"Group\",\n            \"removeGuestAssociation\": true\n        },\n        \"created_at\": \"2018-07-16 21:00:47\",\n        \"updated_at\": \"2018-07-16 21:00:47\",\n        \"template\": {\n            \"id\": 3,\n            \"name\": \"Hoteling Host\",\n            \"path\": \"/services/users/hotelinghost/{{userId}}\",\n            \"method\": \"update\",\n            \"active\": true,\n            \"schema\": {\n                \"type\": \"object\",\n                \"title\": \"Hoteling Host\",\n                \"properties\": {\n                    \"isActive\": {\n                        \"title\": \"Is Active\",\n                        \"type\": \"boolean\"\n                    },\n                    \"enforceAssociationLimit\": {\n                        \"title\": \"Enforce Association Limit\",\n                        \"type\": \"boolean\"\n                    },\n                    \"associationLimitHours\": {\n                        \"title\": \"Association Limit Hours\",\n                        \"type\": \"integer\",\n                        \"minimum\": 1,\n                        \"maximum\": 999\n                    },\n                    \"accessLevel\": {\n                        \"title\": \"Access Level\",\n                        \"type\": \"string\",\n                        \"enum\": [\n                            \"Enterprise\",\n                            \"Group\"\n                        ]\n                    },\n                    \"removeGuestAssociation\": {\n                        \"title\": \"Remove Guest Association\",\n                        \"type\": \"boolean\"\n                    }\n                }\n            },\n            \"created_at\": \"2018-07-05 20:14:37\",\n            \"updated_at\": \"2018-07-16 17:41:00\"\n        }\n    },\n    {\n        \"id\": 9,\n        \"callback_template_id\": 8,\n        \"active\": true,\n        \"serviceProviderId\": null,\n        \"groupId\": null,\n        \"data\": {\n            \"enableCallParkNotification\": true,\n            \"listURI\": \"{{ userIdPrefix }}_blf@{{ domain }}\"\n        },\n        \"created_at\": \"2018-08-02 19:01:22\",\n        \"updated_at\": \"2018-08-02 19:01:22\",\n        \"template\": {\n            \"id\": 8,\n            \"name\": \"Busy Lamp Field\",\n            \"path\": \"/services/users/busylampfield/{{userId}}\",\n            \"method\": \"update\",\n            \"active\": true,\n            \"schema\": {\n                \"type\": \"object\",\n                \"title\": \"Busy Lamp Field\",\n                \"properties\": {\n                    \"enableCallParkNotification\": {\n                        \"title\": \"Enable Call Park Notification\",\n                        \"type\": \"boolean\"\n                    },\n                    \"listURI\": {\n                        \"title\": \"List UI\",\n                        \"type\": \"string\",\n                        \"minLength\": 1,\n                        \"maxLength\": 161\n                    }\n                }\n            },\n            \"created_at\": \"2018-08-02 18:57:18\",\n            \"updated_at\": \"2018-08-02 18:57:18\"\n        }\n    }\n]"}],"_postman_id":"8170626e-0baa-46d0-bd7b-22bf3513462c"},{"name":"Callback","id":"25d9b103-2abf-4057-b778-2121991f0f2a","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"active\": true,\n    \"data\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": null,\n        \"numberOfRings\": null\n    },\n    \"callback_template_id\": 6\n}"},"url":"{{url}}/api/v2/callbacks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9300d395-f191-43ac-a93c-6171c4a19679","name":"Odin Callback","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"active\": true,\n    \"data\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": null,\n        \"numberOfRings\": null\n    },\n    \"callback_template_id\": 6\n}"},"url":"{{url}}/api/v2/callbacks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 17:58:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"193"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"active\": true,\n    \"data\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": null,\n        \"numberOfRings\": null\n    },\n    \"callback_template_id\": 6,\n    \"updated_at\": \"2018-10-19 17:58:51\",\n    \"created_at\": \"2018-10-19 17:58:51\",\n    \"id\": 11\n}"}],"_postman_id":"25d9b103-2abf-4057-b778-2121991f0f2a"},{"name":"Callback","id":"04560b14-66d7-40f3-9c08-3d3f983e053a","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/callbacks?id=11","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks"],"host":["{{url}}"],"query":[{"key":"id","value":"11"}],"variable":[]}},"response":[{"id":"c3230d6f-0340-494d-b543-a334a5b38934","name":"Odin Callback","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/callbacks?id=11","host":["{{url}}"],"path":["api","v2","callbacks"],"query":[{"key":"id","value":"11"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 18:00:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 11,\n    \"callback_template_id\": 6,\n    \"active\": true,\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"data\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": null,\n        \"numberOfRings\": null\n    },\n    \"created_at\": \"2018-10-19 17:58:51\",\n    \"updated_at\": \"2018-10-19 17:58:51\"\n}"}],"_postman_id":"04560b14-66d7-40f3-9c08-3d3f983e053a"},{"name":"Callback","id":"93dc8617-91f4-43e5-a3f3-147324c745b7","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 11,\n    \"active\": true,\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"data\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": null,\n        \"numberOfRings\": null\n    }\n}"},"url":"{{url}}/api/v2/callbacks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ae3d2d44-2928-4d2c-b952-ef979e41a4c0","name":"Odin Callback","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 11,\n    \"active\": true,\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"data\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": null,\n        \"numberOfRings\": null\n    }\n}"},"url":"{{url}}/api/v2/callbacks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 18:00:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 11,\n    \"callback_template_id\": 6,\n    \"active\": true,\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"data\": {\n        \"isActive\": false,\n        \"forwardToPhoneNumber\": null,\n        \"numberOfRings\": null\n    },\n    \"created_at\": \"2018-10-19 17:58:51\",\n    \"updated_at\": \"2018-10-19 17:58:51\"\n}"}],"_postman_id":"93dc8617-91f4-43e5-a3f3-147324c745b7"},{"name":"Callback","id":"f37a0c96-d2f0-4b6c-8541-c53341b1efbb","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/callbacks?id=11","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","callbacks"],"host":["{{url}}"],"query":[{"key":"id","value":"11"}],"variable":[]}},"response":[{"id":"cae71666-40ec-447f-9d8d-c0c449cfa73b","name":"Odin Callback","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/callbacks?id=11","host":["{{url}}"],"path":["api","v2","callbacks"],"query":[{"key":"id","value":"11"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Fri, 19 Oct 2018 18:01:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"1"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"f37a0c96-d2f0-4b6c-8541-c53341b1efbb"}],"id":"4326c4af-f0a0-4e55-8694-7ce9bacf13ad","_postman_id":"4326c4af-f0a0-4e55-8694-7ce9bacf13ad","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Connectors","item":[{"name":"Connector","id":"744885cd-ba1d-4d87-8b66-e1deb0569935","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors?name=phonism","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors"],"host":["{{url}}"],"query":[{"key":"name","value":"phonism"}],"variable":[]}},"response":[],"_postman_id":"744885cd-ba1d-4d87-8b66-e1deb0569935"},{"name":"Connectors","id":"5c3b78d1-2fa6-49bd-b866-5e405537464a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/connectors","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c3b78d1-2fa6-49bd-b866-5e405537464a"},{"name":"Connector","id":"ce27bde7-d85e-4195-8f3c-5562cf0400b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"phonism2\",\n    \"enabled\": true,\n    \"active\": false,\n    \"url\": \"https://app.phonism.com/api/v3\",\n    \"key\": \"Vg1JWtxcogZREgvkjSjmnatDur9xiNVH\",\n    \"headerName\": \"x-api-key\",\n    \"headerValue\": \"pHdiAn2N799f6Z3c59quTerZAJ1dYhje81RgbKXv\"\n}"},"url":"{{url}}/api/v2/connectors","description":"<p>Create or update settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce27bde7-d85e-4195-8f3c-5562cf0400b0"},{"name":"Connector Is Active","id":"e8836a8e-5bb1-4ff3-b90d-e72366e75cef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/is-active?name=phonism","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","is-active"],"host":["{{url}}"],"query":[{"key":"name","value":"phonism"}],"variable":[]}},"response":[],"_postman_id":"e8836a8e-5bb1-4ff3-b90d-e72366e75cef"},{"name":"Connectors Is Active","id":"fc29c7d1-74e6-4bb8-8bc1-55db29e79a20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/is-active","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","is-active"],"host":["{{url}}"],"query":[{"disabled":true,"key":"name","value":"phonism"}],"variable":[]}},"response":[],"_postman_id":"fc29c7d1-74e6-4bb8-8bc1-55db29e79a20"},{"name":"Webex Verify (Post back)","id":"3e1bb055-aabe-42de-8636-64f64bed2c04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": \"abc\",\n    \"redirect_url\": \"http://localhost:8080\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/webex/verify","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","webex","verify"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e1bb055-aabe-42de-8636-64f64bed2c04"}],"id":"78907558-e44c-4e40-91c6-ab3ed262a481","description":"<p>Odin specific Settings endpoint</p>\n","event":[{"listen":"prerequest","script":{"id":"bb61742d-19fd-4c05-ad1e-dff45a216f47","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d706ec9a-0774-4fb5-a74a-31a3facb0336","type":"text/javascript","exec":[""]}}],"_postman_id":"78907558-e44c-4e40-91c6-ab3ed262a481","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Email","item":[{"name":"Email Test","id":"c718909a-f2bb-4f16-8155-c63706ff26fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"smtpHost\": \"smtp\",\n    \"smtpPort\": \"587\",\n    \"smtpEncryption\": \"tls\",\n    \"smtpUsername\": \"dev@parkbenchsolutions.com\",\n    \"smtpPassword\": \"smtpPassword\",\n    \"fromEmail\": \"dev@parkbenchsolutions.com\",\n    \"fromName\": \"Developer Test\",\n    \"mailHost\": \"mailHost\",\n    \"mailPort\": \"mailPort\",\n    \"mailUsername\": \"mailUsername\",\n    \"mailPassword\": \"mailPassword\",\n    \"mailEncryption\": \"mailEncryption\",\n    \"mailFromAddress\": \"mailFromAddress\",\n    \"mailFromName\": \"mailFromName\"\n}"},"url":"{{url}}/api/v2/email/test","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","email","test"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c718909a-f2bb-4f16-8155-c63706ff26fc"},{"name":"Email Test Copy","id":"9baeb9f8-f254-4a9a-806f-78869c034f7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"smtpHost\": \"smtp\",\n    \"smtpPort\": \"587\",\n    \"smtpEncryption\": \"tls\",\n    \"smtpUsername\": \"dev@parkbenchsolutions.com\",\n    \"smtpPassword\": \"smtpPassword\",\n    \"fromEmail\": \"dev@parkbenchsolutions.com\",\n    \"fromName\": \"Developer Test\",\n    \"mailHost\": \"mailHost\",\n    \"mailPort\": \"mailPort\",\n    \"mailUsername\": \"mailUsername\",\n    \"mailPassword\": \"mailPassword\",\n    \"mailEncryption\": \"mailEncryption\",\n    \"mailFromAddress\": \"mailFromAddress\",\n    \"mailFromName\": \"mailFromName\"\n}"},"url":"{{url}}/api/v2/email/test","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","email","test"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9baeb9f8-f254-4a9a-806f-78869c034f7b"},{"name":"Email","id":"1864eac2-c1a3-47db-8f98-e1a11d877dd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/email","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","email"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1864eac2-c1a3-47db-8f98-e1a11d877dd6"},{"name":"Send email - WIP","id":"5f7b0377-fac3-4ae9-8422-1d11f1fb2752","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sender\": \"slatsa@parkbenchsolutions.com\",\n    \"recipient\": \"scott.latsa@rev.io\",\n    \"subject\": \"Test Email\",\n    \"content\": \"This is a test email sent from the Flask app with SendGrid.\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5001/send-email","urlObject":{"protocol":"http","port":"5001","path":["send-email"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f7b0377-fac3-4ae9-8422-1d11f1fb2752"}],"id":"2911f445-f0da-46e8-a5fc-b756ec0657e9","_postman_id":"2911f445-f0da-46e8-a5fc-b756ec0657e9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Events","item":[{"name":"Event Types","id":"0e5a48c6-7ef5-4031-9bf9-a7b72669ca00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/events/types","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","events","types"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f2e9148a-f07d-4d5f-a27e-9ed2c3506ec5","name":"Event Types","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/events/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    \"enterprise.enterpriseTrunk.create\",\n    \"enterprise.enterpriseTrunk.delete\",\n    \"enterprise.enterpriseTrunk.update\",\n    \"enterprise.enterpriseTrunk.users.update\",\n    \"group.autoAttendant.create\",\n    \"group.autoAttendant.delete\",\n    \"group.autoAttendant.update\",\n    \"group.callCenter.create\",\n    \"group.callCenter.delete\",\n    \"group.callCenter.update\",\n    \"group.callCenterAgent.create\",\n    \"group.callCenterAgent.delete\",\n    \"group.callCenterAgent.update\",\n    \"group.create\",\n    \"group.delete\",\n    \"group.device.create\",\n    \"group.device.delete\",\n    \"group.device.update\",\n    \"group.device.rebuild\",\n    \"group.device.reset\",\n    \"group.device.tag.create\",\n    \"group.device.tag.update\",\n    \"group.device.tag.delete\",\n    \"group.deviceType.tag.create\",\n    \"group.deviceType.tag.update\",\n    \"group.deviceType.tag.delete\",\n    \"group.dn.create\",\n    \"group.dn.delete\",\n    \"group.dn.update\",\n    \"group.domain.create\",\n    \"group.domain.delete\",\n    \"group.emergencyCallNotification.update\",\n    \"group.enterpriseTrunk.create\",\n    \"group.enterpriseTrunk.delete\",\n    \"group.enterpriseTrunk.update\",\n    \"group.enterpriseTrunk.users.update\",\n    \"group.huntGroup.create\",\n    \"group.huntGroup.delete\",\n    \"group.huntGroup.update\",\n    \"group.incomingCallingPlan.update\",\n    \"group.meetMeConferencing.bridge.create\",\n    \"group.meetMeConferencing.bridge.delete\",\n    \"group.meetMeConferencing.bridge.update\",\n    \"group.meetMeConferencing.ports.update\",\n    \"group.musicOnHold.create\",\n    \"group.musicOnHold.delete\",\n    \"group.musicOnHold.update\",\n    \"group.outgoingCallingPlan.callMeNow.update\",\n    \"group.outgoingCallingPlan.originating.update\",\n    \"group.outgoingCallingPlan.redirected.update\",\n    \"group.outgoingCallingPlan.redirecting.update\",\n    \"group.outgoingCallingPlan.transferNumbers.update\",\n    \"group.outgoingCallingPlan.digitPlan.callMeNow.update\",\n    \"group.outgoingCallingPlan.digitPlan.originating.update\",\n    \"group.outgoingCallingPlan.digitPlan.redirecting.update\",\n    \"group.outgoingCallingPlan.pinholeDigitPlan.callMeNow.update\",\n    \"group.outgoingCallingPlan.pinholeDigitPlan.originating.update\",\n    \"group.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n    \"group.seriesCompletion.update\",\n    \"group.seriesCompletion.create\",\n    \"group.seriesCompletion.delete\",\n    \"group.services.update\",\n    \"group.trunkGroup.callCapacity.update\",\n    \"group.trunkGroup.create\",\n    \"group.trunkGroup.delete\",\n    \"group.trunkGroup.update\",\n    \"group.update\",\n    \"reseller.emergencyCallNotification.update\",\n    \"serviceProvider.create\",\n    \"serviceProvider.update\",\n    \"serviceProvider.delete\",\n    \"serviceProvider.device.create\",\n    \"serviceProvider.device.update\",\n    \"serviceProvider.device.delete\",\n    \"serviceProvider.dn.create\",\n    \"serviceProvider.dn.delete\",\n    \"serviceProvider.domain.create\",\n    \"serviceProvider.emergencyCallNotification.update\",\n    \"serviceProvider.omain.delete\",\n    \"serviceProvider.meetMeConferencing.ports.update\",\n    \"serviceProvider.trunkGroup.callCapacity.update\",\n    \"system.device.create\",\n    \"system.device.update\",\n    \"system.device.delete\",\n    \"system.domain.create\",\n    \"system.domain.delete\",\n    \"system.emergencyCallNotification.update\",\n    \"task.complete\",\n    \"report.complete\",\n    \"user.clone\",\n    \"user.copy\",\n    \"user.move\",\n    \"user.alternateNumbers.update\",\n    \"user.anonymousCallRejection.update\",\n    \"user.adviceOfCharge.update\",\n    \"user.attendantConsole.update\",\n    \"user.automaticCallback.update\",\n    \"user.automaticHoldRetrieve.update\",\n    \"user.bargeInExempt.update\",\n    \"user.broadWorksAnywhere.update\",\n    \"user.broadWorksMobility.update\",\n    \"user.broadWorksReceptionistSmallBusiness.update\",\n    \"user.busyLampField.update\",\n    \"user.userCallForwardingAlways.update\",\n    \"user.callForwardingAlwaysSecondary.update\",\n    \"user.callForwardingBusy.update\",\n    \"user.callForwardingNoAnswer.update\",\n    \"user.callForwardingNotReachable.update\",\n    \"user.callForwardingSelective.update\",\n    \"user.callNotify.update\",\n    \"user.callPolicies.update\",\n    \"user.callRecording.update\",\n    \"user.callTransfer.update\",\n    \"user.callWaiting.update\",\n    \"user.callingLineIDBlockingOverride.update\",\n    \"user.callingLineIDDeliveryBlocking.update\",\n    \"user.callingNameDelivery.update\",\n    \"user.callingNameRetrieval.update\",\n    \"user.callingNumberDelivery.update\",\n    \"user.callingPartyCategory.update\",\n    \"user.chargeNumber.update\",\n    \"user.classmark.update\",\n    \"user.commPilotCallManager.update\",\n    \"user.commPilotExpress.update\",\n    \"user.communicationBarring.update\",\n    \"user.communicationBarringAuthorizationCode.delete\",\n    \"user.communicationBarringAuthorizationCode.create\",\n    \"user.communicationBarringUserControl.update\",\n    \"user.connectedLineIdentificationRestriction.update\",\n    \"user.devicePolicies.update\",\n    \"user.directedCallPickupWithBargeIn.update\",\n    \"user.directRoute.update\",\n    \"user.doNotDisturb.update\",\n    \"user.externalCallingLineIDDelivery.update\",\n    \"user.externalCustomRingback.update\",\n    \"user.faxMessaging.update\",\n    \"user.featureAccessCode.update\",\n    \"user.forgot.password\",\n    \"user.hotelingGuest.update\",\n    \"user.hotelingHost.update\",\n    \"user.inCallServiceActivation.update\",\n    \"user.incomingCallingPlan.update\",\n    \"user.integratedImp.update\",\n    \"user.intercept.update\",\n    \"user.internalCallingLineIDDelivery.update\",\n    \"user.login\",\n    \"user.login.failure\",\n    \"user.login.expired\",\n    \"user.authentication.update\",\n    \"user.create\",\n    \"user.delete\",\n    \"user.group.id.update\",\n    \"user.id.update\",\n    \"user.maliciousCallTrace.update\",\n    \"user.mwiDeliveryToMobileEndpoint.update\",\n    \"user.musicOnHold.update\",\n    \"user.nightForwarding.update\",\n    \"user.numberPortabilityAnnouncement.update\",\n    \"user.ociCallControlApplication.update\",\n    \"user.outgoingCallingPlan.authorizationCode.update\",\n    \"user.outgoingCallingPlan.callMeNow.update\",\n    \"user.outgoingCallingPlan.originating.update\",\n    \"user.outgoingCallingPlan.redirected.update\",\n    \"user.outgoingCallingPlan.redirecting.update\",\n    \"user.outgoingCallingPlan.transferNumbers.update\",\n    \"user.outgoingCallingPlan.digitPlan.callMeNow.update\",\n    \"user.outgoingCallingPlan.digitPlan.originating.update\",\n    \"user.outgoingCallingPlan.digitPlan.redirecting.update\",\n    \"user.outgoingCallingPlan.pinholeDigitPlan.callMeNow.update\",\n    \"user.outgoingCallingPlan.pinholeDigitPlan.originating.update\",\n    \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n    \"user.outlookIntegration.update\",\n    \"user.physicalLocation.update\",\n    \"user.preferredCarrier.update\",\n    \"user.prepaid.update\",\n    \"user.priorityAlert.update\",\n    \"user.priorityAlert.delete\",\n    \"user.privacy.update\",\n    \"user.pushToTalk.update\",\n    \"user.remoteOffice.update\",\n    \"user.routeList.update\",\n    \"user.securityClassification.update\",\n    \"user.sharedCallAppearance.update\",\n    \"user.sharedCallAppearanceEndpoint.create\",\n    \"user.sharedCallAppearanceEndpoint.delete\",\n    \"user.sharedCallAppearanceEndpoint.update\",\n    \"user.silentAlerting.update\",\n    \"user.simultaneousRingPersonal.update\",\n    \"user.services.update\",\n    \"user.speedDial8.update\",\n    \"user.speedDial100.update\",\n    \"user.speedDial100.create\",\n    \"user.terminatingAlternateTrunkIdentity.update\",\n    \"user.thirdPartyVoiceMailSupport.update\",\n    \"user.twoStageDialing.update\",\n    \"user.update\",\n    \"user.videoAddOn.update\",\n    \"user.voiceMessaging.advanced.update\",\n    \"user.voiceMessaging.greeting.update\",\n    \"user.voiceMessaging.update\",\n    \"user.voiceMessaging.voicePortal.update\",\n    \"user.voicePortalCalling.update\",\n    \"user.zoneCallingRestrictions.update\",\n    \"phonism.device.tag.modify\"\n]"}],"_postman_id":"0e5a48c6-7ef5-4031-9bf9-a7b72669ca00"},{"name":"Events","id":"0eac36f5-46e0-4d87-af68-c3240e47e5f0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/events?limit=100&offset=0&startTime=2020-01-01 00:00:00&endTime=2021-01-01 00:00:00&types=user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update, user.userCallForwardingAlways.update, user.callPolicies.update&userId=321-321-1@lab.tekvoice.net","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","events"],"host":["{{url}}"],"query":[{"key":"limit","value":"100"},{"key":"offset","value":"0"},{"key":"startTime","value":"2020-01-01 00:00:00"},{"key":"endTime","value":"2021-01-01 00:00:00"},{"key":"types","value":"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update, user.userCallForwardingAlways.update, user.callPolicies.update"},{"key":"userId","value":"321-321-1@lab.tekvoice.net"},{"disabled":true,"description":{"content":"<p>excludes before/after (default is true)</p>\n","type":"text/plain"},"key":"extended","value":"false"}],"variable":[]}},"response":[{"id":"1b229802-5a05-4e26-b243-e35ad94108fe","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"},{"id":"55adb405-6f9e-43c0-94cf-2cea8eb07238","name":"Events - User ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=100&offset=0&startTime=2020-01-01 00:00:00&endTime=2021-01-01 00:00:00&types=user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update, user.userCallForwardingAlways.update, user.callPolicies.update&userId=321-321-1@lab.tekvoice.net","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"100"},{"key":"offset","value":"0"},{"key":"startTime","value":"2020-01-01 00:00:00"},{"key":"endTime","value":"2021-01-01 00:00:00"},{"key":"types","value":"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update, user.userCallForwardingAlways.update, user.callPolicies.update"},{"key":"userId","value":"321-321-1@lab.tekvoice.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Aug 2020 18:54:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1559,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.14\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.14\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-22T20:02:35+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.14\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 1488,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-22T19:59:46+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.14\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 1438,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.14\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.14\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-22T18:38:38+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.14\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 1367,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-22T18:35:54+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.14\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 1312,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-22T18:08:02+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.14\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 1219,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.master\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.master\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-21T15:17:45+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.master\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 1148,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-21T15:14:59+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.master\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 1079,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-21T14:59:58+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.master\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 975,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-21T14:48:25+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.master\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 913,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.master\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.master\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-17T20:22:20+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.master\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 841,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-17T20:18:15+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.master\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 733,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-17T18:29:48+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.3\",\n        \"eventGroupId\": \"grp.odin.audit.12\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 674,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.3\",\n            \"groupId\": \"grp.odin.audit.11\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.3\",\n            \"groupId\": \"grp.odin.audit.11\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-17T17:03:32+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.3\",\n        \"eventGroupId\": \"grp.odin.audit.11\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 601,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-17T16:44:28+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.3\",\n        \"eventGroupId\": \"grp.odin.audit.11\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 508,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.1\",\n            \"groupId\": \"grp.odin.audit.7\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.1\",\n            \"groupId\": \"grp.odin.audit.7\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T23:35:09+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.1\",\n        \"eventGroupId\": \"grp.odin.audit.7\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 437,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T23:24:23+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.1\",\n        \"eventGroupId\": \"grp.odin.audit.7\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 391,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.master\",\n            \"groupId\": \"grp.odin.audit.6\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.master\",\n            \"groupId\": \"grp.odin.audit.6\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T21:03:50+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.master\",\n        \"eventGroupId\": \"grp.odin.audit.6\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 319,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T20:48:56+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.master\",\n        \"eventGroupId\": \"grp.odin.audit.6\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 266,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.master\",\n            \"groupId\": \"grp.odin.audit.6\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin.audit.master\",\n            \"groupId\": \"grp.odin.audit.6\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T19:59:19+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.master\",\n        \"eventGroupId\": \"grp.odin.audit.6\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 195,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T19:45:49+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin.audit.master\",\n        \"eventGroupId\": \"grp.odin.audit.6\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 113,\n        \"type\": \"user.outgoingCallingPlan.pinholeDigitPlan.redirecting.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.4\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"useCustomSettings\": false,\n            \"userPermissions\": [],\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit.4\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T18:28:14+00:00\",\n        \"serviceName\": \"Outgoing Calling Plan\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.4\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    },\n    {\n        \"id\": 42,\n        \"type\": \"user.callPolicies.update\",\n        \"userId\": \"odin-api\",\n        \"before\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"after\": {\n            \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n            \"callBeingForwardedResponseCallType\": \"Never\",\n            \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n            \"userId\": \"321-321-1@lab.tekvoice.net\"\n        },\n        \"createdAt\": \"2020-04-16T18:16:00+00:00\",\n        \"serviceName\": \"Call Policies\",\n        \"userLoginType\": \"Provisioning\",\n        \"userServiceProviderId\": null,\n        \"userResellerId\": null,\n        \"userGroupId\": null,\n        \"eventResellerId\": null,\n        \"eventServiceProviderId\": \"ent.odin\",\n        \"eventGroupId\": \"grp.odin.audit.4\",\n        \"eventUserId\": \"321-321-1@lab.tekvoice.net\",\n        \"diff\": null\n    }\n]"}],"_postman_id":"0eac36f5-46e0-4d87-af68-c3240e47e5f0"},{"name":"Events Users","id":"4e59829f-a37a-47cb-9c7e-8c80a64aa37e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","events"],"host":["{{url}}"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}],"variable":[]}},"response":[{"id":"b636e4e1-c5e2-4dd2-928f-f6f89e6376e5","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"4e59829f-a37a-47cb-9c7e-8c80a64aa37e"},{"name":"Events Login","id":"ae2695ae-1992-4f61-8caf-f3eeacea9fcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","events"],"host":["{{url}}"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}],"variable":[]}},"response":[{"id":"4d3f896e-62ad-4f78-88fd-8b48a90aa419","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"ae2695ae-1992-4f61-8caf-f3eeacea9fcf"},{"name":"Event","id":"29d326c2-9590-488b-82d6-1292d85b4afd","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/events?id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","events"],"host":["{{url}}"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"c4ae51a8-9cc4-463e-adab-911babe068f1","name":"Odin Event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?id=1","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 17:31:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"3254"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"type\": \"user.update\",\n    \"userId\": \"sysprov.odin\",\n    \"before\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"Mock1\",\n        \"firstName\": \"Mock1\",\n        \"callingLineIdLastName\": \"User1last\",\n        \"callingLineIdFirstName\": \"User1first\",\n        \"hiraganaLastName\": \"Mock1\",\n        \"hiraganaFirstName\": \"Mock1\",\n        \"phoneNumber\": \"9709580001\",\n        \"extension\": \"0001\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580001@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580001-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580001-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"title\": \"Test123\",\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580001@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    \"after\": {\n        \"serviceProviderId\": \"odin.mock.ent1\",\n        \"groupId\": \"odin.mock.grp1\",\n        \"lastName\": \"Mock1 Last\",\n        \"firstName\": \"Mock1 First\",\n        \"callingLineIdLastName\": \"User1last\",\n        \"callingLineIdFirstName\": \"User1first\",\n        \"hiraganaLastName\": \"Mock1 Last\",\n        \"hiraganaFirstName\": \"Mock1 First\",\n        \"phoneNumber\": \"9709580001\",\n        \"extension\": \"0001\",\n        \"callingLineIdPhoneNumber\": \"9709580001\",\n        \"department\": {\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"name\": \"Odin Mock Dept\"\n        },\n        \"departmentFullPath\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"language\": \"English\",\n        \"timeZone\": \"America/Edmonton\",\n        \"timeZoneDisplayName\": \"(GMT-06:00) (Canada) Mountain Time\",\n        \"defaultAlias\": \"9709580001@microv-works.com\",\n        \"accessDeviceEndpoint\": {\n            \"accessDevice\": {\n                \"deviceType\": \"Polycom_VVX400\",\n                \"protocol\": \"SIP 2.0\",\n                \"numberOfPorts\": {\n                    \"quantity\": \"12\"\n                },\n                \"numberOfAssignedPorts\": 2,\n                \"status\": \"Online\",\n                \"configurationMode\": \"Default\",\n                \"transportProtocol\": \"TCP\",\n                \"useCustomUserNamePassword\": false,\n                \"deviceName\": \"9709580001-dev1\",\n                \"deviceLevel\": \"Group\",\n                \"accessDeviceCredentials\": {\n                    \"userName\": null\n                },\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"tags\": [],\n                \"relatedServices\": []\n            },\n            \"linePort\": \"9709580001-dev1@microv-works.com\",\n            \"staticRegistrationCapable\": \"false\",\n            \"useDomain\": \"true\",\n            \"contacts\": []\n        },\n        \"title\": \"Test123\",\n        \"address\": {\n            \"stateOrProvince\": \"Arizona\"\n        },\n        \"countryCode\": \"1\",\n        \"networkClassOfService\": \"NetworkClassOfService1\",\n        \"userId\": \"9709580001@microv-works.com\",\n        \"domain\": \"microv-works.com\",\n        \"endpointType\": \"accessDeviceEndpoint\",\n        \"aliases\": [],\n        \"trunkAddressing\": {\n            \"trunkGroupDeviceEndpoint\": {\n                \"contacts\": []\n            }\n        },\n        \"isEnterprise\": true,\n        \"passwordExpiresDays\": 2147483647\n    },\n    \"createdAt\": \"2018-10-19T17:29:25+00:00\"\n}"}],"_postman_id":"29d326c2-9590-488b-82d6-1292d85b4afd"}],"id":"30a2276d-ea95-4daf-9f6d-322b149411c4","_postman_id":"30a2276d-ea95-4daf-9f6d-322b149411c4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Inventory","item":[{"name":"Inventory All BETA","id":"4016ad8e-1bcf-4bee-ae9c-741ea627ec8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/inventory","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","inventory"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4016ad8e-1bcf-4bee-ae9c-741ea627ec8d"},{"name":"Inventory Service Provider Ids BETA","id":"d08d3da8-a933-4743-82d4-53c32574c521","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"serviceProvider\": {\n        \"inventory\": true,\n        \"extended\": true,\n        \"settings\": {\n            \"admins\": false\n        }\n    },\n    \"group\": {\n        \"inventory\": true,\n        \"extended\": true\n    },\n    \"user\": {\n        \"inventory\": true,\n        \"extended\": true,\n        \"searchGetListInSystemRequest\": true\n    }\n}"},"url":"{{url}}/api/v2/inventory","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","inventory"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d08d3da8-a933-4743-82d4-53c32574c521"},{"name":"Inventory Service Provider Ids BETA","id":"4381ec2d-2ee3-4369-854e-95186e7310c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderIds\": [\n        \"ent.odin\",\n        \"ent.voipxp\"\n    ],\n    \"inventory\": {\n        \"GroupDepartments\": true,\n        \"GroupDevices\": true,\n        \"GroupServices\": true,\n        \"GroupPasswordRules\": true,\n        \"GroupAdmins\": true,\n        \"GroupTrunkGroupCallCapacity\": true,\n        \"users\": true\n    }\n}"},"url":"{{url}}/api/v2/inventory","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","inventory"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4381ec2d-2ee3-4369-854e-95186e7310c2"}],"id":"baeb9639-b009-4632-95b3-4d481672c425","_postman_id":"baeb9639-b009-4632-95b3-4d481672c425","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Reports","item":[{"name":"Group Call Center Agents","event":[{"listen":"test","script":{"id":"464e32ed-daf4-4eb7-a88f-9fa5f0dc078a","exec":[""],"type":"text/javascript"}}],"id":"c86e3b9c-783d-41a5-a5bd-6963a5d7dd70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.call.center.agents\",\n    \"email\": \"mreverman@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"group.call.center.agents\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"group.call.center.agents\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo\",\n            \"index\": 2\n        },\n        {\n            \"task\": \"group.call.center.agents\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo.temp\",\n            \"index\": 3\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c86e3b9c-783d-41a5-a5bd-6963a5d7dd70"},{"name":"Group Call Center Agents 1","event":[{"listen":"test","script":{"id":"4d7ce9ef-6d5c-4070-b7cf-5dfdd9e580ce","exec":[""],"type":"text/javascript"}}],"id":"c5095550-f3ba-43c9-a1ff-38d26c8350a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.call.center.agents\",\n    \"email\": \"mreverman@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"group.call.center.agents\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"group.call.center.agents\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo\",\n            \"index\": 2\n        },\n        {\n            \"task\": \"group.call.center.agents\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo.temp\",\n            \"index\": 3\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5095550-f3ba-43c9-a1ff-38d26c8350a2"},{"name":"Group User Report","event":[{"listen":"test","script":{"id":"ad5fc89a-5063-4dc3-aec7-236b46287c13","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first enterprise+group","var serviceProviderId = \"ent.odin\";","var groupId = \"grp.odin\";","var reportType = \"group.user.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].groupId).to.eql(groupId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"ab322813-a267-4784-90f7-1ca40408ce86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.user.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"extended\": true,\n    \"data\": [\n        {\n            \"task\": \"group.user.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"group.user.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo\",\n            \"index\": 2\n        },\n        {\n            \"task\": \"group.user.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo.temp\",\n            \"index\": 3\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab322813-a267-4784-90f7-1ca40408ce86"},{"name":"Group User Service Report TEST","event":[{"listen":"test","script":{"id":"4bee9ea1-02d8-4443-91b1-f336062a26f9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first enterprise+group","var serviceProviderId = \"ent.odin\";","var groupId = \"grp.odin\";","var reportType = \"group.user.service.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].groupId).to.eql(groupId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"c908c8c3-1a5f-476b-a069-31885f231c82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.user.service.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"group.user.service.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"group.user.service.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo\",\n            \"index\": 2\n        },\n        {\n            \"task\": \"group.user.service.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.demo.temp\",\n            \"index\": 3\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c908c8c3-1a5f-476b-a069-31885f231c82"},{"name":"Service Provider User Service Report TEST","event":[{"listen":"test","script":{"id":"19fcadbe-3288-4655-aaaa-5c19b15a7cab","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first enterprise+group","var serviceProviderId = \"ent.odin\";","var reportType = \"service.provider.user.service.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"eedd660a-d87f-4275-998d-41c1787b5a12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"service.provider.user.service.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"service.provider.user.service.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eedd660a-d87f-4275-998d-41c1787b5a12"},{"name":"Service Provider Group Department Report","event":[{"listen":"test","script":{"id":"feb70536-e281-4e0e-9f2b-6cbf3e4559b3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first enterprise+group","var serviceProviderId = \"ent.odin\";","var reportType = \"service.provider.group.department.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"fd1848f1-77e9-4ef8-bff3-bbb66cd2d3ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"service.provider.group.department.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"service.provider.group.department.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd1848f1-77e9-4ef8-bff3-bbb66cd2d3ca"},{"name":"Service Provider Group Admin Report","event":[{"listen":"test","script":{"id":"5312816e-0636-4298-aae2-b40a82083329","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first enterprise+group","var serviceProviderId = \"ent.odin\";","var reportType = \"service.provider.group.admin.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"340512ba-aac0-443a-b246-dbd3be39ab74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"service.provider.group.admin.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"service.provider.group.admin.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"340512ba-aac0-443a-b246-dbd3be39ab74"},{"name":"Service Provider Group Device Report","event":[{"listen":"test","script":{"id":"0e67906b-e786-4dca-a2dd-06a8d42dad33","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first enterprise+group","var serviceProviderId = \"ent.odin\";","var reportType = \"service.provider.group.device.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"ef5cafda-071c-48d2-9a99-68a1aec98058","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"service.provider.group.device.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"service.provider.group.device.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef5cafda-071c-48d2-9a99-68a1aec98058"},{"name":"Service Provider User Report","event":[{"listen":"test","script":{"id":"882596bf-978a-428f-af93-2d15374173c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first serviceprovider/enterprise","var serviceProviderId = \"ent.odin\";","var reportType = \"service.provider.user.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"93f38909-2a96-41c8-802e-2622235d64e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"service.provider.user.report\",\n    \"email\": \"ken.burcham@rev.io\",\n    \"extended\": true,\n    \"data\": [\n        {\n            \"task\": \"service.provider.user.report\",\n            \"serviceProviderId\": \"ent_45345\",\n            \"index\": 1\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"93f38909-2a96-41c8-802e-2622235d64e5"},{"name":"System User Report","event":[{"listen":"test","script":{"id":"882596bf-978a-428f-af93-2d15374173c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","//parameters for just the first serviceprovider/enterprise","var serviceProviderId = \"ent.odin\";","var reportType = \"service.provider.user.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].serviceProviderId).to.eql(serviceProviderId);","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"fe0d406e-6b2b-4264-8a74-4fb9de81a181","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"system.user.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"extended\": true,\n    \"data\": [\n        {\n            \"task\": \"system.user.report\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe0d406e-6b2b-4264-8a74-4fb9de81a181"},{"name":"System Service Pack Report TEST","event":[{"listen":"test","script":{"id":"05cdaa1f-9034-4649-9c8b-ab8bc2aab09f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var reportType = \"system.service.pack.report\";","","var jsonData = pm.response.json();","","pm.test(\"report is successfully queued\", function () {","    pm.expect(jsonData[0].type).to.eql(reportType);","});",""],"type":"text/javascript"}}],"id":"7e98c424-e9e9-4770-93c6-13681c694eee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"system.service.pack.report\",\n    \"email\": \"kburcham@parkbenchsolutions.com\",\n    \"data\": [\n        {\n            \"task\": \"system.service.pack.report\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e98c424-e9e9-4770-93c6-13681c694eee"},{"name":"Reports","id":"ef35b220-eba4-4047-bafb-88f54a44e1a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/reports?status=completed","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the size returned</li>\n<li>status: filter by status (pending, completed, or error)</li>\n<li>type: filter by type or types (user.create,user.services.update)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"2"},{"key":"status","value":"completed"},{"disabled":true,"key":"type","value":"group.call.center.agents"},{"disabled":true,"key":"showReportData","value":"true"}],"variable":[]}},"response":[],"_postman_id":"ef35b220-eba4-4047-bafb-88f54a44e1a2"},{"name":"Report","id":"c5447edd-3a84-4998-8a0b-851923bd7bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/reports?id=1373","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the size returned</li>\n<li>status: filter by status (pending, completed, or error)</li>\n<li>type: filter by type or types (user.create,user.services.update)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","reports"],"host":["{{url}}"],"query":[{"key":"id","value":"1373"}],"variable":[]}},"response":[],"_postman_id":"c5447edd-3a84-4998-8a0b-851923bd7bad"}],"id":"125920b9-51e9-47d3-aab5-638202d2999e","_postman_id":"125920b9-51e9-47d3-aab5-638202d2999e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Settings","item":[{"name":"Settings","id":"d205c5f8-653b-4391-9052-74d9d9814041","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/settings","description":"<p>Get all settings as an object</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"80c7cc4f-d5ba-48b6-9f69-011c47508ba1","name":"Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2034"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 23 Mar 2021 22:33:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"}],"cookie":[],"responseTime":null,"body":"{\n    \"exports\": {\n        \"name\": \"Exports\",\n        \"description\": \"Exports Description\",\n        \"enabled\": 1,\n        \"active\": 1,\n        \"endpoints\": [\n            {\n                \"key\": \"c30ab54f6b47640a3fd8db13ed531932\",\n                \"url\": \"http://localhost:80/api/v2\",\n                \"name\": \"localhost\",\n                \"events\": [],\n                \"header\": {\n                    \"name\": \"123\",\n                    \"value\": \"1234\"\n                },\n                \"enabled\": true,\n                \"sendToken\": true,\n                \"unlimited\": true\n            },\n            {\n                \"key\": \"8f80233743cfe4e671331b0d3b66ace0\",\n                \"url\": \"http://api/api/v2\",\n                \"name\": \"api\",\n                \"events\": [],\n                \"enabled\": true,\n                \"sendToken\": true,\n                \"unlimited\": true\n            },\n            {\n                \"key\": \"b7d4b1c992d42acf77174aac2a8d7901\",\n                \"url\": \"https://demo22.development.odinapi.net/api/v2\",\n                \"name\": \"demo22\",\n                \"events\": [],\n                \"header\": {\n                    \"name\": \"sabcs\",\n                    \"value\": \"defss\"\n                },\n                \"enabled\": true,\n                \"sendToken\": true,\n                \"unlimited\": true\n            }\n        ]\n    },\n    \"webhooks\": {\n        \"name\": \"Webhooks\",\n        \"description\": \"Webhooks Description\",\n        \"enabled\": 1,\n        \"active\": 1,\n        \"endpoints\": [\n            {\n                \"key\": \"d5ee79asdawefdfg44[[9a6w5ve1ea7993\",\n                \"url\": \"http://webhook:3000\",\n                \"name\": \"abctest\",\n                \"events\": [],\n                \"enabled\": true,\n                \"sendToken\": true,\n                \"unlimited\": true\n            },\n            {\n                \"key\": \"d58436984sdfgs5w6w5ve1eanhui99\",\n                \"url\": \"http://mywebhook.example.com\",\n                \"name\": \"mywebhook\",\n                \"events\": [],\n                \"enabled\": true,\n                \"sendToken\": false,\n                \"unlimited\": true\n            }\n        ]\n    },\n    \"webhooks2\": {\n        \"name\": \"Webhooks 11\",\n        \"description\": \"Webhooks 2 Description\",\n        \"enabled\": 1,\n        \"active\": 1,\n        \"endpoints\": [\n            {\n                \"key\": \"d5ee79asdawefdfg44[[9a6w5ve1ea7993\",\n                \"url\": \"http://webhook:3000\",\n                \"name\": \"abctest\",\n                \"events\": [],\n                \"enabled\": true,\n                \"sendToken\": true,\n                \"unlimited\": true\n            },\n            {\n                \"key\": \"d58436984sdfgs5w6w5ve1eanhui99\",\n                \"url\": \"http://mywebhook.example.com\",\n                \"name\": \"mywebhook\",\n                \"events\": [],\n                \"enabled\": true,\n                \"sendToken\": false,\n                \"unlimited\": true\n            }\n        ]\n    },\n    \"webex\": {\n        \"name\": \"Webex for Broadworks\",\n        \"description\": \"odin integration with Webex for Broadworks\",\n        \"enabled\": 1,\n        \"active\": 1,\n        \"endpoints\": [\n            {\n                \"key\": \"fe4e67f802b66ace0833743c1331b0d3\",\n                \"name\": \"webex\",\n                \"active\": true,\n                \"enabled\": true,\n                \"client_id\": \"client_id_from_webex\",\n                \"user_level\": \"Provisioning\",\n                \"client_secret\": \"client_secret_from_webex\",\n                \"redirect_urls\": [\n                    {\n                        \"redirect_url\": \"https://redirect1.example.com\"\n                    },\n                    {\n                        \"redirect_url\": \"https://redirect2.another_example.com\"\n                    }\n                ],\n                \"oauth_auth_url\": \"https://webexapis.com/v1/authorize?...\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d205c5f8-653b-4391-9052-74d9d9814041"},{"name":"Setting","id":"fd6d9b80-cd7e-4239-b3b0-5d6f34d732c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Webhooks\",\n    \"description\": \"Webhooks Description\",\n    \"enabled\": true,\n    \"active\": true,\n    \"key\": \"webhooks\",\n    \"endpoints\": [\n        {\n            \"key\": \"d5ee79asdawefdfg44[[9a6w5ve1ea7993\",\n            \"url\": \"http://webhook:3000\",\n            \"name\": \"abctest\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": true,\n            \"unlimited\": true\n        },\n        {\n            \"key\": \"d58436984sdfgs5w6w5ve1eanhui99\",\n            \"url\": \"http://mywebhook.example.com\",\n            \"name\": \"mywebhook\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": false,\n            \"unlimited\": true\n        }\n    ]\n}"},"url":"{{url}}/api/v2/settings/:key","description":"<p>Create or update settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings",":key"],"host":["{{url}}"],"query":[],"variable":[{"id":"940be6f8-1e4a-4d07-96cf-f8edb1f976c4","type":"string","value":"webhooks","key":"key"}]}},"response":[{"id":"ad1716a3-9d67-4e0b-93e3-e60db7e1efe3","name":"Setting","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Webhooks\",\n    \"description\": \"Webhooks Description\",\n    \"enabled\": true,\n    \"active\": true,\n    \"key\": \"webhooks\",\n    \"endpoints\": [\n        {\n            \"key\": \"d5ee79asdawefdfg44[[9a6w5ve1ea7993\",\n            \"url\": \"http://webhook:3000\",\n            \"name\": \"abctest\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": true,\n            \"unlimited\": true\n        },\n        {\n            \"key\": \"d58436984sdfgs5w6w5ve1eanhui99\",\n            \"url\": \"http://mywebhook.example.com\",\n            \"name\": \"mywebhook\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": false,\n            \"unlimited\": true\n        }\n    ]\n}"},"url":{"raw":"{{url}}/api/v2/settings/:key","host":["{{url}}"],"path":["api","v2","settings",":key"],"variable":[{"key":"key","value":"webhooks","type":"text","enabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"413"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 23 Mar 2021 22:22:11 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Webhooks\",\n    \"description\": \"Webhooks Description\",\n    \"enabled\": true,\n    \"active\": true,\n    \"endpoints\": [\n        {\n            \"key\": \"d5ee79asdawefdfg44[[9a6w5ve1ea7993\",\n            \"url\": \"http://webhook:3000\",\n            \"name\": \"abctest\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": true,\n            \"unlimited\": true\n        },\n        {\n            \"key\": \"d58436984sdfgs5w6w5ve1eanhui99\",\n            \"url\": \"http://mywebhook.example.com\",\n            \"name\": \"mywebhook\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": false,\n            \"unlimited\": true\n        }\n    ]\n}"}],"_postman_id":"fd6d9b80-cd7e-4239-b3b0-5d6f34d732c9"},{"name":"Setting E911","id":"a81a2f89-87d9-408d-a765-ba0893f43ec2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"settingName\": \"E911\",\n    \"settingDescription\": \"E911 Description\",\n    \"enabled\": true,\n    \"active\": true,\n    \"key\": \"e911\",\n    \"endpoints\": [\n        {\n            \"enabled\": true,\n            \"name\": \"dashcs\",\n            \"url\": \"https://staging-service.dashcs.com/dash-board/UpdateMyAddress.action\",\n            \"key\": \"key\",\n            \"keyNumber\": \"keyNumber\",\n            \"companyId\": 1000,\n            \"viewable\": {\n                \"servicePackName\": \"test\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/settings/:key","description":"<p>Create or update settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings",":key"],"host":["{{url}}"],"query":[],"variable":[{"type":"string","value":"e911","key":"key"}]}},"response":[],"_postman_id":"a81a2f89-87d9-408d-a765-ba0893f43ec2"},{"name":"Setting Surgemail","id":"5c6f472b-e301-421d-bfb8-a5ff854eee73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"settingName\": \"Surgemail\",\n    \"settingDescription\": \"Surgemail Description\",\n    \"enabled\": true,\n    \"active\": true,\n    \"key\": \"surgemail\",\n    \"endpoints\": [\n        {\n            \"name\": \"domain1\",\n            \"url\": \"https://domain1:7443/cgi/user.cgi\",\n            \"username\": \"username\",\n            \"password\": \"password\",\n            \"domain\": \"domain\",\n            \"bwDomain\": \"default\",\n            \"ccVoiceMessage\": false,\n            \"mailServer\": \"\",\n            \"mailProtocol\": \"\",\n            \"mailImapDelete\": \"\",\n            \"userDoNotDelete\": false,\n            \"events\": [],\n            \"enabled\": false,\n            \"sendToken\": true,\n            \"unlimited\": true,\n            \"key\": \"d5ee79asdawefdfg44[[9a6w5ve1ea7993\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/settings/:key","description":"<p>Create or update settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings",":key"],"host":["{{url}}"],"query":[],"variable":[{"type":"string","value":"surgemail","key":"key"}]}},"response":[],"_postman_id":"5c6f472b-e301-421d-bfb8-a5ff854eee73"},{"name":"Setting","id":"6291da91-01d6-4481-8cc6-d412dfc5e8a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/settings/:key","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings",":key"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"webex","key":"key"}]}},"response":[{"id":"1d1eaf1c-b935-48f4-9e6d-689d140e2b4f","name":"Setting","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/settings/:key","host":["{{url}}"],"path":["api","v2","settings",":key"],"variable":[{"key":"key","value":"webhooks"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"402"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 23 Mar 2021 22:11:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.22"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Webhooks\",\n    \"description\": \"Webhooks Description\",\n    \"enabled\": 1,\n    \"active\": 1,\n    \"endpoints\": [\n        {\n            \"key\": \"d5ee79asdawera45w6w5ve1ea7993\",\n            \"url\": \"http://webhook:3000\",\n            \"name\": \"abctest\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": true,\n            \"unlimited\": true\n        },\n        {\n            \"key\": \"d58436984sdfgs5w6w5ve1eanhui99\",\n            \"url\": \"http://mywebhook.example.com\",\n            \"name\": \"mywebhook\",\n            \"events\": [],\n            \"enabled\": true,\n            \"sendToken\": false,\n            \"unlimited\": true\n        }\n    ]\n}"}],"_postman_id":"6291da91-01d6-4481-8cc6-d412dfc5e8a4"},{"name":"Settings User","id":"fe7fe425-478a-4f81-b048-7c21f24e135e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/settings/:userId/settings","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings",":userId","settings"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"9871515000@odinapi.net","key":"userId"}]}},"response":[{"id":"3ac2cb5f-b52c-4923-9fc2-5864b644e373","name":"Settings User","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/settings/:userId/settings","host":["{{url}}"],"path":["api","v2","settings",":userId","settings"],"variable":[{"key":"userId","value":"9871515000@odinapi.net"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"e911\": {\n        \"url\": \"https://staging-service.dashcs.com/dash-board/UpdateMyAddress.action?tn=9871515000&date=202105121914&cid=1062&kn=0&auth=fc9jdeTM3jakaK9ont%2BiOg%3D%3D\"\n    }\n}"}],"_postman_id":"fe7fe425-478a-4f81-b048-7c21f24e135e"},{"name":"Setting","id":"1923cc01-fc49-4c8d-b571-ebddda9ef962","request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/settings/:key","description":"<p>Delete the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings",":key"],"host":["{{url}}"],"query":[],"variable":[{"id":"9102f978-fdd1-4807-af3a-99b99d5b337b","type":"any","value":"test123","key":"key"}]}},"response":[{"id":"b3591406-ef5f-4a25-be48-df038e069517","name":"Setting","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/settings/:key","host":["{{url}}"],"path":["api","v2","settings",":key"],"variable":[{"key":"key","value":"test123"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Tue, 16 Oct 2018 23:03:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"7"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"test123"}],"_postman_id":"1923cc01-fc49-4c8d-b571-ebddda9ef962"}],"id":"9221f114-2c5f-42a3-81be-c0873a64c9cb","description":"<p>Odin specific Settings endpoint</p>\n","event":[{"listen":"prerequest","script":{"id":"e22ca4a7-8f05-4035-bada-2b8a6fcad604","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e19e0d60-e6e5-428b-8aa6-40a287fda99c","type":"text/javascript","exec":[""]}}],"_postman_id":"9221f114-2c5f-42a3-81be-c0873a64c9cb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Status","item":[{"name":"db","event":[{"listen":"test","script":{"id":"54d89f23-3e24-4c4e-a75c-6f1b891c27ac","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"82aae071-70b2-454e-a779-c6db769cc9dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v2/status/db","description":"<p>Ping the Odin API for alive status</p>\n","urlObject":{"path":["api","v2","status","db"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"10d5a43e-297d-4f6e-b3b8-79a75740b94f","name":"db","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/status/db"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\"\n}"}],"_postman_id":"82aae071-70b2-454e-a779-c6db769cc9dc"},{"name":"cdr","event":[{"listen":"test","script":{"id":"54d89f23-3e24-4c4e-a75c-6f1b891c27ac","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"0681fee3-be03-412c-a7db-65d08112c7c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v2/status/cdr","description":"<p>Ping the Odin API for alive status</p>\n","urlObject":{"path":["api","v2","status","cdr"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"454f6fed-6d93-4e89-807f-795026b793e2","name":"db","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/status/db"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\"\n}"}],"_postman_id":"0681fee3-be03-412c-a7db-65d08112c7c5"},{"name":"redis","event":[{"listen":"test","script":{"id":"8798eac1-ac14-4217-8467-6f21ae33ec15","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"eb8d8323-46e5-4fea-b147-83f4d14d272b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v2/status/redis","description":"<p>Ping the Odin API for alive status</p>\n","urlObject":{"path":["api","v2","status","redis"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ef87edef-bc07-464a-ad6c-278e29a756aa","name":"redis","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/status/redis"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\"\n}"}],"_postman_id":"eb8d8323-46e5-4fea-b147-83f4d14d272b"},{"name":"xsp","event":[{"listen":"test","script":{"id":"fa2a208d-3998-4477-b992-e2ce9174c04b","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"07aa93ac-3c53-4ae6-9e38-c6644a645afd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v2/status/xsp","description":"<p>Ping the Odin API for alive status</p>\n","urlObject":{"path":["api","v2","status","xsp"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"07aa93ac-3c53-4ae6-9e38-c6644a645afd"},{"name":"ping","event":[{"listen":"test","script":{"id":"95b9c384-f157-4f8c-b321-762f6c9315bc","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"602cea2b-ed90-4527-a090-c42a67fce594","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v2/ping","description":"<p>Ping the Odin API for alive status</p>\n","urlObject":{"path":["api","v2","ping"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"18fda9a6-7386-4235-a6ec-bfec9e2927b9","name":"Ping","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/ping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"15","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 27 Aug 2018 21:59:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"ok\"}"}],"_postman_id":"602cea2b-ed90-4527-a090-c42a67fce594"},{"name":"status","event":[{"listen":"test","script":{"id":"95b9c384-f157-4f8c-b321-762f6c9315bc","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"12edfc82-b1d9-43db-89bb-f6653e0c585a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v2/status","description":"<p>Ping the Odin API for alive status</p>\n","urlObject":{"path":["api","v2","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c62cef0b-7917-4159-a683-6a2b26362ad7","name":"Ping","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/ping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"15","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 27 Aug 2018 21:59:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"ok\"}"}],"_postman_id":"12edfc82-b1d9-43db-89bb-f6653e0c585a"}],"id":"320a603f-143c-4bd7-9090-aa6eb6a98ef2","description":"<p>Status of ODIN api</p>\n","_postman_id":"320a603f-143c-4bd7-9090-aa6eb6a98ef2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin SSO","item":[{"name":"SSO Setting","id":"d225b59c-1840-4399-8d39-c7699dcb2883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Referer","value":"http://localhost:8080","type":"text"}],"url":"{{url}}/api/v2/settings-sso?hostnameId=91&key=saml2&justViewable=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings-sso"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"91"},{"key":"key","value":"saml2"},{"key":"justViewable","value":"true"}],"variable":[]}},"response":[],"_postman_id":"d225b59c-1840-4399-8d39-c7699dcb2883"},{"name":"Sso Settings List - All SSO Options","id":"03da9ee9-3129-458e-9344-bc715e22f8bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Referer","value":"http://localhost:8080","type":"text"}],"url":"{{url}}/api/v2/settings-sso?hostnameId=72","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings-sso"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"72"}],"variable":[]}},"response":[],"_postman_id":"03da9ee9-3129-458e-9344-bc715e22f8bf"},{"name":"SSO Settings - Upsert","id":"ab1a2673-380e-4ba4-a596-2d2c9561cd2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Referer","value":"http://localhost:8080","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostnameId\": 47,\n    \"key\": \"bw\",\n    \"name\": \"odin Broadworks SSO\",\n    \"description\": \"odin support for Muliple BroadWorks UserId's for an SSO experience\",\n    \"enabled\": true,\n    \"active\": true,\n    \"endpoints\": [\n        {\n            \"viewable\": {\n                \"endpointId\": \"e88b8593-659e-4229-49a9-ab3d307d15cc\",\n                \"name\": \"bw\",\n                \"enabled\": true,\n                \"active\": true,\n                \"allowMultipleBwUsers\": true\n            },\n            \"settings\": {\n                \"security\": {\n                    \"acl\": [\n                        \"Group\",\n                        \"Service Provider\",\n                        \"Reseller\",\n                        \"System\"\n                    ]\n                }\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/settings-sso","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings-sso"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab1a2673-380e-4ba4-a596-2d2c9561cd2c"},{"name":"Settings - Delete","id":"3926bfef-6552-45c1-b85c-0f843bfa8197","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Referer","value":"http://localhost:8080","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hostname\": \"localhost\",\n    \"key\": \"saml2\"\n}"},"url":"{{url}}/api/v2/settings-sso","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings-sso"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3926bfef-6552-45c1-b85c-0f843bfa8197"},{"name":"SSO Active Viewable Settings - Unauth","id":"7cdc8a32-0aae-4773-8891-9ef9f989d154","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Referer","value":"http://localhost:8080","type":"text"}],"url":"{{url}}/api/v2/sso/active","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","sso","active"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7cdc8a32-0aae-4773-8891-9ef9f989d154"},{"name":"SSO SAML Generate Certificate","id":"54040af1-6495-45fa-b45e-dcea005dc3ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Referer","value":"http://localhost:8080","type":"text"}],"url":"{{url}}/api/v2/settings-sso/generate-certificates","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings-sso","generate-certificates"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"54040af1-6495-45fa-b45e-dcea005dc3ab"},{"name":"SSO SAML Algorithms","id":"eeb81965-51fc-414e-bfdc-3aead0bd9c2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Referer","value":"http://localhost:8080","type":"text"}],"url":"{{url}}/api/v2/settings-sso/saml-algorithms","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","settings-sso","saml-algorithms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eeb81965-51fc-414e-bfdc-3aead0bd9c2a"}],"id":"2b204326-c1b7-4e4a-8d1b-39cb448d85a6","_postman_id":"2b204326-c1b7-4e4a-8d1b-39cb448d85a6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin SSO Alternate User Ids","item":[{"name":"Sso Alternate Identities","id":"8e7ee3fc-78f1-4c42-92b9-2c13473bbbcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/alternate-identities?hostnameId=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","alternate-identities"],"host":["{{url}}"],"query":[{"key":"hostnameId","value":"1"}],"variable":[]}},"response":[],"_postman_id":"8e7ee3fc-78f1-4c42-92b9-2c13473bbbcb"},{"name":"Sso Alternate Identity","id":"93d016b1-bc8c-4d9c-bae7-9d2e9d9fe88a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/alternate-identity?hostnameId=91&userId=slatsa-ent","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","alternate-identity"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"ken-user-test@lab.tekvoice.net"},{"disabled":true,"key":"userId","value":"slatsa-ent@odinapi.net"},{"key":"hostnameId","value":"91"},{"key":"userId","value":"slatsa-ent"}],"variable":[]}},"response":[],"_postman_id":"93d016b1-bc8c-4d9c-bae7-9d2e9d9fe88a"},{"name":"Sso Switch Alternate Identity","id":"237f00c7-2b1c-4c41-9547-c4485f295bbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/switch-alternate-identity?userId=AdminPBI49675-01&hostnameId=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","switch-alternate-identity"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"ken-user-test@lab.tekvoice.net"},{"disabled":true,"key":"userId","value":"slatsa-grp@odinapi.net"},{"key":"userId","value":"AdminPBI49675-01"},{"key":"hostnameId","value":"1"},{"disabled":true,"key":"userId","value":"slatsa-ent@odinapi.net"}],"variable":[]}},"response":[],"_postman_id":"237f00c7-2b1c-4c41-9547-c4485f295bbc"},{"name":"Sso Alternate Identity Save","id":"d1464755-ab1c-44f7-be98-23eedae195aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"odin.lab.slatsa.grp@voicecci.net\",\n    \"hostnameId\": 50,\n    \"label\": \"Group odin Manager Profile\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"ent.odin\",\n    \"resellerId\": \"\",\n    \"department\": \"\",\n    \"userIds\": [\n        {\n            \"userId\": \"odin.lab.slatsa.dept@voicecci.net\",\n            \"label\": \"Department Manager\",\n            \"resellerId\": \"\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"department\": \"dept.odin\",\n            \"isPrimary\": false\n        },\n        {\n            \"userId\": \"user-1@voicecci.net\",\n            \"label\": \"Jo user\",\n            \"resellerId\": \"\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"department\": \"\",\n            \"isPrimary\": false\n        },\n        {\n            \"userId\": \"user-2@voicecci.net\",\n            \"label\": \"Just a guy using BW\",\n            \"resellerId\": \"\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"department\": \"\",\n            \"isPrimary\": false\n        },\n        {\n            \"userId\": \"user-3@voicecci.net\",\n            \"label\": \"Sally user of odin\",\n            \"resellerId\": \"\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"department\": \"\",\n            \"isPrimary\": false\n        }\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/alternate-identity","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","alternate-identity"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"ken-user-test@lab.tekvoice.net"}],"variable":[]}},"response":[],"_postman_id":"d1464755-ab1c-44f7-be98-23eedae195aa"},{"name":"Sso Alternate Identity Delete","id":"1578c18f-5304-45f5-8120-83fb0ea7fc58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/alternate-identity?userId=odin.lab.slatsa.grp@voicecci.net&hostnameId=50","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","alternate-identity"],"host":["{{url}}"],"query":[{"disabled":true,"key":"userId","value":"ken-user-test@lab.tekvoice.net"},{"disabled":true,"key":"userId","value":"slatsa-ent@odinapi.net"},{"key":"userId","value":"odin.lab.slatsa.grp@voicecci.net"},{"key":"hostnameId","value":"50"}],"variable":[]}},"response":[],"_postman_id":"1578c18f-5304-45f5-8120-83fb0ea7fc58"}],"id":"5ca0ee0d-2b1b-478a-b93a-5f4e76821757","_postman_id":"5ca0ee0d-2b1b-478a-b93a-5f4e76821757","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Tasks","item":[{"name":"Webex","item":[{"name":"Task Webex Verify User Email TEST","id":"ef6cc8c4-abb8-4e7b-8291-27e5f5ca36ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"webex.verify.user.email\",\n    \"data\": [\n        {\n            \"task\": \"webex.verify.user.email\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"webex.verify.user.email\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"index\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef6cc8c4-abb8-4e7b-8291-27e5f5ca36ec"}],"id":"7d2d68c4-25ae-435c-ac63-42c5fe3c5b7f","_postman_id":"7d2d68c4-25ae-435c-ac63-42c5fe3c5b7f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Phonism","item":[{"name":"Task Group Device Create PhonismTemplateId","id":"43a5988a-a9c8-4722-81a0-6206792d9898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.create\",\n    \"data\": [\n        {\n            \"task\": \"group.device.create\",\n            \"allowAccessDeviceUpdate\": false,\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"deviceName\": \"testAPI010\",\n            \"accessDeviceEndpoint\": {\n                \"linePort\": \"\",\n                \"accessDevice\": {\n                    \"deviceType\": \"2Wire HomePortal\",\n                    \"deviceName\": \"testAPI010\",\n                    \"deviceLevel\": \"group\",\n                    \"protocol\": \"\",\n                    \"netAddress\": \"\",\n                    \"port\": \"\",\n                    \"outboundProxyServerNetAddress\": \"\",\n                    \"stunServerNetAddress\": \"\",\n                    \"macAddress\": \"\",\n                    \"serialNumber\": \"\",\n                    \"description\": \"\",\n                    \"physicalLocation\": \"\",\n                    \"transportProtocol\": \"\",\n                    \"useCustomUserNamePassword\": false,\n                    \"accessDeviceCredentials\": {\n                        \"userName\": \"\",\n                        \"password\": \"\"\n                    }\n                }\n            },\n            \"index\": \"1\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<p>Task Group Device Create</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43a5988a-a9c8-4722-81a0-6206792d9898"},{"name":"Task User Update PhonismTemplateId","id":"4916f5c8-1bd1-47e0-a681-68a68044af1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.update\",\n    \"data\": [\n        {\n            \"task\": \"user.update\",\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }                \n            },\n            \"userId\": \"5416677624@odinapi.net\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"firstName\": \"Fred\",\n            \"lastName\": \"Flintstone\",\n            \"password\": \"abc123123ABC\",\n            \"callingLineIdFirstName\": \"Bon\",\n            \"callingLineIdLastName\": \"Jovi2\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4916f5c8-1bd1-47e0-a681-68a68044af1f"},{"name":"Task User Create PhonismTemplateId","id":"e8b26046-9d1e-444e-bc39-2aff04257367","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.create\",\n    \"data\": [\n        {\n            \"task\": \"user.create\",\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \"userId\": \"5416677624@odinapi.net\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"firstName\": \"Fred\",\n            \"lastName\": \"Flintstone\",\n            \"password\": \"abc123123ABC\",\n            \"callingLineIdFirstName\": \"Bon\",\n            \"callingLineIdLastName\": \"Jovi\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8b26046-9d1e-444e-bc39-2aff04257367"},{"name":"Task User Delete PhonismTemplateId","id":"9a9cf572-29ac-4aec-840a-ca124e1f4637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.delete\",\n    \"data\": [\n        {\n            \"task\": \"user.delete\",\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \"userId\": \"5416677624@odinapi.net\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a9cf572-29ac-4aec-840a-ca124e1f4637"},{"name":"Task Group Device Upsert PhonismTemplateId","id":"196d966e-9933-4c8e-8a01-a5926628d6b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.upsert\",\n    \"data\": [\n        {\n            \"task\": \"group.device.upsert\",\n            \"allowAccessDeviceUpdate\": true,\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"deviceName\": \"testAPI009\",\n            \"deviceType\": \"2Wire HomePortal\",\n            \"deviceLevel\" : \"group\",\n            \"protocol\": \"\",\n            \"netAddress\": \"\",\n            \"port\": \"\",\n            \"outboundProxyServerNetAddress\": \"\",\n            \"stunServerNetAddress\": \"\",\n            \"macAddress\": \"\",\n            \"serialNumber\": \"\",\n            \"description\": \"test\",\n            \"physicalLocation\": \"\",\n            \"transportProtocol\": \"\",\n            \"mobilityManagerProvisioningURL\": \"\",\n            \"mobilityManagerProvisioningUserName\": \"\",\n            \"mobilityManagerProvisioningPassword\": \"\",\n            \"mobilityManagerDefaultOriginatingServiceKey\": \"\",\n            \"mobilityManagerDefaultTerminatingServiceKey\": \"\",\n            \"useCustomUserNamePassword\": false,\n            \"accessDeviceCredentials\": {\n                \"userName\": \"\",\n                \"password\": \"\"\n            },\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": \"1\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"196d966e-9933-4c8e-8a01-a5926628d6b6"},{"name":"Task Group Device Delete PhonismTemplateId","id":"47e3812e-e029-409d-ae07-0ddb430489a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.upsert\",\n    \"data\": [\n        {\n            \"task\": \"group.device.upsert\",\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \"allowAccessDeviceUpdate\": true,\n            \"deviceLevel\": \"group\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"deviceName\": \"groupDeviceUpsert!\",\n            \"deviceType\": \"2Wire HomePortal\",\n            \"protocol\": \"\",\n            \"netAddress\": \"\",\n            \"port\": \"\",\n            \"outboundProxyServerNetAddress\": \"\",\n            \"stunServerNetAddress\": \"\",\n            \"macAddress\": \"\",\n            \"serialNumber\": \"\",\n            \"description\": \"\",\n            \"physicalLocation\": \"\",\n            \"transportProtocol\": \"\",\n            \"mobilityManagerProvisioningURL\": \"\",\n            \"mobilityManagerProvisioningUserName\": \"\",\n            \"mobilityManagerProvisioningPassword\": \"\",\n            \"mobilityManagerDefaultOriginatingServiceKey\": \"\",\n            \"mobilityManagerDefaultTerminatingServiceKey\": \"\",\n            \"useCustomUserNamePassword\": false,\n            \"accessDeviceCredentials\": {\n                \"userName\": \"\",\n                \"password\": \"\"\n            },\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": \"1\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47e3812e-e029-409d-ae07-0ddb430489a7"},{"name":"Task User Update Authentication PhonismTemplateId","id":"255a9664-3853-4df6-a933-c0a8bab99221","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.authentication.update\",\n    \"data\": [\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"5416677624@odinapi.net\",\n            \"userName\": \"5416677624\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"ken-user-test@odinapi.net\",\n            \"userName\": \"ken-user-test\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"resetDevice\": true,\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 124,\n                    \"anotherProperty\": \"abc124\"\n                }\n            },\n            \"index\": 2\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<p><strong>userId:</strong> <em>is required</em><br />\n<strong>userName:</strong> <em>is required</em><br />\n<strong>newPassword:</strong> * is required*<br /></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"255a9664-3853-4df6-a933-c0a8bab99221"},{"name":"Task User Modify Group Id PhonismTemplateId","id":"5c066a12-3c30-462c-bef8-9a34f959972e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"content-type","value":"application/json;charset=utf-8"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.modify.group.id\",\n    \"data\": [\n        {\n            \"task\": \"user.modify.group.id\",\n            \"userId\": \"ken-user-test@odinapi.net\",\n            \"newGroupId\": \"grp.odin.test\",\n            \"evaluateOnly\": false,\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.modify.group.id\",\n            \"userId\": \"5416677624@odinapi.net\",\n            \"newGroupId\": \"grp.odin.test\",\n            \"evaluateOnly\": false,\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 124,\n                    \"anotherProperty\": \"abc124\"\n                }\n            },\n            \"index\": 2\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c066a12-3c30-462c-bef8-9a34f959972e"},{"name":"Task User Modify Id PhonismTemplateId","id":"5bcb0329-286c-4d6c-9fea-ed631cd5e21e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"content-type","value":"application/json;charset=utf-8"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.number.update\",\n    \"data\": [\n        {\n            \"task\": \"user.number.update\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"ent.odin.test\",\n            \"userId\": \"ken-user-test@odinapi.net\",\n            \"newUserId\": \"ken-user-test2@odinapi.net\",\n            \"options\": {\n                \"phonism\": {\n                    \"templateId\": 123,\n                    \"anotherProperty\": \"abc123\"\n                }\n            },\n            \"phoneNumber\": \"5416677625\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5bcb0329-286c-4d6c-9fea-ed631cd5e21e"},{"name":"Task Phonism Tag Modify","id":"96f40815-79a8-4bbc-a205-85a52fa07b2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"phonism.device.tag.modify\",\n    \"data\": [\n        {\n            \"task\": \"phonism.device.tag.modify\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [\n                {\n                    \"tagName\": \"%tagName1%\",\n                    \"tagValue\": \"tagValue1\"\n                },\n                {\n                    \"tagName\": \"%tagName2%\",\n                    \"tagValue\": \"tagValue2\"\n                },\n                {\n                    \"tagName\": \"%tagName3%\",\n                    \"tagValue\": \"tagValue3\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ea0ca573-ec8c-4333-96b3-274c94697f5f","name":"Task Phonism Group Tag Modify","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"phonism.device.tag.modify\",\n    \"data\": [\n        {\n            \"task\": \"phonism.device.tag.modify\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [\n                {\n                    \"tagName\": \"%tagName1%\",\n                    \"tagValue\": \"tagValue1\"\n                },\n                {\n                    \"tagName\": \"%tagName2%\",\n                    \"tagValue\": \"tagValue2\"\n                },\n                {\n                    \"tagName\": \"%tagName3%\",\n                    \"tagValue\": \"tagValue3\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"phonism.device.tag.modify\",\n    \"data\": [\n        {\n            \"task\": \"phonism.device.tag.modify\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"tags\": [\n                {\n                    \"tagName\": \"%tagName1%\",\n                    \"tagValue\": \"tagValue1\"\n                },\n                {\n                    \"tagName\": \"%tagName2%\",\n                    \"tagValue\": \"tagValue2\"\n                },\n                {\n                    \"tagName\": \"%tagName3%\",\n                    \"tagValue\": \"tagValue3\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"hostnameForPrimary\": \"broadworks-as1\",\n    \"updatedAt\": \"2021-10-28T13:15:57+00:00\",\n    \"createdAt\": \"2021-10-28T13:15:57+00:00\",\n    \"id\": 3\n}"},{"id":"6bafbe05-3446-480f-b67f-9fab2d13a840","name":"Task Phonism Service Provider Tag Modify","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"phonism.device.tag.modify\",\n    \"data\": [\n        {\n            \"task\": \"phonism.device.tag.modify\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"tags\": [\n                {\n                    \"tagName\": \"%tagName1%\",\n                    \"tagValue\": \"tagValue1\"\n                },\n                {\n                    \"tagName\": \"%tagName2%\",\n                    \"tagValue\": \"tagValue2\"\n                },\n                {\n                    \"tagName\": \"%tagName3%\",\n                    \"tagValue\": \"tagValue3\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Oct 2021 13:17:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"494"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"phonism.device.tag.modify\",\n    \"data\": [\n        {\n            \"task\": \"phonism.device.tag.modify\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"tags\": [\n                {\n                    \"tagName\": \"%tagName1%\",\n                    \"tagValue\": \"tagValue1\"\n                },\n                {\n                    \"tagName\": \"%tagName2%\",\n                    \"tagValue\": \"tagValue2\"\n                },\n                {\n                    \"tagName\": \"%tagName3%\",\n                    \"tagValue\": \"tagValue3\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"hostnameForPrimary\": \"broadworks-as1\",\n    \"updatedAt\": \"2021-10-28T13:17:08+00:00\",\n    \"createdAt\": \"2021-10-28T13:17:08+00:00\",\n    \"id\": 4\n}"}],"_postman_id":"96f40815-79a8-4bbc-a205-85a52fa07b2f"}],"id":"2605810b-d515-445d-960a-3543d9b899c0","_postman_id":"2605810b-d515-445d-960a-3543d9b899c0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Audit Import Migrate (AIM)","item":[{"name":"Task Audit Groups","id":"72bd965a-795a-4061-b16e-a347a539567b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aim.audit.groups\",\n    \"data\": [\n        {\n            \"task\": \"aim.audit.groups\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"template\": \"Full Audit Template\",\n            \"shortTags\": false,\n            \"userVoiceMessagingExtended\": false,\n            \"auditDeviceUserSettings\": false,\n            \"auditAnnouncementFiles\": false,\n            \"index\": 1\n        },\n        {\n            \"task\": \"aim.audit.groups\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.test.ken\",\n            \"template\": \"Full Audit Template\",\n            \"shortTags\": false,\n            \"userVoiceMessagingExtended\": false,\n            \"auditDeviceUserSettings\": false,\n            \"auditAnnouncementFiles\": false,\n            \"index\": 2\n        }\n    ]\n}\n"},"url":"{{url}}/api/v2/tasks","description":"<h2 id=\"bulk-audit-groups\">Bulk Audit Groups</h2>\n<p>Initiate a backup/audit for any Group in your system by posting this bulk task.</p>\n<ul>\n<li><strong>serviceProviderId</strong> - The serviceProviderId of the group to audit.</li>\n<li><strong>groupId</strong> - The groupId of the group you want to audit.</li>\n<li><strong>template</strong> - This must be included and must be one of the valid audit templates displayed on the Odin Audits page.</li>\n<li><strong>shortTags</strong> - Option to query the shortTags (phoneNumbers, etc.) for every user and add them to the audit. This extends the time it takes for the audit to run as well as the size of the audit. The advantage is that you can use these user shortTags to transform userId's via export templates if targeting a different system for import.</li>\n<li><strong>userVoiceMessagingExtended</strong> - Option to include the Voice Messaging Advanced audit, otherwise it will be skipped</li>\n<li><strong>auditDeviceUserSettings</strong> - Option to include device user settings in the audit, otherwise it will be skipped</li>\n<li><strong>auditAnnouncementFiles</strong> - Option to include the announcement files in the audit, otherwise they will be skipped.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"72bd965a-795a-4061-b16e-a347a539567b"},{"name":"Task Import Audits","id":"8c568226-3267-4ea7-9fb4-aee868038929","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aim.import.audits\",\n    \"data\": [\n        {\n            \"task\": \"aim.import.audits\",\n            \"auditId\": \"251\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"endpoint\": \"http://api/api/v2\",\n            \"username\": \"username\",\n            \"password\": \"password\",\n            \"encryption\": \"plain\",\n            \"options\": {\n                \"password\": \"Q4*_3b\",\n                \"sipAuthenticationPassword\": \"Y2*k\",\n                \"groupMailServerPassword\": \"qmbwvch2ef\",\n                \"passcode\": \"351081\",\n                \"newDomain\": \"newdomain.com\",\n                \"template\": {\n                    \"userId\": \"{{userIdFirst10}}@{{newDomain}}\",\n                    \"listUri\": \"{{userIdFirst10}}@{{newDomain}}\",\n                    \"fallback\": \"{{userIdPrefix}}\"\n                },\n                \"serviceProviderId\": \"odin.123\", \n                \"groupId\": \"odin.grp.123\",      \n                \"lookupUsers\": true,\n                \"lookupServiceInstances\": true\n            },\n            \"index\": 1\n        }\n    ]\n}\n"},"url":"{{url}}/api/v2/tasks","description":"<h2 id=\"bulk-import-audits\">Bulk Import Audits</h2>\n<p>Initiate a a bulk import for existing audits to your system by posting this bulk task.</p>\n<p>Note: Please be aware that this task requires you to send passwords, including a username and password to the target odin system. Be mindful how you store any files with this information.</p>\n<ul>\n<li><strong>auditId</strong> - the Id of the Audit to import</li>\n<li><strong>serviceProviderId</strong> - the original ServiceProviderId</li>\n<li><strong>groupId</strong> - the original GroupId</li>\n<li><strong>endpoint</strong> - the URL of the target odin system to initiate the import</li>\n<li><strong>username</strong> - the username to use to login to the target odin system</li>\n<li><strong>password</strong> - the password to use to login to the target odin system</li>\n<li><strong>encryption</strong> - \"plain\"</li>\n<li><strong>options.password</strong> - default User password to use when creating new users on the target system</li>\n<li><strong>options.sipAuthenticationPassword</strong> - default SIP authentication password on the target system</li>\n<li><strong>options.groupMailServerPassword</strong> - default Group Mail Server password on the target system</li>\n<li><strong>options.passcode</strong> - default User passcode to use when creating new users on the target system</li>\n<li><strong>options.newDomain</strong> - if using export templates to transform userId's, provide the new domain to use for the template</li>\n<li><strong>options.template.userId</strong> - export template used to transform userIds</li>\n<li><strong>options.template.listUri</strong> - export template used to transform listUris</li>\n<li><strong>options.template.fallback</strong> - export template used to transform userIds or listUris if the provided templates fail</li>\n<li><strong>options.serviceProviderId</strong> - the serviceProviderId to create/update on the target system</li>\n<li><strong>options.groupId</strong> - the groupId to create/update on the target system</li>\n<li><strong>options.lookupUsers</strong> - true/false - if true, the system will run a User Report on the target system and attempt to lookup the UserId to use by Phone Number</li>\n<li><strong>options.lookupServiceInstances</strong> - true/false - if true, the system will run a Service Instance Report on the target system and attempt to lookup the ServiceInstanceId to use by Phone Number</li>\n</ul>\n<p>Note: the passwords provided must meet the authentication password restriction requirements set on the target system</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c568226-3267-4ea7-9fb4-aee868038929"},{"name":"Task Audit Service Provider Groups","id":"be93c905-2d27-4517-95ff-22fd9d474ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"aim.audit.service.providers\",\n    \"data\": [\n        {\n            \"task\": \"aim.audit.service.providers\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"template\": \"Full Audit Template\",\n            \"shortTags\": false,\n            \"userVoiceMessagingExtended\": false,\n            \"auditDeviceUserSettings\": false,\n            \"auditAnnouncementFiles\": false\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<h2 id=\"bulk-audit-service-provider-groups\">Bulk Audit Service Provider Groups</h2>\n<p>Initiate a backup/audit for ALL Groups in a ServiceProvider/Enterprise in your system by posting this bulk task.</p>\n<p>NOTE: this task will iterate every group in the given service provider and launch an audit job which may result in a significant amount of task and traffic proliferation that may affect the performance of your network and/or server services.</p>\n<ul>\n<li><strong>serviceProviderId</strong> - The serviceProviderId of the group to audit.</li>\n<li><strong>template</strong> - This must be included and must be one of the valid audit templates displayed on the Odin Audits page.</li>\n<li><strong>shortTags</strong> - Option to query the shortTags (phoneNumbers, etc.) for every user and add them to the audit. This extends the time it takes for the audit to run as well as the size of the audit. The advantage is that you can use these user shortTags to transform userId's via export templates if targeting a different system for import.</li>\n<li><strong>userVoiceMessagingExtended</strong> - Option to include the Voice Messaging Advanced audit, otherwise it will be skipped</li>\n<li><strong>auditDeviceUserSettings</strong> - Option to include device user settings in the audit, otherwise it will be skipped</li>\n<li><strong>auditAnnouncementFiles</strong> - Option to include the announcement files in the audit, otherwise they will be skipped.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"be93c905-2d27-4517-95ff-22fd9d474ad5"},{"name":"Task User Audit","id":"c564c28b-bd44-4628-a4f0-ec2cf785b211","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"audit.user\",\n    \"data\": [\n        {\n            \"task\": \"audit.user\",\n            \"userId\": \"4003@parkbenchsolutions.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c564c28b-bd44-4628-a4f0-ec2cf785b211"}],"id":"8ee32277-c59a-4e33-b768-de79ffb7fca3","_postman_id":"8ee32277-c59a-4e33-b768-de79ffb7fca3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Tasks","id":"8dabeca1-0864-4cad-8713-36c9bb61eaaf","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/tasks?limit=2&status=completed&type=user.services.update","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the size returned</li>\n<li>status: filter by status (pending, completed, or error)</li>\n<li>type: filter by type or types (user.create,user.services.update)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[{"key":"limit","value":"2"},{"key":"status","value":"completed"},{"key":"type","value":"user.services.update"}],"variable":[]}},"response":[{"id":"a8d382c0-0ec9-4627-a1b1-a61c67d27d33","name":"Odin  Tasks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/tasks?limit=2&status=completed&type=user.services.update","host":["{{url}}"],"path":["api","v2","tasks"],"query":[{"key":"limit","value":"2"},{"key":"status","value":"completed"},{"key":"type","value":"user.services.update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 18:16:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 78,\n        \"type\": \"user.services.update\",\n        \"status\": \"completed\",\n        \"userId\": \"sysprov.odin\",\n        \"delay\": null,\n        \"data\": [\n            {\n                \"task\": \"user.services.update\",\n                \"userId\": \"9709580001@microv-works.com\",\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"userServices\": [\n                    {\n                        \"serviceName\": \"Authentication\",\n                        \"assigned\": \"true\"\n                    }\n                ],\n                \"index\": 1,\n                \"status\": \"completed\",\n                \"error\": \"\"\n            }\n        ],\n        \"error\": null,\n        \"description\": \"1 Users\",\n        \"serviceProviderId\": null,\n        \"createdAt\": \"2018-10-19T18:14:11+00:00\",\n        \"updatedAt\": \"2018-10-19T18:14:14+00:00\"\n    },\n    {\n        \"id\": 74,\n        \"type\": \"user.services.update\",\n        \"status\": \"completed\",\n        \"userId\": \"sysprov.odin\",\n        \"delay\": null,\n        \"data\": [\n            {\n                \"task\": \"user.services.update\",\n                \"userId\": \"9709580001@microv-works.com\",\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"userServices\": [\n                    {\n                        \"serviceName\": \"Anonymous Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Authentication\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Always\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Busy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding No Answer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Notify\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Express\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Call Manager\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Do Not Disturb\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Intercept User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Last Number Redial\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Outlook Integration\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Priority Alert\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Return\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Remote Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Acceptance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Selective\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Service Scripts User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Simultaneous Ring Personal\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Alternate Numbers\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 8\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Customer Originated Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Attendant Console\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party MWI Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client Call Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 5\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 10\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 15\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 20\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 25\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 30\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 35\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Retrieval\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Flash Call Hold\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 100\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party Voice Mail Support\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Portal Calling\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Internal Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Callback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Blocking Override\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Party Category\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Barge-in Exempt\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"SMDI Message Desk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video Add-On\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Malicious Call Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Preferred Carrier User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Push to Talk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Basic Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Enhanced Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Host\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Guest\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Diversion Inhibitor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Multiple Call Arrangement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Hold/Retrieve\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Busy Lamp Field\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Three-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Transfer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Privacy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Fax Messaging\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Physical Location\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Charge Number\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Supervisor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Agent\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"N-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directory Number Hunting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Two-Stage Dialing\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Not Reachable\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Custom Ringback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"In-Call Service Activation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Presentation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Restriction\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Anywhere\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Zone Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Polycom Phone Services\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Music On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Prepaid\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Basic\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Standard\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Premium\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Communication Barring User-Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Classmark\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Number Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Pre-alerting Announcement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center Monitoring\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Location-Based Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Mobility\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Me Now\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Recording\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Integrated IMP\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Group Night Forwarding\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 3\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 4\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 17\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 18\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 19\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Sequential Ring\",\n                        \"assigned\": \"true\"\n                    }\n                ],\n                \"index\": 1,\n                \"status\": \"completed\",\n                \"error\": \"UserService#store: SMDI Message Desk: Service is not assignable.\\nEnhanced Call Logs: Service license is violated.\\nBroadWorks Supervisor: Service license is violated.\\nDirectory Number Hunting: Service is not assignable.\"\n            },\n            {\n                \"task\": \"user.services.update\",\n                \"userId\": \"9709580002@microv-works.com\",\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"userServices\": [\n                    {\n                        \"serviceName\": \"Anonymous Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Authentication\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Always\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Busy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding No Answer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Notify\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Express\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Call Manager\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Do Not Disturb\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Intercept User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Last Number Redial\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Outlook Integration\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Priority Alert\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Return\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Remote Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Acceptance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Selective\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Service Scripts User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Simultaneous Ring Personal\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Alternate Numbers\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 8\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Customer Originated Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Attendant Console\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party MWI Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client Call Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 5\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 10\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 15\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 20\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 25\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 30\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 35\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Retrieval\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Flash Call Hold\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 100\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party Voice Mail Support\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Portal Calling\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Internal Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Callback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Blocking Override\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Party Category\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Barge-in Exempt\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"SMDI Message Desk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video Add-On\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Malicious Call Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Preferred Carrier User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Push to Talk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Basic Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Enhanced Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Host\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Guest\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Diversion Inhibitor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Multiple Call Arrangement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Hold/Retrieve\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Busy Lamp Field\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Three-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Transfer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Privacy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Fax Messaging\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Physical Location\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Charge Number\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Supervisor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Agent\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"N-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directory Number Hunting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Two-Stage Dialing\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Not Reachable\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Custom Ringback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"In-Call Service Activation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Presentation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Restriction\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Anywhere\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Zone Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Polycom Phone Services\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Music On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Prepaid\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Basic\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Standard\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Premium\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Communication Barring User-Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Classmark\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Number Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Pre-alerting Announcement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center Monitoring\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Location-Based Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Mobility\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Me Now\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Recording\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Integrated IMP\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Group Night Forwarding\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 3\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 4\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 17\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 18\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 19\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Sequential Ring\",\n                        \"assigned\": \"true\"\n                    }\n                ],\n                \"index\": 2,\n                \"status\": \"completed\",\n                \"error\": \"UserService#store: SMDI Message Desk: Service is not assignable.\\nEnhanced Call Logs: Service license is violated.\\nBroadWorks Supervisor: Service license is violated.\\nDirectory Number Hunting: Service is not assignable.\"\n            }\n        ],\n        \"error\": null,\n        \"description\": \"2 Users\",\n        \"serviceProviderId\": null,\n        \"createdAt\": \"2018-10-01T21:05:41+00:00\",\n        \"updatedAt\": \"2018-10-01T21:05:47+00:00\"\n    }\n]"}],"_postman_id":"8dabeca1-0864-4cad-8713-36c9bb61eaaf"},{"name":"Task","id":"b6a64e74-a614-494a-a1df-cb1d59ff222d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/tasks?id=1","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the size returned</li>\n<li>status: filter by status (pending, completed, or error)</li>\n<li>type: filter by type or types (user.create,user.services.update)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"9967226e-e08a-4de9-a7a1-2ddb2b1a0fdf","name":"Odin  Task","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/tasks?id=1","host":["{{url}}"],"path":["api","v2","tasks"],"query":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 18:18:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"482"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"type\": \"user.services.update\",\n    \"status\": \"completed\",\n    \"userId\": \"sysprov.odin\",\n    \"delay\": null,\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9546073090@microv-works.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"group.odin\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1,\n            \"status\": \"completed\",\n            \"error\": \"\"\n        }\n    ],\n    \"error\": null,\n    \"description\": \"1 Users\",\n    \"serviceProviderId\": null,\n    \"createdAt\": \"2018-07-07T19:40:31+00:00\",\n    \"updatedAt\": \"2018-07-07T19:40:33+00:00\"\n}"}],"_postman_id":"b6a64e74-a614-494a-a1df-cb1d59ff222d"},{"name":"Tasks by Status-Type","id":"8a885db5-75a0-432e-ab8d-64028d90c307","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/tasks?limit=2&status=completed&type=user.services.update","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[{"key":"limit","value":"2"},{"key":"status","value":"completed"},{"key":"type","value":"user.services.update"}],"variable":[]}},"response":[],"_postman_id":"8a885db5-75a0-432e-ab8d-64028d90c307"},{"name":"Tasks","id":"96e46f8c-ae63-49d6-b195-aa242de81313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/tasks?limit=2&status=completed&type=user.services.update","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[{"key":"limit","value":"2"},{"key":"status","value":"completed"},{"key":"type","value":"user.services.update"}],"variable":[]}},"response":[],"_postman_id":"96e46f8c-ae63-49d6-b195-aa242de81313"},{"name":"Task Group Dns Assign","id":"088e4ea7-292e-44b3-9ffa-7cc2f163be6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"949fc4f2-f954-409d-9e38-eea6ab2c2532","name":"Task Group Dns Assign","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-01-24T13:35:09+00:00\",\n    \"createdAt\": \"2020-01-24T13:35:09+00:00\",\n    \"id\": 10\n}"}],"_postman_id":"088e4ea7-292e-44b3-9ffa-7cc2f163be6e"},{"name":"Task Group Bulk Clone","id":"fc9a87e0-267c-40a8-b199-26aea47a2a3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.bulk.clone\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.bulk.clone\",\r\n            \"source\": {\r\n                \"serviceProviderId\": \"ent.odin\",\r\n                \"groupId\": \"grp.odin\"\r\n            },\r\n            \"destination\": {\r\n                \"serviceProviderId\": \"ent.odin.call-capacity\",\r\n                \"groupId\": \"grp.odin.call-capacity\",\r\n                \"userLimit\": 30\r\n            },\r\n            \"options\": {\r\n                \"featureAccessCode\": true,\r\n                \"callProcessingPolicy\": true,\r\n                \"networkClassOfService\": false,\r\n                \"extensionLength\": true,\r\n                \"services\": true,\r\n                \"policy\": true,\r\n                \"schedule\": true,\r\n                \"outgoingCallingPlan\": true,\r\n                \"routingProfile\": false,\r\n                \"passwordRules\": false,\r\n                \"trunkGroupCallCapacity\": true\r\n            },\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc9a87e0-267c-40a8-b199-26aea47a2a3c"},{"name":"Task Group Device Tag Modify","id":"0d0c5e43-8f59-4c7e-92d5-fa11a9826170","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.tag.modify\",\n    \"data\": [\n        {\n            \"task\": \"group.device.tag.modify\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"deviceName\": \"5134004006@lab.tekvoice.net\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"tags\": [\n                {\n                    \"tagName\": \"%tagName1%\",\n                    \"tagValue\": \"tagValue1\"\n                },\n                {\n                    \"tagName\": \"%tagName2%\",\n                    \"tagValue\": \"tagValue2\"\n                },\n                {\n                    \"tagName\": \"%tagName3%\",\n                    \"tagValue\": \"tagValue3\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d0c5e43-8f59-4c7e-92d5-fa11a9826170"},{"name":"Task Group Device Create","id":"b830d1df-9402-4fb3-adf5-dd06063cf8f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.create\",\n    \"data\": [\n        {\n            \"task\": \"group.device.create\",\n            \"allowAccessDeviceUpdate\": false,\n            \"serviceProviderId\": \"reseler-sp\",\n            \"groupId\": \"test007R\",\n            \"deviceName\": \"testAPI002\",\n            \"accessDeviceEndpoint\": {\n                \"linePort\": \"\",\n                \"accessDevice\": {\n                    \"deviceType\": \"2Wire HomePortal\",\n                    \"deviceName\": \"testAPI002\",\n                    \"deviceLevel\": \"group\",\n                    \"protocol\": \"\",\n                    \"netAddress\": \"\",\n                    \"port\": \"\",\n                    \"outboundProxyServerNetAddress\": \"\",\n                    \"stunServerNetAddress\": \"\",\n                    \"macAddress\": \"\",\n                    \"serialNumber\": \"\",\n                    \"description\": \"\",\n                    \"physicalLocation\": \"\",\n                    \"transportProtocol\": \"\",\n                    \"useCustomUserNamePassword\": false,\n                    \"accessDeviceCredentials\": {\n                        \"userName\": \"\",\n                        \"password\": \"\"\n                    }\n                }\n            },\n            \"index\": \"1\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<p>Task Group Device Create</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b830d1df-9402-4fb3-adf5-dd06063cf8f8"},{"name":"Task Group Communication Barring Authorization Codes Create","id":"e4224617-244b-47bc-b1d0-1ea69b2c9d91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.communication.barring.authorization.code.create\",\n    \"data\": [\n        {\n            \"task\": \"group.communication.barring.authorization.code.create\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"codes\": [\n                {\n                    \"code\": \"444\",\n                    \"description\": \"Test444\"\n                },\n                {\n                    \"code\": \"458\",\n                    \"description\": \"Test458\"\n                },\n                {\n                    \"code\": \"333\",\n                    \"description\": \"Test333\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<p>Task Group Device Create</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4224617-244b-47bc-b1d0-1ea69b2c9d91"},{"name":"Task Group Communication Barring Authorization Codes Delete","id":"ad7b8b51-de49-4001-9868-4a3450c39d94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.communication.barring.authorization.code.delete\",\n    \"data\": [\n        {\n            \"task\": \"group.communication.barring.authorization.code.delete\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"codes\": [\n                {\n                    \"code\": \"444\"\n                },\n                {\n                    \"code\": \"333\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<p>Task Group Device Create</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad7b8b51-de49-4001-9868-4a3450c39d94"},{"name":"Task Group Device Type Tag Upsert","id":"68cf9737-c226-435f-8339-bc34fa1c6286","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.device.type.tag.upsert\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.device.type.tag.upsert\",\r\n            \"serviceProviderId\": \"ent.odin\",\r\n            \"groupId\": \"grp.odin\",\r\n            \"deviceType\": \"Business Communicator - Mobile\",\r\n            \"rebuildDevice\": false,\r\n            \"resetDevice\": false,\r\n            \"tags\": [\r\n                {\r\n                    \"tagName\": \"%tagName1%\",\r\n                    \"tagValue\": \"tagValue1\"\r\n                },\r\n                {\r\n                    \"tagName\": \"%tagName2%\",\r\n                    \"tagValue\": \"tagValue2\"\r\n                },\r\n                {\r\n                    \"tagName\": \"%tagName3%\",\r\n                    \"tagValue\": \"tagValue3\"\r\n                }\r\n\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"68cf9737-c226-435f-8339-bc34fa1c6286"},{"name":"Task Group Device Upsert","id":"11cfe253-d742-4646-956c-244b4bb4c87f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.upsert\",\n    \"data\": [\n        {\n            \"task\": \"group.device.upsert\",\n            \"allowAccessDeviceUpdate\": false,\n            \"deviceLevel\": \"group\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"deviceName\": \"groupDeviceUpsert!\",\n            \"deviceType\": \"2Wire HomePortal\",\n            \"protocol\": \"\",\n            \"netAddress\": \"\",\n            \"port\": \"\",\n            \"outboundProxyServerNetAddress\": \"\",\n            \"stunServerNetAddress\": \"\",\n            \"macAddress\": \"\",\n            \"serialNumber\": \"\",\n            \"description\": \"\",\n            \"physicalLocation\": \"\",\n            \"transportProtocol\": \"\",\n            \"mobilityManagerProvisioningURL\": \"\",\n            \"mobilityManagerProvisioningUserName\": \"\",\n            \"mobilityManagerProvisioningPassword\": \"\",\n            \"mobilityManagerDefaultOriginatingServiceKey\": \"\",\n            \"mobilityManagerDefaultTerminatingServiceKey\": \"\",\n            \"useCustomUserNamePassword\": false,\n            \"accessDeviceCredentials\": {\n                \"userName\": \"\",\n                \"password\": \"\"\n            },\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": \"1\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<p>Task Group Device Create</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"11cfe253-d742-4646-956c-244b4bb4c87f"},{"name":"Task Group Dns Unassign","id":"6141a6b0-7706-4f05-a72e-d592dee4a02a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.dns.unassign\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.dns.unassign\",\r\n            \"serviceProviderId\": \"ent.odin\",\r\n            \"groupId\": \"grp.odin.copy\",\r\n            \"dns\": [\r\n                {\r\n                    \"min\": \"9719580011\",\r\n                    \"max\": \"9719580011\"\r\n                },\r\n                {\r\n                    \"min\": \"9719580012\",\r\n                    \"max\": \"9719580019\"\r\n                },\r\n                {\r\n                    \"min\": \"9719580020\"\r\n                }\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6141a6b0-7706-4f05-a72e-d592dee4a02a"},{"name":"Task Group  Services Assign","id":"ae8c460b-9f8b-4d38-ba15-bcab9e06266b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.services.update\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.services.update\",\r\n            \"serviceProviderId\": \"ent.odin.testxp\",\r\n            \"groupId\": \"grpPankaj\",\r\n            \"userServices\": [\r\n                {\r\n                    \"serviceName\": \"Advice Of Charge\",\r\n                    \"authorized\": true,\r\n                    \"quantity\": 30,\r\n                    \"licensed\": true,\r\n                    \"userAssignable\": true,\r\n                    \"isUnlimited\": false\r\n                }\r\n            ],\r\n            \"groupServices\": [\r\n                {\r\n                    \"serviceName\": \"Auto Attendant\",\r\n                    \"authorized\": true,\r\n                    \"quantity\": 30,\r\n                    \"licensed\": true,\r\n                    \"userAssignable\": true,\r\n                    \"isUnlimited\": false\r\n                }\r\n            ],\r\n            \"servicePackServices\": [\r\n                {\r\n                    \"serviceName\": \"Basic\",\r\n                    \"authorized\": true,\r\n                    \"quantity\": 30,\r\n                    \"licensed\": true,\r\n                    \"userAssignable\": true,\r\n                    \"isUnlimited\": false\r\n                }\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v2/task","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","task"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae8c460b-9f8b-4d38-ba15-bcab9e06266b"},{"name":"Task Group  Services Assign Copy","id":"be80c2f9-32f2-4790-b04b-3c88c1606658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.services.update\",\n    \"data\": [\n        {\n            \"task\": \"group.services.update\",\n            \"serviceProviderId\": \"ent.odin.testxp\",\n            \"groupId\": \"grpPankaj\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Advice Of Charge\",\n                    \"authorized\": true,\n                    \"assigned\": true,\n                    \"quantity\": 30,\n                    \"licensed\": true,\n                    \"userAssignable\": true,\n                    \"isUnlimited\": false\n                }\n            ],\n            \"groupServices\": [\n                {\n                    \"serviceName\": \"Auto Attendant\",\n                    \"authorized\": true,\n                    \"assigned\": true,\n                    \"quantity\": 30,\n                    \"licensed\": true,\n                    \"userAssignable\": true,\n                    \"isUnlimited\": false\n                }\n            ],\n            \"servicePackServices\": [\n                {\n                    \"serviceName\": \"Basic\",\n                    \"authorized\": true,\n                    \"assigned\": true,\n                    \"quantity\": 30,\n                    \"licensed\": true,\n                    \"userAssignable\": true,\n                    \"isUnlimited\": false\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"be80c2f9-32f2-4790-b04b-3c88c1606658"},{"name":"Task Group Trunk Group Bulk","id":"2ae29a7f-4af2-407a-9d6d-5784ca8fa93b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","name":"Content-Type","type":"text","value":"application/json;charset=utf-8"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"bulk.group.trunk.group.create\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"bulk.group.trunk.group.create\",\r\n            \"serviceProviderId\": \"dest.ent.odin\",\r\n            \"groupId\": \"dest.grp.odin\",\r\n            \"serviceProvider\": {},\r\n            \"group\": {\r\n                \"userLimit\": 10\r\n            },\r\n            \"clone\": {\r\n                \"serviceProviderId\": \"ent-generic-sip-gateway\",\r\n                \"groupId\": \"grp-generic-sip-gateway\",\r\n                \"options\": {\r\n                    \"services\": true,\r\n                    \"servicePacks\": true,\r\n                    \"networkClassOfService\": false,\r\n                    \"enterpriseVoiceVPN\": true,\r\n                    \"callProcessingPolicy\": false,\r\n                    \"featureAccessCode\": true,\r\n                    \"extensionLength\": true,\r\n                    \"policy\": true,\r\n                    \"schedule\": true,\r\n                    \"outgoingCallingPlan\": true,\r\n                    \"routingProfile\": false,\r\n                    \"deviceType\": true\r\n                }\r\n            },\r\n            \"serviceProviderTrunkGroupCallCapacity\": {\r\n                \"maxActiveCalls\": 10,\r\n                \"burstingMaxActiveCalls\": -1\r\n            },\r\n            \"device\": {\r\n                \"allowAccessDeviceUpdate\": \"false\",\r\n                \"deviceType\": \"Generic SIP Gateway - Trusted\",\r\n                \"deviceName\": \"generic-sip-gateway-trusted-new\",\r\n                \"deviceLevel\": \"Group\",\r\n                \"accessDeviceCredentials\": {\r\n                    \"userName\": \"ThisHasToBeUnique\",\r\n                    \"password\": \"?a$*gQBS6s\"\r\n                },\r\n                \"protocol\": \"SIP 2.0\",\r\n                \"netAddress\": \"216.196.254.201\",\r\n                \"port\": 1025,\r\n                \"outboundProxyServerNetAddress\": \"216.196.254.202\",\r\n                \"stunServerNetAddress\": \"216.196.254.203\",\r\n                \"macAddress\": \"B3945BE783CB\",\r\n                \"serialNumber\": \"B3-94-5B-E7-83-CB\",\r\n                \"description\": \"description\",\r\n                \"numberOfPorts\": {\r\n                    \"unlimited\": \"true\"\r\n                },\r\n                \"numberOfAssignedPorts\": 0,\r\n                \"status\": \"Online\",\r\n                \"physicalLocation\": \"office building\",\r\n                \"transportProtocol\": \"UDP\",\r\n                \"useCustomUserNamePassword\": true,\r\n                \"tags\": [],\r\n                \"relatedServices\": []\r\n            },\r\n            \"groupTrunkGroup\": {\r\n                \"maxActiveCalls\": 5,\r\n                \"burstingMaxActiveCalls\": 0,\r\n                \"name\": \"dest.grp.odin.trunk\",\r\n                \"allowTerminationToDtgIdentity\": false,\r\n                \"allowTerminationToTrunkGroupIdentity\": false,\r\n                \"allowUnscreenedCalls\": false,\r\n                \"allowUnscreenedEmergencyCalls\": false,\r\n                \"capacityExceededTrapInitialCalls\": 0,\r\n                \"capacityExceededTrapOffsetCalls\": 0,\r\n                \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\r\n                \"continuousOptionsSendingIntervalSeconds\": 30,\r\n                \"enableBursting\": false,\r\n                \"enableNetworkAddressIdentity\": false,\r\n                \"failureOptionsSendingIntervalSeconds\": 10,\r\n                \"failureThresholdCounter\": 1,\r\n                \"includeDtgIdentity\": false,\r\n                \"includeOtgIdentityForNetworkCalls\": false,\r\n                \"includeTrunkGroupIdentity\": false,\r\n                \"includeTrunkGroupIdentityForNetworkCalls\": false,\r\n                \"invitationTimeout\": 6,\r\n                \"inviteFailureThresholdCounter\": 1,\r\n                \"inviteFailureThresholdWindowSeconds\": 30,\r\n                \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\r\n                \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\r\n                \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\r\n                \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\r\n                \"pilotUserChargeNumberPolicy\": \"No Calls\",\r\n                \"prefixEnabled\": false,\r\n                \"requireAuthentication\": true,\r\n                \"routeToPeeringDomain\": false,\r\n                \"sendContinuousOptionsMessage\": false,\r\n                \"statefulReroutingEnabled\": false,\r\n                \"successThresholdCounter\": 1,\r\n                \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\r\n                \"useSystemCallingLineAssertedIdentityPolicy\": true,\r\n                \"useSystemUserLookupPolicy\": true,\r\n                \"userLookupPolicy\": \"Basic\",\r\n                \"maxIncomingCalls\": 2,\r\n                \"maxOutgoingCalls\": 2,\r\n                \"accessDevice\": {\r\n                    \"staticRegistrationCapable\": \"false\",\r\n                    \"useDomain\": \"true\",\r\n                    \"staticLineOrdering\": \"false\",\r\n                    \"deviceName\": \"generic-sip-gateway-trusted-new\",\r\n                    \"deviceLevel\": \"Group\"\r\n                },\r\n                \"sipAuthenticationUserName\": \"dest.grp.odin.trunk\",\r\n                \"sipAuthenticationPassword\": \"2hyar=wW![%d8Ye<6G\",\r\n                \"trunkGroupIdentity\": \"dest.grp.odin.trunk@parkbenchsolutions.com\",\r\n                \"otgDtgIdentity\": \"dest.grp.odin.trunk\"\r\n            },\r\n            \"dns\": [\r\n                {\r\n                    \"min\": \"5133621460\"\r\n                },\r\n                {\r\n                    \"min\": \"5133621461\",\r\n                    \"max\": \"5133621463\"\r\n                },\r\n                {\r\n                    \"min\": \"5133621465\",\r\n                    \"max\": \"5133621466\"\r\n                }\r\n            ],\r\n            \"users\": [\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": true,\r\n                    \"userId\": \"5133621460@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621460\",\r\n                    \"firstName\": \"5133621460\",\r\n                    \"callingLineIdLastName\": \"5133621460\",\r\n                    \"callingLineIdFirstName\": \"5133621460\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621460\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621460@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621461@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621461\",\r\n                    \"firstName\": \"5133621461\",\r\n                    \"callingLineIdLastName\": \"5133621461\",\r\n                    \"callingLineIdFirstName\": \"5133621461\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621461\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621461@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621462@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621462\",\r\n                    \"firstName\": \"5133621462\",\r\n                    \"callingLineIdLastName\": \"5133621462\",\r\n                    \"callingLineIdFirstName\": \"5133621462\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621462\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621462@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621463@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621463\",\r\n                    \"firstName\": \"5133621463\",\r\n                    \"callingLineIdLastName\": \"5133621463\",\r\n                    \"callingLineIdFirstName\": \"5133621463\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621463\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621463@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621465@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621465\",\r\n                    \"firstName\": \"5133621465\",\r\n                    \"callingLineIdLastName\": \"5133621465\",\r\n                    \"callingLineIdFirstName\": \"5133621465\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621465\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621465@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621466@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621466\",\r\n                    \"firstName\": \"5133621466\",\r\n                    \"callingLineIdLastName\": \"5133621466\",\r\n                    \"callingLineIdFirstName\": \"5133621466\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621466\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621466@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<p>only one deviceType per sip trunk group that that will be assigned to the group device</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ae29a7f-4af2-407a-9d6d-5784ca8fa93b"},{"name":"Task Group Trunk Group Create","id":"ab35bc26-f92b-46d0-b777-873a91c771b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.trunk.group.create\",\n    \"data\": [\n        {\n            \"task\": \"group.trunk.group.create\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"name\": \"trunk1.grp.odin.audit\",\n            \"allowTerminationToDtgIdentity\": false,\n            \"allowTerminationToTrunkGroupIdentity\": false,\n            \"allowUnscreenedCalls\": false,\n            \"allowUnscreenedEmergencyCalls\": false,\n            \"capacityExceededTrapInitialCalls\": 0,\n            \"capacityExceededTrapOffsetCalls\": 0,\n            \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n            \"continuousOptionsSendingIntervalSeconds\": 30,\n            \"enableBursting\": false,\n            \"enableNetworkAddressIdentity\": false,\n            \"failureOptionsSendingIntervalSeconds\": 10,\n            \"failureThresholdCounter\": 1,\n            \"includeDtgIdentity\": false,\n            \"includeOtgIdentityForNetworkCalls\": false,\n            \"includeTrunkGroupIdentity\": false,\n            \"includeTrunkGroupIdentityForNetworkCalls\": false,\n            \"invitationTimeout\": 6,\n            \"inviteFailureThresholdCounter\": 1,\n            \"inviteFailureThresholdWindowSeconds\": 30,\n            \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n            \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n            \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n            \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n            \"pilotUserChargeNumberPolicy\": \"No Calls\",\n            \"prefixEnabled\": false,\n            \"requireAuthentication\": true,\n            \"routeToPeeringDomain\": false,\n            \"sendContinuousOptionsMessage\": false,\n            \"statefulReroutingEnabled\": false,\n            \"successThresholdCounter\": 1,\n            \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n            \"useSystemCallingLineAssertedIdentityPolicy\": true,\n            \"useSystemUserLookupPolicy\": true,\n            \"userLookupPolicy\": \"Basic\",\n            \"maxActiveCalls\": 2,\n            \"maxIncomingCalls\": 2,\n            \"maxOutgoingCalls\": 2,\n            \"accessDevice\": {\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"staticLineOrdering\": \"false\",\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.audit\",\n                \"deviceName\": \"1004F23B47AC\",\n                \"deviceLevel\": \"System\"\n            },\n            \"sipAuthenticationUserName\": \"trunk1.grp.odin.audit\",\n            \"sipAuthenticationPassword\": \"zlpdmZb)q3\",\n            \"trunkGroupIdentity\": \"trunk1.grp.odin.audit@parkbenchsolutions.com\",\n            \"otgDtgIdentity\": \"trunk1.grp.odin.audit\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6da33769-f44f-463f-be24-3337f9bb61c6","name":"Task Group Dns Assign","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-01-24T13:35:09+00:00\",\n    \"createdAt\": \"2020-01-24T13:35:09+00:00\",\n    \"id\": 10\n}"}],"_postman_id":"ab35bc26-f92b-46d0-b777-873a91c771b9"},{"name":"Task Group Trunk Group Create Copy","id":"1822fe8c-3c71-43bf-9708-ff0941c016d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.trunk.group.create\",\n    \"data\": [\n        {\n            \"task\": \"group.trunk.group.create\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"name\": \"trunk1.grp.odin.audit\",\n            \"allowTerminationToDtgIdentity\": false,\n            \"allowTerminationToTrunkGroupIdentity\": false,\n            \"allowUnscreenedCalls\": false,\n            \"allowUnscreenedEmergencyCalls\": false,\n            \"capacityExceededTrapInitialCalls\": 0,\n            \"capacityExceededTrapOffsetCalls\": 0,\n            \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n            \"continuousOptionsSendingIntervalSeconds\": 30,\n            \"enableBursting\": false,\n            \"enableNetworkAddressIdentity\": false,\n            \"failureOptionsSendingIntervalSeconds\": 10,\n            \"failureThresholdCounter\": 1,\n            \"includeDtgIdentity\": false,\n            \"includeOtgIdentityForNetworkCalls\": false,\n            \"includeTrunkGroupIdentity\": false,\n            \"includeTrunkGroupIdentityForNetworkCalls\": false,\n            \"invitationTimeout\": 6,\n            \"inviteFailureThresholdCounter\": 1,\n            \"inviteFailureThresholdWindowSeconds\": 30,\n            \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n            \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n            \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n            \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n            \"pilotUserChargeNumberPolicy\": \"No Calls\",\n            \"prefixEnabled\": false,\n            \"requireAuthentication\": true,\n            \"routeToPeeringDomain\": false,\n            \"sendContinuousOptionsMessage\": false,\n            \"statefulReroutingEnabled\": false,\n            \"successThresholdCounter\": 1,\n            \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n            \"useSystemCallingLineAssertedIdentityPolicy\": true,\n            \"useSystemUserLookupPolicy\": true,\n            \"userLookupPolicy\": \"Basic\",\n            \"maxActiveCalls\": 2,\n            \"maxIncomingCalls\": 2,\n            \"maxOutgoingCalls\": 2,\n            \"accessDevice\": {\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"staticLineOrdering\": \"false\",\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.audit\",\n                \"deviceName\": \"1004F23B47AC\",\n                \"deviceLevel\": \"System\"\n            },\n            \"sipAuthenticationUserName\": \"trunk1.grp.odin.audit\",\n            \"sipAuthenticationPassword\": \"zlpdmZb)q3\",\n            \"trunkGroupIdentity\": \"trunk1.grp.odin.audit@parkbenchsolutions.com\",\n            \"otgDtgIdentity\": \"trunk1.grp.odin.audit\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f858e874-81a8-4c8e-aaa9-973dc44056a1","name":"Task Group Dns Assign","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-01-24T13:35:09+00:00\",\n    \"createdAt\": \"2020-01-24T13:35:09+00:00\",\n    \"id\": 10\n}"}],"_postman_id":"1822fe8c-3c71-43bf-9708-ff0941c016d4"},{"name":"Task Group Trunk Group Update","id":"42e49239-a1f8-4159-a0f0-46c7f31bae6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.trunk.group.update\",\n    \"data\": [\n        {\n            \"task\": \"group.trunk.group.update\",\n            \"pilotUserId\": \"5138993001@parkbenchsolutions.com\",\n            \"department\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.audit\",\n                \"name\": \"engineering\"\n            },\n            \"accessDevice\": {\n                \"deviceLevel\": \"System\",\n                \"deviceName\": \"0004F2AE4EFE\"\n            },\n            \"maxActiveCalls\": 3,\n            \"maxIncomingCalls\": 2,\n            \"maxOutgoingCalls\": 1,\n            \"enableBursting\": false,\n            \"capacityExceededTrapInitialCalls\": 0,\n            \"capacityExceededTrapOffsetCalls\": 0,\n            \"invitationTimeout\": 6,\n            \"requireAuthentication\": true,\n            \"sipAuthenticationUserName\": \"sipauditusername\",\n            \"trunkGroupIdentity\": \"trunk.odin.identity@parkbenchsolutions.com\",\n            \"allowTerminationToTrunkGroupIdentity\": false,\n            \"allowTerminationToDtgIdentity\": false,\n            \"includeTrunkGroupIdentity\": false,\n            \"includeDtgIdentity\": false,\n            \"includeTrunkGroupIdentityForNetworkCalls\": false,\n            \"includeOtgIdentityForNetworkCalls\": false,\n            \"enableNetworkAddressIdentity\": false,\n            \"allowUnscreenedCalls\": false,\n            \"allowUnscreenedEmergencyCalls\": false,\n            \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n            \"pilotUserChargeNumberPolicy\": \"No Calls\",\n            \"routeToPeeringDomain\": false,\n            \"prefixEnabled\": false,\n            \"statefulReroutingEnabled\": false,\n            \"sendContinuousOptionsMessage\": false,\n            \"continuousOptionsSendingIntervalSeconds\": 30,\n            \"failureOptionsSendingIntervalSeconds\": 10,\n            \"failureThresholdCounter\": 1,\n            \"successThresholdCounter\": 1,\n            \"inviteFailureThresholdCounter\": 1,\n            \"inviteFailureThresholdWindowSeconds\": 30,\n            \"trunkGroupState\": \"Available\",\n            \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n            \"useSystemCallingLineAssertedIdentityPolicy\": true,\n            \"totalActiveIncomingCalls\": 0,\n            \"totalActiveOutgoingCalls\": 0,\n            \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n            \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n            \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n            \"userLookupPolicy\": \"Basic\",\n            \"useSystemUserLookupPolicy\": true,\n            \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n            \"implicitRegistrationSetSupportPolicy\": \"Disabled\",\n            \"useSystemImplicitRegistrationSetSupportPolicy\": true,\n            \"sipIdentityForPilotAndProxyTrunkModesPolicy\": \"User\",\n            \"useSystemSIPIdentityForPilotAndProxyTrunkModesPolicy\": true,\n            \"useSystemSupportConnectedIdentityPolicy\": true,\n            \"supportConnectedIdentityPolicy\": \"Disabled\",\n            \"useSystemOptionsMessageResponseStatusCodes\": true,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"name\": \"trunk.odin.audit\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6ce9c34a-4e10-4dbd-97cb-9a0668ec2738","name":"Task Group Dns Assign","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-01-24T13:35:09+00:00\",\n    \"createdAt\": \"2020-01-24T13:35:09+00:00\",\n    \"id\": 10\n}"}],"_postman_id":"42e49239-a1f8-4159-a0f0-46c7f31bae6e"},{"name":"Task Service Provider Bulk Clone","id":"60460824-3303-41f1-ba0e-1e4d9efdc378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json;charset=utf-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"service.provider.bulk.clone\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"service.provider.bulk.clone\",\r\n            \"source\": {\r\n                \"serviceProviderId\": \"ent.odin\"\r\n            },\r\n            \"destination\": {\r\n                \"serviceProviderId\": \"ent.odin.call-capacity\"\r\n            },\r\n            \"options\": {\r\n                \"featureAccessCode\": true,\r\n                \"services\": true,\r\n                \"servicePacks\": true,\r\n                \"networkClassOfService\": false,\r\n                \"enterpriseVoiceVPN\": true,\r\n                \"callProcessingPolicy\": true,\r\n                \"domains\": true,\r\n                \"passwordRules\": true,\r\n                \"schedule\": true,\r\n                \"trunkGroupCallCapacity\": true\r\n            },\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"60460824-3303-41f1-ba0e-1e4d9efdc378"},{"name":"Task Trunk Call Capacity","id":"291fbd2c-1918-41d6-ae8a-756c87ab3899","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 1\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 2\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"41f8938f-fbae-4e07-8fb3-1d87579f465c","name":"Task Trunk Call Capacity","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-02-04T17:30:26+00:00\",\n    \"createdAt\": \"2020-02-04T17:30:26+00:00\",\n    \"id\": 102\n}"}],"_postman_id":"291fbd2c-1918-41d6-ae8a-756c87ab3899"},{"name":"Task Trunk Call Capacity Copy","id":"b03f1b18-1d16-402a-9771-6a278c53181b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 1\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 2\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"62a3efa5-98ab-4809-aa3a-3373cb7c51e6","name":"Task Trunk Call Capacity","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-02-04T17:30:26+00:00\",\n    \"createdAt\": \"2020-02-04T17:30:26+00:00\",\n    \"id\": 102\n}"}],"_postman_id":"b03f1b18-1d16-402a-9771-6a278c53181b"},{"name":"Task User Authentication Modify","id":"39e51d0a-9163-4481-bd30-0902afaa04e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.authentication.update\",\n    \"data\": [\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"userName\": \"9871515000\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"userName\": \"9871515001\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"resetDevice\": true,\n            \"index\": 2\n        },\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"userName\": \"9871515003\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"resetDevice\": true,\n            \"index\": 3\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<p><strong>userId:</strong> <em>is required</em><br />\n<strong>userName:</strong> <em>is required</em><br />\n<strong>newPassword:</strong> * is required*<br /></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"39e51d0a-9163-4481-bd30-0902afaa04e1"},{"name":"Task User Copy","id":"5474b32f-1c8e-47cd-bfb6-6ece784033cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.copy\",\n    \"data\": [\n        {\n            \"task\": \"user.copy\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"odin-bulk@parkbenchsolutions.com\",\n                \"lastName\": \"pbs\",\n                \"firstName\": \"odin-bulk\",\n                \"callingLineIdLastName\": \"pbs\",\n                \"callingLineIdFirstName\": \"odin-bulk\",\n                \"password\": \"VeryL0ngP@ssw0rd\",\n                \"phoneNumber\": \"+1-5134004008\",\n                \"extension\": \"4008\",\n                \"linePort\": \"5134004008@parkbenchsolutions.com\",\n                \"macAddress\": \"0004F2B3B848\",\n                \"passcode\": \"12345\"\n            },\n            \"options\": {\n                \"featureAccessCode\": true,\n                \"callProcessingPolicy\": true,\n                \"networkClassOfService\": true,\n                \"extensionLength\": true,\n                \"services\": true,\n                \"policy\": true,\n                \"schedule\": true,\n                \"outgoingCallingPlan\": true,\n                \"routingProfile\": true\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5474b32f-1c8e-47cd-bfb6-6ece784033cf"},{"name":"Task User Create","id":"4f7312cf-a3f8-4a33-bb2c-b04ba2c66fb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5OTcyNzc1LCJuYnAiOjE1Mzk5NzI3NzUsImV4cCI6MTU0MDAxNTk3NSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa2RIUlRaSVdtcHJTMDEzVkhGVGNWSmhhRGhxUmxFOVBTSXNJblpoYkhWbElqb2lRWFI0VjFCclFteEdNSFZaWWxkRGVuaFNaa05aT0RnNGJXZExVell4VFhoVlRsaFdUVGhIVDBzeFNUMGlMQ0p0WVdNaU9pSm1OakF6TTJJeFlUQmxZV05tTVdWa05qUm1NelU1TkdRMlpqUTNOV0ZsWVRoa09XWmxNR1pqTVRWaE5UWmxZbUkxWVRNNVpUTTNNakV6TVRVNVkySXlJbjA9IiwicCI6ImV5SnBkaUk2SW5kRWVFOW9jMlpyTjFwS2RVNXZlazFMTnpVeGVFRTlQU0lzSW5aaGJIVmxJam9pVVdad2EwWjRaSGR6WlZ3dlYwdFFkbWwzUTFkSk56bDNZbkJIUzF3dlJsUlZWVTUyU2xOeWVXdzJZM2xrVEZKT2FqZGtRVGd5TUVGYU4yVnFVSGt3YmpsalYxTmlZMjlVYVhwdVkzRm5WamxHVDNOelZYZEtkejA5SWl3aWJXRmpJam9pT0dZNU16a3dOelV5WkRjNU16TmtaVE14WmpKbE5EWmtObVV4T1ROaU9ETm1aRFprTW1Jd1lqZGlPRGhtT0dSa01EWmxaV1ptTkdZMVpqY3pZakF6TWlKOSIsImUiOiJleUpwZGlJNklqQXdVemxNZFV3NFl6RXlSbnBGU0ZOYVRUQnRNV2M5UFNJc0luWmhiSFZsSWpvaVNGVTRRbk5xYUd0blZHb3hWa05UVGxNNU5XNVdaejA5SWl3aWJXRmpJam9pWTJSbVpqVTVOR1ZrTTJVd1pqZGhaak5tT1RJNE1qRm1aVGMzWW1NNE56RTVNRGd4TVRVd01tTTFOamd4TkdRMFptTTFNR1V3WTJNd01HUTRPR1ZtWkNKOSJ9fQ.brCqtjYHeJmQRGQSZtiLqXMo7cSJ0m_H-BzVzlm7ZJ8"},{"key":"connection","value":"keep-alive"},{"key":"content-length","value":"253"},{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:62.0) Gecko/20100101 Firefox/62.0"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.create\",\n    \"data\": [\n        {\n            \"task\": \"user.create\",\n            \"isDnAssigned\": true,\n            \"isPilotUserId\": true,\n            \"serviceProviderId\": \"P&G-SIP-Prod_ent\",\n            \"groupId\": \"CINGRP5769363\",\n            \"userId\": \"5133621460@as.voip.fuse.net\",\n            \"lastName\": \"5133621460\",\n            \"firstName\": \"5133621460\",\n            \"callingLineIdLastName\": \"5133621460\",\n            \"callingLineIdFirstName\": \"5133621460\",\n            \"password\": \"le3prf\",\n            \"passcode\": \"170562\",\n            \"phoneNumber\": \"5133621460\",\n            \"activatePhoneNumber\": true,\n            \"extension\": \"\",\n            \"callingLineIdPhoneNumber\": \"\",\n            \"timeZone\": \"\",\n            \"language\": \"English\",\n            \"networkClassOfService\": \"\",\n            \"mobilePhoneNumber\": \"\",\n            \"pagerPhoneNumber\": \"\",\n            \"emailAddress\": \"\",\n            \"addressLocation\": \"123 Main St\",\n            \"department\": \"\",\n            \"address\": {\n                \"city\": \"Tampa\",\n                \"stateOrProvince\": \"Florida\",\n                \"zipOrPostalCode\": \"33556\",\n                \"country\": \"United States\"\n            },\n            \"domain\": \"as.voip.fuse.net\",\n            \"endpointType\": \"trunkAddressing\",\n            \"allowAccessDeviceUpdate\": false,\n            \"accessDeviceEndpoint\": {\n                \"accessDevice\": {\n                    \"deviceType\": \"Polycom Soundpoint IP 600\",\n                    \"deviceName\": \"8135551500\",\n                    \"protocol\": \"SIP 2.0\",\n                    \"netAddress\": \"\",\n                    \"port\": \"\",\n                    \"outboundProxyServerNetAddress\": \"\",\n                    \"stunServerNetAddress\": \"\",\n                    \"macAddress\": \"\",\n                    \"serialNumber\": \"\",\n                    \"description\": \"\",\n                    \"physicalLocation\": \"\",\n                    \"transportProtocol\": \"TCP\",\n                    \"useCustomUserNamePassword\": false,\n                    \"accessDeviceCredentials\": {\n                        \"userName\": \"\",\n                        \"password\": \"\"\n                    },\n                    \"deviceLevel\": \"Group\"\n                },\n                \"linePort\": \"8135551500@odinapi.net\"\n            },\n            \"trunkAddressing\": {\n                \"trunkGroupDeviceEndpoint\": {\n                    \"name\": \"5136260100\",\n                    \"linePort\": \"+15133621460@as.voip.fuse.net\"\n                }\n            },\n            \"servicePackServices\": [\n                {\n                    \"serviceName\": \"Esip-t\",\n                    \"assigned\": true\n                },\n                {\n                    \"serviceName\": \"Esip-t2\",\n                    \"assigned\": true\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-08-03T21:55:37+00:00\",\n    \"createdAt\": \"2020-08-03T21:55:37+00:00\",\n    \"id\": 12\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f7312cf-a3f8-4a33-bb2c-b04ba2c66fb7"},{"name":"Task User Create Copy","id":"2c70372f-a430-4e29-9766-09911e7b038a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5OTcyNzc1LCJuYnAiOjE1Mzk5NzI3NzUsImV4cCI6MTU0MDAxNTk3NSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa2RIUlRaSVdtcHJTMDEzVkhGVGNWSmhhRGhxUmxFOVBTSXNJblpoYkhWbElqb2lRWFI0VjFCclFteEdNSFZaWWxkRGVuaFNaa05aT0RnNGJXZExVell4VFhoVlRsaFdUVGhIVDBzeFNUMGlMQ0p0WVdNaU9pSm1OakF6TTJJeFlUQmxZV05tTVdWa05qUm1NelU1TkdRMlpqUTNOV0ZsWVRoa09XWmxNR1pqTVRWaE5UWmxZbUkxWVRNNVpUTTNNakV6TVRVNVkySXlJbjA9IiwicCI6ImV5SnBkaUk2SW5kRWVFOW9jMlpyTjFwS2RVNXZlazFMTnpVeGVFRTlQU0lzSW5aaGJIVmxJam9pVVdad2EwWjRaSGR6WlZ3dlYwdFFkbWwzUTFkSk56bDNZbkJIUzF3dlJsUlZWVTUyU2xOeWVXdzJZM2xrVEZKT2FqZGtRVGd5TUVGYU4yVnFVSGt3YmpsalYxTmlZMjlVYVhwdVkzRm5WamxHVDNOelZYZEtkejA5SWl3aWJXRmpJam9pT0dZNU16a3dOelV5WkRjNU16TmtaVE14WmpKbE5EWmtObVV4T1ROaU9ETm1aRFprTW1Jd1lqZGlPRGhtT0dSa01EWmxaV1ptTkdZMVpqY3pZakF6TWlKOSIsImUiOiJleUpwZGlJNklqQXdVemxNZFV3NFl6RXlSbnBGU0ZOYVRUQnRNV2M5UFNJc0luWmhiSFZsSWpvaVNGVTRRbk5xYUd0blZHb3hWa05UVGxNNU5XNVdaejA5SWl3aWJXRmpJam9pWTJSbVpqVTVOR1ZrTTJVd1pqZGhaak5tT1RJNE1qRm1aVGMzWW1NNE56RTVNRGd4TVRVd01tTTFOamd4TkdRMFptTTFNR1V3WTJNd01HUTRPR1ZtWkNKOSJ9fQ.brCqtjYHeJmQRGQSZtiLqXMo7cSJ0m_H-BzVzlm7ZJ8"},{"key":"connection","value":"keep-alive"},{"key":"content-length","value":"253"},{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:62.0) Gecko/20100101 Firefox/62.0"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.update\",\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9709580001@microv-works.com\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"http://127.0.0.1:8080/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","tasks"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c70372f-a430-4e29-9766-09911e7b038a"},{"name":"Task User Update","id":"7481140a-5778-4759-97c0-94cb0d034c79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"content-type","value":"application/json;charset=utf-8"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.update\",\n    \"data\": [\n        {\n            \"task\": \"user.update\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"callingLineIdLastName\": \"Reverman\",\n            \"callingLineIdFirstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"9871515000\",\n            \"extension\": \"5000\",\n            \"department\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"name\": \"department1\"\n            },\n            \"departmentFullPath\": \"department1 (grp.odin)\",\n            \"language\": \"English\",\n            \"timeZone\": \"America\\/New_York\",\n            \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n            \"defaultAlias\": \"9871515000@odinapi.net\",\n            \"trunkAddressing\": {\n                \"trunkGroupDeviceEndpoint\": {\n                    \"name\": \"9871515000\",\n                    \"linePort\": \"9871515000_trunk@odinapi.net\",\n                    \"staticRegistrationCapable\": \"true\",\n                    \"useDomain\": \"true\",\n                    \"isPilotUser\": \"false\",\n                    \"contacts\": []\n                }\n            },\n            \"title\": \"Title Here\",\n            \"pagerPhoneNumber\": 9871515000,\n            \"mobilePhoneNumber\": 9871515000,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"addressLocation\": \"1234 Main Street\",\n            \"address\": {\n                \"addressLine1\": \"Bldg 2\",\n                \"addressLine2\": \"Suite 2\",\n                \"city\": \"Cincinnati\",\n                \"stateOrProvince\": \"Ohio\",\n                \"zipOrPostalCode\": \"45204\",\n                \"country\": \"US\"\n            },\n            \"countryCode\": \"1\",\n            \"alternateUserId\": [\n                {\n                    \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n                    \"description\": \"mreverman@parkbenchsolutions.com\"\n                }\n            ],\n            \"allowVideo\": true,\n            \"callingLineIdPhoneNumber\": \"9871515000\",\n            \"domain\": \"odinapi.net\",\n            \"endpointType\": \"trunkAddressing\",\n            \"aliases\": [],\n            \"accessDeviceEndpoint\": {\n                \"contacts\": []\n            },\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7481140a-5778-4759-97c0-94cb0d034c79"},{"name":"Task User Modify Group Id","id":"6a4baa49-1f7d-46de-bc53-f55e9f62b573","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"content-type","value":"application/json;charset=utf-8"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.modify.group.id\",\n    \"data\": [\n        {\n            \"task\": \"user.modify.group.id\",\n            \"userId\": \"demo_user_1@odinapi.net\",\n            \"newGroupId\": \"grp.odin.audit\",\n            \"evaluateOnly\": false,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.modify.group.id\",\n            \"userId\": \"music-on-hold@parkbenchsolutions.com\",\n            \"newGroupId\": \"grp.odin.audit\",\n            \"evaluateOnly\": false,\n            \"index\": 1\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a4baa49-1f7d-46de-bc53-f55e9f62b573"},{"name":"Task User Integrated IMP","id":"7750c018-aeee-407b-b4ea-5f832e2609a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.integrated.imp.update\",\n    \"data\": [\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 2\n        },\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 3\n        },\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 4\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7750c018-aeee-407b-b4ea-5f832e2609a2"},{"name":"Task User Call Forwarding Always","id":"49af3ee7-d950-454a-88d6-3b527f3403d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.call.forwarding.always.update\",\n    \"data\": [\n        {\n            \"task\": \"user.call.forwarding.always.update\",\n            \"forwardToPhoneNumber\": \"4321\",\n            \"isActive\": false,\n            \"isRingSplashActive\": false,\n            \"userId\": \"9871515000@odinapi.net\",\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"49af3ee7-d950-454a-88d6-3b527f3403d0"},{"name":"Task User Call Forwarding Busy v6.1.1","id":"12c00da3-21f2-4bbc-9dc8-89ca9b743993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.call.forwarding.busy.update\",\n    \"data\": [\n        {\n            \"task\": \"user.call.forwarding.busy.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"isActive\": false,\n            \"forwardToPhoneNumber\": \"4321\",\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12c00da3-21f2-4bbc-9dc8-89ca9b743993"},{"name":"Task User Call Forwarding No Answer  v6.1.1","id":"c0847e4b-bbc1-4709-bb67-765b586548ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.call.forwarding.not.reachable.update\",\n    \"data\": [\n        {\n            \"task\": \"user.call.forwarding.not.reachable.update\",\n            \"forwardToPhoneNumber\": \"4321\",\n            \"isActive\": false,\n            \"userId\": \"9871515000@odinapi.net\",\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0847e4b-bbc1-4709-bb67-765b586548ae"},{"name":"Task User Call Forwarding Not Reachable  v6.1.1","id":"927657fa-92a2-4bd7-9566-751961859997","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.call.forwarding.not.reachable.update\",\n    \"data\": [\n        {\n            \"task\": \"user.call.forwarding.not.reachable.update\",\n            \"forwardToPhoneNumber\": \"4321\",\n            \"isActive\": false,\n            \"userId\": \"9871515000@odinapi.net\",\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"927657fa-92a2-4bd7-9566-751961859997"},{"name":"Task User Load","id":"86feb849-5a8c-44b6-8887-4d33689d8503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.load\",\n    \"data\": [\n        {\n            \"task\": \"user.load\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n            \t\"tenant\": \"odin.paas2.instance\",\n            \t\"token\": \"121231asdfasdfoiu121u23123\",\n            \t\"loginId\": \"\",\n            \t\"password\": \"\",\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                \"user\": {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin.copy\",\n                    \"lastName\": \"parkbenchsolutions\",\n                    \"firstName\": \"load\",\n                    \"callingLineIdLastName\": \"parkbenchsolutions\",\n                    \"callingLineIdFirstName\": \"load\",\n                    \"hiraganaLastName\": \"parkbenchsolutions\",\n                    \"hiraganaFirstName\": \"parkbenchsolutions\",\n                    \"phoneNumber\": \"8595551501\",\n                    \"extension\": \"1501\",\n                    \"language\": \"English\",\n                    \"timeZone\": \"America/New_York\",\n                    \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n                    \"defaultAlias\": \"odin-load1@parkbenchsolutions.com\",\n                    \"accessDeviceEndpoint\": {\n                        \"accessDevice\": {\n                            \"deviceType\": \"Polycom IP550\",\n                            \"protocol\": \"SIP 2.0\",\n                            \"macAddress\": \"0004F2B31501\",\n                            \"numberOfPorts\": {\n                                \"quantity\": \"4\"\n                            },\n                            \"numberOfAssignedPorts\": 1,\n                            \"status\": \"Online\",\n                            \"configurationMode\": \"Default\",\n                            \"transportProtocol\": \"UDP\",\n                            \"useCustomUserNamePassword\": false,\n                            \"deviceName\": \"0004F2B31501\",\n                            \"deviceLevel\": \"Group\",\n                            \"accessDeviceCredentials\": {\n                                \"userName\": null\n                            },\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin.copy\",\n                            \"tags\": [],\n                            \"relatedServices\": []\n                        },\n                        \"linePort\": \"odin-load1@parkbenchsolutions.com\",\n                        \"staticRegistrationCapable\": \"false\",\n                        \"useDomain\": \"true\",\n                        \"supportVisualDeviceManagement\": \"false\",\n                        \"contacts\": []\n                    },\n                    \"title\": \"Programmer\",\n                    \"pagerPhoneNumber\": \"100-555-1414\",\n                    \"mobilePhoneNumber\": \"100-444-1414\",\n                    \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                    \"yahooId\": \"developer@yahoo.com\",\n                    \"addressLocation\": \"Main Building\",\n                    \"address\": {\n                        \"addressLine1\": \"123 main street\",\n                        \"addressLine2\": \"suite 100\",\n                        \"city\": \"disney\",\n                        \"stateOrProvince\": \"Florida\",\n                        \"zipOrPostalCode\": \"12345\",\n                        \"country\": \"US\"\n                    },\n                    \"countryCode\": \"1\",\n                    \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                    \"callingLineIdPhoneNumber\": \"\",\n                    \"domain\": \"parkbenchsolutions.com\",\n                    \"endpointType\": \"accessDeviceEndpoint\",\n                    \"aliases\": [],\n                    \"trunkAddressing\": {\n                        \"trunkGroupDeviceEndpoint\": {\n                            \"contacts\": []\n                        }\n                    },\n                    \"isEnterprise\": true,\n                    \"passwordExpiresDays\": 2147483647\n                },\n                \"outgoingCallingPlans\": {\n                    \"outgoingCallingPlanAuthorizationCode\": {\n                        \"settings\": {\n                            \"useCustomSettings\": true,\n                            \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin.copy\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [\n                            {\n                                \"code\": \"1001\",\n                                \"description\": \"1001\"\n                            },\n                            {\n                                \"code\": \"1002\",\n                                \"description\": \"1002\"\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanCallMeNow\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": true,\n                            \"premiumServicesII\": true,\n                            \"casual\": true,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanDigitPlanCallMeNow\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanDigitPlanOriginating\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanDigitPlanRedirecting\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanOriginating\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Allow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Allow\",\n                            \"premiumServicesII\": \"Allow\",\n                            \"casual\": \"Allow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanRedirected\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanRedirecting\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": true,\n                            \"premiumServicesII\": true,\n                            \"casual\": true,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanTransferNumbers\": {\n                        \"useCustomSettings\": true,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123\",\n                            \"phoneNumber02\": \"123\",\n                            \"phoneNumber03\": \"123\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanPinholeDigitPlanCallMeNow\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanPinholeDigitPlanOriginating\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanPinholeDigitPlanRedirecting\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    }\n                },\n                \"assignedServices\": {\n                    \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                    \"userServices\": [\n                        {\n                            \"serviceName\": \"Advice Of Charge\"\n                        },\n                        {\n                            \"serviceName\": \"Anonymous Call Rejection\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Attendant Console\"\n                        },\n                        {\n                            \"serviceName\": \"Authentication\"\n                        },\n                        {\n                            \"serviceName\": \"Automatic Callback\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Automatic Hold/Retrieve\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Barge-in Exempt\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Mobility\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Busy Lamp Field\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always Secondary\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Busy\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding No Answer\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Not Reachable\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Selective\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Notify\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Recording\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Transfer\"\n                        },\n                        {\n                            \"serviceName\": \"Call Waiting\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Blocking Override\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Retrieval\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Number Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Party Category\"\n                        },\n                        {\n                            \"serviceName\": \"Charge Number\"\n                        },\n                        {\n                            \"serviceName\": \"Classmark\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Call Manager\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Express\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Communication Barring User-Control\"\n                        },\n                        {\n                            \"serviceName\": \"Connected Line Identification Restriction\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Direct Route\"\n                        },\n                        {\n                            \"serviceName\": \"Directed Call Pickup with Barge-in\"\n                        },\n                        {\n                            \"serviceName\": \"Do Not Disturb\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"External Calling Line ID Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"External Custom Ringback\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Fax Messaging\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Group Night Forwarding\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Guest\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Host\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"In-Call Service Activation\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Integrated IMP\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Intercept User\",\n                            \"isActive\": false\n                        },\n                        {\n                            \"serviceName\": \"Internal Calling Line ID Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Malicious Call Trace\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Number Portability Announcement\",\n                            \"isActive\": false\n                        },\n                        {\n                            \"serviceName\": \"Outlook Integration\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Physical Location\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Prepaid\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Priority Alert\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Privacy\"\n                        },\n                        {\n                            \"serviceName\": \"Push to Talk\"\n                        },\n                        {\n                            \"serviceName\": \"Route List\"\n                        },\n                        {\n                            \"serviceName\": \"Security Classification\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Acceptance\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Rejection\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Sequential Ring\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance\"\n                        },\n                        {\n                            \"serviceName\": \"Silent Alerting\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Simultaneous Ring Personal\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 100\"\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 8\"\n                        },\n                        {\n                            \"serviceName\": \"Terminating Alternate Trunk Identity\"\n                        },\n                        {\n                            \"serviceName\": \"Third-Party Voice Mail Support\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Two-Stage Dialing\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Video Add-On\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Voice Portal Calling\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Zone Calling Restrictions\"\n                        }\n                    ],\n                    \"groupServices\": [\n                        {\n                            \"serviceName\": \"Music On Hold\",\n                            \"isActive\": true\n                        }\n                    ],\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin.copy\",\n                    \"isEnterprise\": true\n                },\n                \"serviceAssignment\": {\n                    \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                    \"userServices\": [\n                        {\n                            \"serviceName\": \"Anonymous Call Rejection\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Anonymous Call Rejection\"\n                        },\n                        {\n                            \"serviceName\": \"Authentication\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Authentication\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Always\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Busy\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Busy\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding No Answer\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding No Answer\"\n                        },\n                        {\n                            \"serviceName\": \"Call Notify\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Notify\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Line ID Delivery Blocking\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Express\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"CommPilot Express\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Call Manager\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"CommPilot Call Manager\"\n                        },\n                        {\n                            \"serviceName\": \"Do Not Disturb\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Do Not Disturb\"\n                        },\n                        {\n                            \"serviceName\": \"Intercept User\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Intercept User\"\n                        },\n                        {\n                            \"serviceName\": \"Last Number Redial\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Last Number Redial\"\n                        },\n                        {\n                            \"serviceName\": \"Outlook Integration\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Outlook Integration\"\n                        },\n                        {\n                            \"serviceName\": \"Priority Alert\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Priority Alert\"\n                        },\n                        {\n                            \"serviceName\": \"Call Return\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Return\"\n                        },\n                        {\n                            \"serviceName\": \"Remote Office\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Remote Office\"\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Acceptance\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Selective Call Acceptance\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Selective\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Selective\"\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Rejection\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Selective Call Rejection\"\n                        },\n                        {\n                            \"serviceName\": \"Service Scripts User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Service Scripts User\"\n                        },\n                        {\n                            \"serviceName\": \"Simultaneous Ring Personal\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Simultaneous Ring Personal\"\n                        },\n                        {\n                            \"serviceName\": \"Voice Messaging User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Voice Messaging User\"\n                        },\n                        {\n                            \"serviceName\": \"Alternate Numbers\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Alternate Numbers\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance\",\n                            \"assigned\": true,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Shared Call Appearance\"\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 8\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Speed Dial 8\"\n                        },\n                        {\n                            \"serviceName\": \"Customer Originated Trace\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Customer Originated Trace\"\n                        },\n                        {\n                            \"serviceName\": \"Attendant Console\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Attendant Console\"\n                        },\n                        {\n                            \"serviceName\": \"Third-Party MWI Control\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Third-Party MWI Control\"\n                        },\n                        {\n                            \"serviceName\": \"Client Call Control\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Client Call Control\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 5\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Shared Call Appearance 5\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 10\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 10\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 15\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 15\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 20\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 20\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 25\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 25\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 30\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 30\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 35\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 35\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Retrieval\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Name Retrieval\"\n                        },\n                        {\n                            \"serviceName\": \"Flash Call Hold\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Flash Call Hold\"\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 100\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Speed Dial 100\"\n                        },\n                        {\n                            \"serviceName\": \"Directed Call Pickup\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Directed Call Pickup\"\n                        },\n                        {\n                            \"serviceName\": \"Third-Party Voice Mail Support\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Third-Party Voice Mail Support\"\n                        },\n                        {\n                            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Directed Call Pickup with Barge-in\"\n                        },\n                        {\n                            \"serviceName\": \"Voice Portal Calling\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Voice Portal Calling\"\n                        },\n                        {\n                            \"serviceName\": \"External Calling Line ID Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"External Calling Line ID Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Internal Calling Line ID Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Internal Calling Line ID Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Automatic Callback\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Automatic Callback\"\n                        },\n                        {\n                            \"serviceName\": \"Call Waiting\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Waiting\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Blocking Override\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Line ID Blocking Override\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Party Category\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Party Category\"\n                        },\n                        {\n                            \"serviceName\": \"Barge-in Exempt\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Barge-in Exempt\"\n                        },\n                        {\n                            \"serviceName\": \"Video Add-On\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Video Add-On\"\n                        },\n                        {\n                            \"serviceName\": \"Malicious Call Trace\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Malicious Call Trace\"\n                        },\n                        {\n                            \"serviceName\": \"Preferred Carrier User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Preferred Carrier User\"\n                        },\n                        {\n                            \"serviceName\": \"Push to Talk\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Push to Talk\"\n                        },\n                        {\n                            \"serviceName\": \"Basic Call Logs\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Basic Call Logs\"\n                        },\n                        {\n                            \"serviceName\": \"Enhanced Call Logs\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Enhanced Call Logs\"\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Host\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Hoteling Host\"\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Guest\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Hoteling Guest\"\n                        },\n                        {\n                            \"serviceName\": \"Voice Messaging User - Video\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Voice Messaging User - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Diversion Inhibitor\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Diversion Inhibitor\"\n                        },\n                        {\n                            \"serviceName\": \"Multiple Call Arrangement\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Multiple Call Arrangement\"\n                        },\n                        {\n                            \"serviceName\": \"Custom Ringback User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Custom Ringback User\"\n                        },\n                        {\n                            \"serviceName\": \"Custom Ringback User - Video\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Custom Ringback User - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Automatic Hold/Retrieve\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Automatic Hold/Retrieve\"\n                        },\n                        {\n                            \"serviceName\": \"Busy Lamp Field\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Busy Lamp Field\"\n                        },\n                        {\n                            \"serviceName\": \"Three-Way Call\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Three-Way Call\"\n                        },\n                        {\n                            \"serviceName\": \"Call Transfer\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Transfer\"\n                        },\n                        {\n                            \"serviceName\": \"Privacy\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Privacy\"\n                        },\n                        {\n                            \"serviceName\": \"Fax Messaging\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Fax Messaging\"\n                        },\n                        {\n                            \"serviceName\": \"Physical Location\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Physical Location\"\n                        },\n                        {\n                            \"serviceName\": \"Charge Number\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Charge Number\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Supervisor\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Supervisor\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Agent\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Agent\"\n                        },\n                        {\n                            \"serviceName\": \"N-Way Call\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"N-Way Call\"\n                        },\n                        {\n                            \"serviceName\": \"Two-Stage Dialing\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Two-Stage Dialing\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Not Reachable\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Not Reachable\"\n                        },\n                        {\n                            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Receptionist - Small Business\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Receptionist - Office\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Receptionist - Office\"\n                        },\n                        {\n                            \"serviceName\": \"External Custom Ringback\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"External Custom Ringback\"\n                        },\n                        {\n                            \"serviceName\": \"In-Call Service Activation\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"In-Call Service Activation\"\n                        },\n                        {\n                            \"serviceName\": \"Connected Line Identification Presentation\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Connected Line Identification Presentation\"\n                        },\n                        {\n                            \"serviceName\": \"Connected Line Identification Restriction\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Connected Line Identification Restriction\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Anywhere\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Anywhere\"\n                        },\n                        {\n                            \"serviceName\": \"Zone Calling Restrictions\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Zone Calling Restrictions\"\n                        },\n                        {\n                            \"serviceName\": \"Polycom Phone Services\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Polycom Phone Services\"\n                        },\n                        {\n                            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Custom Ringback User - Call Waiting\"\n                        },\n                        {\n                            \"serviceName\": \"Music On Hold User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Music On Hold User\"\n                        },\n                        {\n                            \"serviceName\": \"Video On Hold User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Video On Hold User\"\n                        },\n                        {\n                            \"serviceName\": \"Advice Of Charge\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Advice Of Charge\"\n                        },\n                        {\n                            \"serviceName\": \"Prepaid\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Prepaid\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center - Basic\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center - Basic\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center - Standard\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center - Standard\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center - Premium\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center - Premium\"\n                        },\n                        {\n                            \"serviceName\": \"Communication Barring User-Control\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Communication Barring User-Control\"\n                        },\n                        {\n                            \"serviceName\": \"Classmark\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Classmark\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Name Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Number Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Number Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                        },\n                        {\n                            \"serviceName\": \"Office Communicator Tab\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Office Communicator Tab\"\n                        },\n                        {\n                            \"serviceName\": \"Pre-alerting Announcement\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Pre-alerting Announcement\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center Monitoring\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center Monitoring\"\n                        },\n                        {\n                            \"serviceName\": \"Location-Based Calling Restrictions\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Location-Based Calling Restrictions\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Mobility\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Mobility\"\n                        },\n                        {\n                            \"serviceName\": \"Call Me Now\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Me Now\"\n                        },\n                        {\n                            \"serviceName\": \"Call Recording\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Recording\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                        },\n                        {\n                            \"serviceName\": \"Integrated IMP\",\n                            \"assigned\": true,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Integrated IMP\"\n                        },\n                        {\n                            \"serviceName\": \"Group Night Forwarding\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Group Night Forwarding\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Desktop\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Mobile\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Tablet\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Executive\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Executive\"\n                        },\n                        {\n                            \"serviceName\": \"Executive-Assistant\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Executive-Assistant\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 3\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Assistant - Enterprise\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 4\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 15\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Client License 15\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 16\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Client License 16\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 17\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 18\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 19\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch MobileLink\"\n                        },\n                        {\n                            \"serviceName\": \"Security Classification\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Security Classification\"\n                        },\n                        {\n                            \"serviceName\": \"Flexible Seating Guest\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Flexible Seating Guest\"\n                        },\n                        {\n                            \"serviceName\": \"Personal Assistant\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Personal Assistant\"\n                        },\n                        {\n                            \"serviceName\": \"Route List\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Route List\"\n                        },\n                        {\n                            \"serviceName\": \"Collaborate - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Collaborate - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"Collaborate - Video\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Collaborate - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Collaborate - Sharing\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Collaborate - Sharing\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always Secondary\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Always Secondary\"\n                        },\n                        {\n                            \"serviceName\": \"Silent Alerting\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Silent Alerting\"\n                        },\n                        {\n                            \"serviceName\": \"Conference Room\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Conference Room\"\n                        },\n                        {\n                            \"serviceName\": \"Sequential Ring\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Sequential Ring\"\n                        },\n                        {\n                            \"serviceName\": \"Number Portability Announcement\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Number Portability Announcement\"\n                        },\n                        {\n                            \"serviceName\": \"Direct Route\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Direct Route\"\n                        },\n                        {\n                            \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Terminating Alternate Trunk Identity\"\n                        }\n                    ],\n                    \"servicePackServices\": [\n                        {\n                            \"assigned\": false,\n                            \"description\": \"Standard\",\n                            \"serviceName\": \"Standard\",\n                            \"alias\": \"Standard\"\n                        },\n                        {\n                            \"assigned\": false,\n                            \"description\": \"Premium\",\n                            \"serviceName\": \"Premium\",\n                            \"alias\": \"Premium\"\n                        },\n                        {\n                            \"assigned\": false,\n                            \"description\": \"Basic\",\n                            \"serviceName\": \"Basic\",\n                            \"alias\": \"Basic\"\n                        }\n                    ],\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin.copy\",\n                    \"isEnterprise\": true\n                },\n                \"serviceSettings\": {\n                    \"Advice Of Charge\": {\n                        \"isActive\": true,\n                        \"aocType\": \"During Call\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Anonymous Call Rejection\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Attendant Console\": {\n                        \"launchOnLogin\": true,\n                        \"allowUserConfigCallDetails\": true,\n                        \"allowUserViewCallDetails\": true,\n                        \"users\": [\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"displayColumns\": [\n                            \"Status\",\n                            \"Name\",\n                            \"Phone Number\",\n                            \"Extension\",\n                            \"Action\",\n                            \"Department\",\n                            \"Email\",\n                            \"Mobile\",\n                            \"Pager\",\n                            \"Title\"\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Automatic Callback\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Automatic Hold/Retrieve\": {\n                        \"isActive\": true,\n                        \"recallTimerSeconds\": 120,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Barge-in Exempt\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"BroadWorks Mobility\": {\n                        \"isActive\": true,\n                        \"phonesToRing\": \"Fixed\",\n                        \"mobilePhoneNumber\": 5131114444,\n                        \"alertClickToDialCalls\": true,\n                        \"alertGroupPagingCalls\": true,\n                        \"enableDiversionInhibitor\": true,\n                        \"requireAnswerConfirmation\": true,\n                        \"broadworksCallControl\": true,\n                        \"useSettingLevel\": \"Group\",\n                        \"denyCallOriginations\": true,\n                        \"denyCallTerminations\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Busy Lamp Field\": {\n                        \"listURI\": \"blf_odin-load1@parkbenchsolutions.com\",\n                        \"enableCallParkNotification\": true,\n                        \"users\": [\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            },\n                            {\n                                \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                \"lastName\": \"odin-user-2\",\n                                \"firstName\": \"odin-user-2\",\n                                \"hiraganaLastName\": null,\n                                \"hiraganaFirstName\": null,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Always\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"isRingSplashActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Always Secondary\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"isRingSplashActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Busy\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding No Answer\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"numberOfRings\": 4,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Not Reachable\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Selective\": {\n                        \"isActive\": true,\n                        \"defaultForwardToPhoneNumber\": 1111,\n                        \"playRingReminder\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"forwardTo\": 1111,\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"callsFrom\": [\n                                    \"All calls\"\n                                ],\n                                \"forwardToNumberSelection\": \"Forward To Specified Number\",\n                                \"forwardToPhoneNumber\": 1111,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Notify\": {\n                        \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": null,\n                                \"callFrom\": \"All calls\",\n                                \"blacklisted\": true,\n                                \"holidaySchedule\": null,\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Recording\": {\n                        \"recordingOption\": \"Always\",\n                        \"pauseResumeNotification\": \"Beep\",\n                        \"enableCallRecordingAnnouncement\": true,\n                        \"enableRecordCallRepeatWarningTone\": true,\n                        \"recordCallRepeatWarningToneTimerSeconds\": 15,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Transfer\": {\n                        \"isRecallActive\": true,\n                        \"recallNumberOfRings\": 4,\n                        \"useDiversionInhibitorForBlindTransfer\": true,\n                        \"useDiversionInhibitorForConsultativeCalls\": true,\n                        \"enableBusyCampOn\": true,\n                        \"busyCampOnSeconds\": 120,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Waiting\": {\n                        \"isActive\": true,\n                        \"disableCallingLineIdDelivery\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Line ID Blocking Override\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Line ID Delivery Blocking\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Name Delivery\": {\n                        \"isActiveForExternalCalls\": true,\n                        \"isActiveForInternalCalls\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Name Retrieval\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Number Delivery\": {\n                        \"isActiveForExternalCalls\": true,\n                        \"isActiveForInternalCalls\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Party Category\": {\n                        \"category\": \"Special\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Charge Number\": {\n                        \"phoneNumber\": 8135551001,\n                        \"useChargeNumberForEnhancedTranslations\": true,\n                        \"sendChargeNumberToNetwork\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Classmark\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"CommPilot Call Manager\": {\n                        \"launchOnLogin\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"CommPilot Express\": {\n                        \"profile\": \"Available In Office\",\n                        \"availableInOffice\": {\n                            \"busySetting\": {\n                                \"action\": \"Transfer To Voice Mail\"\n                            },\n                            \"noAnswerSetting\": {\n                                \"action\": \"Transfer To Voice Mail\"\n                            }\n                        },\n                        \"availableOutOfOffice\": {\n                            \"incomingCalls\": {\n                                \"action\": \"Transfer To Voice Mail\"\n                            },\n                            \"incomingCallNotify\": {\n                                \"sendEmail\": \"false\"\n                            }\n                        },\n                        \"busy\": {\n                            \"incomingCalls\": {\n                                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                            },\n                            \"voiceMailNotify\": {\n                                \"sendEmail\": \"false\"\n                            }\n                        },\n                        \"unavailable\": {\n                            \"incomingCalls\": {\n                                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                            },\n                            \"voiceMailGreeting\": \"No Answer\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Communication Barring User-Control\": {\n                        \"lockoutStatus\": false,\n                        \"profileTable\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Connected Line Identification Restriction\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Direct Route\": {\n                        \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n                        \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n                        \"routes\": {\n                            \"dtgIdentity\": [\n                                \"1111\"\n                            ],\n                            \"trunkIdentity\": []\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Directed Call Pickup with Barge-in\": {\n                        \"enableBargeInWarningTone\": true,\n                        \"enableAutomaticTargetSelection\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Do Not Disturb\": {\n                        \"isActive\": true,\n                        \"ringSplash\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"External Calling Line ID Delivery\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"External Custom Ringback\": {\n                        \"isActive\": true,\n                        \"useSettingLevel\": \"User\",\n                        \"sipRequestURI\": \"developer@parkbenchsolutions.com\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Fax Messaging\": {\n                        \"isActive\": true,\n                        \"phoneNumber\": 8135551002,\n                        \"extension\": 1002,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"aliases\": [\n                            {\n                                \"phoneNumber\": \"developer\",\n                                \"domain\": \"parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Group Night Forwarding\": {\n                        \"nightForwarding\": \"On\",\n                        \"groupNightForwarding\": \"Off\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Hoteling Guest\": {\n                        \"isActive\": true,\n                        \"enableAssociationLimit\": true,\n                        \"associationLimitHours\": 12,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Hoteling Host\": {\n                        \"isActive\": true,\n                        \"enforceAssociationLimit\": true,\n                        \"associationLimitHours\": 24,\n                        \"accessLevel\": \"Group\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"In-Call Service Activation\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Integrated IMP\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Intercept User\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"exemptInboundMobilityCalls\": false,\n                        \"disableParallelRingingToNetworkLocations\": false,\n                        \"routeToVoiceMail\": false,\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"outboundCallMode\": \"Block All\",\n                        \"exemptOutboundMobilityCalls\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Internal Calling Line ID Delivery\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Malicious Call Trace\": {\n                        \"isActive\": true,\n                        \"traceTypeSelection\": \"All Incoming\",\n                        \"traceForTimePeriod\": true,\n                        \"traceTimePeriod\": {\n                            \"startDateTime\": \"2019-04-30T08:54:00.321-04:00\",\n                            \"stopDateTime\": \"2019-05-01T08:54:00.321-04:00\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Number Portability Announcement\": {\n                        \"enable\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Outlook Integration\": {\n                        \"isActive\": true,\n                        \"contactRetrievalSelection\": \"Retrieve Default Contact Folder Only\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Physical Location\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Prepaid\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Priority Alert\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"isActive\": true,\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": true,\n                                \"holidaySchedule\": \"None\",\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"callsFrom\": [\n                                    \"1111\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Specified Only\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": [\n                                        \"1111\"\n                                    ]\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Privacy\": {\n                        \"enableDirectoryPrivacy\": true,\n                        \"enableAutoAttendantExtensionDialingPrivacy\": true,\n                        \"enableAutoAttendantNameDialingPrivacy\": true,\n                        \"enablePhoneStatusPrivacy\": true,\n                        \"permittedMonitors\": [\n                            {\n                                \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                \"lastName\": \"odin-user-2\",\n                                \"firstName\": \"odin-user-2\",\n                                \"hiraganaLastName\": null,\n                                \"hiraganaFirstName\": null,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            },\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Push to Talk\": {\n                        \"allowAutoAnswer\": false,\n                        \"outgoingConnectionSelection\": \"One Way\",\n                        \"accessListSelection\": \"Allow Calls From Everyone Except Selected Users\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"users\": [\n                            {\n                                \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                \"lastName\": \"odin-user-2\",\n                                \"firstName\": \"odin-user-2\",\n                                \"hiraganaLastName\": null,\n                                \"hiraganaFirstName\": null,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            },\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Route List\": {\n                        \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n                        \"useRouteListIdentityForNonEmergencyCalls\": true,\n                        \"useRouteListIdentityForEmergencyCalls\": true,\n                        \"dns\": [\n                            {\n                                \"min\": \"+1-2123135000\",\n                                \"max\": \"+1-2123135999\",\n                                \"isActive\": true\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Security Classification\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Selective Call Acceptance\": {\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"callFrom\": \"All calls\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": false,\n                                    \"includeUnavailableCallers\": false,\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ]\n                    },\n                    \"Selective Call Rejection\": {\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"callsFrom\": 1111,\n                                \"blacklisted\": true,\n                                \"holidaySchedule\": \"None\",\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Specified Only\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": [\n                                        \"1111\"\n                                    ]\n                                },\n                                \"private\": false,\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Sequential Ring\": {\n                        \"ringBaseLocationFirst\": true,\n                        \"baseLocationNumberOfRings\": 4,\n                        \"continueIfBaseLocationIsBusy\": true,\n                        \"callerMayStopSearch\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"locations\": [\n                            {\n                                \"phoneNumber\": \"1111\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"2222\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"3333\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"4444\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"5555\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            }\n                        ],\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": {\n                                    \"name\": \"Holidays\",\n                                    \"level\": \"Group\",\n                                    \"type\": \"Holiday\"\n                                },\n                                \"callsFrom\": [\n                                    \"All calls\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Shared Call Appearance\": {\n                        \"alertAllAppearancesForClickToDialCalls\": true,\n                        \"alertAllAppearancesForGroupPagingCalls\": true,\n                        \"maxAppearances\": 2,\n                        \"allowSCACallRetrieve\": true,\n                        \"enableMultipleCallArrangement\": false,\n                        \"multipleCallArrangementIsActive\": false,\n                        \"allowBridgingBetweenLocations\": true,\n                        \"bridgeWarningTone\": \"Barge-In\",\n                        \"enableCallParkNotification\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"endpoints\": [],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Silent Alerting\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Simultaneous Ring Personal\": {\n                        \"isActive\": true,\n                        \"doNotRingIfOnCall\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"callsFrom\": [\n                                    \"All calls\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": false,\n                                    \"includeUnavailableCallers\": false,\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            },\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria2\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"callsFrom\": [\n                                    \"1111\",\n                                    \"2222\",\n                                    \"3333...\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Specified Only\",\n                                    \"includeAnonymousCallers\": false,\n                                    \"includeUnavailableCallers\": false,\n                                    \"phoneNumbers\": [\n                                        \"1111\",\n                                        \"2222\",\n                                        \"3333\",\n                                        \"4444\"\n                                    ]\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"locations\": [\n                            {\n                                \"phoneNumber\": \"1111\",\n                                \"answerConfirmationRequired\": true\n                            },\n                            {\n                                \"phoneNumber\": \"2222\",\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"3333\",\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"4444\",\n                                \"answerConfirmationRequired\": true\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Speed Dial 100\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"0\",\n                                \"phoneNumber\": \"0000\",\n                                \"description\": \"0000\"\n                            },\n                            {\n                                \"speedCode\": \"1\",\n                                \"phoneNumber\": \"1111\",\n                                \"description\": \"1111\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Speed Dial 8\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"2\",\n                                \"phoneNumber\": \"222\"\n                            },\n                            {\n                                \"speedCode\": \"3\",\n                                \"phoneNumber\": \"333\"\n                            },\n                            {\n                                \"speedCode\": \"4\",\n                                \"phoneNumber\": \"444\"\n                            },\n                            {\n                                \"speedCode\": \"5\"\n                            },\n                            {\n                                \"speedCode\": \"6\"\n                            },\n                            {\n                                \"speedCode\": \"7\"\n                            },\n                            {\n                                \"speedCode\": \"8\"\n                            },\n                            {\n                                \"speedCode\": \"9\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Terminating Alternate Trunk Identity\": {\n                        \"terminatingTrunkIdentity\": 1111,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Third-Party Voice Mail Support\": {\n                        \"isActive\": true,\n                        \"busyRedirectToVoiceMail\": true,\n                        \"noAnswerRedirectToVoiceMail\": true,\n                        \"serverSelection\": \"Group Mail Server\",\n                        \"mailboxIdType\": \"User Or Group Phone Number\",\n                        \"noAnswerNumberOfRings\": 4,\n                        \"alwaysRedirectToVoiceMail\": true,\n                        \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Two-Stage Dialing\": {\n                        \"isActive\": true,\n                        \"allowActivationWithUserAddresses\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Video Add-On\": {\n                        \"isActive\": true,\n                        \"maxOriginatingCallDelaySeconds\": 5,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Voice Portal Calling\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Zone Calling Restrictions\": {\n                        \"homeZoneName\": \"Office\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    }\n                },\n                \"utilities\": {\n                    \"alternateUserId\": {\n                        \"users\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"announcementFile\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": []\n                    },\n                    \"callPolicies\": {\n                        \"redirectedCallsCOLPPrivacy\": \"Privacy For All Calls\",\n                        \"callBeingForwardedResponseCallType\": \"All Calls\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Redirecting User Identity For All Redirections\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"callProcessingPolicy\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"communicationBarring\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"communicationBarringAuthorizationCode\": {\n                        \"codes\": [\n                            {\n                                \"code\": \"1234\",\n                                \"description\": \"1234\",\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"devicePolicies\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"featureAccessCode\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n                                \"mainCode\": \"*29\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n                                \"mainCode\": \"*55\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Bridge\",\n                                \"mainCode\": \"*15\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n                                \"mainCode\": \"*65\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n                                \"mainCode\": \"*56*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n                                \"mainCode\": \"*24\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n                                \"mainCode\": \"#28\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n                                \"mainCode\": \"*99\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 100\",\n                                \"mainCode\": \"*75\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Cancel Call Waiting\",\n                                \"mainCode\": \"*70\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n                                \"mainCode\": \"#41\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n                                \"mainCode\": \"#29\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Pause\",\n                                \"mainCode\": \"*48\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Start\",\n                                \"mainCode\": \"*44\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n                                \"mainCode\": \"#23\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n                                \"mainCode\": \"#24\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n                                \"mainCode\": \"*78\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n                                \"mainCode\": \"*54*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Deactivation\",\n                                \"mainCode\": \"*13\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n                                \"mainCode\": \"*31\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n                                \"mainCode\": \"*33*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n                                \"mainCode\": \"#43\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n                                \"mainCode\": \"#31\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n                                \"mainCode\": \"*21\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n                                \"mainCode\": \"*40\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n                                \"mainCode\": \"*23\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n                                \"mainCode\": \"#9\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n                                \"mainCode\": \"*67\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n                                \"mainCode\": \"*28\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n                                \"mainCode\": \"#33*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Stop\",\n                                \"mainCode\": \"*45\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Resume\",\n                                \"mainCode\": \"*49\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n                                \"mainCode\": \"*34\",\n                                \"alternateCode\": \"*3434\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n                                \"mainCode\": \"*86\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n                                \"mainCode\": \"#40\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n                                \"mainCode\": \"*51*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Retrieve\",\n                                \"mainCode\": \"*11\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Activation\",\n                                \"mainCode\": \"*12\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n                                \"mainCode\": \"*53*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n                                \"mainCode\": \"*84\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n                                \"mainCode\": \"#21\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n                                \"mainCode\": \"*85\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Portal Access\",\n                                \"mainCode\": \"*62\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n                                \"mainCode\": \"*43\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n                                \"mainCode\": \"*79\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n                                \"mainCode\": \"#8\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push to Talk\",\n                                \"mainCode\": \"*50\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n                                \"mainCode\": \"*#33#\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n                                \"mainCode\": \"*33\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n                                \"mainCode\": \"*41\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"portalPasscode\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                    },\n                    \"userSchedules\": {\n                        \"schedules\": [\n                            {\n                                \"name\": \"user schedule 1\",\n                                \"type\": \"Time\",\n                                \"level\": \"User\",\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                                \"events\": [\n                                    {\n                                        \"eventName\": \"event 1\",\n                                        \"startTime\": \"2019-04-30T00:00:00\",\n                                        \"endTime\": \"2019-04-30T23:59:59\",\n                                        \"allDayEvent\": true,\n                                        \"name\": \"user schedule 1\",\n                                        \"type\": \"Time\",\n                                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                                        \"rrule\": null\n                                    }\n                                ]\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    }\n                },\n                \"_eventId\": 87\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"86feb849-5a8c-44b6-8887-4d33689d8503"},{"name":"Task User Move TEST","id":"5c495316-3f52-4486-a9c9-86f885990483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.move\",\n    \"data\": [\n        {\n            \"task\": \"user.move\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"4003@parkbenchsolutions.com\",\n                \"password\": \"VeryL0ngP@ssw0rd\"\n            },\n            \"options\": {\n                \"featureAccessCode\": true,\n                \"callProcessingPolicy\": true,\n                \"networkClassOfService\": true,\n                \"extensionLength\": true,\n                \"services\": true,\n                \"policy\": true,\n                \"schedule\": true,\n                \"outgoingCallingPlan\": true,\n                \"routingProfile\": true\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c495316-3f52-4486-a9c9-86f885990483"},{"name":"Task User Password Modify","id":"97febaa5-cb72-4391-af10-c0d8641f8dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.password.update\",\n    \"data\": [\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993000@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993002@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 2\n        },\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993003@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 3\n        },\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993004@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 4\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"97febaa5-cb72-4391-af10-c0d8641f8dfa"},{"name":"Task User Passwords Modify","id":"9059f188-c86c-444d-bc52-f83840058d95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.passwords.update\",\n    \"data\": [\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514001\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514002\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"63c8e282-075f-4a5e-8e2a-d87c4a8bb677","name":"Task User Passwords Modify","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.passwords.update\",\n    \"data\": [\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514001\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514002\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Jun 2020 13:17:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"705"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"user.passwords.update\",\n    \"data\": [\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514001\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514002\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 2\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-06-25T13:17:27+00:00\",\n    \"createdAt\": \"2020-06-25T13:17:27+00:00\",\n    \"id\": 5\n}"}],"_postman_id":"9059f188-c86c-444d-bc52-f83840058d95"},{"name":"Task User Portal Passcode Modify","id":"22437195-293c-4092-a948-ea506b84414c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.portal.passcode.update\",\n    \"data\": [\n        {\n            \"task\": \"user.portal.passcode.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"passcode\": \"5361\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.portal.passcode.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"passcode\": \"5361\",\n            \"index\": 2\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"22437195-293c-4092-a948-ea506b84414c"},{"name":"Webex Activation Authorized Unassigned Users","id":"b77e30ae-6fa4-4c14-ac46-0b52af9a5078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\n}"},"url":"{{url}}/api/v2/webex-activation/users?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","webex-activation","users"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"}],"variable":[]}},"response":[],"_postman_id":"b77e30ae-6fa4-4c14-ac46-0b52af9a5078"},{"name":"Task User Shared Call Appearance","id":"99cff68f-a203-4055-bbee-6c31a98ffd12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.sharedcallappearance.update\",\n    \"data\": [\n        {\n            \"task\": \"user.sharedcallappearance.update\",\n            \"serviceProviderId\": \"00484\",\n            \"groupId\": \"00484-02\",\n            \"userId\": \"imp8053358162@impulsevoip.net\",\n            \"phoneNumber\": \"8053358162\",\n            \"lastName\": \"Evans\",\n            \"firstName\": \"Bill\",\n            \"extension\": \"8162\",\n            \"domain\": \"impulsevoip.net\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"\",\n                    \"assigned\": \"\"\n                }\n            ],\n            \"servicePackServices\": \"\",\n            \"settings\": {\n                \"allowSCACallRetrieve\": true,\n                \"multipleCallArrangementIsActive\": true,\n                \"allowBridgingBetweenLocations\": true,\n                \"bridgeWarningTone\": \"None\"\n            },\n            \"endpoints\": [\n                {\n                    \"linePort\": \"sca8053358162_wbxt@impulsevoip.net\",\n                    \"isActive\": true,\n                    \"allowAccessDeviceUpdate\": true,\n                    \"allowOrigination\": true,\n                    \"allowTermination\": true,\n                    \"accessDevice\": {\n                        \"deviceType\": \"Connect - Tablet\",\n                        \"deviceName\": \"00484-02CONNt8162\",\n                        \"protocol\": \"SIP 2.0\",\n                        \"netAddress\": \"\",\n                        \"port\": \"\",\n                        \"outboundProxyServerNetAddress\": \"\",\n                        \"stunServerNetAddress\": \"\",\n                        \"macAddress\": \"\",\n                        \"serialNumber\": \"\",\n                        \"description\": \"\",\n                        \"physicalLocation\": \"\",\n                        \"transportProtocol\": \"\",\n                        \"useCustomUserNamePassword\": true,\n                        \"accessDeviceCredentials\": {\n                            \"userName\": \"iwe95wkkvkganj\",\n                            \"password\": \"kre82wwy\"\n                        },\n                        \"deviceLevel\": \"imp8053358162@impulsevoip.net\"\n                    },\n                    \"deviceName\": \"00484-02CONNt8162\",\n                    \"deviceLevel\": \"\"\n                }\n            ],\n            \"index\": 1,\n            \"status\": \"failed\",\n            \"error\": \"Device Already Exists\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"99cff68f-a203-4055-bbee-6c31a98ffd12"},{"name":"Task User Services Assign Copy","id":"681fd2e1-0af0-4a15-a976-c83bcd57edbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.update\",\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9709580001@microv-works.com\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"681fd2e1-0af0-4a15-a976-c83bcd57edbd"},{"name":"Task User Services Update","id":"235430fb-40b1-40ca-bc4b-b4a64f954eca","request":{"method":"POST","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5OTcyNzc1LCJuYnAiOjE1Mzk5NzI3NzUsImV4cCI6MTU0MDAxNTk3NSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa2RIUlRaSVdtcHJTMDEzVkhGVGNWSmhhRGhxUmxFOVBTSXNJblpoYkhWbElqb2lRWFI0VjFCclFteEdNSFZaWWxkRGVuaFNaa05aT0RnNGJXZExVell4VFhoVlRsaFdUVGhIVDBzeFNUMGlMQ0p0WVdNaU9pSm1OakF6TTJJeFlUQmxZV05tTVdWa05qUm1NelU1TkdRMlpqUTNOV0ZsWVRoa09XWmxNR1pqTVRWaE5UWmxZbUkxWVRNNVpUTTNNakV6TVRVNVkySXlJbjA9IiwicCI6ImV5SnBkaUk2SW5kRWVFOW9jMlpyTjFwS2RVNXZlazFMTnpVeGVFRTlQU0lzSW5aaGJIVmxJam9pVVdad2EwWjRaSGR6WlZ3dlYwdFFkbWwzUTFkSk56bDNZbkJIUzF3dlJsUlZWVTUyU2xOeWVXdzJZM2xrVEZKT2FqZGtRVGd5TUVGYU4yVnFVSGt3YmpsalYxTmlZMjlVYVhwdVkzRm5WamxHVDNOelZYZEtkejA5SWl3aWJXRmpJam9pT0dZNU16a3dOelV5WkRjNU16TmtaVE14WmpKbE5EWmtObVV4T1ROaU9ETm1aRFprTW1Jd1lqZGlPRGhtT0dSa01EWmxaV1ptTkdZMVpqY3pZakF6TWlKOSIsImUiOiJleUpwZGlJNklqQXdVemxNZFV3NFl6RXlSbnBGU0ZOYVRUQnRNV2M5UFNJc0luWmhiSFZsSWpvaVNGVTRRbk5xYUd0blZHb3hWa05UVGxNNU5XNVdaejA5SWl3aWJXRmpJam9pWTJSbVpqVTVOR1ZrTTJVd1pqZGhaak5tT1RJNE1qRm1aVGMzWW1NNE56RTVNRGd4TVRVd01tTTFOamd4TkdRMFptTTFNR1V3WTJNd01HUTRPR1ZtWkNKOSJ9fQ.brCqtjYHeJmQRGQSZtiLqXMo7cSJ0m_H-BzVzlm7ZJ8"},{"key":"connection","value":"keep-alive"},{"key":"content-length","value":"253"},{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:62.0) Gecko/20100101 Firefox/62.0"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.update\",\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9709580001@microv-works.com\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"http://127.0.0.1:8080/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","tasks"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"235430fb-40b1-40ca-bc4b-b4a64f954eca"},{"name":"Task User Speed Dial 100","id":"98926a58-b9ec-4c6d-93cc-efdf40d1cf88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.speedDial100.update\",\n    \"data\": [\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<h5 id=\"bulk-user-speed-dial-100\">Bulk User Speed Dial 100</h5>\n<blockquote>\n<p>this bulk task will upsert speed dial 100 codes to the user.  If the speed code 0 exists it will first delete the speed code and readd as a new speed code and descpription.</p>\n</blockquote>\n<blockquote>\n<p>if the service Speed Diall 100 is not assigned to the user the speed dial 100 codes will not be created for the user</p>\n</blockquote>\n<blockquote>\n<p>if the attribute assignUserService: true is passed for the user it will assign Speed Code 100 if it isn't already assigned</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"56a0d796-0ffb-4113-b121-2bff7e73e083","name":"Task User Speed Dial 100 (test)","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.speedDial100.update\",\n    \"data\": [\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"user.speedDial100.update\",\n    \"data\": [\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-10-14T17:08:04+00:00\",\n    \"createdAt\": \"2020-10-14T17:08:04+00:00\",\n    \"id\": 48\n}"}],"_postman_id":"98926a58-b9ec-4c6d-93cc-efdf40d1cf88"},{"name":"Task User Service Clone","id":"3706371c-bd1d-4283-9c09-64b1d90a472c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.clone\",\n    \"data\": [\n        {\n            \"task\": \"user.services.clone\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"odin-bulk@parkbenchsolutions.com\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3706371c-bd1d-4283-9c09-64b1d90a472c"},{"name":"Task User Voice Messaging","id":"b895b6ff-eb28-44e0-9243-493c7416d2ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.voice.messaging.update\",\n    \"data\": [\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        },\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"21b94c72-cef0-4a0e-8dde-4849317d0908","name":"Task User Voice Messaging","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.voice.messaging.update\",\n    \"data\": [\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        },\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"user.voice.messaging.update\",\n    \"data\": [\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        },\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2021-01-07T23:46:40+00:00\",\n    \"createdAt\": \"2021-01-07T23:46:40+00:00\",\n    \"id\": 80\n}"}],"_postman_id":"b895b6ff-eb28-44e0-9243-493c7416d2ba"},{"name":"Task User Voice Messaging Voice Portal - TEST","event":[{"listen":"test","script":{"id":"caea2add-ff7d-47e2-a8d6-e24dca795682","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var userId_1 = \"9871515000@odinapi.net\";","var userId_2 = \"9871515001@odinapi.net\";","var jsonData = pm.response.json();","","pm.test(\"UserId exists in response\", function () {","    pm.expect(jsonData.data[0].userId).to.eql(userId_1);","    pm.expect(jsonData.data[1].userId).to.eql(userId_2);","});","","pm.test(\"voiceMessagingVoicePortal userId_1 values are updated\", function(){","    pm.expect(jsonData.data[0].voiceMessagingVoicePortal.usePersonalizedName).to.eql(true);","    pm.expect(jsonData.data[0].voiceMessagingVoicePortal.voicePortalAutoLogin).to.eql(false);","});","","pm.test(\"voiceMessagingVoicePortal userId_2 values are updated\", function(){","    pm.expect(jsonData.data[1].voiceMessagingVoicePortal.usePersonalizedName).to.eql(false);","    pm.expect(jsonData.data[1].voiceMessagingVoicePortal.voicePortalAutoLogin).to.eql(true);","});",""],"type":"text/javascript"}}],"id":"8b3f7136-87ca-4984-8efa-33411ef1e4e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.voice.messaging.update\",\n    \"data\": [\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            },\n            \"voiceMessagingVoicePortal\": {\n                \"usePersonalizedName\": true,\n                \"voicePortalAutoLogin\": false\n            }\n        },\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            },\n            \"voiceMessagingVoicePortal\": {\n                \"usePersonalizedName\": false,\n                \"voicePortalAutoLogin\": true\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b3f7136-87ca-4984-8efa-33411ef1e4e2"},{"name":"TEST Task User Clone TEST","id":"b6853b94-3bda-423b-a7e5-436246925dca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.clone\",\n    \"data\": [\n        {\n            \"task\": \"user.clone\",\n            \"sourceBroadworks\": \"sourceBroadworks\",\n            \"sourceServiceProviderId\": \"ent.odin\",\n            \"sourceGroupId\": \"grp.odin\",\n            \"sourceUserId\": \"4001@parkbenchsolutions.com\",\n            \"destBroadworks\": \"destBroadworks\",\n            \"destServiceProviderId\": \"ent.odin\",\n            \"destGroupId\": \"grp.odin.copy\",\n            \"destUserId\": \"4001-copy@parkbenchsolutions.com\",\n            \"audioUrl\": \"https://labxsp1.alliedtelecom.net\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"http://127.0.0.1:8080/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","tasks"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6853b94-3bda-423b-a7e5-436246925dca"}],"id":"00f4324d-c956-445d-846c-928babc3a296","_postman_id":"00f4324d-c956-445d-846c-928babc3a296","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin UI","item":[{"name":"Stylesheet","id":"79f5b1b5-5128-4254-8338-d838436aef6d","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/styles/style.css","description":"<p>Get the Stylesheet for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","styles","style.css"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7b93c172-cfe6-472a-b118-02db71ffacb6","name":"Stylesheet","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/styles/style.css"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sat, 13 Oct 2018 00:18:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"max-age=300, must-revalidate, private"},{"key":"Last-Modified","value":"Fri, 24 Aug 2018 17:38:28 GMT"},{"key":"Content-Length","value":"641"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"text/css; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"pbs-navbar .navbar {\n  background-color: #3273dc !important;\n}\npbs-navbar .navbar-burger {\n  background-color: #3273dc !important;\n}\npbs-navbar .navbar-brand .navbar-item {\n  background-color: #3273dc !important;\n}\npbs-navbar .navbar-brand .navbar-item:hover {\n  filter: brightness(90%);\n}\n@media  screen and (min-width: 1024px) {\n  pbs-navbar .navbar-link {\n    background-color: #3273dc !important;\n  }\n  pbs-navbar .navbar-item.has-dropdown:hover .navbar-link {\n    filter: brightness(90%) !important;\n  }\n}\npbs-login section.hero {\n  background-color: #3273dc !important;\n}\npbs-login button {\n  background-color: #3273dc !important;\n}\n\n\n"}],"_postman_id":"79f5b1b5-5128-4254-8338-d838436aef6d"},{"name":"Image","id":"15a1b045-1cd8-4caa-9fae-9f2f9a65b5ef","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/images/imageIcon.png?size=50x50","description":"<p>Get UI images for the branding group.</p>\n<p>Image Name Options</p>\n<ul>\n<li>imageIcon.png</li>\n<li>imageLoginLogo.png</li>\n</ul>\n<p>Size Examples</p>\n<ul>\n<li>50 (50px width)</li>\n<li>x50 (50px height)</li>\n<li>50x50 (50px width, 50px height)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","images","imageIcon.png"],"host":["{{url}}"],"query":[{"key":"size","value":"50x50"}],"variable":[]}},"response":[],"_postman_id":"15a1b045-1cd8-4caa-9fae-9f2f9a65b5ef"},{"name":"Modules","id":"7efe384c-78f4-49d8-a3be-60ba41fd1457","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/modules","description":"<p>Get the Module permission for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","modules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"09e9b1d5-47a5-4f97-abda-d1ed574be63f","name":"Modules","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/modules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 13 Oct 2018 00:18:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Account/Authorization Codes\",\n        \"description\": \"Account/Authorization Codes\",\n        \"alias\": \"Account/Authorization Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Advice Of Charge\",\n        \"description\": \"Advice Of Charge\",\n        \"alias\": \"Advice Of Charge\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Alternate Numbers\",\n        \"description\": \"Alternate Numbers\",\n        \"alias\": \"Alternate Numbers\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Anonymous Call Rejection\",\n        \"description\": \"Anonymous Call Rejection\",\n        \"alias\": \"Anonymous Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Authentication\",\n        \"description\": \"Authentication\",\n        \"alias\": \"Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-08-24 21:07:03\",\n        \"updatedAt\": \"2018-08-24 21:07:03\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Auto Attendant\",\n        \"description\": \"Auto Attendant\",\n        \"alias\": \"Auto Attendant\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Auto Attendant Report\",\n        \"description\": \"Auto Attendant Report\",\n        \"alias\": \"AA Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-06 17:48:00\",\n        \"updatedAt\": \"2018-07-06 17:48:00\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Automatic Callback\",\n        \"description\": \"Automatic Callback\",\n        \"alias\": \"Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Automatic Hold/Retrieve\",\n        \"description\": \"Automatic Hold/Retrieve\",\n        \"alias\": \"Automatic Hold/Retrieve\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Barge-in Exempt\",\n        \"description\": \"Barge-in Exempt\",\n        \"alias\": \"Barge-in Exempt\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Basic Call Logs\",\n        \"description\": \"Basic Call Logs\",\n        \"alias\": \"Basic Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"BroadWorks Agent\",\n        \"description\": \"BroadWorks Agent\",\n        \"alias\": \"BroadWorks Agent\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"BroadWorks Anywhere\",\n        \"description\": \"BroadWorks Anywhere\",\n        \"alias\": \"BroadWorks Anywhere\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"BroadWorks Mobility\",\n        \"description\": \"BroadWorks Mobility\",\n        \"alias\": \"BroadWorks Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"BroadWorks Supervisor\",\n        \"description\": \"BroadWorks Supervisor\",\n        \"alias\": \"BroadWorks Supervisor\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Busy Lamp Field\",\n        \"description\": \"Busy Lamp Field\",\n        \"alias\": \"Busy Lamp Field\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Capacity Management\",\n        \"description\": \"Call Capacity Management\",\n        \"alias\": \"Call Capacity Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Center\",\n        \"description\": \"Call Center\",\n        \"alias\": \"Call Center\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Center Monitoring\",\n        \"description\": \"Call Center Monitoring\",\n        \"alias\": \"Call Center Monitoring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Forwarding Always\",\n        \"description\": \"Call Forwarding Always\",\n        \"alias\": \"Call Forwarding Always\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Forwarding Busy\",\n        \"description\": \"Call Forwarding Busy\",\n        \"alias\": \"Call Forwarding Busy\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Forwarding No Answer\",\n        \"description\": \"Call Forwarding No Answer\",\n        \"alias\": \"Call Forwarding No Answer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Forwarding Not Reachable\",\n        \"description\": \"Call Forwarding Not Reachable\",\n        \"alias\": \"Call Forwarding Not Reachable\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Forwarding Selective\",\n        \"description\": \"Call Forwarding Selective\",\n        \"alias\": \"Call Forwarding Selective\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Notify\",\n        \"description\": \"Call Notify\",\n        \"alias\": \"Call Notify\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Park\",\n        \"description\": \"Call Park\",\n        \"alias\": \"Call Park\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Pickup\",\n        \"description\": \"Call Pickup\",\n        \"alias\": \"Call Pickup\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Recording\",\n        \"description\": \"Call Recording\",\n        \"alias\": \"Call Recording\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Return\",\n        \"description\": \"Call Return\",\n        \"alias\": \"Call Return\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Transfer\",\n        \"description\": \"Call Transfer\",\n        \"alias\": \"Call Transfer\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Call Waiting\",\n        \"description\": \"Call Waiting\",\n        \"alias\": \"Call Waiting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Calling Line ID Blocking Override\",\n        \"description\": \"Calling Line ID Blocking Override\",\n        \"alias\": \"Calling Line ID Blocking Override\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Calling Line ID Delivery Blocking\",\n        \"description\": \"Calling Line ID Delivery Blocking\",\n        \"alias\": \"Calling Line ID Delivery Blocking\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Calling Name Delivery\",\n        \"description\": \"Calling Name Delivery\",\n        \"alias\": \"Calling Name Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Calling Name Retrieval\",\n        \"description\": \"Calling Name Retrieval\",\n        \"alias\": \"Calling Name Retrieval\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Calling Number Delivery\",\n        \"description\": \"Calling Number Delivery\",\n        \"alias\": \"Calling Number Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Calling Party Category\",\n        \"description\": \"Calling Party Category\",\n        \"alias\": \"Calling Party Category\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Cds Call Logs\",\n        \"description\": \"Cds Call Logs\",\n        \"alias\": \"Cds Call Logs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Charge Number\",\n        \"description\": \"Charge Number\",\n        \"alias\": \"Charge Number\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Client Call Control\",\n        \"description\": \"Client Call Control\",\n        \"alias\": \"Client Call Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Communication Barring User-Control\",\n        \"description\": \"Communication Barring User-Control\",\n        \"alias\": \"Communication Barring User-Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Connected Line Identification Presentation\",\n        \"description\": \"Connected Line Identification Presentation\",\n        \"alias\": \"Connected Line Identification Presentation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Connected Line Identification Restriction\",\n        \"description\": \"Connected Line Identification Restriction\",\n        \"alias\": \"Connected Line Identification Restriction\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Customer Originated Trace\",\n        \"description\": \"Customer Originated Trace\",\n        \"alias\": \"Customer Originated Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Directed Call Pickup with Barge-in\",\n        \"description\": \"Directed Call Pickup with Barge-in\",\n        \"alias\": \"Directed Call Pickup with Barge-in\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Directory Number Hunting\",\n        \"description\": \"Directory Number Hunting\",\n        \"alias\": \"Directory Number Hunting\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Do Not Disturb\",\n        \"description\": \"Do Not Disturb\",\n        \"alias\": \"Do Not Disturb\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Emergency Zones\",\n        \"description\": \"Emergency Zones\",\n        \"alias\": \"Emergency Zones\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Enhanced Outgoing Calling Plan\",\n        \"description\": \"Enhanced Outgoing Calling Plan\",\n        \"alias\": \"Enhanced Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"External Calling Line ID Delivery\",\n        \"description\": \"External Calling Line ID Delivery\",\n        \"alias\": \"External Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Fax Messaging\",\n        \"description\": \"Fax Messaging\",\n        \"alias\": \"Fax Messaging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Group Calling Plans\",\n        \"description\": \"Group Calling Plans\",\n        \"alias\": \"Group Calling Plans\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Group Paging\",\n        \"description\": \"Group Paging\",\n        \"alias\": \"Group Paging\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Historical Call Records\",\n        \"description\": \"Historical Call Records\",\n        \"alias\": \"Historical Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Hoteling Guest\",\n        \"description\": \"Hoteling Guest\",\n        \"alias\": \"Hoteling Guest\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Hoteling Host\",\n        \"description\": \"Hoteling Host\",\n        \"alias\": \"Hoteling Host\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Hunt Group\",\n        \"description\": \"Hunt Group\",\n        \"alias\": \"Hunt Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Hunt Group Report\",\n        \"description\": \"Hunt Group Report\",\n        \"alias\": \"Hunt Group Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"In-Call Service Activation\",\n        \"description\": \"In-Call Service Activation\",\n        \"alias\": \"In-Call Service Activation\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Incoming Calling Plan\",\n        \"description\": \"Incoming Calling Plan\",\n        \"alias\": \"Incoming Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Instant Conferencing\",\n        \"description\": \"Instant Conferencing\",\n        \"alias\": \"Instant Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Instant Group Call\",\n        \"description\": \"Instant Group Call\",\n        \"alias\": \"Instant Group Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Integrated IMP\",\n        \"description\": \"Integrated IMP\",\n        \"alias\": \"Integrated IMP\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Intelligent Network Service Control\",\n        \"description\": \"Intelligent Network Service Control\",\n        \"alias\": \"Intelligent Network Service Control\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Intercept Group\",\n        \"description\": \"Intercept Group\",\n        \"alias\": \"Intercept Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Intercept User\",\n        \"description\": \"Intercept User\",\n        \"alias\": \"Intercept User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Internal Calling Line ID Delivery\",\n        \"description\": \"Internal Calling Line ID Delivery\",\n        \"alias\": \"Internal Calling Line ID Delivery\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Inventory Report\",\n        \"description\": \"Inventory Report\",\n        \"alias\": \"Inventory Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Last Number Redial\",\n        \"description\": \"Last Number Redial\",\n        \"alias\": \"Last Number Redial\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"LDAP Integration\",\n        \"description\": \"LDAP Integration\",\n        \"alias\": \"LDAP Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Legacy Automatic Callback\",\n        \"description\": \"Legacy Automatic Callback\",\n        \"alias\": \"Legacy Automatic Callback\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Location-Based Calling Restrictions\",\n        \"description\": \"Location-Based Calling Restrictions\",\n        \"alias\": \"Location-Based Calling Restrictions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Malicious Call Trace\",\n        \"description\": \"Malicious Call Trace\",\n        \"alias\": \"Malicious Call Trace\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Meet-Me Conferencing\",\n        \"description\": \"Meet-Me Conferencing\",\n        \"alias\": \"Meet-Me Conferencing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-29 20:28:05\",\n        \"updatedAt\": \"2018-06-29 20:28:05\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Mobile Extension to Extension Dialing\",\n        \"description\": \"Mobile Extension to Extension Dialing\",\n        \"alias\": \"Mobile Extension to Extension Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Mobility\",\n        \"description\": \"Mobility\",\n        \"alias\": \"Mobility\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Multiple Call Arrangement\",\n        \"description\": \"Multiple Call Arrangement\",\n        \"alias\": \"Multiple Call Arrangement\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Music On Hold\",\n        \"description\": \"Music On Hold\",\n        \"alias\": \"Music On Hold\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Music On Hold - Video\",\n        \"description\": \"Music On Hold - Video\",\n        \"alias\": \"Music On Hold - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Music On Hold User\",\n        \"description\": \"Music On Hold User\",\n        \"alias\": \"Music On Hold User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"MWI Delivery to Mobile Endpoint\",\n        \"description\": \"MWI Delivery to Mobile Endpoint\",\n        \"alias\": \"MWI Delivery to Mobile Endpoint\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"N-Way Call\",\n        \"description\": \"N-Way Call\",\n        \"alias\": \"N-Way Call\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Office Communicator Tab\",\n        \"description\": \"Office Communicator Tab\",\n        \"alias\": \"Office Communicator Tab\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Outgoing Calling Plan\",\n        \"description\": \"If you enable International Calling, then you must be willing to pay for it.  :)\",\n        \"alias\": \"Outgoing Calling Plan\",\n        \"url\": null,\n        \"createdAt\": \"2018-08-06 19:54:00\",\n        \"updatedAt\": \"2018-08-06 19:54:00\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Outlook Integration\",\n        \"description\": \"Outlook Integration\",\n        \"alias\": \"Outlook Integration\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Package Management\",\n        \"description\": \"Package Management\",\n        \"alias\": \"Package Management\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Physical Location\",\n        \"description\": \"Physical Location\",\n        \"alias\": \"Physical Location\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Polycom Phone Services\",\n        \"description\": \"Polycom Phone Services\",\n        \"alias\": \"Polycom Phone Services\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Preferred Carrier Group\",\n        \"description\": \"Preferred Carrier Group\",\n        \"alias\": \"Preferred Carrier Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Preferred Carrier User\",\n        \"description\": \"Preferred Carrier User\",\n        \"alias\": \"Preferred Carrier User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Premium Call Records\",\n        \"description\": \"Premium Call Records\",\n        \"alias\": \"Premium Call Records\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Priority Alert\",\n        \"description\": \"Priority Alert\",\n        \"alias\": \"Priority Alert\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Provisioning\",\n        \"description\": \"Provisioning\",\n        \"alias\": \"Provisioning\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-10 17:51:28\",\n        \"updatedAt\": \"2018-07-10 17:51:28\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Push to Talk\",\n        \"description\": \"Push to Talk\",\n        \"alias\": \"Push to Talk\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Remote Office\",\n        \"description\": \"Remote Office\",\n        \"alias\": \"Remote Office\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Schedules\",\n        \"description\": \"Schedules\",\n        \"alias\": \"Schedules\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Selective Call Acceptance\",\n        \"description\": \"Selective Call Acceptance\",\n        \"alias\": \"Selective Call Acceptance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Selective Call Rejection\",\n        \"description\": \"Selective Call Rejection\",\n        \"alias\": \"Selective Call Rejection\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Sequential Ring\",\n        \"description\": \"Sequential Ring\",\n        \"alias\": \"Sequential Ring\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Series Completion\",\n        \"description\": \"Series Completion\",\n        \"alias\": \"Series Completion\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Service Packs\",\n        \"description\": \"Service Packs\",\n        \"alias\": \"Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-03 20:19:33\",\n        \"updatedAt\": \"2018-07-03 20:19:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Shared Call Appearance\",\n        \"description\": \"Shared Call Appearance\",\n        \"alias\": \"Shared Call Appearance\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Simultaneous Ring Personal\",\n        \"description\": \"Simultaneous Ring Personal\",\n        \"alias\": \"Simultaneous Ring Personal\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Speed Dial 100\",\n        \"description\": \"Speed Dial 100\",\n        \"alias\": \"Speed Dial 100\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Speed Dial 8\",\n        \"description\": \"Speed Dial 8\",\n        \"alias\": \"Speed Dial 8\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Trunk Group\",\n        \"description\": \"Trunk Group\",\n        \"alias\": \"Trunk Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-09 23:37:34\",\n        \"updatedAt\": \"2018-07-09 23:37:34\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Two-Stage Dialing\",\n        \"description\": \"Two-Stage Dialing\",\n        \"alias\": \"Two-Stage Dialing\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"User Report\",\n        \"description\": \"User Report\",\n        \"alias\": \"User Report\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"VDM\",\n        \"description\": \"VDM\",\n        \"alias\": \"VDM\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Viewable Service Packs\",\n        \"description\": \"Viewable Service Packs\",\n        \"alias\": \"Viewable Service Packs\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Virtual On-Net Enterprise Extensions\",\n        \"description\": \"Virtual On-Net Enterprise Extensions\",\n        \"alias\": \"Virtual On-Net Enterprise Extensions\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Voice Messaging Group\",\n        \"description\": \"Voice Messaging Group\",\n        \"alias\": \"Voice Messaging Group\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Voice Messaging User\",\n        \"description\": \"Voice Messaging User\",\n        \"alias\": \"Voice Messaging User\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Voice Portal Calling\",\n        \"description\": \"Voice Portal Calling\",\n        \"alias\": \"Voice Portal Calling\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Voice Messaging User - Advanced\",\n        \"description\": \"Voice Messaging User - Advanced\",\n        \"alias\": \"Voice Messaging User - Advanced\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Trunk Group - Authentication\",\n        \"description\": \"Trunk Group - Authentication\",\n        \"alias\": \"Trunk Group - Authentication\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"VDM - Custom Config\",\n        \"description\": \"VDM - Custom Config\",\n        \"alias\": \"VDM - Custom Config\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Group Night Forwarding\",\n        \"description\": \"Group Night Forwarding\",\n        \"alias\": \"Group Night Forwarding\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Collaborate - Audio\",\n        \"description\": \"Collaborate - Audio\",\n        \"alias\": \"Collaborate - Audio\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Collaborate - Video\",\n        \"description\": \"Collaborate - Video\",\n        \"alias\": \"Collaborate - Video\",\n        \"url\": null,\n        \"createdAt\": \"2018-06-27 21:43:33\",\n        \"updatedAt\": \"2018-06-27 21:43:33\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Trunk Group - Pilot User\",\n        \"description\": \"Trunk Group - Pilot User\",\n        \"alias\": \"Trunk Group - Pilot User\",\n        \"url\": null,\n        \"createdAt\": \"2018-07-10 17:51:47\",\n        \"updatedAt\": \"2018-07-10 17:51:47\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Routing Profile\",\n        \"description\": \"Routing Profile\",\n        \"alias\": \"Routing Profile\",\n        \"url\": null,\n        \"createdAt\": \"2018-08-02 18:57:18\",\n        \"updatedAt\": \"2018-08-02 18:57:18\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Privacy\",\n        \"description\": \"Privacy\",\n        \"alias\": \"Privacy\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-11 19:38:15\",\n        \"updatedAt\": \"2018-09-11 19:38:15\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    },\n    {\n        \"name\": \"Group Feature Access Codes\",\n        \"description\": \"Group Feature Access Codes\",\n        \"alias\": \"Group Feature Access Codes\",\n        \"url\": null,\n        \"createdAt\": \"2018-09-21 16:57:35\",\n        \"updatedAt\": \"2018-09-21 16:57:35\",\n        \"permissions\": {\n            \"system\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"provisioning\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"serviceProvider\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"group\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            },\n            \"user\": {\n                \"create\": true,\n                \"read\": true,\n                \"update\": true,\n                \"delete\": true\n            }\n        }\n    }\n]"}],"_postman_id":"7efe384c-78f4-49d8-a3be-60ba41fd1457"},{"name":"System Settings","id":"f5c33d9b-4aac-490f-a6e8-e96ffa0d12cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v2/ui/system-settings","description":"<p>Get the Module permission for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","system-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ee7d57c5-b8a6-429f-ada7-2373fd4e6b3f","name":"Connecors","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/connectors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Jun 2021 21:13:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"112"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"endpoints\": [\n        {\n            \"name\": \"phonism\",\n            \"enabled\": true,\n            \"active\": true\n        },\n        {\n            \"name\": \"phonism2\",\n            \"enabled\": true,\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"f5c33d9b-4aac-490f-a6e8-e96ffa0d12cc"},{"name":"Applications","id":"a97675b6-d34e-43d9-ac89-710bb478a4a7","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/applications","description":"<p>Get the Linked applications for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","applications"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2a4e2dae-5470-4339-89cb-66350900c561","name":"Applications","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 13 Oct 2018 00:18:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"197"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"hostnameId\": 1,\n        \"name\": \"Google\",\n        \"url\": \"https://www.google.com\",\n        \"description\": \"Search Me\",\n        \"window\": true,\n        \"createdAt\": \"2018-10-13 00:17:42\",\n        \"updatedAt\": \"2018-10-13 00:17:42\",\n        \"partner\": null\n    }\n]"}],"_postman_id":"a97675b6-d34e-43d9-ac89-710bb478a4a7"},{"name":"Hostname","id":"464ee624-2039-4d82-add0-f91f1c3319ef","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/applications","description":"<p>Get the Linked applications for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","applications"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"53563107-faab-46ca-90e9-28130766527b","name":"Applications","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 13 Oct 2018 00:18:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"197"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"hostnameId\": 1,\n        \"name\": \"Google\",\n        \"url\": \"https://www.google.com\",\n        \"description\": \"Search Me\",\n        \"window\": true,\n        \"createdAt\": \"2018-10-13 00:17:42\",\n        \"updatedAt\": \"2018-10-13 00:17:42\",\n        \"partner\": null\n    }\n]"}],"_postman_id":"464ee624-2039-4d82-add0-f91f1c3319ef"},{"name":"Templates","id":"f29457d7-006d-40a3-8d87-d9f839225633","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/templates","description":"<p>Get the page template variables for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","templates"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f6c96163-4226-4bef-a97a-69b6857a13ad","name":"Templates","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 13 Oct 2018 00:22:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"139"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"pageTitle\": \"ODiN\",\n    \"pageCopyright\": \"&copy Park Bench Solutions Inc.\",\n    \"pageFooterTitle\": \"ODiN\",\n    \"pageGoogleUA\": null,\n    \"pageLoginMessage\": null\n}"}],"_postman_id":"f29457d7-006d-40a3-8d87-d9f839225633"},{"name":"Settings","id":"a90eea7c-d50c-4a31-ae51-db119e5938dd","request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/settings","description":"<p>Get the UI settings for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b248d615-c8ca-4dfd-b5a5-28079b49a6a4","name":"Settings","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 13 Oct 2018 00:23:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"104"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"sessionTimeout\": 0,\n    \"editCLID\": true,\n    \"createdAt\": \"2018-08-24 17:38:41\",\n    \"updatedAt\": \"2018-08-24 17:38:41\"\n}"}],"_postman_id":"a90eea7c-d50c-4a31-ae51-db119e5938dd"},{"name":"General Settings","id":"06c42fb3-2b83-4916-ad59-ec9e2245d0ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/general-settings?key=emailTemplates","description":"<p>Get the UI settings for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","general-settings"],"host":["{{url}}"],"query":[{"key":"key","value":"emailTemplates"}],"variable":[]}},"response":[],"_postman_id":"06c42fb3-2b83-4916-ad59-ec9e2245d0ed"},{"name":"Locals TEST","id":"8a20b50c-fcae-48d4-b920-234c630ebc45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/locals?lng=en&ns=translation","description":"<p>Get the UI settings for the branding group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","locals"],"host":["{{url}}"],"query":[{"key":"lng","value":"en"},{"key":"ns","value":"translation"}],"variable":[]}},"response":[],"_postman_id":"8a20b50c-fcae-48d4-b920-234c630ebc45"},{"name":"Security","id":"7d266fae-1105-4eaa-a112-625819b9691f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/ui/sso","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","ui","sso"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d266fae-1105-4eaa-a112-625819b9691f"}],"id":"c7f3ffd0-966c-45c8-8d46-c093bb148066","_postman_id":"c7f3ffd0-966c-45c8-8d46-c093bb148066","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Viewable Packs","item":[{"name":"User Viewable Pack","id":"002b5a51-d3a5-48a0-b42b-9208a11c15d7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/users/viewable-packs?userId=9589582000@as3.xdp.broadsoft.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","viewable-packs"],"host":["{{url}}"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}],"variable":[]}},"response":[{"id":"71e42d60-c83d-4ccb-a6ea-c7d630ec46af","name":"User Viewable Pack","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/users/viewable-packs?userId=9589582000@as3.xdp.broadsoft.com","host":["{{url}}"],"path":["api","v2","users","viewable-packs"],"query":[{"key":"userId","value":"9589582000@as3.xdp.broadsoft.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 23:37:14 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"124"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Viewable Pack 1\",\n    \"created\": \"2018-10-12 23:31:22\",\n    \"updated\": \"2018-10-12 23:31:22\"\n}"}],"_postman_id":"002b5a51-d3a5-48a0-b42b-9208a11c15d7"},{"name":"User Viewable Pack","id":"2cddb6a8-430f-4267-91ad-554051f25335","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\",\n\t\"id\":1\n}"},"url":"{{url}}/api/v2/users/viewable-packs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","viewable-packs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"38ab5a10-c162-4739-8a67-a2c06f4424a5","name":"User Viewable Pack","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"9589582000@as3.xdp.broadsoft.com\",\n\t\"id\":1\n}"},"url":"{{url}}/api/v2/users/viewable-packs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Oct 2018 23:39:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"124"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Viewable Pack 1\",\n    \"created\": \"2018-10-12 23:31:22\",\n    \"updated\": \"2018-10-12 23:31:22\"\n}"}],"_postman_id":"2cddb6a8-430f-4267-91ad-554051f25335"},{"name":"Group Viewable Packs Bulk","id":"bc4be3a0-8ee3-4382-8f4f-250d38b53205","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/groups/viewable-packs/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs","bulk"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"571f5712-c032-4343-8a6f-539f8020520e","name":"Group Viewable Packs Bulk","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/groups/viewable-packs/bulk?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","viewable-packs","bulk"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:00:04 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"2319"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9709580001@microv-works.com\",\n        \"lastName\": \"Mock1 Last\",\n        \"firstName\": \"Mock1 First\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"phoneNumber\": \"+1-9709580001\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"Mock1 Last\",\n        \"hiraganaFirstName\": \"Mock1 First\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"0001\",\n        \"domain\": \"microv-works.com\",\n        \"virtualPackId\": 1,\n        \"virtualPackName\": \"Viewable Pack 1\"\n    },\n    {\n        \"userId\": \"9709580002@microv-works.com\",\n        \"lastName\": \"User2last\",\n        \"firstName\": \"User2first\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"phoneNumber\": \"+1-9709580002\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"User2last\",\n        \"hiraganaFirstName\": \"User2first\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"0002\",\n        \"domain\": \"microv-works.com\",\n        \"virtualPackId\": 1,\n        \"virtualPackName\": \"Viewable Pack 1\"\n    },\n    {\n        \"userId\": \"9709580003@microv-works.com\",\n        \"lastName\": \"User3last\",\n        \"firstName\": \"User3first\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"phoneNumber\": \"+1-9709580003\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"User3last\",\n        \"hiraganaFirstName\": \"User3first\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"0003\",\n        \"domain\": \"microv-works.com\",\n        \"virtualPackId\": null,\n        \"virtualPackName\": null\n    },\n    {\n        \"userId\": \"9709580004@microv-works.com\",\n        \"lastName\": \"User4last\",\n        \"firstName\": \"User4first\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"phoneNumber\": \"+1-9709580004\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"User4last\",\n        \"hiraganaFirstName\": \"User4first\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"0004\",\n        \"domain\": \"microv-works.com\",\n        \"virtualPackId\": null,\n        \"virtualPackName\": null\n    },\n    {\n        \"userId\": \"9709580005@microv-works.com\",\n        \"lastName\": \"User5last\",\n        \"firstName\": \"User5first\",\n        \"department\": \"Odin Mock Dept (odin.mock.grp1)\",\n        \"phoneNumber\": \"+1-9709580005\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"User5last\",\n        \"hiraganaFirstName\": \"User5first\",\n        \"inTrunkGroup\": false,\n        \"extension\": \"0005\",\n        \"domain\": \"microv-works.com\",\n        \"virtualPackId\": null,\n        \"virtualPackName\": null\n    },\n    {\n        \"userId\": \"mock-pilot-1@microv-works.com\",\n        \"lastName\": \"pilot\",\n        \"firstName\": \"pilot\",\n        \"department\": null,\n        \"phoneNumber\": \"+1-9709580008\",\n        \"phoneNumberActivated\": true,\n        \"emailAddress\": null,\n        \"hiraganaLastName\": \"pilot\",\n        \"hiraganaFirstName\": \"pilot\",\n        \"inTrunkGroup\": true,\n        \"extension\": \"0008\",\n        \"domain\": \"microv-works.com\",\n        \"virtualPackId\": null,\n        \"virtualPackName\": null\n    }\n]"}],"_postman_id":"bc4be3a0-8ee3-4382-8f4f-250d38b53205"},{"name":"Group Viewable Packs Bulk","id":"acf28a9f-97cf-42cb-8451-ead49dcc1069","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"id\": 1,\n    \"users\": [\n        {\n            \"userId\": \"9709580001@microv-works.com\"\n        },\n        {\n            \"userId\": \"9709580002@microv-works.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/viewable-packs/bulk","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs","bulk"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6a823dc8-ff88-45a6-bcee-dc9b4396ba5c","name":"Group Viewable Packs Bulk","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\",\n    \"id\": 1,\n    \"users\": [\n        {\n            \"userId\": \"9709580001@microv-works.com\"\n        },\n        {\n            \"userId\": \"9709580002@microv-works.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/groups/viewable-packs/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:00:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"83"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"9709580001@microv-works.com\"\n    },\n    {\n        \"userId\": \"9709580002@microv-works.com\"\n    }\n]"}],"_postman_id":"acf28a9f-97cf-42cb-8451-ead49dcc1069"},{"name":"Group Viewable Packs Services","id":"7aeb8781-52fe-4a27-aa34-b7907247d296","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/viewable-packs/services?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs","services"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"7ac4ff09-3ecb-4a34-a5fc-4ed4d01f9fc4","name":"Group Viewable Packs Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/viewable-packs/services?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","viewable-packs","services"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:02:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"4940"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"Account/Authorization Codes\"\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Advice Of Charge\"\n    },\n    {\n        \"id\": 3,\n        \"name\": \"Alternate Numbers\"\n    },\n    {\n        \"id\": 4,\n        \"name\": \"Anonymous Call Rejection\"\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Authentication\"\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Auto Attendant\"\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Auto Attendant Report\"\n    },\n    {\n        \"id\": 10,\n        \"name\": \"Automatic Callback\"\n    },\n    {\n        \"id\": 11,\n        \"name\": \"Automatic Hold/Retrieve\"\n    },\n    {\n        \"id\": 12,\n        \"name\": \"Barge-in Exempt\"\n    },\n    {\n        \"id\": 13,\n        \"name\": \"Basic Call Logs\"\n    },\n    {\n        \"id\": 15,\n        \"name\": \"BroadWorks Agent\"\n    },\n    {\n        \"id\": 16,\n        \"name\": \"BroadWorks Anywhere\"\n    },\n    {\n        \"id\": 17,\n        \"name\": \"BroadWorks Mobility\"\n    },\n    {\n        \"id\": 20,\n        \"name\": \"BroadWorks Supervisor\"\n    },\n    {\n        \"id\": 21,\n        \"name\": \"Busy Lamp Field\"\n    },\n    {\n        \"id\": 22,\n        \"name\": \"Call Capacity Management\"\n    },\n    {\n        \"id\": 23,\n        \"name\": \"Call Center\"\n    },\n    {\n        \"id\": 27,\n        \"name\": \"Call Center Monitoring\"\n    },\n    {\n        \"id\": 29,\n        \"name\": \"Call Forwarding Always\"\n    },\n    {\n        \"id\": 30,\n        \"name\": \"Call Forwarding Busy\"\n    },\n    {\n        \"id\": 31,\n        \"name\": \"Call Forwarding No Answer\"\n    },\n    {\n        \"id\": 32,\n        \"name\": \"Call Forwarding Not Reachable\"\n    },\n    {\n        \"id\": 33,\n        \"name\": \"Call Forwarding Selective\"\n    },\n    {\n        \"id\": 34,\n        \"name\": \"Call Notify\"\n    },\n    {\n        \"id\": 35,\n        \"name\": \"Call Park\"\n    },\n    {\n        \"id\": 36,\n        \"name\": \"Call Pickup\"\n    },\n    {\n        \"id\": 37,\n        \"name\": \"Call Recording\"\n    },\n    {\n        \"id\": 38,\n        \"name\": \"Call Return\"\n    },\n    {\n        \"id\": 39,\n        \"name\": \"Call Transfer\"\n    },\n    {\n        \"id\": 40,\n        \"name\": \"Call Waiting\"\n    },\n    {\n        \"id\": 41,\n        \"name\": \"Calling Line ID Blocking Override\"\n    },\n    {\n        \"id\": 42,\n        \"name\": \"Calling Line ID Delivery Blocking\"\n    },\n    {\n        \"id\": 43,\n        \"name\": \"Calling Name Delivery\"\n    },\n    {\n        \"id\": 44,\n        \"name\": \"Calling Name Retrieval\"\n    },\n    {\n        \"id\": 45,\n        \"name\": \"Calling Number Delivery\"\n    },\n    {\n        \"id\": 46,\n        \"name\": \"Calling Party Category\"\n    },\n    {\n        \"id\": 47,\n        \"name\": \"Cds Call Logs\"\n    },\n    {\n        \"id\": 48,\n        \"name\": \"Charge Number\"\n    },\n    {\n        \"id\": 51,\n        \"name\": \"Client Call Control\"\n    },\n    {\n        \"id\": 76,\n        \"name\": \"Communication Barring User-Control\"\n    },\n    {\n        \"id\": 77,\n        \"name\": \"Connected Line Identification Presentation\"\n    },\n    {\n        \"id\": 78,\n        \"name\": \"Connected Line Identification Restriction\"\n    },\n    {\n        \"id\": 84,\n        \"name\": \"Customer Originated Trace\"\n    },\n    {\n        \"id\": 86,\n        \"name\": \"Directed Call Pickup with Barge-in\"\n    },\n    {\n        \"id\": 87,\n        \"name\": \"Directory Number Hunting\"\n    },\n    {\n        \"id\": 89,\n        \"name\": \"Do Not Disturb\"\n    },\n    {\n        \"id\": 91,\n        \"name\": \"Emergency Zones\"\n    },\n    {\n        \"id\": 93,\n        \"name\": \"Enhanced Outgoing Calling Plan\"\n    },\n    {\n        \"id\": 94,\n        \"name\": \"External Calling Line ID Delivery\"\n    },\n    {\n        \"id\": 96,\n        \"name\": \"Fax Messaging\"\n    },\n    {\n        \"id\": 98,\n        \"name\": \"Group Calling Plans\"\n    },\n    {\n        \"id\": 99,\n        \"name\": \"Group Paging\"\n    },\n    {\n        \"id\": 101,\n        \"name\": \"Historical Call Records\"\n    },\n    {\n        \"id\": 102,\n        \"name\": \"Hoteling Guest\"\n    },\n    {\n        \"id\": 103,\n        \"name\": \"Hoteling Host\"\n    },\n    {\n        \"id\": 104,\n        \"name\": \"Hunt Group\"\n    },\n    {\n        \"id\": 105,\n        \"name\": \"Hunt Group Report\"\n    },\n    {\n        \"id\": 107,\n        \"name\": \"In-Call Service Activation\"\n    },\n    {\n        \"id\": 108,\n        \"name\": \"Incoming Calling Plan\"\n    },\n    {\n        \"id\": 109,\n        \"name\": \"Instant Conferencing\"\n    },\n    {\n        \"id\": 110,\n        \"name\": \"Instant Group Call\"\n    },\n    {\n        \"id\": 111,\n        \"name\": \"Integrated IMP\"\n    },\n    {\n        \"id\": 112,\n        \"name\": \"Intelligent Network Service Control\"\n    },\n    {\n        \"id\": 113,\n        \"name\": \"Intercept Group\"\n    },\n    {\n        \"id\": 114,\n        \"name\": \"Intercept User\"\n    },\n    {\n        \"id\": 115,\n        \"name\": \"Internal Calling Line ID Delivery\"\n    },\n    {\n        \"id\": 116,\n        \"name\": \"Inventory Report\"\n    },\n    {\n        \"id\": 117,\n        \"name\": \"Last Number Redial\"\n    },\n    {\n        \"id\": 118,\n        \"name\": \"LDAP Integration\"\n    },\n    {\n        \"id\": 119,\n        \"name\": \"Legacy Automatic Callback\"\n    },\n    {\n        \"id\": 120,\n        \"name\": \"Location-Based Calling Restrictions\"\n    },\n    {\n        \"id\": 121,\n        \"name\": \"Malicious Call Trace\"\n    },\n    {\n        \"id\": 122,\n        \"name\": \"Meet-Me Conferencing\"\n    },\n    {\n        \"id\": 123,\n        \"name\": \"Mobile Extension to Extension Dialing\"\n    },\n    {\n        \"id\": 124,\n        \"name\": \"Mobility\"\n    },\n    {\n        \"id\": 125,\n        \"name\": \"Multiple Call Arrangement\"\n    },\n    {\n        \"id\": 126,\n        \"name\": \"Music On Hold\"\n    },\n    {\n        \"id\": 127,\n        \"name\": \"Music On Hold - Video\"\n    },\n    {\n        \"id\": 128,\n        \"name\": \"Music On Hold User\"\n    },\n    {\n        \"id\": 129,\n        \"name\": \"MWI Delivery to Mobile Endpoint\"\n    },\n    {\n        \"id\": 130,\n        \"name\": \"N-Way Call\"\n    },\n    {\n        \"id\": 131,\n        \"name\": \"Office Communicator Tab\"\n    },\n    {\n        \"id\": 132,\n        \"name\": \"Outgoing Calling Plan\"\n    },\n    {\n        \"id\": 133,\n        \"name\": \"Outlook Integration\"\n    },\n    {\n        \"id\": 134,\n        \"name\": \"Package Management\"\n    },\n    {\n        \"id\": 135,\n        \"name\": \"Physical Location\"\n    },\n    {\n        \"id\": 136,\n        \"name\": \"Polycom Phone Services\"\n    },\n    {\n        \"id\": 138,\n        \"name\": \"Preferred Carrier Group\"\n    },\n    {\n        \"id\": 139,\n        \"name\": \"Preferred Carrier User\"\n    },\n    {\n        \"id\": 142,\n        \"name\": \"Priority Alert\"\n    },\n    {\n        \"id\": 144,\n        \"name\": \"Provisioning\"\n    },\n    {\n        \"id\": 145,\n        \"name\": \"Push to Talk\"\n    },\n    {\n        \"id\": 146,\n        \"name\": \"Remote Office\"\n    },\n    {\n        \"id\": 148,\n        \"name\": \"Schedules\"\n    },\n    {\n        \"id\": 149,\n        \"name\": \"Selective Call Acceptance\"\n    },\n    {\n        \"id\": 150,\n        \"name\": \"Selective Call Rejection\"\n    },\n    {\n        \"id\": 151,\n        \"name\": \"Sequential Ring\"\n    },\n    {\n        \"id\": 152,\n        \"name\": \"Series Completion\"\n    },\n    {\n        \"id\": 153,\n        \"name\": \"Service Packs\"\n    },\n    {\n        \"id\": 156,\n        \"name\": \"Shared Call Appearance\"\n    },\n    {\n        \"id\": 165,\n        \"name\": \"Simultaneous Ring Personal\"\n    },\n    {\n        \"id\": 169,\n        \"name\": \"Speed Dial 100\"\n    },\n    {\n        \"id\": 170,\n        \"name\": \"Speed Dial 8\"\n    },\n    {\n        \"id\": 175,\n        \"name\": \"Trunk Group\"\n    },\n    {\n        \"id\": 176,\n        \"name\": \"Two-Stage Dialing\"\n    },\n    {\n        \"id\": 177,\n        \"name\": \"User Report\"\n    },\n    {\n        \"id\": 181,\n        \"name\": \"Viewable Service Packs\"\n    },\n    {\n        \"id\": 182,\n        \"name\": \"Virtual On-Net Enterprise Extensions\"\n    },\n    {\n        \"id\": 183,\n        \"name\": \"Voice Messaging Group\"\n    },\n    {\n        \"id\": 184,\n        \"name\": \"Voice Messaging User\"\n    },\n    {\n        \"id\": 186,\n        \"name\": \"Voice Portal Calling\"\n    },\n    {\n        \"id\": 188,\n        \"name\": \"Voice Messaging User - Advanced\"\n    },\n    {\n        \"id\": 189,\n        \"name\": \"Trunk Group - Authentication\"\n    },\n    {\n        \"id\": 190,\n        \"name\": \"VDM - Custom Config\"\n    },\n    {\n        \"id\": 191,\n        \"name\": \"Group Night Forwarding\"\n    },\n    {\n        \"id\": 192,\n        \"name\": \"Collaborate - Audio\"\n    },\n    {\n        \"id\": 193,\n        \"name\": \"Collaborate - Video\"\n    },\n    {\n        \"id\": 194,\n        \"name\": \"Trunk Group - Pilot User\"\n    },\n    {\n        \"id\": 196,\n        \"name\": \"Routing Profile\"\n    },\n    {\n        \"id\": 197,\n        \"name\": \"Privacy\"\n    },\n    {\n        \"id\": 198,\n        \"name\": \"Group Feature Access Codes\"\n    }\n]"}],"_postman_id":"7aeb8781-52fe-4a27-aa34-b7907247d296"},{"name":"Group Viewable Packs","id":"28020387-55f5-42ba-b741-1ffe1c0546a8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/viewable-packs?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"2858ddac-ef6f-4ee2-9019-63ef0845510d","name":"Group Viewable Packs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/viewable-packs?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","viewable-packs"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:08:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"130"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"groupId\": \"odin.mock.grp1\",\n        \"name\": \"Viewable Pack 1\",\n        \"createdAt\": \"2018-10-12 23:31:22\",\n        \"updatedAt\": \"2018-10-12 23:31:22\"\n    }\n]"}],"_postman_id":"28020387-55f5-42ba-b741-1ffe1c0546a8"},{"name":"Group Viewable Pack","id":"245305f1-2122-41de-8e3f-109373a1d4d9","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"services\": [\n        {\n            \"id\": 1,\n            \"name\": \"Account/Authorization Codes\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Advice Of Charge\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Alternate Numbers\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Anonymous Call Rejection\"\n        }\n    ],\n    \"name\": \"Viewable Pack 2\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/viewable-packs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f070a008-266f-4636-a4c6-a599cb6e9e66","name":"Group Viewable Pack","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"services\": [\n        {\n            \"id\": 1,\n            \"name\": \"Account/Authorization Codes\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Advice Of Charge\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Alternate Numbers\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Anonymous Call Rejection\"\n        }\n    ],\n    \"name\": \"Viewable Pack 2\",\n    \"serviceProviderId\": \"odin.mock.ent1\",\n    \"groupId\": \"odin.mock.grp1\"\n}"},"url":"{{url}}/api/v2/groups/viewable-packs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:08:23 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"302"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Viewable Pack 2\",\n    \"createdAt\": \"2018-10-24 18:08:23\",\n    \"updatedAt\": \"2018-10-24 18:08:23\",\n    \"services\": [\n        {\n            \"id\": 1,\n            \"name\": \"Account/Authorization Codes\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Advice Of Charge\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Alternate Numbers\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Anonymous Call Rejection\"\n        }\n    ]\n}"}],"_postman_id":"245305f1-2122-41de-8e3f-109373a1d4d9"},{"name":"Group Viewable Pack","id":"00389734-ea26-40a1-badc-cf8c822cc877","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/groups/viewable-packs?groupId=odin.mock.grp1&id=4&serviceProviderId=odin.mock.ent1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs"],"host":["{{url}}"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"id","value":"4"},{"key":"serviceProviderId","value":"odin.mock.ent1"}],"variable":[]}},"response":[{"id":"f811f1fd-627c-48a9-a9b5-50c69f3a3c57","name":"Group Viewable Pack","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/groups/viewable-packs?groupId=odin.mock.grp1&id=4&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","viewable-packs"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"id","value":"4"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:08:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"302"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Viewable Pack 2\",\n    \"createdAt\": \"2018-10-24 18:08:23\",\n    \"updatedAt\": \"2018-10-24 18:08:23\",\n    \"services\": [\n        {\n            \"id\": 1,\n            \"name\": \"Account/Authorization Codes\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Advice Of Charge\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Alternate Numbers\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Anonymous Call Rejection\"\n        }\n    ]\n}"}],"_postman_id":"00389734-ea26-40a1-badc-cf8c822cc877"},{"name":"Group Viewable Pack","id":"23a608a2-7404-43c1-9e21-91df0e6c0425","request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 4,\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Viewable Pack 2\",\n    \"services\": [\n        {\n            \"id\": 1,\n            \"name\": \"Account/Authorization Codes\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Advice Of Charge\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Alternate Numbers\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Authentication\"\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/groups/viewable-packs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bf46187c-a967-42f1-983f-d2f2112e674e","name":"Group Viewable Pack","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": 4,\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Viewable Pack 2\",\n    \"services\": [\n        {\n            \"id\": 1,\n            \"name\": \"Account/Authorization Codes\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Advice Of Charge\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Alternate Numbers\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Authentication\"\n        }\n    ],\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"},"url":"{{url}}/api/v2/groups/viewable-packs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:09:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"335"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"groupId\": \"odin.mock.grp1\",\n    \"name\": \"Viewable Pack 2\",\n    \"createdAt\": \"2018-10-24 18:08:23\",\n    \"updatedAt\": \"2018-10-24 18:09:55\",\n    \"services\": [\n        {\n            \"id\": 1,\n            \"name\": \"Account/Authorization Codes\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Advice Of Charge\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Alternate Numbers\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Anonymous Call Rejection\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Authentication\"\n        }\n    ]\n}"}],"_postman_id":"23a608a2-7404-43c1-9e21-91df0e6c0425"},{"name":"Group Viewable Pack","id":"e355c788-2c66-48f3-beb3-2477bd7c8e37","request":{"method":"DELETE","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwNDAwNTk0LCJuYnAiOjE1NDA0MDA1OTQsImV4cCI6MTU0MDQ0Mzc5NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbXhQWVd0VGNsZFRYQzlhTTBobldFWnJRVTFuWWxKblBUMGlMQ0oyWVd4MVpTSTZJbEpNVlZaUlpGd3ZVRUZPYzF3dlpURmFkMndyT1dnNFNqVjNXVlF5WlZwTllraFBPRU55ZG1sdFZrZFRPRDBpTENKdFlXTWlPaUptT1RNMk5HWmhZV0l5WmpCaVptWmlZV1l3TURoalpHTm1OamhoWWpreE5UQXhOalU0WXpReU5ESXhPR0psT0Rjek1ERmhNamhpTlRrek16RmpZVGRsSW4wPSIsInAiOiJleUpwZGlJNkluRk1SRzFJUzFsV1prTnRTakp5U0dreVUxQlVhRUU5UFNJc0luWmhiSFZsSWpvaVVuSm5TRUZzYmtOc1RtMTFObk5TVlZsYVlWZGFVME5QZDJaM2RsSnZWM05zVUZVME9UUjNUbkpXVUhWR1dYVXdNRXBHUlVSVVZFbzViMjVzU2xJcmJVcDBWV1ZYY2xoek1XcG1TbEF4TUZjelNFRlRUWGM5UFNJc0ltMWhZeUk2SW1KalpUVXdabU5sTjJVMU1tUTNaamswT1RVMllUWTVOekExTTJKbE5HSm1NR0V3WlRRd1lqVTBZemhoWVdOaE1qRXhOVGhoWVdVMU1qWmlOek00TnpFaWZRPT0iLCJlIjoiZXlKcGRpSTZJazlLUTFKclhDOUZNMHBNUTBOQ04zaGlUa1JyVkZwblBUMGlMQ0oyWVd4MVpTSTZJa3hCVDFOb1pXZzBiWEpxWmxsa1JrSm1VMlZWYUhjOVBTSXNJbTFoWXlJNklqVmtNMlUyWkRNeVlUTXpNbUl3TlRGa09XTmhOelE1Tm1SaE5HSmlObVpsWlRjd05UTTJabUkwTmpSa05UZzFZVE5rT1RNNE5ESmtOVEF3TW1Oak9XTWlmUT09In19.n3_48GfgiPh_fyZ3TKnynBelm3n0wz1W0C6RBZWn1W0"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":"{{url}}/api/v2/groups/viewable-packs?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&id=4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","viewable-packs"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"id","value":"4"}],"variable":[]}},"response":[{"id":"15b89f8c-c458-47aa-964a-6a66f0f2bdbf","name":"Group Viewable Pack","originalRequest":{"method":"DELETE","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQwNDAwNTk0LCJuYnAiOjE1NDA0MDA1OTQsImV4cCI6MTU0MDQ0Mzc5NCwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJbXhQWVd0VGNsZFRYQzlhTTBobldFWnJRVTFuWWxKblBUMGlMQ0oyWVd4MVpTSTZJbEpNVlZaUlpGd3ZVRUZPYzF3dlpURmFkMndyT1dnNFNqVjNXVlF5WlZwTllraFBPRU55ZG1sdFZrZFRPRDBpTENKdFlXTWlPaUptT1RNMk5HWmhZV0l5WmpCaVptWmlZV1l3TURoalpHTm1OamhoWWpreE5UQXhOalU0WXpReU5ESXhPR0psT0Rjek1ERmhNamhpTlRrek16RmpZVGRsSW4wPSIsInAiOiJleUpwZGlJNkluRk1SRzFJUzFsV1prTnRTakp5U0dreVUxQlVhRUU5UFNJc0luWmhiSFZsSWpvaVVuSm5TRUZzYmtOc1RtMTFObk5TVlZsYVlWZGFVME5QZDJaM2RsSnZWM05zVUZVME9UUjNUbkpXVUhWR1dYVXdNRXBHUlVSVVZFbzViMjVzU2xJcmJVcDBWV1ZYY2xoek1XcG1TbEF4TUZjelNFRlRUWGM5UFNJc0ltMWhZeUk2SW1KalpUVXdabU5sTjJVMU1tUTNaamswT1RVMllUWTVOekExTTJKbE5HSm1NR0V3WlRRd1lqVTBZemhoWVdOaE1qRXhOVGhoWVdVMU1qWmlOek00TnpFaWZRPT0iLCJlIjoiZXlKcGRpSTZJazlLUTFKclhDOUZNMHBNUTBOQ04zaGlUa1JyVkZwblBUMGlMQ0oyWVd4MVpTSTZJa3hCVDFOb1pXZzBiWEpxWmxsa1JrSm1VMlZWYUhjOVBTSXNJbTFoWXlJNklqVmtNMlUyWkRNeVlUTXpNbUl3TlRGa09XTmhOelE1Tm1SaE5HSmlObVpsWlRjd05UTTJabUkwTmpSa05UZzFZVE5rT1RNNE5ESmtOVEF3TW1Oak9XTWlmUT09In19.n3_48GfgiPh_fyZ3TKnynBelm3n0wz1W0C6RBZWn1W0"},{"key":"connection","value":"keep-alive"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:63.0) Gecko/20100101 Firefox/63.0"}],"url":{"raw":"{{url}}/api/v2/groups/viewable-packs?serviceProviderId=odin.mock.ent1&groupId=odin.mock.grp1&id=4","host":["{{url}}"],"path":["api","v2","groups","viewable-packs"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"},{"key":"groupId","value":"odin.mock.grp1"},{"key":"id","value":"4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 18:10:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"10"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4\"\n}"}],"_postman_id":"e355c788-2c66-48f3-beb3-2477bd7c8e37"}],"id":"6412cd91-d3ab-4c15-bdeb-07d9ed8ef648","_postman_id":"6412cd91-d3ab-4c15-bdeb-07d9ed8ef648","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Webhooks","item":[{"name":"Webhooks","id":"819d5e64-86e1-40aa-88fb-530c36acaa67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/webhooks?limit=20&types=user.create,user.delete,user.busyLampField.update","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the search results</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","webhooks"],"host":["{{url}}"],"query":[{"key":"limit","value":"20"},{"disabled":true,"key":"offset","value":"2"},{"disabled":true,"key":"startTime","value":"2021-01-01 00:00:00"},{"disabled":true,"key":"endTime","value":"2021-02-01 00:00:00"},{"disabled":true,"key":"endpoint","value":"http://webhook:3000"},{"disabled":true,"key":"status","value":"failed"},{"disabled":true,"key":"type","value":"user.create"},{"key":"types","value":"user.create,user.delete,user.busyLampField.update"},{"disabled":true,"key":"orderBy","value":"asc"}],"variable":[]}},"response":[{"id":"e11bae29-7ebb-4c43-884e-10a4ba36540d","name":"Odin Webhooks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/webhooks?limit=2","host":["{{url}}"],"path":["api","v2","webhooks"],"query":[{"key":"limit","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 17:34:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"399"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2,\n        \"eventId\": 5,\n        \"type\": \"user.services.update\",\n        \"endpoint\": \"http://webhook:3000\",\n        \"status\": \"success\",\n        \"seconds\": \"2.53\",\n        \"attempt\": 1,\n        \"error\": \"\",\n        \"nextAt\": null,\n        \"createdAt\": \"2018-10-19T17:34:23+00:00\"\n    },\n    {\n        \"id\": 1,\n        \"eventId\": 2,\n        \"type\": \"user.services.update\",\n        \"endpoint\": \"http://webhook:3000\",\n        \"status\": \"success\",\n        \"seconds\": \"2.25\",\n        \"attempt\": 1,\n        \"error\": \"\",\n        \"nextAt\": null,\n        \"createdAt\": \"2018-10-19T17:30:05+00:00\"\n    }\n]"}],"_postman_id":"819d5e64-86e1-40aa-88fb-530c36acaa67"},{"name":"Webhook","id":"25d6f043-b8cf-4402-a58d-470daeb9ced8","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/webhooks?id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","webhooks"],"host":["{{url}}"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"584b1a82-de93-497b-adc5-9325a19de2e8","name":"Odin Webhook","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/webhooks?id=1","host":["{{url}}"],"path":["api","v2","webhooks"],"query":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 17:34:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"198"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"eventId\": 2,\n    \"type\": \"user.services.update\",\n    \"endpoint\": \"http://webhook:3000\",\n    \"status\": \"success\",\n    \"seconds\": \"2.25\",\n    \"attempt\": 1,\n    \"error\": \"\",\n    \"nextAt\": null,\n    \"createdAt\": \"2018-10-19T17:30:05+00:00\"\n}"}],"_postman_id":"25d6f043-b8cf-4402-a58d-470daeb9ced8"}],"id":"8c70b5d2-26d5-4437-9c6d-df25316242e4","_postman_id":"8c70b5d2-26d5-4437-9c6d-df25316242e4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Audit","item":[{"name":"Audit User Test","id":"3ed4b833-f63b-4eaf-827f-974d937bf6d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin.audit\",\n    \"groupId\": \"grp.odin.audit\",\n    \"options\": {\n        \"audits\": {\n            \"audit.system\": true,\n            \"audit.serviceProvider\": true,\n            \"audit.group.devices\": true,\n            \"audit.group\": true\n        }\n    }\n}"},"url":"{{url}}/api/v2/audits/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits","reports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ed4b833-f63b-4eaf-827f-974d937bf6d2"},{"name":"Audit User Copy","id":"fff427fd-72bc-4449-877b-62a319b79b96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"CBT Official Service_ent\",\n    \"groupId\": \"209 W 7th_grp\",\n    \"options\": {\n        \"audit.user\": true,\n        \"users\": [\n            {\n                \"userId\": \"5133970970@as.voip.fuse.net\"\n            }\n        ]\n    }\n}"},"url":"{{url}}/api/v2/audits","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fff427fd-72bc-4449-877b-62a319b79b96"},{"name":"Audit Group","id":"6ce8681d-7404-4293-9028-edb98ad819c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"options\": {\n        \"audits\": {\n        \t\"audit.group\": true\n        }\n    }\n}"},"url":"{{url}}/api/v2/audits","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ce8681d-7404-4293-9028-edb98ad819c7"},{"name":"Audit Template TEST","id":"d318a2c8-b338-41d4-ba79-bb6ac2e9068e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"template\": \"Basic Template\",\n    \"options\": {\n        \"shortTags\": true\n    }\n}"},"url":"{{url}}/api/v2/audits","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d318a2c8-b338-41d4-ba79-bb6ac2e9068e"},{"name":"Transfer Group TEST","id":"11d5b7cd-03e7-4b34-951e-212b13358ba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviders\": [\n        \"ent.odin\"\n    ],\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"options\": {\n        \"audits\": {\n        \t\"audit.group\": true\n        }\n    }\n}"},"url":"{{url}}/api/v2/transfers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","transfers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"11d5b7cd-03e7-4b34-951e-212b13358ba6"},{"name":"Audit Service Provider","id":"51c08a65-6249-4691-bc86-afbef3653c61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"SP166\",\n    \"groupId\": \"ADHDMEDICAL060113\",\n    \"options\": {\n        \"audits\": {\n        \t\"audit.serviceProvider\": true,\n        \t\"audit.group\": true\n        }\n    }\n}"},"url":"{{url}}/api/v2/audits","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"51c08a65-6249-4691-bc86-afbef3653c61"},{"name":"Audit Group Users","id":"a905a8b9-b81b-4dde-8945-6727a7887328","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"2100003961\",\n    \"groupId\": \"2100003961-01\",\n    \"options\": {\n    \t\"audit.group\": true,\n        \"users\": [\n            {\n                \"userId\": \"2394948351@hotwirephone.com\"\n            },\n            {\n                \"userId\": \"2394948337@hotwirephone.com\"\n            }\n        ]\n    }\n}"},"url":"{{url}}/api/v2/audits","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a905a8b9-b81b-4dde-8945-6727a7887328"},{"name":"Audit Service Instances","id":"b8eb6750-5414-4b46-af55-ed3c736063e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"SP148\",\n    \"groupId\": \"BlueFusion\",\n    \"options\": {\n        \"audits\": {\n            \"audit.service.instances\": true\n        }\n    }\n}"},"url":"{{url}}/api/v2/audits","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8eb6750-5414-4b46-af55-ed3c736063e3"},{"name":"Audit Report Test BETA","id":"5469dac1-b739-40fc-8d25-fe4effa26867","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"type\": \"audit.user.services.Call Forwarding Always\"\n}"},"url":"{{url}}/api/v2/audits/report","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits","report"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5469dac1-b739-40fc-8d25-fe4effa26867"},{"name":"Audits","id":"34c972d9-8a20-47c1-a9db-b2455dbd91bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/audits?includeChildren=true&includeData=false","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"2"},{"disabled":true,"key":"offset","value":"1"},{"disabled":true,"key":"startTime","value":"2019-03-01 00:00:00"},{"disabled":true,"key":"endTime","value":"2019-03-10 00:00:00"},{"disabled":true,"key":"types","value":"user.login,user.login.failure"},{"key":"includeChildren","value":"true"},{"key":"includeData","value":"false"}],"variable":[]}},"response":[{"id":"66172a55-4290-4a58-b583-bb6e4d301ed4","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"34c972d9-8a20-47c1-a9db-b2455dbd91bc"},{"name":"Audits Detail","id":"ae3f3534-7373-4c24-83f7-165fed8b25ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/audits?includeChildren=true&includeData=false","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"2"},{"disabled":true,"key":"offset","value":"1"},{"disabled":true,"key":"startTime","value":"2019-03-01 00:00:00"},{"disabled":true,"key":"endTime","value":"2019-03-10 00:00:00"},{"disabled":true,"key":"types","value":"user.login,user.login.failure"},{"key":"includeChildren","value":"true"},{"key":"includeData","value":"false"}],"variable":[]}},"response":[{"id":"0ed841ed-b750-4382-b815-dcbc06ac2ce1","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"ae3f3534-7373-4c24-83f7-165fed8b25ca"},{"name":"Audit","id":"8af5ff04-ba72-4c3d-99d4-eefc84bbbec0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/audits?id=1&includeChildren=true&includeData=true","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[{"key":"id","value":"1"},{"key":"includeChildren","value":"true"},{"key":"includeData","value":"true"}],"variable":[]}},"response":[{"id":"1e5a0846-fcba-43da-ac46-68fd436ce9bd","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"8af5ff04-ba72-4c3d-99d4-eefc84bbbec0"},{"name":"Audit Types","id":"b31d3534-664d-475e-b1da-3a3d3cb0a4b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/audits?id=1&includeChildren=true&includeData=true","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[{"key":"id","value":"1"},{"key":"includeChildren","value":"true"},{"key":"includeData","value":"true"}],"variable":[]}},"response":[{"id":"a3a67ce7-c4ae-425c-9085-14eeb2f7a0cd","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"b31d3534-664d-475e-b1da-3a3d3cb0a4b6"},{"name":"Audit Templates","id":"eebebeeb-1b3a-4fde-ba94-8aea7a1637ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/audits/templates","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits","templates"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eebebeeb-1b3a-4fde-ba94-8aea7a1637ae"},{"name":"Audit Service Provider","id":"c450aa80-d976-46e9-b1be-a617fa20c9aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/audits?id=1&includeChildren=true&includeData=true","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","audits"],"host":["{{url}}"],"query":[{"key":"id","value":"1"},{"key":"includeChildren","value":"true"},{"key":"includeData","value":"true"}],"variable":[]}},"response":[{"id":"1f8a4526-d1e0-416a-bb1c-13524582d748","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"c450aa80-d976-46e9-b1be-a617fa20c9aa"}],"id":"c6dcfab1-0f65-49fe-bf79-5bb942204e05","_postman_id":"c6dcfab1-0f65-49fe-bf79-5bb942204e05","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Imports","item":[{"name":"Import","id":"95390c9e-4c4f-4a6a-9170-d89be473af9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"serviceProviderId\": \"ent.odin.audit\",\n    \"groupId\": \"grp.odin.audit\",\n    \"options\": {\n        \"userServicePack\": \"whaterver\",\n        \"featureAccessCode\": true,\n        \"callProcessingPolicy\": true,\n        \"networkClassOfService\": false,\n        \"extensionLength\": true,\n        \"services\": true,\n        \"policy\": true,\n        \"schedule\": true,\n        \"outgoingCallingPlan\": true,\n        \"routingProfile\": true,\n        \"password\": \"Thisbetterwork123!\",\n        \"groupMailServerPassword\": \"Thisbetterwork123!\",\n        \"passcode\": \"1234\",\n        \"isNewServiceProvider\": true\n    },\n    \"data\": [\n        {\n            \"id\": 1,\n            \"parentId\": null,\n            \"type\": \"audit\",\n            \"status\": \"complete\",\n            \"serviceName\": null,\n            \"serviceType\": null,\n            \"resellerId\": null,\n            \"serviceProviderId\": \"ent.odin.audit\",\n            \"groupId\": \"grp.odin.audit\",\n            \"userId\": null,\n            \"data\": null,\n            \"options\": {\n                \"audits\": {\n                    \"audit.system\": true,\n                    \"audit.serviceProvider\": true,\n                    \"audit.group\": true\n                }\n            },\n            \"error\": null,\n            \"sessionLoginType\": \"System\",\n            \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n            \"sessionResellerId\": null,\n            \"sessionServiceProviderId\": null,\n            \"sessionGroupId\": null,\n            \"sessionUserId\": \"pbsadmin\",\n            \"created_at\": \"2019-11-05 16:50:09\",\n            \"description\": \"audit.system,audit.serviceProvider,audit.group\",\n            \"children\": [\n                {\n                    \"id\": 2,\n                    \"parentId\": 1,\n                    \"type\": \"audit.system.settings.Device\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Device\",\n                    \"serviceType\": \"System\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": null,\n                    \"groupId\": null,\n                    \"userId\": null,\n                    \"data\": [\n                        {\n                            \"deviceName\": \"0004F23B47AC\",\n                            \"deviceType\": \"Polycom IP670\",\n                            \"availablePorts\": 33,\n                            \"netAddress\": null,\n                            \"status\": \"Online\",\n                            \"version\": \"PolycomSoundPointIP-SPIP_670-UA/4.0.7.2514\",\n                            \"macAddress\": null,\n                            \"tags\": [],\n                            \"relatedServices\": [],\n                            \"deviceLevel\": \"System\"\n                        },\n                        {\n                            \"deviceName\": \"0004F23B47AC2222\",\n                            \"deviceType\": \"Polycom-670\",\n                            \"availablePorts\": 34,\n                            \"netAddress\": null,\n                            \"status\": \"Online\",\n                            \"version\": \"PolycomSoundPointIP-SPIP_670-UA/4.0.7.2514\",\n                            \"macAddress\": \"0004F23B47AC\",\n                            \"tags\": [],\n                            \"relatedServices\": [],\n                            \"deviceLevel\": \"System\"\n                        },\n                        {\n                            \"deviceName\": \"0004F2AE4EFE\",\n                            \"deviceType\": \"Polycom VVX600\",\n                            \"availablePorts\": 32,\n                            \"netAddress\": null,\n                            \"status\": \"Online\",\n                            \"version\": \"PolycomVVX-VVX_600-UA/5.3.0.12074\",\n                            \"macAddress\": \"0004F2AE4EFE\",\n                            \"tags\": [],\n                            \"relatedServices\": [],\n                            \"deviceLevel\": \"System\"\n                        },\n                        {\n                            \"deviceName\": \"0004F2B3941D\",\n                            \"deviceType\": \"Polycom VVX500\",\n                            \"availablePorts\": 32,\n                            \"netAddress\": null,\n                            \"status\": \"Online\",\n                            \"version\": \"Cisco/SPA504G-7.4.9c\",\n                            \"macAddress\": \"0004F2B3941D\",\n                            \"tags\": [],\n                            \"relatedServices\": [],\n                            \"deviceLevel\": \"System\"\n                        },\n                        {\n                            \"deviceName\": \"1004F23B47AC\",\n                            \"deviceType\": \"Polycom IP670\",\n                            \"availablePorts\": 34,\n                            \"netAddress\": null,\n                            \"status\": \"Online\",\n                            \"version\": null,\n                            \"macAddress\": null,\n                            \"tags\": [],\n                            \"relatedServices\": [],\n                            \"deviceLevel\": \"System\"\n                        },\n                        {\n                            \"deviceName\": \"Lab VVX1500\",\n                            \"deviceType\": \"Polycom VVX1500\",\n                            \"availablePorts\": 6,\n                            \"netAddress\": null,\n                            \"status\": \"Online\",\n                            \"version\": \"eyeBeam release 3007n stamp 17816\",\n                            \"macAddress\": \"0004F24A0C48\",\n                            \"tags\": [],\n                            \"relatedServices\": [],\n                            \"deviceLevel\": \"System\"\n                        }\n                    ],\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:11\",\n                    \"description\": \"audit.system.settings.Device\"\n                },\n                {\n                    \"id\": 3,\n                    \"parentId\": 1,\n                    \"type\": \"audit.system.settings.Domain\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Domain\",\n                    \"serviceType\": \"System\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": null,\n                    \"groupId\": null,\n                    \"userId\": null,\n                    \"data\": {\n                        \"default\": \"alliedtelecom.net\",\n                        \"domains\": [\n                            \"abccorp.com\",\n                            \"alliedtelecom.net\",\n                            \"example.com\",\n                            \"false\",\n                            \"lab.alliedtelecom.net\",\n                            \"labconf.alliedtelecom.net\",\n                            \"lendlease.com\",\n                            \"parkbenchsolutions.com\",\n                            \"unit.test.com\",\n                            \"xyzcorp.com\"\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:11\",\n                    \"description\": \"audit.system.settings.Domain\"\n                },\n                {\n                    \"id\": 4,\n                    \"parentId\": 1,\n                    \"type\": \"audit.serviceProvider.settings.ServiceProvider Settings\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"ServiceProvider Settings\",\n                    \"serviceType\": \"Service Provider\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": null,\n                    \"userId\": null,\n                    \"data\": {\n                        \"isEnterprise\": true,\n                        \"defaultDomain\": \"parkbenchsolutions.com\",\n                        \"serviceProviderName\": \"ent.odin.audit\",\n                        \"useServiceProviderLanguages\": false,\n                        \"serviceProviderId\": \"ent.odin.audit\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:11\",\n                    \"description\": \"audit.serviceProvider.settings.ServiceProvider Settings\"\n                },\n                {\n                    \"id\": 5,\n                    \"parentId\": 1,\n                    \"type\": \"audit.serviceProvider.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"Service Provider\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": null,\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"3G/4G Continuity\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"3G/4G Continuity\"\n                            },\n                            {\n                                \"serviceName\": \"Advice Of Charge\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Anonymous Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Hold/Retrieve\"\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Barge-in Exempt\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Bria For BroadWorks\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Bria For BroadWorks\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Office\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Small Business\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Supervisor\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Supervisor\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Premium\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Premium\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Standard\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center Monitoring\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Center Monitoring\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always Secondary\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Busy\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding No Answer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Not Reachable\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Selective\"\n                            },\n                            {\n                                \"serviceName\": \"Call Me Now\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Me Now\"\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Notify\"\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Recording\"\n                            },\n                            {\n                                \"serviceName\": \"Call Return\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Return\"\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Blocking Override\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Delivery Blocking\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Retrieval\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Number Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control II\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control II\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 1\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 1\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 10\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 10\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 11\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 11\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 12\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 12\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 13\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 13\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 14\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 14\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 15\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 15\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 16\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 16\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 17\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 18\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 19\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch MobileLink\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 2\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 2\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 20\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 20\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 21\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 21\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 22\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 22\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 23\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 23\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 24\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 24\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 25\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 25\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 26\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 26\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 27\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 27\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 28\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 28\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 29\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 29\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 3\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Assistant - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 30\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 30\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 31\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 31\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 32\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 32\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 33\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 33\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 34\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 34\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 35\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 35\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 36\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 36\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 37\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 37\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 38\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 38\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 39\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 39\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 40\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 40\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 41\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 41\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 42\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 42\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 43\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 43\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 44\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 44\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 45\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 45\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 46\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 46\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 47\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 47\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 48\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 48\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 49\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 49\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 5\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 5\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 50\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 50\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 6\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 6\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 7\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 7\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 8\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 8\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 9\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client License 9\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Sharing\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Sharing\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Video\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express SR\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express SR\"\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Conference Room\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Conference Room\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Presentation\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Presentation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Restriction\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Customer Originated Trace\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Customer Originated Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Directory Number Hunting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": false,\n                                \"servicePackAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directory Number Hunting\"\n                            },\n                            {\n                                \"serviceName\": \"Diversion Inhibitor\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Diversion Inhibitor\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Do Not Disturb\"\n                            },\n                            {\n                                \"serviceName\": \"Dual-Mode VCC\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Dual-Mode VCC\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Call Logs\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Enhanced Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Executive\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Executive\"\n                            },\n                            {\n                                \"serviceName\": \"Executive-Assistant\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Executive-Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"External Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"External Custom Ringback\"\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Fax Messaging\"\n                            },\n                            {\n                                \"serviceName\": \"Flash Call Hold\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Flash Call Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Flexible Seating Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Group Night Forwarding\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Host\"\n                            },\n                            {\n                                \"serviceName\": \"IN Integration\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"IN Integration\"\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"In-Call Service Activation\"\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Integrated IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Intelligent Network Service Control\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Intelligent Network Service Control\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Intercept User\"\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Internal Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Last Number Redial\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Last Number Redial\"\n                            },\n                            {\n                                \"serviceName\": \"Legacy Automatic Callback\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Legacy Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Location-Based Calling Restrictions\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Location-Based Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"Lync CTI\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Lync CTI\"\n                            },\n                            {\n                                \"serviceName\": \"Lync Softphone\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Lync Softphone\"\n                            },\n                            {\n                                \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Malicious Call Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Mobile Extension to Extension Dialing\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Mobile Extension to Extension Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Mobility\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"Multiple Call Arrangement\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Multiple Call Arrangement\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Music On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"N-Way Call\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"N-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Number Portability Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Office Communicator Tab\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Office Communicator Tab\"\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Outlook Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Personal Assistant\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Personal Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Physical Location\"\n                            },\n                            {\n                                \"serviceName\": \"Polycom Phone Services\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Polycom Phone Services\"\n                            },\n                            {\n                                \"serviceName\": \"Pre-alerting Announcement\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Pre-alerting Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Preferred Carrier User\"\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Prepaid\"\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Priority Alert\"\n                            },\n                            {\n                                \"serviceName\": \"Privacy\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Remote Office\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Remote Office\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"SMDI Message Desk\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": false,\n                                \"servicePackAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"SMDI Message Desk\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Security Classification\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Acceptance\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Sequential Ring\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Service Scripts User\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 10\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 10\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 15\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 15\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 20\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 20\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 25\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 25\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 30\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 30\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 35\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 35\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 5\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance 5\"\n                            },\n                            {\n                                \"serviceName\": \"Short Message Service\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Short Message Service\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Silent Alerting\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Family\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Family\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Personal\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Terminating Alternate Trunk Identity\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party IMP\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party MWI Control\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party MWI Control\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party Voice Mail Support\"\n                            },\n                            {\n                                \"serviceName\": \"Three-Way Call\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Three-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Two-Stage Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Video Add-On\"\n                            },\n                            {\n                                \"serviceName\": \"Video On Hold User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Video On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Visual Device Management\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Visual Device Management\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Portal Calling\"\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": \"Unlimited\",\n                                \"userAssignable\": true,\n                                \"servicePackAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Zone Calling Restrictions\"\n                            }\n                        ],\n                        \"groupServices\": [\n                            {\n                                \"serviceName\": \"Account/Authorization Codes\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Account/Authorization Codes\"\n                            },\n                            {\n                                \"serviceName\": \"Auto Attendant\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Auto Attendant\"\n                            },\n                            {\n                                \"serviceName\": \"Auto Attendant - Standard\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Auto Attendant - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Auto Attendant - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Auto Attendant - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Call Capacity Management\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Call Capacity Management\"\n                            },\n                            {\n                                \"serviceName\": \"Call Park\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Call Park\"\n                            },\n                            {\n                                \"serviceName\": \"Call Pickup\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"City-Wide Centrex\",\n                                \"authorized\": false,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 0,\n                                \"licensed\": false,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"City-Wide Centrex\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback Group\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Custom Ringback Group\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback Group - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Custom Ringback Group - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Emergency Zones\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Emergency Zones\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Enhanced Outgoing Calling Plan\"\n                            },\n                            {\n                                \"serviceName\": \"Find-me/Follow-me\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Find-me/Follow-me\"\n                            },\n                            {\n                                \"serviceName\": \"Group Paging\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Group Paging\"\n                            },\n                            {\n                                \"serviceName\": \"Hunt Group\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Hunt Group\"\n                            },\n                            {\n                                \"serviceName\": \"Incoming Calling Plan\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Incoming Calling Plan\"\n                            },\n                            {\n                                \"serviceName\": \"Instant Group Call\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Instant Group Call\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept Group\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Intercept Group\"\n                            },\n                            {\n                                \"serviceName\": \"Inventory Report\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Inventory Report\"\n                            },\n                            {\n                                \"serviceName\": \"LDAP Integration\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"LDAP Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Meet-Me Conferencing\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Meet-Me Conferencing\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Music On Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Music On Hold - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Outgoing Calling Plan\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Outgoing Calling Plan\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier Group\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Preferred Carrier Group\"\n                            },\n                            {\n                                \"serviceName\": \"Route Point\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Route Point\"\n                            },\n                            {\n                                \"serviceName\": \"Series Completion\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Series Completion\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts Group\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Service Scripts Group\"\n                            },\n                            {\n                                \"serviceName\": \"Trunk Group\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 5,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Trunk Group\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging Group\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": 1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"Voice Messaging Group\"\n                            },\n                            {\n                                \"serviceName\": \"VoiceXML\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"allocated\": -1,\n                                \"licensed\": true,\n                                \"servicePackAllocation\": 0,\n                                \"alias\": \"VoiceXML\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:11\",\n                    \"description\": \"audit.serviceProvider.settings.Services\"\n                },\n                {\n                    \"id\": 6,\n                    \"parentId\": 1,\n                    \"type\": \"audit.serviceProvider.settings.ServiceProvider Admins\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"ServiceProvider Admins\",\n                    \"serviceType\": \"Service Provider\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": null,\n                    \"userId\": null,\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:11\",\n                    \"description\": \"audit.serviceProvider.settings.ServiceProvider Admins\"\n                },\n                {\n                    \"id\": 7,\n                    \"parentId\": 1,\n                    \"type\": \"audit.serviceProvider.settings.ServiceProvider DNs\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"ServiceProvider DNs\",\n                    \"serviceType\": \"Service Provider\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": null,\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"dns\": [\n                            {\n                                \"canDelete\": false,\n                                \"groupId\": \"grp.odin.audit\",\n                                \"min\": \"+1-8594005001\",\n                                \"max\": \"+1-8594005005\"\n                            },\n                            {\n                                \"canDelete\": false,\n                                \"groupId\": \"grp.odin.audit\",\n                                \"min\": \"+1-8594004001\",\n                                \"max\": \"+1-8594004005\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:11\",\n                    \"description\": \"audit.serviceProvider.settings.ServiceProvider DNs\"\n                },\n                {\n                    \"id\": 8,\n                    \"parentId\": 1,\n                    \"type\": \"audit.serviceProvider.settings.ServiceProvider Domains\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"ServiceProvider Domains\",\n                    \"serviceType\": \"Service Provider\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": null,\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"default\": \"parkbenchsolutions.com\",\n                        \"domains\": [\n                            \"parkbenchsolutions.com\"\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:11\",\n                    \"description\": \"audit.serviceProvider.settings.ServiceProvider Domains\"\n                },\n                {\n                    \"id\": 9,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Group\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"defaultDomain\": \"parkbenchsolutions.com\",\n                        \"userLimit\": 25,\n                        \"userCount\": 8,\n                        \"groupName\": \"grp.odin.audit\",\n                        \"callingLineIdName\": \"parkbench solutions\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"contact\": {\n                            \"contactName\": \"Mark Reverman 2\",\n                            \"contactNumber\": \"513-123-1234\",\n                            \"contactEmail\": \"mreverman@parkbenchsolutions.com\"\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Group\"\n                },\n                {\n                    \"id\": 10,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"userServices\": [\n                            {\n                                \"serviceName\": \"Anonymous Call Rejection\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Anonymous Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Authentication\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Authentication\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Busy\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Busy\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding No Answer\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding No Answer\"\n                            },\n                            {\n                                \"serviceName\": \"Call Notify\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Notify\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Delivery Blocking\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Express\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Express\"\n                            },\n                            {\n                                \"serviceName\": \"CommPilot Call Manager\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"CommPilot Call Manager\"\n                            },\n                            {\n                                \"serviceName\": \"Do Not Disturb\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Do Not Disturb\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Intercept User\"\n                            },\n                            {\n                                \"serviceName\": \"Last Number Redial\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Last Number Redial\"\n                            },\n                            {\n                                \"serviceName\": \"Outlook Integration\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Outlook Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Priority Alert\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Priority Alert\"\n                            },\n                            {\n                                \"serviceName\": \"Call Return\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Return\"\n                            },\n                            {\n                                \"serviceName\": \"Remote Office\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Remote Office\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Acceptance\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Acceptance\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Selective\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Selective\"\n                            },\n                            {\n                                \"serviceName\": \"Selective Call Rejection\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Selective Call Rejection\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Service Scripts User\"\n                            },\n                            {\n                                \"serviceName\": \"Simultaneous Ring Personal\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Simultaneous Ring Personal\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User\"\n                            },\n                            {\n                                \"serviceName\": \"Alternate Numbers\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Alternate Numbers\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 8\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 8\"\n                            },\n                            {\n                                \"serviceName\": \"Customer Originated Trace\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Customer Originated Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Attendant Console\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Attendant Console\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party MWI Control\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party MWI Control\"\n                            },\n                            {\n                                \"serviceName\": \"Client Call Control\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Client Call Control\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 5\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Shared Call Appearance 5\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 10\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 10\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 15\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 15\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 20\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 20\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 25\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 25\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 30\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 30\"\n                            },\n                            {\n                                \"serviceName\": \"Shared Call Appearance 35\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Shared Call Appearance 35\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Retrieval\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Retrieval\"\n                            },\n                            {\n                                \"serviceName\": \"Flash Call Hold\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flash Call Hold\"\n                            },\n                            {\n                                \"serviceName\": \"Speed Dial 100\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Speed Dial 100\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Third-Party Voice Mail Support\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Third-Party Voice Mail Support\"\n                            },\n                            {\n                                \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Directed Call Pickup with Barge-in\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Portal Calling\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Voice Portal Calling\"\n                            },\n                            {\n                                \"serviceName\": \"External Calling Line ID Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"External Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Internal Calling Line ID Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Callback\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Callback\"\n                            },\n                            {\n                                \"serviceName\": \"Call Waiting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Line ID Blocking Override\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Line ID Blocking Override\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Party Category\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Calling Party Category\"\n                            },\n                            {\n                                \"serviceName\": \"Barge-in Exempt\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Barge-in Exempt\"\n                            },\n                            {\n                                \"serviceName\": \"SMDI Message Desk\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": false,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"SMDI Message Desk\"\n                            },\n                            {\n                                \"serviceName\": \"Video Add-On\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video Add-On\"\n                            },\n                            {\n                                \"serviceName\": \"Malicious Call Trace\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Malicious Call Trace\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Preferred Carrier User\"\n                            },\n                            {\n                                \"serviceName\": \"Push to Talk\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Push to Talk\"\n                            },\n                            {\n                                \"serviceName\": \"Basic Call Logs\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Basic Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Call Logs\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Enhanced Call Logs\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Host\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Host\"\n                            },\n                            {\n                                \"serviceName\": \"Hoteling Guest\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Hoteling Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging User - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Voice Messaging User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Diversion Inhibitor\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Diversion Inhibitor\"\n                            },\n                            {\n                                \"serviceName\": \"Multiple Call Arrangement\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Multiple Call Arrangement\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Automatic Hold/Retrieve\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Automatic Hold/Retrieve\"\n                            },\n                            {\n                                \"serviceName\": \"Busy Lamp Field\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Busy Lamp Field\"\n                            },\n                            {\n                                \"serviceName\": \"Three-Way Call\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Three-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Call Transfer\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Transfer\"\n                            },\n                            {\n                                \"serviceName\": \"Privacy\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Privacy\"\n                            },\n                            {\n                                \"serviceName\": \"Fax Messaging\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Fax Messaging\"\n                            },\n                            {\n                                \"serviceName\": \"Physical Location\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Physical Location\"\n                            },\n                            {\n                                \"serviceName\": \"Charge Number\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Charge Number\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Supervisor\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Supervisor\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Agent\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Agent\"\n                            },\n                            {\n                                \"serviceName\": \"N-Way Call\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"N-Way Call\"\n                            },\n                            {\n                                \"serviceName\": \"Directory Number Hunting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": false,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Directory Number Hunting\"\n                            },\n                            {\n                                \"serviceName\": \"Two-Stage Dialing\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Two-Stage Dialing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Not Reachable\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Not Reachable\"\n                            },\n                            {\n                                \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Small Business\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Office\"\n                            },\n                            {\n                                \"serviceName\": \"External Custom Ringback\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"External Custom Ringback\"\n                            },\n                            {\n                                \"serviceName\": \"In-Call Service Activation\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"In-Call Service Activation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Presentation\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Presentation\"\n                            },\n                            {\n                                \"serviceName\": \"Connected Line Identification Restriction\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Connected Line Identification Restriction\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Anywhere\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Anywhere\"\n                            },\n                            {\n                                \"serviceName\": \"Zone Calling Restrictions\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Zone Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"Polycom Phone Services\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Polycom Phone Services\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Custom Ringback User - Call Waiting\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Music On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Video On Hold User\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Video On Hold User\"\n                            },\n                            {\n                                \"serviceName\": \"Advice Of Charge\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Advice Of Charge\"\n                            },\n                            {\n                                \"serviceName\": \"Prepaid\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Prepaid\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Basic\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Basic\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Standard\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center - Premium\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center - Premium\"\n                            },\n                            {\n                                \"serviceName\": \"Communication Barring User-Control\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Communication Barring User-Control\"\n                            },\n                            {\n                                \"serviceName\": \"Classmark\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Classmark\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Name Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Name Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Calling Number Delivery\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Calling Number Delivery\"\n                            },\n                            {\n                                \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                            },\n                            {\n                                \"serviceName\": \"Office Communicator Tab\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Office Communicator Tab\"\n                            },\n                            {\n                                \"serviceName\": \"Pre-alerting Announcement\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Pre-alerting Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Call Center Monitoring\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Call Center Monitoring\"\n                            },\n                            {\n                                \"serviceName\": \"Location-Based Calling Restrictions\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Location-Based Calling Restrictions\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Mobility\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Mobility\"\n                            },\n                            {\n                                \"serviceName\": \"Call Me Now\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Me Now\"\n                            },\n                            {\n                                \"serviceName\": \"Call Recording\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Recording\"\n                            },\n                            {\n                                \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                            },\n                            {\n                                \"serviceName\": \"Integrated IMP\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"Integrated IMP\"\n                            },\n                            {\n                                \"serviceName\": \"Group Night Forwarding\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Group Night Forwarding\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Executive\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive\"\n                            },\n                            {\n                                \"serviceName\": \"Executive-Assistant\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Executive-Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 3\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Assistant - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 4\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 15\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 15\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 16\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Client License 16\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 17\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 18\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [\n                                    \"UC-One\"\n                                ],\n                                \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Client License 19\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"BroadTouch MobileLink\"\n                            },\n                            {\n                                \"serviceName\": \"Security Classification\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Security Classification\"\n                            },\n                            {\n                                \"serviceName\": \"Flexible Seating Guest\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Flexible Seating Guest\"\n                            },\n                            {\n                                \"serviceName\": \"Personal Assistant\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Personal Assistant\"\n                            },\n                            {\n                                \"serviceName\": \"Route List\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Route List\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Audio\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Audio\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Video\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Collaborate - Sharing\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Collaborate - Sharing\"\n                            },\n                            {\n                                \"serviceName\": \"Call Forwarding Always Secondary\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": true,\n                                \"tags\": [],\n                                \"alias\": \"Call Forwarding Always Secondary\"\n                            },\n                            {\n                                \"serviceName\": \"Silent Alerting\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Silent Alerting\"\n                            },\n                            {\n                                \"serviceName\": \"Conference Room\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Conference Room\"\n                            },\n                            {\n                                \"serviceName\": \"Sequential Ring\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Sequential Ring\"\n                            },\n                            {\n                                \"serviceName\": \"Number Portability Announcement\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Number Portability Announcement\"\n                            },\n                            {\n                                \"serviceName\": \"Direct Route\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Direct Route\"\n                            },\n                            {\n                                \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"userAssignable\": true,\n                                \"groupServiceAssignable\": false,\n                                \"tags\": [],\n                                \"alias\": \"Terminating Alternate Trunk Identity\"\n                            }\n                        ],\n                        \"groupServices\": [\n                            {\n                                \"serviceName\": \"Account/Authorization Codes\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Account/Authorization Codes\"\n                            },\n                            {\n                                \"serviceName\": \"Auto Attendant\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Auto Attendant\"\n                            },\n                            {\n                                \"serviceName\": \"Call Capacity Management\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Call Capacity Management\"\n                            },\n                            {\n                                \"serviceName\": \"Call Park\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 1,\n                                \"alias\": \"Call Park\"\n                            },\n                            {\n                                \"serviceName\": \"Call Pickup\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 1,\n                                \"alias\": \"Call Pickup\"\n                            },\n                            {\n                                \"serviceName\": \"Hunt Group\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Hunt Group\"\n                            },\n                            {\n                                \"serviceName\": \"Incoming Calling Plan\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Incoming Calling Plan\"\n                            },\n                            {\n                                \"serviceName\": \"Intercept Group\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Intercept Group\"\n                            },\n                            {\n                                \"serviceName\": \"Outgoing Calling Plan\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Outgoing Calling Plan\"\n                            },\n                            {\n                                \"serviceName\": \"Series Completion\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Series Completion\"\n                            },\n                            {\n                                \"serviceName\": \"Voice Messaging Group\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Voice Messaging Group\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Music On Hold\"\n                            },\n                            {\n                                \"serviceName\": \"LDAP Integration\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"LDAP Integration\"\n                            },\n                            {\n                                \"serviceName\": \"Inventory Report\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Inventory Report\"\n                            },\n                            {\n                                \"serviceName\": \"Enhanced Outgoing Calling Plan\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Enhanced Outgoing Calling Plan\"\n                            },\n                            {\n                                \"serviceName\": \"Emergency Zones\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Emergency Zones\"\n                            },\n                            {\n                                \"serviceName\": \"Preferred Carrier Group\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Preferred Carrier Group\"\n                            },\n                            {\n                                \"serviceName\": \"Auto Attendant - Video\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Auto Attendant - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Music On Hold - Video\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Music On Hold - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Instant Group Call\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Instant Group Call\"\n                            },\n                            {\n                                \"serviceName\": \"Trunk Group\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Limited\",\n                                \"quantity\": 5,\n                                \"usage\": 1,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 1,\n                                \"alias\": \"Trunk Group\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback Group\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Custom Ringback Group\"\n                            },\n                            {\n                                \"serviceName\": \"Custom Ringback Group - Video\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Custom Ringback Group - Video\"\n                            },\n                            {\n                                \"serviceName\": \"Service Scripts Group\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"none\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": null,\n                                \"alias\": \"Service Scripts Group\"\n                            },\n                            {\n                                \"serviceName\": \"Route Point\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Route Point\"\n                            },\n                            {\n                                \"serviceName\": \"Group Paging\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Group Paging\"\n                            },\n                            {\n                                \"serviceName\": \"Meet-Me Conferencing\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Meet-Me Conferencing\"\n                            },\n                            {\n                                \"serviceName\": \"Find-me/Follow-me\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Find-me/Follow-me\"\n                            },\n                            {\n                                \"serviceName\": \"Auto Attendant - Standard\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"Auto Attendant - Standard\"\n                            },\n                            {\n                                \"serviceName\": \"VoiceXML\",\n                                \"authorized\": true,\n                                \"assigned\": true,\n                                \"limited\": \"Unlimited\",\n                                \"quantity\": -1,\n                                \"usage\": 0,\n                                \"licensed\": true,\n                                \"allowed\": -1,\n                                \"instanceCount\": 0,\n                                \"alias\": \"VoiceXML\"\n                            }\n                        ],\n                        \"servicePackServices\": [\n                            {\n                                \"servicePackName\": \"Basic\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"allowed\": -1,\n                                \"usage\": 0,\n                                \"description\": \"Basic\",\n                                \"serviceName\": \"Basic\",\n                                \"quantity\": -1,\n                                \"alias\": \"Basic\"\n                            },\n                            {\n                                \"servicePackName\": \"Premium\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"allowed\": -1,\n                                \"usage\": 0,\n                                \"description\": \"Premium\",\n                                \"serviceName\": \"Premium\",\n                                \"quantity\": -1,\n                                \"alias\": \"Premium\"\n                            },\n                            {\n                                \"servicePackName\": \"Standard\",\n                                \"authorized\": true,\n                                \"assigned\": false,\n                                \"limited\": \"Unlimited\",\n                                \"allowed\": -1,\n                                \"usage\": 5,\n                                \"description\": \"Standard\",\n                                \"serviceName\": \"Standard\",\n                                \"quantity\": -1,\n                                \"alias\": \"Standard\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Services\"\n                },\n                {\n                    \"id\": 11,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"totalFileSize\": 352,\n                        \"maxFileSize\": 1000,\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"announcementType\": \"Audio\",\n                        \"announcements\": [\n                            {\n                                \"description\": \"letsgo\",\n                                \"lastUploaded\": \"2019-11-05T11:08:25.519-05:00\",\n                                \"usage\": [],\n                                \"fileSize\": 88,\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"letsgo\",\n                                \"mediaType\": \"WAV\",\n                                \"content\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n                            },\n                            {\n                                \"description\": \"test\",\n                                \"lastUploaded\": \"2019-11-05T11:08:26.413-05:00\",\n                                \"usage\": [],\n                                \"fileSize\": 88,\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"test\",\n                                \"mediaType\": \"WAV\",\n                                \"content\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n                            },\n                            {\n                                \"description\": \"letsgo2\",\n                                \"lastUploaded\": \"2019-11-05T11:08:27.429-05:00\",\n                                \"usage\": [],\n                                \"fileSize\": 88,\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"letsgo2\",\n                                \"mediaType\": \"WAV\",\n                                \"content\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkYXRh1FABAKsGEwMX/bT77P47ANL9LPw1/Vv83/fY9Sb6XP4r+6/0jPQ7+lL8hvjZ9iz7Vf5Z+334AfwjACT9fPch+az/EQB8+Xv33v2bAUX7RfRm91z/6P8v+mv5jv8KA+//YP2+/z0BSP68/DgBaAXEAuP9yf7fAp8Cev/ZAIkFtQQt/hT89AHoBeUAsfow/QgFQQhXBhsGbwjyB8wEGQWBCbQLgglZCE0KLwoUBpMEdwmoDcMK5gUNB/QKMwmNAxwDlgfJB98BZv9iBJYHWgKu/Or/DgctB3IBz//FA3oFgwJwAeADhgNS/kj8NAEbBRsBt/uQ/QsDxAJL/nv+AAOzAjb8CfmK/a0Bs/9//boAygPP/xv6SPtEAJz/Y/qr+m4BwgT9AOT+gAOZBh0Bwvkf+ov+JP6r+jb9RQReBbL+xfrs/iUDBwF3/p8B/gQJAR37Kv2oBFEG1gD8/nsETgjjA8H+XwGvB+8I0AUoBc0GGgWCAIb/vQJ0A7b/3P0VAVEDs/92+xr9nQH8AQv/8/6FAbwAOPy++gT/zwIeAcj9C/5EAAQAMv5n/sD/pv7Y+yf7+vs9+kb2uvUE+pj94Pto+Ar45/k7+oT52vp+/RL+k/wz/Bb9/vvD+M/3Jvvk/o/+oPv3+c/6qvyP/rX/W/42+u/2jfe4+Vf5T/cY+B38bf4M/U77BvzD/LL7zvu7/2MDzAEd/cf7UP66/mD7D/kK+wj9jPv8+cf83ACTAHf9+P1TAu8DOQBx/VYAfASDAyz/Xf4uAjsFkQQbA1YD7wLh/5D8fPyU/vL/BwCiAHcB4ACG/8P/cwGaAUb/nP3v/joBQgFT/3n+KP+Z/7T+If4H/yQAEQAL/wb+wfx5+g74OffH+Mz7sv4pAF3/kvyf+Wb4ifkJ/OH+HwHjAdwAfP81/1//Cv5y+536zvwy/+L+Vv30/T4AOwDr/Ar6rvq6/Dn9Ef2p/gYBLgG6/zUA2QJ8A58AbP61AN8EyAWcA2ECKwOLAl7/2vzJ/eP/WQDM/84AwQJXA7QCDAOqBCQFowOtAdQAcQA6AN0ABALlAZwAPAESBUoIoAavAUX/JAEpA6IBg/6j/f3+kv8w/t/8Mf1k/uj+A//d/6oBXwOTAwcCgv8C/Rn77/nH+b76gfvB+tD4avjL+uD92v46/nz+GgBwAHn+5PuZ+jX6jfrw/F8BjATdA0wBEwBI/9f7Ove59qT74wAxAuUBAgPmAy4BQf0p/doAKQMHAhkBbwIOA64Ajf4qANQC4gFS/kr9mf/bAM7+6vy0/Z/+h/xk+Rr5ePsh/Zr9nf9ZAwcFIgLK/c78KP8PAJf8i/iQ+rkDSQxsC/ABLfql+6UBOwI5/FT4KfylAlwEIAJIAVACZgHs/nv/DAOnA4L/Pv2YAcYG4wRb/rL8ogG3BUQE9wFgAxIFtQJX/xEA3QKtAe39fv4CBDMGMwGn/HkAfAhVCn4EEP8X/x4AB/2y97T1o/jQ/RgCHQPB/zz62vfJ+oH/IAJzBAkJ9wsyByf9QfeL+J/5AfVW8DfzBPs1APsB5wRJB9QCsPm59i39ggJz/nX47voUAvQB5vq8+Cb/5wNwAGP8NP88A0gAtfrj+xUB1/8M+Hb0XPjG+v734vihAlQL9gjAATEAbgDA+MTvO/a3CpwWqQ4+AxUGjg6fCSv6qvMO+64AYf3G/WwKvhX7EFoEuQHdBzMG0fkt81770AU1BPv6HPe6+b/60vh7+o0AxgQxBccGPQoRCesAdfkY+VX7evm19g37WgVnC/IH/ABc/m0AWgLUAXb/+/tW9/PzL/V7/H8FfQl8BYv+3PyCAeAEdwGO/AL+vQPmBOAA/f/iA0YDf/rn9IH7qQRnAhz6lvySCV8OtwOB+e78/gQWBGr/0gLgCdwHz/6H+xP9XveH7Cnt2voNAhP7gfeuAfsF+/Tx5R/4kR1TKhEWpAdZFfshuA2K6nzfKO6A+Jj1+fkYDEwWJg1BBAYMEhX8ChD4XPW4AwENXwc0/1D/hAMDBgwI4QhFBGL+VwIhD1kUNgpG/gr+kAJi/iz1XfQr/G8A5/1H/XIBFAKi+4711PTX9JTz5/gtCNwVPBVUCSn/Z/u7+P/y3eti5vXlCO+k/6cL3wiL/ab4sf1LAlH/Mvk29oj3b/3UBlELkAFM8AXq2PJo+SjzdO5V+rULqA5HBs4D4AXA/ArssOiW8sfwpuBy5dwQNTubNeYPYQFdFR8eYv+j2djV5Oum+Rf54/zkB2QLWQjBDkwcABreA//1uQNUGSsYqADa7E3rg/MB+V35dfeI9wP+ZQm3DlcHmv0o/5cGawL98TPpv/IvAG//qfMY7dXynP+3C4gQ7AjP+VXy0PnrArX+F/O48FP4xPxK/EoBBwoVB634b/WABj8UxggK9CTzIgNJBxn4Zus87rjzaPJB9cACQQt3BMT+7AndFZQL4PWY8UP8wPcM4eTbDvrAGnkavgcsBwAYYRnKAovvIfCS9E7x/PVZDG8cag4J9QT19QywF2UGgPVh/gQSTRS6BcD63vhm9TrvavC699D4jvU6/w4XpCOHFf7/H/uM/M/qxs7sztb1axzjHh4M4ghRFgYWp/2A5ZzeT90V2T3kOwpZLk8sBBD/Bgob+CAC/IDP8ND8/IIdrBPv+JHx9fw+A9b75vG/7lj0IwUPHkQsFB2N+dLf2dxl3z7ZetnS9AAg2jjPMUgfohYJEyoFqu7n3oTd7OWh9F0IjReDFFICifZE/kgMfw7TClkUAyj2KagMRuhr3M3nUfBl6xzq+vgODKUS3hC+EzgX1QrV7+zev+puCM4deR+AFyYTHRMbDaf5gN6+zNbQPOV1+E8C/wmCFfIdxhuRFOIPBAhC9jTnTuyV+onzGddbzzr2SSiHMPMRv/8WEBcgdA+48EvlX+hj4DnTIuAPCZAolSaRFsQTvRmDFcsHp/2K9pPpFd8N56r7LAWI/yYBTxSyIjQXw//k+MYDBgme/lf0t/jsBdwO8w5EB075S+0g8PQB/RBmD4sEfv0r+E3tsOYL9foRyCHJGZAOVBIcF28G/OeH2RjkOvJi9B/3FgmVHSgdHgro/UYDVwdt+O3it+Al9KoEVwCC8p/x3QCKDi8NbgJw+gj2g+0e4J7X99sp6zX/DBWvKIowKSbCELb/iPhI8sXk69Wc0mTfuPR6B7kPdwvaAYwAiA3uGiEUlvg44WziqvJv+DXtteT577gFRBA/Cdv+Y/7PBRcKywXx+f3p59pH1rXiJ/luCDgJmQgfFqUqmCxWEGXqPtho36TtpvXG+3MF1QsBCEgBpAGiBHL+C/IS8Cf+xQ2YEE4KagZPBsMDIv1/9UPtYean6XL7zQwqCBbwzOH/8l4WviusIvUFJu3u6jgB2BogGfD1LNQG2zwDuBysDIXw8vOUFSArOhv3+kzuk/zdDVIKS/IU3EvezvmGFeYWSv8l65zvqwHoBtL2POIc3ZXsAQgfIV4qTiDzD+QJbwxhBA3qstGg1NXwjwwQF0sXpRl4HEYXvwpVAP38HP2Y/Kv7Tvtd+n74Efig+x0CYAg/DE0ODhBpEUUP3QVA9fXiMtd32UXt8g0AK5Ux8h9YCzYIcw6QAnPeA8Kiz8b/ciigLnsgBBplHyseRwyG9snujvbD/7P+0/Us8KTzXfqs+4L4h/pnBYkQsxLBDZoGwvkK5cXXRuZ/CJMa+QoO9gr+sBQKDMjcy7pQ0tYLUyvzHB4EMwLpDa0M5/oK6lflpurB9ZsCkQjwArX63fqe/c71qenw79oLTiBrFPD18+Rz517nJdqa0fbenvcdBiEIfA1yHNkoYiVZFNgBkfYJ8lju4ebp3tjgCvHZA+4ItgHaAagTeibwIkUKYvXR9MX+GADf9YTul/XVBeMOGAcL9i/uKPgmCJkLwADi9uj2I/im8830EQeUHP0bQwgGAkAZSjG+JuIB+evW9loJ+Qep+bX2xgOmEF8SKA1WBv/9nfc7+lgD4gUI/sD59wRDFEMR1vm85L/lFfV8+wDw9+C+3vfkH+Jm1BzT1fH8Hys26yYuEewUiyWGHDfzGs5oyR/W4dnM2Qfs8Qt8HKMUHwtlD0cSxwQ99Wn40ASRACDrdN515ozxsO9e6iTxTQDDCeMJUQWY+33ss+H64+nryu3d7h773Aq5CC71sejI7OTsLd4D2+r7FSikMRoYwQe4EzAZBPum1RDXVPmMDCP93+oa86IIuA78A2b7Gv2JAucI9A9NDjH72OMo4JzvNPZi5RTVU+S5DVktmSweGB0J4wi7DLEFIPCv2qbdswAlKU8wmhHP80H5PxOEF037feEY6jsJ1RvUFXYJIAdMCosIVAMgAzYKVhQIHNAaFwvM8d7foeB06mTt++xu/JEe0TljNmscPAYy/4j/0gQiFgctQzFfGlIDWQj6G0sZ2f2N8hkP5TFOLDIGb/ITBq4bKgzo5BbQwdni58LlRNqR0gzPOc2k0PXVy9ClwKe4eMHuxju4narlu8fcfeEPyi3Mov8RLQYZzt9G0B/23gm+4VG1m8pbDLYpYAlZ49rnGQJSBxL4+PQOCp8lQDY6OQgwrh/FFSsbpyOEHQ4OQQsHGesjEyFjHQ0lDTI2PlNRwGo3c3Zb8jwHPK1QO01GISD1DvS3E/8p/ScKJfsxpkCvPDsqxRytHLMhuCPZIi8fbxQKA0n2/fdQAVoCAfp++YsIxhSVC0/6FPvqBR721cjusL3RGgQTCpHppd0c883zWMfOpz3J5v5Y+9/LB8Za/YAe7u4mqQKmtdzr+dbdhb3pyBbrL/dh5mfSnc7G3uX8/xT+DV7qi85j06/jdNziwGSzssPt3YnqEehj5C7sMAE+FPYPU/jd8oAU8jb0I/HnD8hh3rX0At3Gu3XL6fs2DHLydOfXCXoxZzORHIcOUgsmBWsAuALH/PznJeHI/uohAx4PAGz7uhbTIuQHceZD3SDiCOooBAku4z7kKGUgRkt7cddHju/s1B8Plj0mH2jy6weRPZs4Yfn12Bj/FjB7MyAhrSZNOi80ahHo7uHYBcePvT/KveW69kf28PUaAGwH4fqz26W8E7VQz273ugf49wvwxQ9FM5YcNNTCqF/AluLD1Be3rsyHCOUbce/LxYjUA/urAabvpvK8EAsmZiDiD4b/VenU1B/aIPpzE3wQzQV7DogezBQ87zLSRNkc9Fz+9PBL7j0XLFlqeZxZEyJZDxwiGSS3/5jlqwKVN5VElyUnEIse7zJGNdM4Nk6eXulTmUJ5RAtHWiq2/TjuAAGvD1MJ5wf0GsQqnSLGEKwGP/wf6wHjpucY3/DFUs6WFiNgO1RjBIrY0/YcEOzi2qVPsLr0uBunCMnwV/geBOH6OfBa9dn2telq6ksIvhs//cvHgbNBxC3RK87/1pfzegZbAcT5A/wP9Vjb7MQFvii1GatvxxMTpEniK6HjPs/r9loF89H/oNy1V+y6+O7bPtJq6h33GOQU1tvn6v8zAIzzxu/S7JzaKMR8vjjGncul0UTjl/Yg+Rrw6u448/7pztSNyZnMOc2MzHzhBArMHt4MUPhaBhMh2Rlz8/rcc+kD+oL1EOtl8KT/QwruEJMWbBP0CF8LyB+sKeASPPKo6hD1VvDy2vLS+eBn7iXzSQGeF/kXuv0t8AoBBAcz44XCE90xFKYZCe4L5KAZkkHBG2PatNBy88j4jNanytrrgwdz/i/2MQ2iIC4PofzkF8VCATyQCQnyNwyEH0UCuNg71ZrvfAICCsIXBCYqJLwbTx31GcT+7eaE+x8noyk3ALD0SCk3WKs6aPg66wgVGibkASrnnALFKOMkCA04EHwi3BpYBtcSDTaDM3IDh+l8C/YxeR2W537V9u1n/HXtZ+YI/KkPvgai887tC+z75MvslwwiHusAktt07Sop+zwqClXUvdzVBdcJoebO1TLtnASd/2/2tgMqFsUTHAhDDSEcSRlVBcv7OgVzCof78uUw3PPdIuQn8LsBlw4IEbsRexbPF5YTsBglKg0rtwRl1UPSq/oBEzn62Nrh6YYULB2v+UTiO/tmId8kYxIqGvY/NlLbM9kGp/ndB1gKe/dP7v7/3g///cLZus2s4r/2NfVt9LELBSaPH78B3PozGDouAhcz6U/WWef++/H/Nf+nA2sCbvTd5gXkPONU3iLi3/WfBr4CIfmN/wYJ5vhY2fDTBvBSAyT1FOXW8ZL/WuSytE+tyNcw/mb/UvkFCW0VdACI5IftDAwdCg3k/NDT6dwB/PGa2CrlEglIESn6V/HOB9MZgw/SAh8MyhXHBTPxVPnxDOcAyNxu1h/7sxXhAX/lvu+mCjQCo9+W3MACvhoJB8jwdfsaB6nuQ9XW8LYlwCPt5VvAGN2n+czXP6psxowWTDRGBXndTvYCGtwGqNw84/kRNyIeBeH0SAu+FZ3u+cFcymv3vAxQ/zT6sBBYIn8Ujvq9887/DgmeAy/z6ePy5wgJPDGYOOEYjfos+wACLu3b0a7hshm5PsAxxxeNGN4h1w6r65vjPvwZEcQQsBEjHwgflv+q35HnCw3BIM4Qm/yQA5Ea2iC+DFT02/CBA0gWVhIo+R/nuPXxGl0wEyAf/tbt1PcrBxUIZPsh7u/trwJvJGM34SP9+K/iO/QqDyAPpPvB9Ej9dPvN63HqUP/7CLPzkuLN+4AmaS0JFA4QHyt2LbD8dNE43278v+bPuR/Meh1BR2wVKtYu3oUKJgg94ZPiABHTIm8FCgCqMbJNlhYIy2zJ9v4bEKXtEtxm8lr5wNvI0dL2Aw4x6zfKPPAyM5s58wlJ9ocM7gY/0VOxd8o53ay806jM5LY2TzYE73bKqOkkAj3pDdWR7lwFb+0V2DT/KTV3JBbdzL/d6LQOuwF/7bP6+QMj4pvAmdshFiQhQvkv6zEYaETXNxIQwwWKEyYMZu6e5Rr9Ogo98mraw/MMMPlP1za6DoYM6SkkNLgWAvUp8ev5Bu5N2+LtdyN1QC4lTwFIDQo09zRkCRLrUvc6CPj9PPPrBKUWagJe4XHoow6vF6v2WOO6/Q4aGgru5O7ZQuWG5yrqyAxIPEw/XBGv8Gf/exEm+w/ZBtrQ6u/ZMbYPwUYBySz1FV/x8gJuNr1C2Bnh9kEA9RejF50KzQwaFJYCvN0YzFjdGvcU/5/9lQe6GTgdmwiZ7M7h4/LCFgQ4m0OoN/8jrxbaDET9o+zx6PDwwfEX5PbcCPFhE/YiTBgODiAZqyu2Lr4lOiVFLh8teRveC5cKjwgb9a/citkm7bT+c/94++cBwQ3WDwkE9fJp6MPv1w3rMz5DKC0wCLb0dvNN677VVsvy24zyOPIK3tzQN9ai4nPtL/ywET8kQit1KAAfow5o/br2yflA9sjmWtz34qzp/9yiy+DUrfWZCUwCbvtqCNAPAvif3F3tTiHHOgYdUfLs6PfyD+l10OrOKuh69rHpgd4A6LDtkdy31UX/dD0rTkYmvADqBO8Rwfxr1wzQDOVu7mPjQeMx9gz8fuhC4Dj9wR8IIbYRtxXFHUkAec5Ey9oCvSwVFQ3oq+aPAFf69tfP1Wr+Lxb3/4XryP3RDeTu28qz6BU2WlcdLED3yPNDBmX8meFM3yTyDveN7hr3tAwDCc/pleDyBaAufysYD0oIKBQhB+Xb5sTM428XQyosFwkEzwVFCXj4w98z37r+SiE6JaYMvfa29A709eEg0qfoFB8HQd4vzwpk/vcEk/rz34fb0vgtElEMff6bBUwQ6/5D4DPgEwHrFdYHGfSo9A73Defz3M/23BxHHkj/uPRND6QhYQ7/+s8P0C+2JRD9TvDCBHD/VMw8r93hoTQPSy4c2fReAX4ZRhEk/6YLEShpKHUMS/pl+l/u7c9qxn/pyRYdIr0QGgOE/AjqmdVr4ogRYjUyMJYbZRkTHGkC4NdPzMrsrw3cCfjzf/CR+T7tG8zewDnj+xNRKAIgxBf/Fs0LYvQy6g35/wbd+UnfptbV3qPaaMQVvcjaRQVHFrIK4fpV8Xbl8Nrn5HkE6x2CHYMQTQphA1rqMMk5vnvSsu3K97Xx5edH31/ZAd0e7cwBIBUHLARGk058Mvv/7N2w30rxV/am7LHmwuy48nLrFttY0wHhov+0HpgwqTOUK7sYSf5e7bv50x2INkcoBgBr4bTa1tsN2JLaHe+OCPAPbwQt+xn/JwSH/Rn1DwAXInREVUsFMOYGseyn7Qf8OQFi96LvMvlQCr8IiOwJz+TPL/B6EsoenBrSFx8YfQ8o/kr3AgeQHy0p5h1ZCfj0X+HL09nX3+4YByYOFwVQ+z75z/nI9R7vBvAMAsAiaj0eOMIPrOT+3KT7WB4QJ8oZzQx9CPcClfQs4wjaxt9j868MbR7gH/MTIgTA9tzvYPefEYcyBEKFNB4V6feh51Tm/PJCBgsSTA26/jjyRup448vg5Ohz+UAKuhnyKXgxICJ+Azn0egTHHVUg5A27Ar8I+wn39J3ZjtOA5Ff1MPdE8772Sv54/EnwBum09OIO5CXPLBEl1BaoB9X62vV/+4YEiASl937m69nH0SDKYcSox+3avf+WK7pFKjj/Cyfqk/EFE/QkzRd5AoD7b/vD8O/dCtNq1Yjd/ebU8LDzqehd2e7XfuY99ncB2xMaMdFEyjm+Fsr2jOuX8mkADAmPAULoTMsRvePAkMtA1GPcsekJAV8i4z4BPFMUku7s+C8qVEY6LPP/EfE19tvlvL+ero/ELeIQ7Azv0vtrA3b1A+e09QoW7SO2HC8hBzsESAosBfuD3Kjc8+pB94b6ivCh3LTOANHz2evchODe8AMG0g5sD7QZJirSKM8TtAhIFxsmkBhj+ffl3+F53GjVctqC5fTgZ9Ce05b0dxLED0P8t/YG/08BDwEbE0gwNDTLEK/m3tpt6un4FPnT8l/tOegx5UXntelP5k7jT+xB/+MOXhfEILkqdShaF/EILwvnE6cREwX3+tv0AetS4Krg5ulV66bhg+DH9fER0Rz2FXMOfQycCFgGIBb4NUpGxS0o/+PmnfU5D+MQ3voS6drsm/pQ/Z/xCOj474gGHBvlId8eBh7rI+8oPSRlF4YNSg9LGUof5xaHAjPvJulV70r2UPbb9Dj75gfyDi8LBQYlCjIS1Q9bA+YAABbaMdg07xgj/A/8HhHrGjEMTvg49E36vPkf8hXxqPgQ/sv/hghIFjATWfej4FXxFh6sNi0j4wC/99MHIxITB/j1WPLR+1wE2QAN8CvbkdJB4Kj5/wdYAYXxfueo5hDvFwTNH7sr9hqIAZT/WhQxHmAKIPDW7pgCEQxI+2rguNQs4Rr7kQ6rC5j1K+R666IC5Q9ODcgOax5GKCEZkwA6/eUOdhZhBMnt3+r+89rxLeFy1PDWSOHU6GHrCOof52bsTgR4JScz4h4yAD/73xNnKsYkdQvN9kbwdO+M7D/mdtw70onSRONo9JHufdeP0+T0+RqPGgb8lfOlF+E+dTfECRvpWe+OBCQJePoK5/7V/ckcyrXV0ttA0C3Ce8mu5Hn87AemE3EjyCXwE7sGJRaxMsI4XiLICxAGCgIc8DPdptyD6KDrG+NX3qTiAOW64o/pV/9KE14V2A1JDsYV0BZUE+QadSyyL50Xsvgr7lT1YPeV7cHmAumU58/be9NH2a3h6uEs6h8OxDoHQsoYKe7w8yAiHEZ0QUAkMQ3QB2AMWw7xA3LuR+C+674FxgpX7QjOLdOu9cINGAvTBCIPqB3cHLwRag3IEPcRIhQNIG8p6RX15rPE6M/M9tUKqfnW3S7WFOBG41XYOdQH7JIX5DZENJAaCAjaDaoiMzKoMxQs7yFHFfcEwfRj6xfs+/IQ+Kf1P+3P5ArhXuO97V4BgBfeIoweGhZEFkoanRQOB8YCVwzrEDABOelq32Hk7uXP3e3aHOiO+vj/3vQR5jfjjPRFFOYtNS2KFc4ABwEhDDwPSQoxCo0Prg2H/1Dtw9270lTUVurbBqAMTvaZ4vPq5f+EA2346/ouEkElSCGPEBQE7/z79hv2Pvpr9ubj29AezeXTr9kx4lLz3v287+HXGdlq9nwMUAjeAzEYAzBsJqEBdeuR9ocLyRFEDMoEEPjr4+HUAdTn19XWgtnH6Mj33/Q26OboKvmRBVQHjQ2EHQ8lMRizB+8HlRGmEN8FGAIZBvL/lepJ2HvYBuNy6PflguDb2CzS7tcU7pIC6AGw9Rr8Jx2ZO7Y4lxvZBoIPiiiVNsArgBHZ+4v3zf4GANbxL9/n2gLoe/Ua8x3kJ9k03bHtTALhE3UdgB2yGTMbBSPAJhQfqxQRFs8gFSDQB5noM90Q6fv0be6/3f3V0NpJ4Jjf0N0K4MHlHfEhCHUl+TOJJVEKWQPJHD4+YkbbLqwPZwLLB5kL1P5F6hLkFfPyAzf/meaQ06fYue4rAvoJTAr2Bz8FGwZqDpcZQx6TG7obIyQfK90ilAyU+Tf5CwhUEy0MT/ef57znmO7O7gnsRPTsBKkIove66Y/3+xQwIIsTSw34H/MzESr0CwkAnBQXLfUpbQ7O9sfzzPxzAJX4cu587vf5vgNS/5rxousS9QEDawk2CuUMaQ+gC7gFiQg4E+gYrBPGDD4MfQvMAMvwVep88kr9lfvA6wrcONw67Gf53/I74cnfC/lRFCcTU/pn65D31ApPDHoB9QHTET0bhA3F9BPqyfWtB/oKuvwk7A/on+6C8vvuPu3Q9Nn9xfzI9OTxF/Vk9OTvZvVNB0IRDQO+6+jmMPbIACv5bO5h8SL7APvb8OTqBO8u9kH6q/sx+Sjw8+az6lv8WgrdBOHyi+jD7gD7rP9r+3z25vb7+XH48O+z6FruDABZDLwDHO7o40rwWQOpB1b9WfYY/LAEvAP5+lz1TfgjAO8GMAgUAYH0J+0c9CcDNwkX/+Dxt/Hh/NwDDwBd+17/AwfLBx0BUvu++c74QfiB/dgIog/2CCj7bPVh/tIMnhPfDpIFpQGPBjsONA68Ayv5m/qDBagJGP5x7sLsXvrUBTkCYfbJ8lL8zAdaCTcCGP1vAD0IEQ17DVYN7w3mC0sGgwJ+BTQLbQtoBWEACgBl//r6YvhH/foDJAJy+P3ytfeb/zYDiwWiC5kQ4gzNBAwFQg+MFmYSKAw6EHgZVxfbBq/5mv4ZDYoQZANv9B7x1/XZ9xP3IvsYBC4I8gNeAM0EnArACAQFuwwlHQ0iXxGs/ED7YwvnFQEP1AM9BC4MQAyCAfH31fiU/zkDhQHy/dv6cPig9zb5/vuh/l8CXAgRDeoK5QEM+x//mwyBF88VDgr6/+3+MgIxARL8cPsFAyoKwgUI97Lqneon9N/9aQH6/cr1Te2j6i3wffhF+8z3yvVv+o4Aif8e+Pn0bP2aC8gStA1qA0X+JAHgBkcJugZLATj8dvmJ+Jr2x/GD7J/r6u8E9Rn31vc3+tj8qvzL+77/jgh8D7QQrBDEExkW1hFdCkYJ/w+mFA8P1gI4+bv13vVy9zH5i/h98xPuZu4o9Zf8fADUASYC8ACm/jf+3f8DAE39lfuZ/E/7KfUh8l/6JQb+A87x6uIa5//0nvip7yDqqO/A9IfufOT441vrHu5Y6ibrTvRf+TfwauPz5LP0Zf/G+dnuzu6z9+76FPQi76L1MQCUAXb4ku+S7hLzh/g9/soDxgXjAh4AegLWB4UK1ArgDU0UXBf+EmEMagv6EFIXrRpkG0MaxRY2EhYQOhFlEosQng0/DdIPnBJoE5oSRhEpEAYQohDgD3MLFAUFAqEFWAyoDpQJuwL4AtoL1BQ/FC8LrAT6B8QOyg0VBAf9ewBHCHoISv/p9dnzpfba93n15fH97kHtIO4w8vD2A/iH9XD0ffjV/jQByf3R+YH7XgI3B/gEQv+S/tgEWwrjB/gAe/8KBosMTwzqCKQJYg3ZDG0GHwHQAVoEKwO0ADwDXgr+DgUOvQvVCzILzAaWA3AI3xKdFwgS3woiDa4WcxuWFeAMSQsuEF8SUw3YBasCAQQ+BXsDxv8G/PX4G/co95X4Ifln91r0HPJZ8XXxFPIW9Jj3Kfsk/HD5tfSD8d7xgPQp9rX1mPR29F70IfPf8ZLyQPRj8xPvJ+vt6qfs9uul6D7mbOZh5rjkiuQ96IPr9edQ4M3fNOwx+2z9CPGn5YboK/Wm+xT24e7w8ZT8DwJb/Abzx/CG9mT8zvsH9tzwZfA29Nz40vqS+Yn3+/fM+j/9A/0O+6b53vkr+wb98P4SAAQAEQAkAucFngifCEsHIwdvCGsJagmeCfoKigzuDFcMKQyVDC0M8gnfBsAE3APzAtEBngLDBq4L/gtyBr0AEQIECqgQFhBIC3IJBAwBDq0M4QtsDwwUrRKJC0MGmwiBDjEQRQz7B/IGGgeRBawDaAQ3BzAJ7gjtB80GEQW6A0wF3QmuDNAJHQP0/hwANQNeA/T/svzh/LD/hgFK/7b6Dfnu/dkFYAkoBYH+ePyL/5wClgLDAVMCsQKzAEz+Of6e/13/3/2T/r8B6wJVANb+qQPZC+EO5gkiA8EBDgUoB0YFjwKeAggFJQYRBOf/9PwT/YP/dQFlAYoAjQDfAND/RP6w/0gEcwfkBFP/jv2eAZMGqAdEBlgGsgftBpkDrQFPAzMGVQddBwII4weOBBsAi//+A5EH4wT7/d35pvtu/1YAKv4+/G/8RP1L/ZX8fvz5/P/8evvO+FX2uvUb9974kvim9b3yUfP498/8Tf0s+Qj1vvSb9475OPmy+L75mPrY+Dj1CPMi88XzPfMd8rDwAe4C6qfnv+gL67fqfOiK6O7ri+7g7TTtvfCp9Qv21fEc8L/0LPpO+cnz1fFg9nj7UvsU+Hz3v/kZ+sX2XfTG9sj76v0W/Nz5//lZ+wH8dfza/SH/Tf7p+9X6PPzl/XL9dvuT+sH7Bf5eAJQCFwS9AzYCQAKhBQoKiAt/CaAHOAkyDbQPLg9pDasM4wxWDIUKZgh8Bw0IMAllCbQHoAQTAoYByAJaBBQFLAW2BMQDoQKrAngEewZ3Bv4DTQFoAEYBUAKOArsBOAA4/3EAFgQEB90FrgHg/4wDSAnFCv8G6wIjA1sGLgjLBloESAPUA58ErwTJA3oC+AEAA28EFASVAYf/WQASA04E0wIgAWoCXAZxCfoIWQZuBVoI3AysDmwMJAmZCKIKvgsUCg0IzgiSC7cMNgqOBgwFgAbrCE0KUQpZCQoI2gYeBrEFagVRBZAFRAWEA9UAKv8MACACHQMYAsMAzQADAsYCdgL7AWwCTQNlA2ACbQGyAb0CqwJiAPL8wfpI+zD9t/13+yz4Jvc8+c37uPt5+WP4Sfq7/Kr8UPqm+Cv5U/p4+vf5bfkg+Iv1ZvN885f0y/NN8bnwmPNQ9u70WPEw8ez1b/q3+YX1VvMu9TX3xvVF8vnwHPOc9SD1W/LP8CjymPQo9YjzvfFc8e/xivJx8xL1lfaF9g315PPo80D0YvQ49Ur30viy9xP1gvST9237nPxQ+zP6tPqU+wr8Nv3H//gBdQGV/jv8Bvwq/e/9hv6c//8AOAFFAFX/6P93Ab4CzAIlAsUBLgLuAp0CzgCe/ln+ggDyAhMDGwGO/00ALwI5A68CkQHiACABdgI9BPoEiQNnAWMBUQSMB7QHsARsAZ4ARwJhBKoE1wI3ACX/QQC+AXgBvv/w/jgABwJ7AvcBrwGlAdYAo/9J/73/U//a/Vf9CP8hAegAsP5P/Q3+lP9JANsAlwLZBOoFMgX+A80DyARBBooH/QdgBwQG+ATNBDoFYwUSBbsEJgV6Bj0IuAlZCiYKdQmzCIYISgm5CqQLTgtrCooK6gseDeIM6guUCycMeAwFDFQLAQujCvwJcwl3CSoJ9gc/BsQFBQfuCPYJ2QlhCXYJFQqMCggKeQjUBloGMgdcCOIIawiHB2kGSwVqBNQDEwOmAdr/oP7c/iAAJwFgAN/9G/tS+or7ofyZ+/34FPeg9nb2jPWh9In01/S69Ov0c/av+L/5Qfmw+O74P/m9+Cj4YPgT+TX5I/mm+YX6r/oA+kP5dvja9uz0ivSm9lL5XfrM+XP5Cfq9+uX62fq++gv64/iw+Cn6HPyM/Db7lfkR+Tb5Nfm0+IX4KPlg+iz72/q4+af4X/jE+Gz5J/rv+sr74fw1/kT/5v4s/Yf7afv3+4n7T/py+oT8uf3Y+2/4b/eo+U784fxI/GX83fw2/Hb6YvnE+cr6n/tS/Mv8Uvwq+7b63fs6/RX9kvsU+jP5APiV9gX2aPdw+bL6kPoU+vP5jvrW+2D9B/4g/c371ftn/YH+xf1q/Kv86v4qAQUCyAG8AS8CdwJFApgBvAD9/8H/ZgCdAdYCtQNBBIsEygRZBTMGygZBBiAFngQ9BSsGTAb7BQgGpAYmB1UHiQfHB5cH1wZLBmkGsQaqBoIGBQf8B5QIUQiUB/4GuwbCBqgGIQYYBYAEHwVuBvUGQAawBbEGfQhtCc8I8QefB5EHUwdaBzUICQl3CNIGAAZGBzcJKQlwBmkD1gJ7BH0FDQTXAdgBSAQ7BogFRwNQAl4DFAUxBqEGdgYqBScD2QErAvICxAKxATwBzAGfAtMChQLrATgBfQAJALj/Wf82/63/GQCo/8z+Kv/VAL4BrgA4/4L/ogAnAPH9o/yC/aj+OP4Z/e38b/0L/Tb8Q/wY/Tf9Zvxb/Fn9wf2W/Gj7wvu3/HT8hfuZ+6j8mvyw+tv47fha+jL7yvrE+Qz5hvju9/H21fWd9fD2Jvlc+tH5AfmJ+Vr76fxY/b78Zvvq+Vv54Pns+f73tPVB9of56/uN+oD3M/b99uP3MfjK+I/5+vjX9yr4Afov+pP3JvUZ9tr47Pkm+fT4svnT+A72UvSc9Yv3g/dj9uz2APl4+pX6kvqq+sz5XPhr+F76tvu4+vr4/fiJ+l/7+Ppl+nP6Yfoz+oL6Zfup+wv76voM/DP9+fzl++z7a/0U/5P/Yv90/zYAJgGKARkBWABOAFcBwwKIA7sDAQRMBLQDZgJsAZIBJwKoAs0DHAYcCMYHYAWhA0EE4AVfBpEFagWxBjgIXAhCB/8FfgVjBWUFigXqBVUGowYUBxEICAn2CJkHIwbpBaYG8wZnBikGKQeHCLwIpAerBmMGUgabBdIEtQRGBcsF0gVHBVMETQPvApwDngQ0BWgF9AXCBtEG2AWvBAgERQPxAe8AkwGQA/cEHAXeBEkFYQVDBJUCWwKQA5oEWwQsBFgFzQZyBm8EFgPNA+AEXwT/ArkCsgPQA0oCygD7AAQCEgJKAScBDALJAuICGAO/A6gDTALQAMIAiAHAAWABVQHBAZsBygBKAFIApv8y/qn9bf/TARAC7P/O/Zj9ff7P/hv+d/2j/Zr+a/8l/6P95/s6+5370ftB+536ovoL+1D7zfu3/B39Gvxz+tX5JPoI+jr5bvlM+xL96fx1+8H6zfpS+uz4M/ji+KL5MvnQ9wL37vbX9m32Mvb09qP4tfoe/DT8X/uJ+jv6gPno94X20/az+DP6efof+i36Dvo2+Rr41/dM+E/4kvc59yv4tPk0+jL5I/jD+PD6pfw//I367vkU+1v84vtp+tL5ovpF+736pPlZ+Uf6UvzA/vD/av4++wD6ifxVAFkBxP8Q/ywBpwORA/cA+f3d+yD7lfzE/ywCmAGf/3X/JwFZAb7+cvyO/dkA1gK3Ah4C3wE/AcQA1wEEBHMEUQJDAOIA3AImA6wBlAAPAbQBuAGoAe4B9AH2AYcDewbzB+0FkwLDAbYDHQUoBMsCYwNABV8GiwaaBjYGTQQSAhoCxAQeB90GUgUqBTgGeQZbBeUEKAbOB1wIgAhuCWwKDQqfCBQIuwjmCNUHIgdWCB8KFgpKCAMHlQe5CM8IFwiZB8sHPAi9CPYISwj9BmoGgwfDCP8HCAagBcUHeAkiCBAFwAODBJ8EpAK1ACwBGQPKA8UC8gGAAocDwwNJA7EC0wGKAIX/j/9ZAK8ADgDz/vH9Xv1h/ej9KP58/Vz8CfyY/KL8b/tN+rv68fv2+7n6GvoR+wD8V/tH+mn6N/s5+kr3EvWX9bT3JPnC+ZT6YPu3+pz4LPeL93f4WPii9+33Wvk1+pT5KfhI9zb3pveF+L/5+vqQ+077iPp3+Xf45PcJ+L74gPkH+ln6tfpD+/X7dPxY/Hj7XPpc+cb4mfjn+JL58vnw+RP65PqG+7z61fiw94r4B/pj+mX5zfhg+UL6PPox+Tj4PfjU+XP8hv52/kD8y/lb+L33Cffe9jP4l/ov/Dv8pvtj+wX7CPr0+KX41/gQ+bX5Xfvz/KT8lPpO+ZH6pvz//IT7xPoT/L79a/1r+8758fkt+2X8S/3i/ez9l/3X/Tz/3gA5AXgABwCnAGIBXwGxASoD8QQJBcADGAO5A5UDcwFH/8v/pwIKBfcFqQbMB98HPAbOBD8FhwaTBu4FWQaFByAHIQXYA74EyQVXBYQEFgUYBpsFagSrBFsG9AbxBWwFRAZvBq4EYAPaBEgHaAebBUkF5QZFB8gETAKhAjAEKQQoAxsE7wYSCAkGWgPqAgUEcAQFBDwEGwUHBbkDiQK9AlgDaQMQAysDcwNKA/MCYwOTBGYFCQU3BNgD7wPTA7YDFwT2BDMFpgRfBBgFmgVYBBUCXAHPAiEEkQPMAigEqwbsBlAEGwKbAggE8ANFA2gEoQaeBvEDvQE9ApIDdwOMAu8C8QN7A6UBggDaAA8BNQCn/yYAWwAm/6/9wf2X/nD+RP0E/fD9h/66/c380vxT/S79Cv2r/av+lP4O/UP71/m7+Nf3nvdG+Ov4Afmm+HH4PPi09xT3//bN98L4OvnD+PL3d/ev9yT4Sfga+Db4vPj/+H/4bfd29sj1TfVR9e/1n/Z89pf1yfTb9J31yPZx+BH63fpW+i75WPjV93n3r/f2+GP6o/qc+ej4Ofl5+bv4xfdU+Dj61/s0/Ov7n/se+xb6Yvn9+dr7g/3d/cH8MPtm+rX6Kfug+mL5VPk0+zT97PzI+rv5S/vg/dX+MP5W/Rr94Py3/Ej9f/4f//D+Lf+LAIUB0AAy/+T+BADcAHsA+P87AHwA3v8d/5P//AAOAkgChwIJA1gDHwPuAvACkQLyAScC7gP2BZoGyQXtBMUE6AS6BIIEPgT7A8YDRgQOBRUFAQQfA9YDzQWgB18INQhXByIGZgWXBfkFPAW9AzwDgQQOBlIGsAXQBQkHcAgLCdoI2AcyBuwEHQWNBo8HcQcmB98HxgioCI4HpwaEBnUGIgbKBZcFEAViBAkEXwSuBLIEBQXuBb0GsQZ+BusGhQcFB9oFcgUQBqkFQQPfAE4BNAReBqIFoAOrAiEDIAPlAXQALgC1AG8BNgJjAysEVwNDAe7/jQDbAcEBeQDr//cAQwI/Ai0B+v+n/nD9Zv1n/5EBJwFZ/m38MP28/lX+zPwo/Ln8sPwd/Gj8YP28/Fj6cvnX+6X+BP7w+qL5ePtl/Vr9nPzY/Nv8QvuA+az5yfqQ+k35+Pnh/AP/9P2a+8360vvO/BD9dv35/cT9w/zj+2j7cPoH+WL4PvmO+jj7fvsP/KT8pPxQ/Jb8Iv1b/Rj9Sf26/an9uvzY+6P7dvuu+u75Mvo6+9L7o/t0++D7Xvwx/Kr7oPtX/D39rP2//Yn9Iv0Y/Nv6qPny+HD4K/iW+Nr5dPuY/Cr9v/06/vj9yfyb+yb7FPu++p/6bfvT/MD9Of43/3sAtwB0/0b+Jv4J/sT8Yfu/+zn9yP1t/RT+VQDNAT4BigCfAS4D1AIzARQBhAIaA84BGQFmAtkDOgPEAa8BmAIWAnwALAC5AboCqwG8AN4B6gNSBHgDwwOWBbsGOQaUBVMGLgeaBjIF7wSmBY0FGwToAisD0wNfA2ACMgIAA1MD1AJ9AgIDggM2A+0C1QNFBbAF3AQ9BIIEgwSLA8wCkAMXBX0F6gTxBK8FUAUdAzwBuwGcA8gERQXHBuYILQnDBiUEqgN0BGIEwANCBP0FxAbDBUUEugNmA9UCxAIVBG8FWgVQBCkEaQQ6A3YAsv4v/+T/kP5q/Ab8qf00AGcE0QvrE08XQBWGE/MVpBcbEo8IrgSpCCEM9QgFA1v+TPbX57fek+jm/BsB/uxR2kXjIvtO/ZrgAsavyyzkR+o303S6Eb2o2iT9nhLgFjwQewlfC6kSshJ2B4L+OgV3FCUa5ROaEI8Wphg8DDX7CPR184PtluW/6RT4H/3+84rz8A1UMNQ2ThuS/Mj1pADHBvMBvf0uAhILAhIHFtYWnRL1Cq4FcQVsBhYFHgMDAxoDPQK3A5IKrRKYFdUTmRLqEakLE/+d9Sn3Cv9mARH6le8U6U7mO+MQ3lvZv9iV3tXon/CE7+3mc99J3pzeUNiGy3HAo7z+vIy8F73HxF/USeMY6LvjZOGh6kv7+AVnA3f76PrsAvMIjwVy/tv9awWADkoUyxcXG8UdSx8LIOwecxpVFYIVkRt7IC0fqxwZIdkqCTBlLOQmzCcrLZgtHCO7EM7+ZfQd84j3Q/1qAu8FtgTF/Vv41f6LDy8aYxLLAO73//ytA8IBL/r68/Lvnu3O70f1XvXL7KTn6fHoA+UKSAPl+3j9yP4z9wvuvu0z8o7x0e0C8Pz1wvT+6wroxO4u+JT95QKICg4NXgbb/58B9QNB/B3xmfDI94D2XOx+7Db+Gw2GBZPyZe6t/GsIZwTZ+zj+mwkREVEPmwm1BdsEqQZCCyAScBnhHQscNBQtDpwRoRsLIKEZ4Q8rCnMF9f6y/20PBiIOIZ0K+vXZ9a4BoAZGAXD7Hfh58TLpxeod+uMJugqD/RXxLvBZ97/7/Pgp9qv8JAvkFWgWiBSdGWAguxt2DHkCSAazDswRExNRF6cWqgr+/iEEuROCF9kJGv1y/q8E1wQNBJQIkQmL/k/zwPba/xT5yuRd3Nrps/nD+bbxfO+o8Jnu8fAH/8sK3gGO7VfpuPl5BR/8p+wf62fzQfbB87D2WP4f/5L2t+326bzog+qb8yEAHgSQ/Ln0L/fNAVcNcRZhGtAUvgg0AsQH7xC0E1oThRdkHGMY5g0jCR8OGxVDGYQcNB3yFVYLXQoQE20TSgKV7y3tpfOy74Li7N5X6VPw6OjK3q7foOay56jja+Oh59zps+i754bnnudJ7LL3UwFW/1r1bu3S5jLbAdPW3qn4CwEl6WPM7c0F6an6mPNz52Doce0e5yLbO9tH6ob6PgAd/BH1C/NY/FAOSRtKGScQHw+aFmMZ6BPKEQAZRR6lGLcS1RlHJ0YpvB91G3giyyYbH4MWkxkkIaEeRRNtC0kJagVNAn4KaBkIGk0HaPnIA8EU9w3g8yDpBfoqCUL8nOIA25vlPupo43Hjvu9C867iD9Lj1eHh+t0nz3DOs97u5/nfk9qT5e7wBOt34V7qOPy6+bDhbtQE5AH7Cf+89ez0AP+aBXsFBAjCDbUMwQXmBRoOIg5KADX3PgIqFEoWRwoRBLoJYw7HDE8Pwxk0H5kYoBKrF5obLw91/H75jQWYChgBQvrE/14CLfY/6zb0twMQ/ufn7+Md/yYaxhbIAfL7OAeICW76dvGu/owPUQqA8+Tk6OhE82X6EgOFDxgV+Qy0AdAABwdCCFUFqwr9GQMkoh0oEGQLwhDPFfoVPhcEHMUd+xehENcPDxS5FU4Sqg3wCnwKLA5PFwIgTx5BEjoJYw0fFwgXRAvMADcAWgOvASL+mP8SBIMCYfmM8GXtUu2K7E3s7+3G7i3tnutg66rp9uaR6jv2Wv2T8+rhFN6F65r0LupY2qvb3upA8cbnb+DH6MH1Kvdw8BjwXfd7+hz2FPSW+d7+ZP00+/X/VQjVDOQNaBAaEuoNJwjyCvQUjhjfDxUIpA5wHfkiBBs4ErMRqhNXEAsMsA4bFbUUMw1RCksS+xoCGIQMiQYKC78PTQu/AU79Yf82AYr/Iv0H+3n1gOz+5q7o/ere5YzcPtjh2VnZ/dNj0T7WvtuD2qbWA9g23MrantWk18Hik+qm5n/fqeBP59jooeU86PTyKvyg/VT91AD2A3IC5AEYCIgO/wqiAcgAdwvPFJcTtQ6dD+8T4BTLFJwZJR+8HEAV1xRiHYkiLB7aGgwi9CrMJ/obQxfqHD8giBpEFXIYBRynFfsKgAlNEUoWuhNMEV4SgQ7eAfr37PzKCXkNpgQL/U4AcwcbCK4DUAJOBKcCYvvf9Hn03feQ+jz87/1J/VP3H++I7Jzyqvqi++z0oO8E86L78/+x/HH47PlY/nf+W/nu9dn4hP5DAc0AxQAEAggCh//t+2f5cfn3/CkCyAPZ/ov4BPkAAMcD9/5s+LX5/wCCBEkADfoZ9w32+fS29Uf5RvtA+DX00vQQ+Kr22+9S6ybu/vN39iL2tfcA+6v6HPVQ8Pby/vsaA8oBNvr09Hf3Tv6cAYD/3P31AHsEDgJB/BH8fAN/Cb0GDgCl/s4CFQVpA+4Dcgl9DaoKJwazCHEQFxNjDGwEjQMACF8KJQnLCB4LBAwiCMQBeP2f/NP9ev85ACL+vPhh8/bx8vOB9B3xxOww7Bjv4PAm7gjpY+YM6Cnrguur6Mvll+Wr5mzmcOX25pjrAO8D7bznw+Sv5mbqR+yR7I7t+u908rXz0fO28/f0u/ej+WD3T/K78MX2t/9kA1gAWf0V/5gCVQOcAoIEYAjcCR0I/QbFCCwLewu7CrsKBww6DqkRgBTLEx0QJA/zE20ZvRiNE4ERbRToFe8ReQ30DfQQuxCYDWIMFg1uC9UGsQQ7B+oJ8Qd/AwIBzwCLAJsARgJqA48AiPtv+Qj7d/vK+PL23vgF+4v5M/eW+JL7Yvq89QL1uPr9/4f+MfqC+lH/yAFW//f8sv7pAYICEQIABF4HPAecApX+lP+xA18FoQJV//n/NgRSBwUGAAN5A1kIAQzGCbYERgTWCUgO2wstBhkFEgk7C+IH4QOeBG0HVwayAQUAfQNgBmsDxP0v/Df/HQEb/wf9Fv/3AnMDkP/P+1P7h/xP/E/6vvjA+AT6+vs//pX/1f7Z/Cz8kv3e/iz++/zW/U4APQHm/0L/eQEEBGoDgwCh/x0CeQSEAwsBmQB2AuADPQPYARgBvgCGAKIAqgBT/6/8mvpo+r36IfoK+bH4pPgd+Bb4mPnk+nP5lvZK9gP5M/pf9xf0tvSL9xT4YfYq9rv3/fYl85PwMPJc9KHzifLc9Nr37/XN8Njv2fR0+Hn1qfAQ8fb0v/Wv8qbxtvQ39w72sPTW9sH5ePl892D4nvum/Gr6Wfkf/Kr/qgA4ABYB+wIEBKkELwb+Bt0EggFwAXoFGgk7Cb8HnAe0ByMGdwQoBusJDgvfB3YETQS3BUAFfwN+A6wF7gZoBc8CUAENAS4BTgEAASb/xvtx+TX6/vye/rP9kvur+YP4mviL+i390v3c+xP6/Pow/Yf93Pv9+iz8M/0t/JD6gPrw+w79kv1u/qH/TQDUAFMCSARtBLcCqQG6AqsDGwLl/3wAegPmBCIDWQF9AhcFEwZQBQEFlgXZBacFPwYQBy0GAwSxAw0GpAfhBcYDOQWWCEAIsAOKAG8CxQVnBbwCLgL6A6UDKgDX/cL/ugJ2Au//YP+aAUsDjQIzARIBTwGUAF3/Nf/v/xUBggKpA+kCKQCX/rAATASLBCwB9f4yAdwEpQXqA/MDswbZCL4HIQU7BFgFXAbjBbcE+AMsBPcEqgV4BXsEnQN7A1kDaQImAaYAugB1ANn/9P92AEkAGP8V/7oAxAF4/yH7wvi6+XX7IPtG+Yn4i/kA+4z7//qj+cD3QvY39kP30/fe9jL1OfQ29JH0BfXe9f72dPeP9uz07fN49OT1ovb89eb0H/UZ91T5/vnQ+Fr3NveM+Cv67Pqj+kn6wfrI+5P81vxD/WH+Xv96/0n/3/8cAVEBJwA0/5D/MABn/zz+2v5SAYgCtQCt/RX9j/+CAiIDgQHc/+//fgFPAgkBcP4Z/fX9Wv9b/3n+rf7y/3wAqf8t//H/WgAE/1T9iv3b/u7+rf1n/ZL+j/44/E/6tfvV/g4AMf9L/4QBdgMkAygCWwINA7YCVALfA3wGBwe7BCwC2gGyAqECKgGN/zn+Wf0w/QX+dv5w/RP8B/0WAF8C3gGeAEcBKQMHAyMAq/1x/hcBwwF5/9/8Uv37/+MBJwFe/8T+Tv9i/5L+gv7x/0QB0gBy/3n/7ACGATYAx/45/4oAzwAMAD8AuQHbAoEC6wFmAp0DVQRvBCwEigOPAm8CvwNUBV0FnQQqBUoHkQiZBzIGgQbjB+8HjwagBR0GwgaEBicGiwYAB2EGBgU6BGgE9AROBYwFeQUQBZMEvARHBU8FzARBBC4EoQNoAi4BDgGZAaoB4AAHAMH/3//4/9j/jP8Q/+3+tf8NAZUBeADS/mb+b/9xABwA7f7z/ZD9af2m/bP+CgCBAKr/4f4p/6z/7/4//WX8HP2o/cn8m/sC/Ej9Tf32+7z7Vf52ATECDgBG/VX7Sfol+kn76/yY/RH94fyB/Xb9HvxG+6D8Q/5G/Qz6Tvis+br71PvV+tr6nvtj+y76z/mW+t36zvnT+BT5kfnm+I33Bven96b4afkM+lv6M/or+p36rvoY+dP2J/YF+Gj6Y/tJ+4v76PtQ+9v5Jfni+R77BPy1/KT9XP6K/oj+nf6N/mD+uf7H//7/b/4b/FD7Jfz9/O78P/2K/o3/qv7c/Az8pPwb/fX8D/0D/sP+nP4z/oP+C/8c//H+mP9fAAgAVP7V/Iv8z/yt/HT83vyk/Q/+KP6U/hD/z/7k/WD9A/4W/+7/mABBASEBwf8M/uT9XP/xAAsBNwCW/3X/Jf+h/vr+twDwAvwDcQNvAiACdQKoAqkCPANrBBIFUgQjAzIDegQMBQoE+gLKAwsGhwdaB4MGEwagBe4E6gReBowI1wn7CaoJEQm+By4G3QUpB5AIgggrB+wFNgW+BIIErgQJBdcEWAQ2BH8EUgSmA2ADFASbBCIEQwNnA20EEwXkBI0EaQTbA7YCAQJMAr0CSwJOAeYADQG5AAAAEAAvAckBdQA7/nT97f79AOwBdgGHAI//SP4W/Zv8XP2U/oD/u/+j/1L/vf73/Ur9w/xA/AL8ufxz/tX/dv/A/ff8Of5FAM4Ae/8B/rD9Dv4f/rL9Yf1O/VT9Tf0T/U38APtP+ir7Fv1E/gn+Fv2z/LL8uvzM/GX9bf5L/8v/nf+C/nL8m/ob+qn64fp6+nX6SPvG+776Fvlb+PL4v/lM+hL7G/yL/AD8WvuI+zD8j/yA/DH8f/uC+gv6xPrF+7P7p/oY+pn6Efum+vv51/nX+V75L/l0+pP8dv1I/HX6yvlW+h37dftm+yT74/oS+5v7cPv3+Rr4h/d9+JP56vn5+Xv6y/oj+ij5Xfkr+zX9F/65/dz8R/xh/Eb9hf49/xf/mP4y/mn98Pu2+lv71/0UAIMAqf9d/8H/m/8q/rr84vyi/osAggFnAacAVf/k/eb80/x4/T7+0f4a/xb//f7n/vP+5/7p/oX/iAAkAVgADv/R/kYA+gGiAnUCmgIkAz0DsQKYAnADtgRZBV4FLwWUBGUDOAI0Am8DvgR+BfAF1AasB6oH3AbyBYMFTAU4BXEFIQbUBhwHpwbOBbkECgQzBAsF1gXRBRoFiQRYBIAEqwQMBb4FoQY4B2kHBQdiBtYF0QVnBggHTgcdB6wGDgZFBawEhgS+BNIEpwSNBJ8ERAQjA8sBKgGTATACggJ3AkUCjgEkAJH+0f0E/nj+m/6i/vX+XP9U/+T+jP6T/rz+yf6a/iP+Z/28/Mn8nv1R/mv+P/6i/i7//f4B/pT9mP5EADYBNAHdAFcAN//l/Yb9g/60/xgADwBWAJ0AzP8E/of85/uX+wj7zfpM++n7Fvws/ND8R/1r/Jz6q/kS+o76wvmk+LL46vnd+gD7GPt0+0n7NPpQ+cv58foy+yv6Zfnm+fv6LvtC+jL50/jD+Hn4EPg7+Dr5UPp0+pz5p/ia+Hz5Z/ra+sj6g/ob+pj5S/l++cn5u/lO+R75X/l4+Q75kPjx+EL6nPsa/OH7ePty+6P78/tL/KP8+vxE/XH9RP24/PP7evtF+1/7vvu8/BH+2P5J/uH85/sg/A/9+f2m/kf/5/9PANwAjwH0AUwBHADU/6UAOAEkAIb+d/5KAPAB0wHUAMQA2wGfAoECVwIYAzUEwARxBOcDawMdAwwDcwPsAy8EQgSmBBcF2gTAA0UCGgEhAIz/0P8UAQkCiQEaALL/HwHjAjoDdQIRAsICYAMZA04CAAI7ApwCDQO9Ay8EpgNOAmwBowEuAhICyQGJAlYEkAUTBbADJAPhA+8EIAW3BB0EoAMJA1wC/wEzAvYC7ANVBLgDkQILApwCNgOJAvEAFQCiAL4BTAKmAloD2wM3AxUCLQLpA5wFfQUnBFADwAO1BFUFegUlBTkENwMGA8EDTwS4A2ICvQEwAkYD3gOXA0QCeQAh//f+o/9IAKcAGwGBAe0Aav+T/qH/qQE6AvgAnv/R/9cARwErAb0B8wJdAxkCUgCP/7j/vv8n/8n+Sv8yAJUAPQBq/33+vP1W/Wf9jP2L/YL9sv2z/RL9APxe+3f7ovtS++f6y/qx+hr6rflQ+o37pPs3+ub4Tfm7+mX7GvsF+6f78/tb+336+/lP+Qr4Jfds90v4Y/j69zn4Hvlv+cT4dvhf+ZD6Dfs6+8770vtn+mX46/cC+bv5dPmf+bD7Dv7S/gP+bf27/ev9Sv2F/CT8Dvzn+zL88vy1/fb9I/7H/sH/hwAcAX4BggH6AFsALABNAFMAkQBFASACTgIDAgMCWQIWAhUBYwC2ABMBOgCx/ir+Yv87AW8C0AIUA44DxAP8Ak8BoP9E/yMAAwHIAMz/K/9D/4n/y//Z/0//4/22/GL9Vv9IAPf+Vf2w/cr/zwHFAhoDmgJSAWAAOAHqAk4DYgKNAlIE3gRsAjb/gf6I/9b+J/t+9jnzD/Jb85L2cvnZ+VH5gvtXAKcDKwNdAkME6gbfBi0G/ghkDuoQRw/zDUYPqw9VDEAJswqyDQoMewZHBAMJwQ+FEtQQzg3SC1oMNxHHGKgdWxzhGA8ZbhzRHAgYrRKLEH4P4QtVBwQG2AdeCLcEHf8j+/b5Wfrt+tv64Ple+OX2TvVW88PxwfG48rHyK/EJ8DTwZO+K66Xm/OT25jfoWuV+4FDes9+K4Xvh2OAM4rbkHucJ6fDrpO9j8cDvIO1m7cbwofOW81fyH/OO9r76M/6nAMkBngGOAZoDOwesCfYJgwo7DR8Q2w/7DDoLNgyoDWQNkAwdDYAOvg7NDaANMA+cEe0T9RVIFzUXEhZ1FRAWgxaeFQ0UUBP6EkER0A2pCroJZwpVCkUIVAWVAwME4QWxB3wIFAiABsYDGAAW/Jb4wPWc8+vxy/AZ8KnvWO8U757ut+1p7CHrLOrB6cXpLOqU6grrH+wG7g3w5fB88PHv8u/O78juwe3s7X3vWPHO8tPzbfSV9DP1HfeI+Zf6SvrF+qH9GgEJA1cDtgMoBFQDzgH3AdME6gfXCDwIGgiDCNAHCAZJBaUGqAgiCS8IQQdQB40HxwazBGECpQEmA8EFXgeXB5oHOQiECGoHjAUDBLUCvQCg/t79i/7n/uf9qvyG/Pz8Ff3t/Ij9dP5+/rf9ev1Y/hj/nP6S/cf8//se+lX3DvUb9Fb0FPU69nf3Tvg7+Nf34/ep+HH5Yflx+Jb3wPe6+Gr5J/m5+Ov4dPn5+ED3Y/Vz9HL08PRg9vv4rPuf/Dr7CPnN9x74CfmR+Tr5V/iW92X3k/fS93n4aPqc/WcAHgGV/4T9gfwR/Y7+MQA/AaIBFQJgA3YFFAd0ByIHQAc0CDUJ8gn5CucMUQ/eEMkQrg/GDs8ONw+MD9cPuxAlEjMTShPUEnASOxLZEakRmBKIFFwWvhbZFZkUtRMpE7sSQRJzETcQMg8GD+QP2xBeEUAR6RAZEOgOQw2zCxMKoAi0B7UHXginCMEHswVnA9QBfwGLAcMAnf4V/GP6jPk2+CX2Z/Rg9J71bvbc9Tr0jfKK8brxG/Ou9LT0yfJ08KvvZvDN8AnwOe8u8H7yM/TU8yzy8/Cj8Inw4O9J77Pv+fAW8kryVfJa80n1vvaN9jL1afRO9WH3RPkt+mb6aPpz+m76uPpu+1H8k/wy/BT8Iv0h/zQB2QKHBEsGbQdFB0EG5QX0BusIuAqHC3QLkQo+Ce4HTQeNB00IywjMCMQIWAlWCtgKTQpuCXgJRApvCt4I0gboBVsGYwYMBVQDrAKtAusBHQCM/vz9uv3r/Or7cPvK+ub4B/b689PzXvQ19HfzoPP29BX2m/Xz84PyFPIs8jDy4vGJ8T/x+vC/8J/wq/Du8PDwb/Bw7+3uwO+k8TTzZvOa8iTyq/K684/0A/V49Sj27vZx95X3lvfZ92/4P/na+YH6fvvh/H/+IgAXAhEEXAVzBfUE9ASVBSwGhgZKB+AIZArgCpYKegrOCtsKbAotCtkKxgs0DLUL7QopCowJHQnqCNMI9Qh8CZ0KpgvuC8ML2wtVDDYMAgvdCcMJowr4CjoKwQhGB/QF/ASYBI0EYAT/A1AEfgWjBooGgwXGBNMEHgUfBUEFtQXuBTgF3wPzAugCNQPMAiYBmv5m/LP7v/xc/nL/ov+L/2v/a//I/6IANgGGAP/+bf6j/ywBHgHe/5H/zwD9AVIBnf/X/oj/gACZACUA0f+M/xj/tv4L/wwAwACQAMf/N/9K/3f/V/8M/xv/of/y/5n/nv6//Wv9z/3R/g4AHwGqAQACMgLaAa8AV/9X/6UA8AH7AUsB9gDEAAkAKP9e/1gAfgBC/27+h/8gATIBuf/U/m7/FQDB/0D/s/+PALMAIADj//v/qf/T/jD+Bf6z/dn8IvwT/FX8kPzK/CH9z/xy+3L5EPiJ9+n30fgH+mD6MPls97j2N/cp96L10fN98zD0dPS+8yHzF/PO8gHyhvFl8rbzOfTS8xP0gPXi9q/2BfWC8x/zd/Ob82jzdPPF8yD0Q/TN9OL14PYv9wz3bvdf+B/5j/mK+lr8yv2x/a38s/z//bz/sQClAXcCqgLLAScB8wE3A1ADLQLfASADrwQlBdUE7QRCBU4FbAV6BiMIHAkFCQsJ0gm3CtUKQwq8CUwJxQh/CI8IkAjLB+kG/wYNCL0ITAiPB78HxQinCf4JFwpeCl8KAgo+CY0I2wdEB9YGtgbRBtQGfQbQBSkF3QSnBNMDCgJZAAQAIAEyAiICUwHzABwBKAHNAJ0A5wD8AGcAmP9U/2z/Uf/V/tD+IP8M/+z9nvw7/If8Vfwc+wb6I/pN+0T82vyX/dP+y//O/yn/mv5N/t/9ZP1D/Xn9qv3s/RT/BwGkApcCngEdAcYBnALtAvkCHQMXA40COgKxAswDeATCBDcFDgaMBkoG6AW3BYEF1wRdBJEE8AS9BFgE1AT+BVgGigXfBIwFigYcBmkEMAMDA/ACHAKPAQkCuQI6AvAAUQCXAHMAWv9d/oT+Bf+X/lf9Wvz/+/j7I/z+/Lb9NP1r+0T6rPpk+5z60Pje90j4pfgM+Cb31/aw9mf2g/aR96X4lvj09wn4uvha+Kr2ZfUd9uT37PjH+Hn4ZPhX+D/4vvhq+Yv5qPjX9373V/fs9sf2W/c8+Kz41vho+SP6XPr++df5WfpE+y/8D/2f/V79j/wK/Ab8vfvF+if68vqI/FL94PxG/FL8xfw1/er98f6l/1T/h/4M/jD+pP5f/2gAFAHDALv/G/9X/77/4P/9/2gAuwCIACYANQBdADgA6/9KAF0BQQJqAkUCbgK7Au0CHwPGA2wEewTVAzAD5gJ2ApABwgD/ADkCZwOqA0wD7gKwAh8CQgHdAEgB9wHmASgBkwCtACMBVwFdAWsBQQHYAJMA8wCSAXkBxwCYAJoBGQP4AxoEDwTXA1kD3wIZA88DGgSdAx8DKwOCA6cD+gOcBAAFgwTfAw4ErgQuBGwCJwEJAhEEFwWBBHEDQQPBA0wEoQSgBCIEKQNUAvwBsgEHAWYAqwDAAZ0CpwJbAmMChQIaAiMBOgDp/x4AuwC4AcsCWwNCA/MCCwNeAzcDdwJnAYoAsv8I/+b+tv/bAHwBLwGrAHoAmwCaAJoACgHTAX4CYAK0AekAPADa/8n/8v8aANj/f/9e/2r/CP8G/hD9Av2q/Sn+sv3b/Fb8QPwc/Lv7vvtq/DL9J/13/Or7/Pvv+zP7J/q6+e75H/oM+iT6pfrd+qf6xPrh+xT90fww++j5L/oM+yT7g/ox+mP6a/r9+cr5Fvp3+nr6t/pN+6P7FPsp+gj6t/pW+277uPtw/C79Sv0f/RP98Pw8/In7oPu0/LT9Bv77/dv9pv30/Ez8Gvxb/HT8gPyy/D39W/3X/Br8y/sQ/Gn8qfzI/Nr8rvxm/DP8KfzG++b6E/r7+aD6+/qE+sX5v/mA+i77HPvo+hv7xPsa/Cf8WfwH/aD94/37/Qz+hf0K/Iz6Z/qf+7P8evy0+5v7efwl/ST90fzf/F/9Dv4E/x0A7wANAdgA/gCPARACOwJwAvgCcgN7AyYDBgNXA/UDswSQBXwGKgdPB/sGWgbbBQwGKgfGCJsJDAmxB8sG4AYeB9sGOgbpBSUGdwaTBlIGwgX3BHgEyASmBRgGvAU8BUEFWgW8BLQDjQOVBLcF4QVfBQ4F4gQxBBADEAJ6AdcAQABYAEQB2QGyAWIB7wG9Aq0C2wG4AXwCIQPoAqUCUQM4BDQEZAMnA5UDvwMWA2kCjgK9AlUClgGFAdsBfwFTAH7/9f8FAbsBqwFiAegAMQBZ//X+Gf+J/wMAiwD3APkAggDr/17/wf4q/un9Kf5P/ib+3f0L/lb+I/6i/Yj9Pv77/gX/j/4s/vr9t/2C/cj9X/6A/tL95fxg/Eb8AfyD+xH78fr7+iX7cPvP+/n7HPxW/Nf86vxA/C77ffp6+s76Cfsj+0X7dPue+8H7u/tr+7v6CPql+Y75nvni+aj65fvS/MP83/sC++76cPvk+9z7dvvp+lv67PnJ+Rr6ivrf+v36Bfvm+pH6Jfo8+r76Sfs5+wH7Fft7+4X7Fvv2+sr7H/0D/iH+BP7t/Yz9jvxX+7/6z/pV+6372Pux+1v78vqy+sz6N/sB/An9Af6O/qj+pv7b/kH/kP+X/y3/p/5g/rH+VP+i/1X/zv5y/lv+Yf6o/jb/vP/W/6z/2v9PAIUAUAATACsAKwDm/+r/qgB7ASwB0f+5/tD+gv8xANMA3wHPAhUDHwOtA7sEDgVKBGcDggM+BJ4EXwQXBCEEIwTSA10DCwPZAt8CUAMkBOUEIgULBc0EcQTXA4wD8APyBLAF1gXEBcYF3QV+BegETQTsA6gDqAMuBAMFgAUeBSoENwPeAgoDtwOgBHcFvgVeBcsEngQEBWgFTAWOBLQDHQPaAscC3gIfA1QDMgO6Ak0CRQKIAusCJANWA3QDqQP6A0UESwT3A5IDawMyA4UCZgF/ACYAOwBpALgAIwFKAdcAZACHAB8BQQGVAAYAWgA+AaEBQAGuAGgAawCRAA8BpwHOARgB7//f/vz9Ev1e/C78kPzr/BD97vyD/Lj74fqS+vr6f/uu+7H7+vuD/OL86Pyg/EL8w/uP+4X7dfvy+mD6SfqW+nb6aPkI+Cz3CvdR96D3A/h7+BL51PmM+tr6mvpP+pD6PPvt+3T84/zx/Bj8t/qo+VP5Nvk5+dv5SftI/Mr7avqS+ZX5hvkc+Tn5X/qi+zX8WPy+/Cj90/wL/Iv7dPsQ+4b64/pj/Mr91v0U/fb8tP0k/nv9pvzr/GH+0/9nAI4A/gC6AeQBNAHx/5L+LP1E/Of84v5wANb/U/5r/kcA4ABs/lf7/frm/O39cP01/koBqwOZAj8ADgDpAID+sfiR9ef5HgK+BukEcAFtAW8E7QVbA4f+APvD+pP93wGABe4GVwYTBv0HtQozCvYEuP50/bABAQZHBW8BRQBIA9QFzgNP/1H9/P4nAcEBOQI8BKQGkAcXBzIGnARbAeT9pPwc/hsAYgEiA8QFUQcFBt4DwAMIBfoD0v8T/FX8ZQCABiwNqxG8D+oHTQLPBZ0MMgpJ/Wf0v/oHCIML4ANc//4F2Q2OCysDNQCOA1YEIQB0/t4CuwbNBA8CfwTgB7wEhv28+1wBEQZgBKgAfQBTAqoBBf9l/aj89/oD+h39swLVBVsEvgEHAYUClwSnBQ8DW/zD9sT5ywR8DVALmAFB+639vQPMBID9JvNS73D2RAKiBysEawDJAvoFGQNi/n//UQIa/L3wCfExAOsJkP888LPzcQbCDrADYPea+GX+B/zx9u/4vvsA9cjsPPPFAw4IVvts8mz7AAeAALXteOVv713+kwWLBa8CGv9G/qgCgwWu/NLrKOPT6Wz0d/hX+j4BDwdoBLj/xgKDBrr8Sevp56P32gTz//T1qfkNBnMIL/+p+B/5PPb/7djtRPtBByIE/fm++Cj/eP/T9k3vO+396enkjOk8/TUS5haPDMQD+AWKC+IHr/io5qzcMd/56eD0Hfw/AjoJCQ3UCZUDfQDi/sr4sfGJ9E0CPQySCAUBugICCCsBZfAh6bTy//xy+8n5kQalFlwTIf+19Mf9YAMk8uzb9eBoAl4g0yNGFk4NxQ6AESYNAADi7TfhUeXu94QHEgmtBiUOExlEFxIKQAIYA/r94PCw8PQH7R4nGw0HwQHPDWQP3vpr58HoUfJP8vHxAgIAF48XoQaJAMULqwy/84jcn+ipDukmGyAYD00LfhEjEfQDUvF64rXdHeUo9EQCwwsSE0UYCxfqDyEKKwf1/8r0lPSCB3AcJRyXCqMAcAZICLT3teOQ4qLyoQG6CGcPqhaPFYAKpP+M+Sryyult7owFxRxcH4YTyRCOG08d0AVM5HXU1dw47NH0MPsxCEMYNSAIHhsaVxjnEIv9gOje4ynyDAGJADT3+fXG/cP/k/Z28Pf3ywHl/hD3vf53FHgcOAZ+5ZfaI+sJAZYJSwd2BWoJJxLrGh0Z8gOA5F/TvNxl79fzCu3e8I8ERxOlDi8DIQJCBQL9TO998ML/eAPJ8RzknPFsCG4GKO6K5KD4ywtfAcnqReum/wcDR+l61L/kMQtNIAsYHAkdCOIPihCSBHvxJuAD2dDfle289gD6cwDUDOUVMhb+FLsW6RE0AWrzg/erALr1MdvQ0Y3mRP2b+2TvI/WSCGEOEgMw/5IJzgdp62fSLuJfEDwtByAYAjP52wkdGEYL3ujvzX3ReOvv/TP6AfSiBKQjHjFfJKIVEBSYDSXzj9v743j9Gv7k4N3Q+Oh+DaYWewev/tYE9QilBG4BqPup4ynEzcaa/JQ5i0WvI0MMRx/KOzQvI/fwwQK3nNDr7LL2MfVb+xUPsiXIM204XTajKXAPoPR97aX6pANB9zbmIe3ZCTkbsw5G+hj8hw/6FBL/1eN63jzwcge2Fysf+BxfEeUFggZxDzUOy/ki4lHd0OyR/kcG4ghUDtoS/w4wBoEDUgirCHb8c+708OAEcBQWDAP1k+u/++MQbRElAdL53gQQDh4CgutV4xTyhAveIugxIjK5IikTCxOgFG/5pMTepbu9fO+LCSIK9BV+NPRCizArGywarRUA9ITQENd9+5AHvO915J0C9SNZG8v5N+9Z/7IDIu493P3jEfYUAIoK2x/RL98m3hC1CCwOjQcJ7H3TcdQk5yH0VPOE7wXzvfyhBoEO3xTfF8QSuwV8+5X/qQvwB2nq98zc0bbzvQcK+Oriq+3cCskMDeoDz2Lhqw7OKDIhzBCnDu0VVRb4CMDwydPevQ69Q9Jv60D4Lf4rDXcjiCvLGZz/rvXt/cYFvwOCAM8BZ/7u8ZTs6vqVB8jxr8Jsr4rTUgSpBV/d58zJ93c1CEvDNKkbOBcPGcEPr/xU5mDOsb6Nx8XkRPmX9MLrOfkME3cZEAjO+l8BYQkyAE7yQfXsAxUIQQBFAT4RqhndCAvvjOYs7F3kHMleuv7VEg1bMxY1XikVLYI6OTWQEjjnFc6JzuXejvHQ+7b6e/ioA3wY0R52CU/t3uce90AAYvs+/BwKiAzU8wbcl+kMEfAjeBPfAtcOdyOSHpwDVvLX99cDZQfaBKoB+P4OAmoPkhn7C/LtcuL/9/oPwgrZ9/f7chV0HgMKPfdj/fsG3PjI4R3jBvqjBIb4CfBk+ucBtfIF4VjsMg4hIJoQdPbN74kBth22NEw5SiTYAjHy1/75D38FueN3zxTf2gDwFGASMgjNBvwPFhu8HeMUBAjaAfICFwJj/CL6iv5K/sHysOmv8L75we3L1+ne2AvNMRgngv+/8O0KUyonLS4Xb/3P7MLtCwSFG7kR0ub7zCXpZxpLJEEE5u/fAYAXUBBx/+wBywnA+x7oMfRjFz0frfzH3AzmEAOjCIzy6dtA07PVIeZUBfMbsQ9i8HXtEhbXQKE+yBCT3UDFSs6z6u7+1PXM3fXgNA2ANzYxTglx9VMFBRX+DFwBOwXPBpD04uKs6+X+8foP5TzixfsLE8gRkgNO96/rfOX39FISqBWe8A7Spux7LDxNtjLMAcvldOKR51rqqODdxUGzK9H/GKRJwzcXC2kEZyDcJV4DO+OE4O7hJdUc1wb9jR/uDunhRdn9/4odJwyi6jHl7PgSCPILxg7fCv7yydU01M3zRxKhDyHyO9q83jr5oQsd+hvM8q9ky20IbCkcFrz5JwR2J00x8BTT9zb1MPxB9ePrk/cvD6gR6Pel4/3xCBPUHakEMuZX6NMNYjaJQkkudwsO767nm/m5FsogdAZW39zZXATkNRs8yRX08MzyqRLTLCAqwhBE+bz4YA34HA8Qx++y3fboBfwP/XfwEOym85b4VPUg8zH0ju4346HkyvrlELkNG/Qi3bTZ3ObY+OcDE//F7UvjMO5WAFz8Z9xmvU2989rP+7wHBvqm4+bgIQDCKhI2ABYt8F7tXwZQE1kEnfAf7mr4fQJHCWkI2vSi1eXMhPAKJBg1whmb+wMCMydISJhOZj6iKuIldTY7T4JXgULBHND+Y/fHAR8McQSv6+bbgu4zFxUrYRdX/Fr/HhUzFxAB3fGE8svlwb8LpMGwWsuSyVG2usCU7LkGh/Hb0EzSvusl8tzb18jl0N7o4PkM+9nwB+h08SYQgCj/GPboh8ch0HHoyetz4WrrPQyzIWIaQw5xFrEmzCQyE6ULiRamILwahg74C64S8BgpH0ksTTsKPZUvuiZLMS0/wjApBP7h3PFBKIJQu0nlKgkh4zVDR5c1Jwvm7tr3QxaJJi4Yef44+8QWXTUFONki3RQ+HUsqnicEGkYPnwL+5//JXcNU2GLu4/Ha7WrzSv2k/TD2eu573te+NqZvtWTkKgFW8YbV7NlA+AUGJ/GX0AS+cLx7xi/XUOAn0ty53rwW5ZQJoQPb5ZDfT/aZAsHwktu22x/hUtR2wWHC39Fn1sTQCNuC+ScPCgpN+w70rucoyuezLcaG9ekScgpD+1wGPSFKKHMN8+KGw9i+e9MQ7fXwTd6418/5Qy2hPUkfPAGPDCAtHTJxEwH23/FM9mruGOWZ74EJ+BqvHE8d+SZBMVYypCuJIIsOWvp19r8OmTLkQ306aSzoLzBBkUo+PUMd0/zd8O4AOxvyIdEPowR1HchGFlD2LfkMghMFK5gjx/y75JbwT/4976PaU+dHCocVhwBS9ZwNFyrJIiwBrOpS5kDdwM360+v4wRo/GsAFHQArDYIR8fyW3MjDiLlWvdrKstVC1R7Yq/VBJFY31xjY7Vjn7/7ABOTnlcqnx1jNisZ1xS3j9woVEvz63vWbFjg1XypoCHb4CvvO8snh8etiGZs/hD0eKwMzz1DOWWg7WRA499rxyvQp/P0FbAycFLEtaVIdYPJElCO8KHJHNEhoHaH6/gYTIv4aVQC+B9gyt0fCK/YPqyTmTUlOziNGBa4LHRSZAWPuqv5UJBU04CTmFoAfhi6mKqAPsuoEzffF9dfQ7M3qy9q+4AoDWBdp/9/c2+HRAU8CUdgDvSvTMu4g2XeuEbBl3fPxLdD8rVq9ad5A1bSosZMtp/m1YqRFllq0G+q6AsvxP9ud2ivksOB5zau4Sa9MtTjDhcccuaupxLPQ0wPo/OH93bH2OBceGTAAdvP4/Ob6Pt1iyELe7QNFBrro4OAMAzghzQ5Q4fLOZ+PV+SX5TvOyAqMj/D0vRNs7szC5KuIpGiR8D7Lzo+dE8/wA8/p97FjyZQ2AH38Yeg4HGzA1O0FZODMq1B1EDPT5e/qYELUgchS8/D/7GhOnJCoYf/gz4Efcfefl9QH8mve29psMuTRvTgND1CQoFyUdehkD/dvd/NRs3Nbf693c49zxAPtc/gYIkBgzISEenR4LKMUmww3L82/3ixAOGZ0Dyexf77YAcQa1++HtXeQH3w7jAPP//5f7/fT0CnU7v1uXTjMrZRueI30lYQ9x7+HYgM8j0lLgte8s7yni3OQdBSUpADHHJCElKTZAODsceP4w/4QUYRy0DBD79fgqAJ0DEv/n8rTg7NN/3Jv2nwZL+5npVPTHHAs/Oz5tJIAQgBE6HVsg8A6m6xLJnb7o0LDnEehf1yHWXfWXHocxBSz4JAglOxuj/aDigOefB8Uf2hoYCocI3hU8GiQIXupS0j7Hp8pn3tD7oA87DCb+CQDdGV00NDT/GEv9w/lyDAMbqwwd5UXEGMX83Jbnx9Xnw7rTBv6dG7AZhgx3Ck0Lvv3X6VTn6PcJBKD/GPvbBWgTlAwC8oPa4NM51QbTP9Gu2sHuHABiA3D6pfLA+FMLjRn0FBcGBQWCGW0qFxvE8lfYk+Ic/AUAaOlh10HkTQefI6gpXiCxFP0L0wgoDrcYyhukELUELA0VKQ88XS4rCqruZ+r/7hXrSuGq3zjqPvloBskQwhZRF08Y6x9yKPok/xbJDyYXPhztDZ/1SOq37Lnm688lvkvHteJb92/9NACeBdwHsgZnC88VEBcqCS/+GggXHD8exAZQ6q7bvdaszrrE88O5z9rg2fD4/LgBzv3Y+WgBZBHVF3cLmPvC/UQQoxl0B8zkzMz3y43VQdb7y2rHTtgB+7EaRiVzG0YOxQ2iGlsnsyX5FBgEPgPMEXIbOw1Q7FDSS9Bl3Ezhedux3CPyvxHKJcklDByyFs4Zsh9XH3AS4vtw6rjsy/0wBQ/y0tIKxsnUP+f+463Qm8ks3hoARBYNFgEI9PuJ/NAI9BJcC9bybt6u4Hjx2PbZ5XPPushG0P3Vr9QO113ksfUvAZcFyARc/VTyo+9n+8QGmv0F5nTexPXvEYAOyOvQzsDRWuaH7oPkkd0k66IHHyEFK64jPRKkBCoG+hEwFXgGr/VC+csO1hucDzT4yu1y8yD4bfJQ7Lzy/gPcFJsdTxz4EKMBtvxYC+0g6CQMEuEBIQ40LeE5NCDV9t3jVPFNBT4FsvQy7Tj9xRdsJMsZdAaq/wEMdh0JIvIXtQ8wGBwrDDNPJKYK3/nk9fDylele4pTnWPbKAzQMexLoE4kKSP2LANUaDDTuLo0RwgK3GEw5DDklEmvr0Od8/psLs/3r5WPdp+ju98j8Svhy94gFYiAuOMk8oy+PI3An0DLLL0gXM/qF67rpPObh2/XTb9VQ3cvoVvt6EuseERd2CpsS0i2KO7IlXALC+ngWPzC7JDT9D+Ft5B7zXu4V0zm7Vb3j02XnQeuR6+f7RB7vPdFFBjcOJncijSU7HZwDFOej18vT680zwr28kcUl0iHVFdeL7KASfCgXGhMC1wqeMsJISS7zAAn0hg1WIgYSn+t90unRQNkU2NbNCMR2xLnT1uph+RP4C/c+DLoy8kpFQbQnoRw0IpMezwIv38HLk8l9x7++c7umx+/ZvuJz437sXgOaFrcUugYlB4AezTWSM/YatATF/t3/lfn36bPY0szYyVrOhdFHys++eMEs1+Prae637Z0EZi1gQgQyHRldGDIkUxlG9bfbJeA06sLducZqxNTXr+Ka15PO699a/+UOyAmPB3cWNCiIKgkiuR41IFQYJAa0+00B2AT688LbidiR6qvyveHe0v7itgGvB131RvYVHdQ/vDH5COQBLyfLQCcmnfhR79UFqQfN4zXGl9OU8uP1meET4u8Ddh/vE3H3VfPDB3IRwATL/igVri+kKtkLo/rLBd4OvflL2NXRburY/ZXz3t4k3qPt0fGk5SjkU/0HGkkdHxAOFFUtLTnVIQgCff4wDnYIP+YQ0bTltwYWB0ns0eMW/KQQQQXt8fr6ZBfDIAMRkwpXIJ43LTKhGgMRDRsvIpkZ3wwpCKQHSgSa/mj2sec52RreZfucGIgcfxA8E5Yrzz1yM10amg9/Gb0koCG2FLsKsge0Bv0Crf2K+oX6VPk/9PrwpPjRB1kOTgWX/AkFlhTgEiQB1vyVEq4mNh2cBqQHKB6AIl4F/Oln7v364+j0xbPGRvUmGjoJqOO46QIebEB1KFv7ivStE9gkTQ4k8XnzdwodERYC1/rLB8QOyvm+3grhMfpdABrm19I66tAUAB7j/53r1gJ2J/4nRwXM7dX6HxLxEXT/1vYh/a78j+sS3dnjjvSF9TflNN1o78oMqRmjERAK0xHiGxoUZ/7f83f/ng5QDJn/RP/dDPMPN/rc3W3Ultv+3cXWJdgO6+P++QGn+7z8ygJV/tLx/PEFBA4QZASy80/7fhSLGaD8a99X5Jz82Pze3b/J5t9rBmMNH/N15u8BBSRhHlL4muQ8+ZQTew4e+N741hN2I5kTs/75AWoPDQaH6HLbeey5/PzvqNgX3N74Sge68vfWcdgT80oFiQCl+M4AJBB6E7IM9g4tH/4pJx9dCSgAhAfFC6T+7eps5GzsuPI77kDn/eYT6ZrmpuVA8UoFlRAjDngOBSCsN+k9ey5uHdAaxh3VE6D7++U435ThkuAH2S7SdNLb2BDgkuRL6NvwvwCtEQUaqxpsIfI1eUnQRbMtzB4HKoM3pyTx9hvZJeB87XjcbLvfuIbeuwAk/VXrGPecHTgybCH+C3IUaS4mN80qoyRgL1s0SSE2BYH3ffPW4nbF3LXcwjjYL9zM1G/ep/4yFzUOq/Zt+xgl2khzPs8XBgwHLTBNTD2+DZ32YAfWEib0jcZAvWzY3+cO1XPD2tcnACIQHQNu/skU+is2KWwajBzXK/sqBRRmA0wMpRnGDELqzdOg2XHnA+QZ07PMVdtU8Oz4QPSr8L/4hggvFJEVihKEFYohai3ULQcjQxnlGD4aSA6085Xbc9WF257bzdB2yhHW+urY9pD3cfzwDPQbwBvXEl4Rkhf9FWYHAPpc+qEAev4Q9ejwTfTM9EfuyugZ6b/n/eAR34bq8Pcc9+vtrvLnCJIXlQvE9A3xxQPAE8IPtAJV/xIG/Al/Bb3+EPtJ+JLzhu5a7E3usPMy+WT57PLf7eDzzAHZCJoB7vZe95ECYAtnCq0DY/wT9bfvoPK6/f4FTQIK+jf9Bw6jGzAVVP7S6vTokPO8+WvyDueb6BL7cQ4tERkFTPxOALAGmAKq+KD3iQESCTIHagYtEskipCWgFS4BrfbC8w3tE+A61qbXTeLn7gf6MASaDFMQug+8DmsOPwmx+/3taO0Z+3MIzgnDBSEJGBKnEpUHW/6H/gX9uO8n47fqugB+CpX+9PK0+8wMWA0D/mv2WAHZDhoQIwwjEOwYURqmFI0SORVcEoQFwvhc9YL4U/qF+Sj5VPmf+cj8KgT2CXAIowO/BJUM+RI4E6sRJxLPEU8NnAfTBOcDVAI5AmcGxAsPDZgKbgicBs0C1f9vAlsG3QGC9mbzxv4aCcgBmPGX7zr/3wrRBN36+/6LCjgKTf7g+qoHshOsD0IFFgaqDz8QkQIG9ULynvOx7xXr/u6n+Af9rPrc+gwBPQRL/QfytuwZ7mDwf/Ka+AQCTgiSCWoMkhVHH+8f1hVlCGL+3vj79FTvOOYo3KHYf+Al7u31LvQl8Tf0m/m5+Sr2OvYX+sj6h/jq/R4PPx+VH4oUtA+CFqUaZQ+K+xnuq+nB5CzcMdgc3tfmbukD6PLqM/Mo+bL4Q/Z499T7LQDNBO0LlxTtGqAcuRrQFpwRGgusAmX3quod4YveMuAe4M/dX9966Frzq/hD+bz74ABuAt39Xvrx/l4IVg6mD08SNxgyGwAXFBAoDCcJnQHa9//z7vZH923uJ+MH4Dnk6+Us4mzi8u0j/oIHrgmUDtQZkCI1ICQX0hETEigQ5gcw/6D8F/4r/V35xPdO+mf8m/q69yj4LfuL/Fn71vpS/Q0BwAMlBg8KjQ/GFFwY1RiYFEYLGwFM+zz6kPjc8r3twvBK/PIHbAxiC6UKxQonBgD7CPAy7QvyOPfz+Hj7cwOLDtoVqRbnE0UQXgrvAEn38vHJ8I3vBe2L7SP1MQEZC48PDRHiEjcVXhb+FV0UHBGIDEAJTQplDisRFhAuDeoK0QigBSsCQv9/+ofxzeca5GHnYOtC7G/vN/tzCxoVtBTjEboT7xb9FMQOWAqhCfIIWwdWCPsLEwxZBA36ffXi9qH2TPBb6DPmvuvl9Jj8jgAlAuMEFguIEtoVJRPnDjYPPRTOGLUYSRVDEnoRjhH5D70KAwJs+FXxtO1/63foQeUu5PjmDu1d9Gf6wv2f/8QBZQPrAHj5wPK382z8ewWlCXgLhRAfGQgg3CBxG9kRtwXM+Ons7+Kn2uPU99Mi2f3iaO5B+RECNwjKCyINiwvgBV3+dPpS/UkDvwbNB2wL2BJxGEcXoRGCDFYIjAHY97LuGegy4nncNNrQ3czkQusL8Wz4kgDUBV8GdwO8/o34DPOy8bf0vfc891z2zfr+BHYO0hDNC98D2/2P+777p/qY9XLu++rV7pT2Rfvd+WT29fYp/RQFRAn1B/ADUgFAAW8Bwv9D/cf8rv5RAbgDBAcFC30MlwgJAbX6cfig+HT45fYx9RX1Pfdl+iT71PY7747pUOl67BrvnvAY9Cn7VQMyCe0Llw2mD7sRCRJND+0JKgSLAPz++fxo+APzKPE89d78GQPVBFkDIgLHApMDxAGi/SX6rflp+9n9eAGaByYPvRTaFiYXeRfTFogT+w1GCL8DRwBB/rT9s/0o/Zb9ewEiCB4NdQ1MC4kKBwvyCDUCxvkD9fT2Mf4VBu0KPA3pEWAbCiV7JtYdwRK7DS4OMAyLA/L4AvS69lP8Gv+F/S76wfiQ+mD9CP7x+yf6R/uo/lkBoQJ/BJYIwA2nEV8TmhM1EzIS1A+1ChUC7PcF8dDwL/Ua+Kj2pvSh9yr/WwQGAqL62vVl9/b7ff0W+lf1SPTU+PUAagg7DOwM3w1IEdcUiROJC/4AK/q7+L74/vXe8LTtrO9u9bX6qfw0/Er8wv0t/kr7rfZE9FP13PZ79gP2PPnC/0cFxAavBcoEXgQXA90A9/2d+Wjzi+5I7//0N/mZ96Hzk/Qq+5wAFf8J+YL1Vvfp+nH7mvjZ9L7yHPN89hv8QgHJAtMAXf+XAQUGrAfKA2/8yPU68k/xefFt8WfwGe/R7570Z/wDAyIFdQN+AYoBCAPtA8oChP9Q+4n4A/mP/HIAwAI7AxwDqgLrAT8BhADy/TT43PH67xv0EvkI+aL0ovL29h/+1wHfACD/6P9MAo4DlwImAA39bfqk+Wr7ZP67AFsCXQTBBtYHSwenBs4GTQWh/7f3oPKv8iv0ePI77nnsBvA19lT66voB+vz5QPvf/Pj9Pf5L/g3/3wAPAwoFZAeoCpINnQ2GCt8GZAWWBe4ESgIt/+X9P//+AZQDkAISAdEDmAywFbQWig7OBRQFMAt/EMsRURNcGIkdfR2qGHwUDBTWFQoXGRfvFfoSOA4hCcsEKwCZ+sv1qfRo9+X61fsa+n/4iPl+/Hj9WfrV9Wj1xPn0/Bj6BPQA8qL07fRp7i7my+MH50Xpteet5lXp1eyL7FbpA+fy5onntOjy603wefIq8qHzB/r8AQ8GbgW7BAQHnArvC7oKHAnXCLIJbwrsCdQHpQUdBmEKog/eEWMQ9g4IEZwV6Bj0GE0XPhYpFhAWBRXKEpYPwwzpC+oMFA03ClwG4gWFCcsMRwviBh8FngfICXUHywKzAQgGbgvQDAEKGgckB9QIbAi6A+n8Qvhn+B37Mvyn+dz17/OV9OH1Ufaj9Tn0ePIu8cDwMPAV7tvq6uic6ZHr4Oxg7fLta+4M7uDtXu8X8pLzI/Mv89f1uPkR/D/8H/y4/IL9JP4R/ycASQCE/7H/xAEOBDcEmwJPASABywCX/53+6f4AADkBRAPxBiQLbg09DVsM3QwdDvUNUwvVB9EFywUTBu0EcAIfAPj+of7W/pH/lACCAMr+8fzv/Jf+Lf9+/Qf7uvkH+en2vfOx8e/x7PJR80/0bfe1+xb+x/0E/XP+KAGKAuMAxP1J+3v6jvpr+u/4Ffaq8pnwufDN8Ybxxu/W7rzw2/Pj9PTyLPFu8p/1S/fw9ffz9PO29Sr3Kfd89jX2ufaG9/n3cPch9mj1Lfa490f4l/eS9235GPyJ/bj9Mv6//1MBAAIzAkwCsAHU/wz+J/7b/8MAdv+p/dT9KQCFAn0D+wM0BesGoAepB6oIoAvzDiMQ3A76DJAMdg1XDiUOBw2/CxsL0gvFDZcPoQ+MDZsL7wvuDlESORS3FGoV5hZKGDIYxhYVFasTJhJiEDsPag8RELYPfA4oDpMP0xCWD2wMhAqyCzwORA8dDooM5AsBDAgM7wt8C0gKQAhaBmEFmASrAt//5f3K/VP+sf2i+7D5tPgL+Kj22vT684v0efU59Z3z4fF58Zby9/Na9FnzW/Lb8gr1+fav9oz0M/OV9BH3ovck9S/yi/Eo85j0Y/R/8z/ztfPh867z9/Nc9Yj3v/lB+yP8y/xj/g4BcANqA+cAlP4O/74BFAPoAOz8p/py+1H91v3n/EX8Uf3W/5sCmgQ4BfUEEwW8Bi0JEAr3B5sE2AK/AwAFZQROAuwAVAE8AiYC+wCx//n+yv4b/7r/FgDW/3P/DwC6ATcDTgNHApwBAQK5AoECRAHL/wL/kv4M/iD9F/y/+qD47vXk83nzxfPw8nXwNO467i/wD/KO8jLy9fGo8QLxgfDV8J7x4vHF8WbyPPTJ9e71EvW49Cz1hPU89fP09fSg9LbzZPO59LD2HPfR9TX13PZe+eb5gfiU94b47PkX+nz5rPl/+vr6pvsh/uYBCQQuA/wBmwO4BmUHmQRBApoDOgdBCQcJHQnhCqMMPQxqCjkJkQlSCoEK2QnXCHUIqQl/DA4PVA+hDTEMkwyeDZcNOQyyCo8JmgiyB10HogfgB60HhAfvB9UIignlCd4JYwl9CJ4Hdgf9B6sIFQkyCQ8JlgjIByYHyAaoBrMGAgeTB/oH3QeSB1QHGweOBhsG5AVzBQEEEQKGARYDBQUlBasD2wL7A2gF+ATHAtAAcAAcAYsBYwHtAIkAlwBBAf4BwQHj/9D9H/0y/lP/9f5t/U38n/wJ/kb/bf9f/hD9o/x9/bL+F/90/oD9xvwd/Eb7nfpi+mP6G/q0+Xz5cfky+df4Qvm3+k78pvyt+7P6/voW/Lz8XPzy+378Pf3n/HD76vp7/Kn+uv6T/Or6qvtr/Sj9pPo7+F34nPoU/Sz+hv2k+wf6MPoI/E39HvyG+Z/4sPqb/WH+t/yx+q36P/zi/Qr+3fyu+3j7Q/wL/TL9vPzj+6H6Y/kZ+SL6Nvu6+gb5OPhU+bD6Kfrp9zz2R/YU9wn38fWc9Izz1fLT8qTz3vSi9fX1nvYX+K35hfrE+h/7Efzd/A39tPyS/LT8tvw2/OH7P/zw/Nf8pvvQ+qv7v/3+/lD+Dv0t/en+egCUAND/GgA9AoYFKwgJCWQIgwfUBzwJWQrwCZYIIghoCTcLkws2CoMIGwjaCH8JIgkhCJIH8Qe7CBIJuAg5CBsIKwjRB0oHYwdJCKQIQgfzBBgEpwW8B/MHgQbXBRQHswiECPIGwAXEBeAFOQVCBLkDEgP8AdYA/wD2AXMCjQEQAP7+g/5K/oH+Tv8mAIQAqQBvAXICpQKTAY8A6QDdAe4BSABx/rz9a/4q/wb/Jv6i/Xb+gwAiAuQB+v+P/lf/kgH9AlAC7gCrAB4C3gOLBNUDaAJ1Aa4B7QLGAx8DTgFcAGMBawN+BEAECwQDBWcGBQeQBvkFoAVYBf4EHQXOBVIGzAWVBPEDaQRUBUgFEAR4AtQBgAJ7A6EDpgKJAT0BnAHnAcABXQGCAOP+Fv2V/Or9iP+O/zr+bf3+/a3+J/6q/HP7lvq3+ff47Pgq+YT4FPd79rX3PPkF+UT3QfYb90L4r/ei9Vj0C/Wv9m73CPef9hX31/cZ+NH3w/cK+Bb4nPdF94j34Pdi93X2l/Zc+Hf6OPt/+tr5bPqh+wz86fr++Nb3KfhN+b35E/lX+G34IPlm+W753/l3+gr6kPjc9wT5k/qi+pr5pPkY+zX8w/sI+x37Ovt3+tz5Gvsp/YP9ovsv+uz6wPxE/X78w/vD+xD8wfwq/nj/If+8/VP9Ev/DAF0Ajv7//bD/8QEVA/sCfwLZAUMBRgETAroC+AFaAD7/sv+AAKgANACoAIkCuAScBSUF1QTWBVoHjQchBr0E9wSBBtAHqQjjCbELkAyDC6sJEgnHCe4JVAhUBtUF+gYdCFIIUAjtCKgJXAknCGgH6QfdCBYJhwjsB5wH7gb7BYIF9AVzBioGgwWcBR8GuAUaBMgCuALiAsEBAQCz/xMBXgIbAnIB0AHEArECfQGvAPgAggGBAW8BvgGbAXsAeP8bAKcBtQG1/xH+1f7CAPAAA/+4/a3+ZwB3AEH/GP+RANMBlAEpARcCdQMzA6MBIQFwAisDiwEu/y7/WQHkAj8CNAF8ARsCWAHd/8T/IgG0AaAAf/9CAMwBLwJKAd0AcQGeAWgA7/7I/sT/cAAtAM7//f84AK3/YP4R/Tf8evub+sD5T/la+Zj51vkm+nn6fvof+rz5v/nv+aP5AfnG+In5afqO+u/5gflY+ff4E/hx9zX3ufZ79ab0evWJ97D4Yvgv+Kr54vud/H77ZPq7+rb7nPtu+nv5nPkd+jX6Tfr3+uT76fvg+vX5GvoK+6/7y/vw+1r8kvya/Az9bv7B/67/XP5V/Z79Hv46/cv6qfgi+Ov4pPmv+aX5Cvr7+gn8Jf3r/fr92PxX+5T6FvvG+5n7rfqD+pb78fwY/Sv8bvut+1r8mfx6/Kv8K/1j/fn8sPxF/W7+2f4E/uP8D/2R/t3/sv+J/hf+u/6N/4T/Bv/3/qD/jQB5AS0CRAKZAcwArAABAecAXgBxAH8BdgJwAjoC8AJFBMUEYQQ+BAoFxgWaBS8FgQWOBp8HWgjcCMsIHwi1B2MIkwmWCf4HCwYTBSsFpwUbBi8G1AWVBYcGJAibCO4G2ASMBIEFZQXGA7oCiAO4BIgEwwMSBEsFcAVPBGoDxwMTBPwCSAGWADkBDgJHAjUCVwLNAmUDKQSxBJkE0gPzApAC0wJcA6wDggMwA04DHgThBOIEZwQBBJ0DfQIDAYgAbgEEAusAXf/E/ygCFASeAygCxwGzAjMDmgKkAe4A5f9V/mX9IP6p/wgAFv+I/rn/LQG+AH3+H/1D/kYAVACI/rf9Pf/6ACoAof2a/On9DP/Y/f77HvzV/Vb+vfxl+/37J/2x/B37y/rr+1v8oPqF+Gb4XPrF+zb7ffn7+Gn6Z/zv/HT7bPmv+Er5APrM+Uv5TPmU+Y75jvlt+oT7RfuZ+Z346fnJ+4T7//g+9zn4gvpZ+1f6XfnB+fr62vsM/Nr7Rftt+tP59/l++nP6m/mj+In4Zfls+tH6hPof+i76Yvot+pP5U/nX+ZD6xvrQ+qb7Fv3c/Rz9BPwd/F79Cv43/d77aPus+5L7s/oW+lr65voN+177pvxb/rD+Vf0w/CX9Kf+T/9j9X/xY/Vj/pv/J/YL8bf1g/wcAgP8e/2//Yv/T/vn+VQDFAe8BbwGuAf4CMwSCBPkDXQMFA2IDNgRtBD0DjwGBAXwDawVABeMDrwMqBWcG1wVIBG8DkQP8A2UEDQWuBYAFZwRlA3QDHQR1BNgDvgL1AQMCsAJzA9AD2wPkAwcEbwRTBYgGMgeDBiIFZwRkBKwDjwHh/5UABQOZBKgE5ASUBg0IhwewBcAE0wQ4BJQC3AFVA0YFhQVtBEcEdwUwBicFigM1A+gDGAQoAyMCOQIIA9UDQwT9BC8GTQfTB9UH3gftBwYHyQQtAhIBCgK9A1kEeANAAtMBSwI1A9UDnANbAukApQCqAZQC8QGMADcAZgEOAu8AEP8F/98AOQI+ATr/ff48/zz/c/2V+5H7r/ym/Cv7cfqq+wn9bfy1+m765/ur/Ef7ovm3+e767/rU+Y/5w/qQ+8z60Pky+iP7tvos+ZD4eflD+pH5Y/hY+GX5Vvqj+sz6/frV+nr6efon+9/7NPxX/K/8Df1E/U39Mv3F/CT87fs9/Nb8+fwB/SL9Ff2W/BP8ZfwU/fX8Fvzd+xf9VP7v/Vb8VPvG+6T8Wf3+/ZD+Q/4X/aH8yf0s/5P+ZPwL+7z77PzH/Mf7Pfs/+9X6PPq0+jD8D/1n/IT76/sQ/Vr9tfye/KD9ZP6T/Qz8Rvu/+yb8zvs9+y77kPuM++r6PPpI+kn7n/x0/Y/9rf2h/hMAvgAMAPH+nP4d/07/+P7i/qv/xQAcAboAVgB3APgA0AEDAwoE/QPRAhsCPgOnBSAHlQYoBegE1wW0BlsGnAUzBSIFsAQjBFUELQW+BXsFlAXOBokI4wijB0AGCgaQBnkGeQVeBLcDkgOxAwgEMQSqA70CXAIaAygEnQR2BHME7wRjBWgFAQWDBPQDmwOUA9wD9APNA5cDlQNHA3sCcAHWAMUA/ACOAZ4C7QPJBPcE+gQdBfwENAT2AvIBaAFAAXgB2QHyAaEBewE5AjEDMAMCAi4BxgHaAuoC/AGEAS8CxQJ0AggCnQLHA68DBAI7AP//kABUAPP+9v2y/m4AXwHhAAwAGgCkAMIA6P/U/u/95vzE+1X7Pvyz/eP9sPy7+2D8pP14/ZH73/m4+VT6FvoH+bL4a/n9+Wv5ivi++I/5iflo+Lj3iPi5+aj5gfjW90X4v/iO+Hn4T/l/+sP6a/qS+jr7APsp+R33dfYC90n3u/Zg9k33X/m0+yH9Hf35+x37g/t+/Dj8jfpl+Un6Cvyx/CL8JPwk/av9z/zY+xn81vyb/Ib7LPuV+6H7v/p0+pn7Vf32/bD9qv1N/sj+Z/6W/dD8M/yr+2H7WPuD++X7YPyY/B/8g/uf+1H8U/w6+0/60Pr5+3H8Sfwz/Tv/nAADAL7+nv6X/9j/wP58/SX9uf00/or+5f6I/10AIwGOAXwBZQHoAcQC8wJTAvsBxQKcAzIDJAKJAnoEigU1BCMCLALuA2IETQIoALsAKQMwBMcCOQHdAbADUQRbA90C/AN8BZAFoQR5BH4FbQZPBtYF8wUgBowFkQR/BEIFogXFBNoDFgQEBS4FPAR/A9oD7wRhBe0EFgS1A/UDcwSxBEwEngMNA9gCtAJ3AkMCDgKTAcYAXgDdAK0BvQHdABgATwAPAWkBRAE3AbUBbgLgAs4CTQJ5AacARwBPAIUAbAA4ACwAmwASASIBbQC2/+v/YwHmAhYDEQJtATsCmgPWA8EChwFFAWsBMwGUAHwAXAGrAnsDYwPdApYC6wI2A9gCKgI7AnMDmwRBBKQCZgF8ARoCCAJQAdQAqwBdAKD/Qv+F/+f/r/9b/4L/MABCALH/Qf+0/xgASf9h/R78Vfzn/Er8qPrs+dn6IPzv+3P6Z/m7+Yr6n/ow+i365fqp+9r7lPsX+0r6VPmP+DP46PdE96X2uPam99P4ufll+rz6i/qC+Wf4//eN+Bz5+/hW+Af4afgW+YT5t/kn+t/6wvs6/E/87vtU+7b6V/pI+kj6H/r7+Ub6I/sZ/Mj8C/0J/Zv8iPs9+n750flv+or6P/rC+p/8kv4Y/xn+Tf2q/U3+r/0D/Nv6DPuk+6X7h/s8/J39gv6F/nL+3v46/wL/Wf7X/V79v/xv/Ob87f2F/rv+L/9MADgBcQE+ATMBNwENASsB+QHyAigDwAL9AjAEPQUpBYoEnAR0BbYF6QS5A3QDGATHBOwErgS7BBwFWgUnBbgEcQQ7BKgDvwJlAukCqANyA4oC8wFqAigDUwP+AqkCrQK9AtcCxAJLAmkB4AAxAccBvAE2AWABWQL9AnoCjgEuATEB2wB8ANgAtwHyAYUBcwFjAkADKwNvAiUCOgIyAuwB7QEvAm0CwwK1A70E9AQjBHMDqAM+BEQE0gOmAxQEzwSHBQAGBAbgBU8GigdgCJgH/gVIBeAF7wV+BM4ClgI9AxgD6QFbAQUCwQK7ApcCcANdBEYEOQOqAugCPAP/As8CBAM1A+ICNwKCAZ8Af//f/gb/Pf94/lH9C/20/bz9d/xn+xP8s/36/Wj80vrT+p77YvsI+gr5hfmZ+iX7D/sC+077WvsT++X6Ovua+0r7evoM+qD6nfvt+0P7avp2+kb72PtJ+z/6CPo2+7j8JP1g/In7gvsj/Jz8zvzj/NP8svzG/G/95f1K/bv7DPsQ/Jr91f3m/KH8qP1n/o/92Psy+737GvyS+/36LPt9+yP7Tfrk+eD5w/mj+Tz6Y/sQ/Kv7M/uZ+2X8gvyk+wL7D/tq+2P7S/uT+wj8G/y/+4L7fft++4z7Dvzz/Hr9Tv0w/dL9tf6S/lb9dfwR/Yf+QP/N/uj9Yf0Z/dn84fx1/QX+Nf4C/k/++v6H/3r/Wf+N/zkA+gCjASYC8QEIAfj/wP+GAFMBMAFaAMH/PwA/AcIBIAEgAP7/FgFbAtMCpQLDAiQDDANMAucBPwKNAiMC7gH7Aj8EvwO9AcgAHQLcA54DRgIVAn0DYgTyA5QDWQQ8BRgFvgRnBSEGMgXgApMBFALYAmMCwgFwAh8EBwXVBH8EoQRdBDUDFAJHArID0gSnBLsDeAOXBM0FrwUABLcCWQMSBawFigRpAwAEoAVZBmgFJATRA7QEJAaeB7AI0QiSB3YFogMZA40DogPbAqACjgRcB0wHsgMnASgFKw5QFW8W4BT4FJ0VHROQDtAM2Q4KEHUNDwoWCHwD2PcY6hXlvuud9OP1ZvHG75byZfIK6tXezdi52JDY0dXx0xHWa9q7363oO/UA/IXzu+Ip3/DznBGcHvUVlAr2DDoYth78HeActRtUFDAIfQGeAwEFe/7B9g32lPdt8djmu+RH7U/1Xfcy/dANyB23HIkLavoR84PxcfG+9QH/HAW1Apj/fAf+GB4mUiVRG1AUOhYIHcsfIBp3ELYLhA4tEjsQugtnDMgSfxiHGh8bfhjrC9P2eedI6Yb24wFzCJwPAxXZD2sBYPcj9x/1+ugs3knjbe+G6qHPBbbesvu+ecSdvX24n8CF0KvcvuF85GPnkugD51vlAObK5ujjuN4r3l/mVfBG8Xnpo+ZQ8fr+pP6s8Grnf+7K/HcDIgED/gP9svsr/DYCBQgmBJb7KACeFaAmSCCyDrkNVSIgNFQw9yCeGrwfwiOIIRAgBSNeJDog8hvmHNkftR91HoIg4iN8ItwbYRXWEYEPtA5aFHAhey4lMrwr0SKHHqcflyE4Hy8XKA46CuYLhAy5B/oA8PxM+PrteONG5IvuTPFi5PnX/N2z7H7qadXDyZfYf+vm48bI87wXzK/bIdayysXRPeMu4mLKvbdzvZPO9ded3Ejn1O8i56bVEdbE7nkGRwdR+lT0DPfA90L4YwM+E54T3wEO9noAyBFwEwIL6g0dG1ob4Qim/awMdiKmHxQGmfT++dsEUgMa/QwBswodCxwEVgbRFrAmfCo0KvYz2kajVcJX/k+ORcM9Sju9PHM8YTeCMVkvKy1xJK4YVRUwHXUlUSS8HDMWrxHWDfMO9BahG28QNvos62nq5OsR5Q3czdk72QPR3sZayHjUytqY06HJHcg4zPXPXNby4RXp0eHd023PgdRx03rHisDhyv3bMuLB3kzgEuo57y3oP96C3Vrkhenw6Y7qku5D9FH5ef7/BFUNrBUGGjEWCgydA/oCyQd/DZ0VVSIwLJgn4RbAC7cRgB5xIV8aCReBGy4c9RDTA6EDcRBeHIAdJxU2Cdb99vfd+/4FxAo/BPD6BfuNAkMDK/e36hHtivu6BDb/mPPS7dDsK+hC4dXiC+9T9/7tfNmuzaLU2eQK8Ebyc/C07uft3O6i8ffzWfRf9XT5Kf7kAA8FOQ40FRMPxv9b+/4LqyEvJs4afhMmGNsbHBbyEtQeny/pMUQmKSBiJ2Qt0CRmFmESThnJHl8dYxoSGAcSwgh4BF8IHAw5CboEyAUqCIAEUP60/1YHggiA/yD5Xv/1CF4GwfjW7zDyvvX38E7pf+ih7M7rg+R134bhyuSO42DiBOiq8Dbx6uf0357h7+YS5yTnmvJNBXYKxPmI52/rQ/7hAwL19urI+MwN3g4FAPD8oAwWGBkQNQWHCgkWEBK6AUL88AfZEl8R3w1FEZgRHAVR9lf0Dfoy+DLwjfBX+Q35tuhU1wPTP9eV2p7eVeWe5RbaTdGX27vu7PDU3kHRyNgS6EDsxeh16wvzgvMV7d7r9PL597X10/LH84HzbPBt87YAtgwQCyIBPv5zBbAL3QmFBXYFmggEC2wNxhH8FmQaahvHGvEZDxxEIx8rDywnJh8imSSAJ5UljiSmK/M0mzRpK9smbiy0MVssQCFlG+8bKhwRGmUa7B3iHi4ZOBH0DY8Q9RIvDnkCSfjB96T9k/7E9s7wN/VV/Fn5mPAC8Sz6LfqW6kTex+PE7NbjLtFKzxThQuyY4/XZn+D46Nneuc2M0dzo8PST6Mba3ODt7vPuiOWA59H1kvwO9Dvsz/Fv+3v8cPlG/YYENQMY+oL1B/nb+if3A/gcBPwP6Q0wA7ABzgwuFVgQ8gjZDSUbJSDMF3sOBQ5kEC8M4ASFBEgLCg/2CtkEVQLEAfcAHAInBeUDb/wQ+JH+hgeQBJH36vEe+7sFLARX++v3+/kv+VH2CfqqAgkEDPvo9KX6UgPeAqf9/v/SCOQLYAb1A1cLCBOFEOAH+wQOCooOiAzWBq0C9wE0BNsHXglXBsEBiQFGBh4Kdwn6BxkKiw2CDDgGz//V/ZX/pQFJASn+Dvrl96/4Ifps+Wf3+fY2+M/3GfQJ8PTulfAL8iPyovGC8AbuROtf63nwo/f7+qb2o+3i54bqt/Fk9FDuPeWR4ZDkVOjN6CToauoP79nxTfBM7ELqJ+0q9CD7Ef4d/cn79Px8ANwEVAijCIEECQCEAtcMkhXeE0UMBwtkErwXuxOxDYMPcBYfGP0Shg5+DS0KjAMkAsUJyQ80Cdb8efuGBxYRtgztAioCLgksCs3/pPRy8y/5JPtr9oDydPXS+8f9gfnI9Pn0nfhu+tL4RfeH+F761PlN+J35W/0e/079mfv3/KL+if33+5T+owOUBDkAGf3zAPkHKAuSCfEHQQjzB+8FDgWuBmYH0wRIAkMEGgnfClgIbgYtCB8KyQdpA94CfwcTDG4MnwpAC8YOxBCsDfUGpQE7AXMEZgadAxf+4fuKADgIoAvABx8B+v1B//cAuP/r/Af8aP6WAZIBK/1o96j1r/nB/5AChgFVANgAkAAM/tL8IAAbBNABOvrj9vb8/wTLBPn9XfsjAe8GQwSo/H/5FP1gAX4C3gLMBIkF5gIaAM8BdgZNCHIFIQJzAoIFsgekB2MGGQUYBH4DPgPPAgICVAEJAQEBgwEUA0cEHgJs/Cr4jfnf/Qz+o/jz8+f0WPgQ+FD0Y/IR9FL1PPNi8C/wlPGR8bzvdO5E7hzutO3e7ZPuve5U7iTu2u3l7AjtQ/Bz9JD0hvAd79n0TPye/Gz2WfMI+XEByAMUAIj9JQCkBJEG9AWwBeAGAwh3BxwF3QKyAgAFfAcRCFEHUgciCJMHGAUyA8oDfAVjBvoGfAhsCbwHbASUAuwB1f9L/En7P/4XARcAvv0//oUA1v/1+wT6Pvx+/tz8dfmw+F76Gvtv+hL7nv06/wz+Lfw8/BT+nP/g/wj/x/0U/Z/9Cv6d/D/6xvrN/moBx/5b+qv6G/+6AOv8ovkf/I0ANAAg/BL71P7gAZQAvf5NABsDvAJcAEMAYQLTAsUAcwCLA0QGKwXyAtMDgQbaBgQF3AVHCrQM6AiwAkMBRgWcCNUG9gJOArQFCQnVCOkFEAM0AsICsgN9BG0FWQZLBncE4wG5AOUBpQPGA2sChAEkAgMD5gL4AS0BBwHRAcYDzAVsBc0BPP6n/p8CQAUlBHQCVARuCOMJUwfTBOgF+QjTCaAHLAXDBM0FkwbTBhgHpwfhB2sHigY6BjEH7whqCVUH/QNnAnIDwgTIAz0Bwv8mAH4AR/9m/Y783/z8/CP8g/oC+Uf40vj7+W76V/nW9133n/cR93X1zfQA9kf3PvbR8xvzNfV29xT3F/XE9E33NPrU+mr5lfjR+UL8w/0m/bT6SPjn91L6lv3G/h79BPt2+wX+vv/l/vj8YvxX/Xn+/v57/9D/PP+v/aj8S/2i/v7+8P2i/FD8K/3N/h8ADwBx/hL9vf35/zUBQQDT/qD+9f7m/bj7h/oF+677rvtN/Ej+v/9V/jL7v/kQ+138G/uk+Eb4fvqZ/DX8UvoV+dT4Sfgh9+v2aPgV+vT5i/g1+Gv52fkG+Fb2GPiA/L/+yfwR+g/75/7XAFX/bP38/U7/3P6o/a/+qAEGAzUBS/9QAFMD6QQuBGoD/QPDBB0EuAJZAh8DtwM9A6MCJgN7BCsFYgQGA6YCjwObBIQEuQNbA8oDLQTVA0MDOQOaA5gDYAO3AyEFrgY7B1UG7ATZA5UDuAOwA14D+gLXAu8COwPOA60EWgVgBeUEfgR1BLgElAXwBs0HwQZhBEcDAwWZB1oIQAe3BiwHuwZzBOkCCQQ2BksGuQR8BHYG2QetBtQEwAQSBlAGCAWTA9kCBQL2AFYARwDJ/9/+xf79/xABvwACABIANQAv/7T92v1S/7n/Kf6v/CP9O/7P/SP8Lvtw+9j7LPxP/fz+Wf/Z/af8g/30/pn+rfzw+039tP5n/lX9fP18/sz+x/3q/Pb8TP0r/dj88/wn/av8svsc+z/7x/sY/Ij8D/1e/QP9KPyS+4f7dvvZ+sD5B/k1+fz5f/o/+oH56fgR+fX5I/ue+9j6SPlk+Nn43/nv+bP4XPcM94P39ffR91D3v/Zx9uT2/fe8+Fj4M/fb9sX36fhq+Xf56/lc+jv6m/mJ+Q76bvqK+uj6CfzG/G38dPsV+4/7Tvwi/Sf+Jv9o/yr/Yv8wAMcATwCs/5j/FQBIAH4AAwF4AcQAdv/9/u3/qAAPADD/t/88AakBRwDp/h3/bwANAY0Axf9C/7z+A/6q/QT+hP6D/jT+bv43/+7/x/8b/8n+T/9eABsBPAERARcBRQH1AFkACgD7AKUC6wMBBHEDKQOLAxUEcAS2BFoFWwY2B3AHKQcmB/MHRAn/CYsJiQg7CB8JXArgCoUK9Qm5CakJqwnvCdQKygs8DM4LaguNCzwMggwxDHIL0gocCkUJhQhaCJwIzQiJCBAIeAe2BtwFigXvBVwG9QXtBEEEMAQDBDMDTgK+AQ8Bjv8F/qz9k/4e/1P++/xo/LT8EP0u/Vn9gv0t/X38KfyA/A/9Uv2O/d/92P0//Zj8dPxZ/Hz7OPqP+cL5Gvoy+sb6EPwQ/dz8Pfyf/BX+F/++/r79Jv3j/KH8Xfy3/Eb9VP2x/DD8T/yx/Ir88Ps4++H6qvqu+tL6Pfuv+w38QPxQ/EX8QPxc/IP8a/wE/EH7ePqs+Rn5wPi6+Nj47PjU+LL4s/j0+Cn5LfkT+UD5tvnu+Zn5PfmC+Xf61vpK+lb5Ufn0+Uv6jfmE+Cr4sPh/+Sj6q/ra+qX6HPru+TT6xPpB+wX89Pye/UH9V/zL+xj8Z/wq/LT76/uh/Or8RvyS+5n7QPyp/KD8yPyD/Vv+uv6s/qz+vf6W/jb+Gf5i/mb+nf16/BH8u/zV/ZH++f5W/6n/d/8J/9n+Pf+t/6j/fv/J/20AxgB+ACkAOQBgAPr/Ov/a/iL/Rf+4/vL9+f0N/2YATwHkAWUCzwKcAgECVgEEAcwAZQAHANP/EwBqAP4ArAFOAqACgQJjApwCIAOnAwIEQQRcBCQE3QMFBNwEuQXcBWoFJAVgBT4FQQQZA+ECfAOJA+MCuAJyBPsGfQhgCBAIjgg4CfAI5QcSB4YG0gUHBS8FVAYxB78GtQViBfEFRwYDBtsFTQbRBo8G2gV5BaIF0wX0BUgG7gYWB5EGCQZFBukGswZQBe8DlQMzBJsEkQSTBAEFMwWlBKQDFQPPAiMC3AAAADoA+QARAVIAkf9G///+ZP7S/bT9ov0c/VT8JfyJ/LP8Qfy5+9z7Ufxz/Bf8q/tW+wP7y/oK+3v7e/vE+hX6TPoG+6P7jvt1+4X7yPsP/Hn8EP1A/ZX8fvvZ+hD7bPsj+1n6z/kZ+oP6Xvqi+Rf5P/l6+TT5k/iF+B/5ufm8+eD5pvqY+2H7I/pT+Qn6Y/vP+w/7b/qz+nD7tvuq+837Lfwj/I77/Prw+jr7Ifun+lT6x/re+9v8Jf3n/Jf8hPx2/B78mvsY+8L6cvo9+jj6cfqx+gD7Rvt9+3n7PvsX+y/7Tvt8++b7h/zu/Nz85PzX/U7/JgDA/xv/If+x/+D/r//F/00AcwDq/3r/FgBYAR8C6wE/Ad8A4wBPAe4BcAJEAlYBbgAuAIcAzQCyAIsAnwDiACMBFQHPACYAdf8H/yP/lv8eAIsA2gAtAZQBCgJZAiECkwEaASoBigHtASACbAK4AgMDNwOfAy4EmQTuBHcFbwYuB/YGwgVaBI8DeQPbA0oElASSBIAEzgRzBdcFWgVSBJ0DxgM7BFYEEAQBBFkErgRPBHkDsgKCAooCYQLhAX8BZAFfARIBrgCFAOAASQGBAW8BiQHsAYoCAAMkAwID6gLaArkCNgJcAXgA0/+C/6X/MQDoAEIBHQEZAakBgwKlAg0CcgGgAe4BtAH5AHMAWQArANb/HQAkAVUCugJoAg8CngHGAHn/kf5+/tb+G/86/2v/j/9d/xr/5/6x/vf9Ev22/Gn9c/4j/xH/mf73/WX9OP1p/bD9ZP3D/Gr8pPzT/C784vrS+ZP55Pk8+pj6CPts+2j7Fvv1+iH7+foh+iv5AfnC+VP69Pkc+cT4HflJ+dz4QPhc+PT4WfkG+YT4bvju+Hf5p/l4+S35zvhR+MX3ovcy+Bz5bvn6+GP4q/is+VD6PfoR+qz6iPuW+6360vni+Xz60vra+gj7p/s2/Ib8efxI/Kz7B/vE+nr7efzj/GH8x/sz/JD9+/5B/4L+zf3s/aP+0/4W/iL9If0l/mn/PgDHAGsBzgGhAfkAzQBqAUoCjQJ1AqUCnwOKBM8ETwTPA78DBARYBHMETgS3AwADngLeAmADagPfAlACOgKtAt8CvwJLAiACbQIUA58DkgPrAhACmAF/AXQBLAHXAKwA3ABKAegBWgJWAusBzQF7AoMDzwPjAnUBoACJALAAlgCDANAAeAHzAd4BOAE7AG7/Cv8P/xH/y/5y/pn+f//OAOgBfQK6AskCwQJ9AjsCKgKLAggDeAPKA0sEIgXYBe0FPgV3BGoEGwXeBfIFfwU2BZgFbgYYB00HAgetBqMGHQfbByAIugcWB+IGMQdXByQH3gbpBvcG4wbXBjAHhwdXB+wGuQazBtEF/QM9Ao0BhgEZATYAaP8D/5H+M/5U/jj/zP+j/+j+cf5Y/jb+AP7E/ZT9Vv0x/TT9Dv2n/Ej8SPxb/Cr8Hvyc/Cz93/wA/K37OPyj/HL8XvzX/Cj9vPxo/ND8G/1L/Db73/pB+oX3w/Pr8azyUfNc8ujxnPPB9R/2f/ZA+c78Qf0s+xn7Tv6JAAL/9PzC/Xf/qv5l/Y3/SAOgArj9lPtW/0sDiAFa/UP9rgB2AhkCSASmCNMI9gLV/iYDEgtHDWMJ1weeDNoRPBEIDJEH+AQqAif/2P1l/fb6N/b98k3zD/X39KfzafPO9Or1cfU39AHzDPIt8dfwKPFm8bzwG+8r7Tjszex67g/vv+wg6NvjJuJw4unidOKi4XbheOJ85Pfm+OhH6o7rwO2M8KjybPNz8/nzRvUs9+f5t/0cAm0FpAZYBm8GTAhuCz0Oew+7D3MQJBKlE+cTYxPQE44VHRcjFxsWlBUGFkIWnxXuFMsVsBhgHDcfWSASIFQfXR7sHNoayhhsF2EWNhTyEDQO5Q1lD4kQLRBTDzsPnQ9WD0sO+wzFCxcKvQfdBJAB5v2a+pH4zfcW9/X1aPVc9ub3+/ch9uzz9PJE86XzXPOK8qTxgPG08gv1VPdY+E34I/hf+Lb4//jY+Wb7JP08/uj+xf8HASICqgLFAt0CMwMWBKAFsQd/CYkK2griCtgKogpnClgK1Ap7CwQMGAyiC7UKfwmsCLMIlgl0CpAK1QnrCBMIDweFBdIDfAKfAe4AeQC/AMgB1QI1AxoDGQPuAqcBC/9I/Kr6Sfrt+dX4NvcS9tL1KvZp9lH2Afbt9fr1t/Xe9J3ze/J08Srwgu7b7LPrLetK6//rJe0O7knu1+357Lbr9+lW6MHnLeiw6InoXuj96PrpCer26CnoAukd6xDtDO597uHuce8e8Afxv/G88RrxK/G08vP0NvZW9qD2HPgD+tX6mvpn+hj7UfyU/fP+nAD/AXECNAI1AkEDMAUkB3wIughpCCsInwhdCakJdwl+CWkKywsBDeINsw6KD/oPKhCTEHARQRK2EiYTXBTgFeoWpRapFasU8xMpE1ESxxEVEggTAxRyFA4U+hJVEZgPVA4DDnkOvw5iDpoNZw0jDvsOGA8GDnAM1gpuCUAIkgd8B6YHPwfiBfYDSAIXAR4A7f7Y/WH9hv1f/Tf8EfoK+Mf2kvbm9oz3+ffc9/P2vfXs9BT1zfV79pH2Nvba9Y31CvUr9H/zmfNr9BX1ePVY9mH4mPpb+0z6H/ks+QT6C/oI+T/4s/jj+dT6h/uK/N79mP43/lb9/PzK/Wz/AAGxATsBOwDo/58ACgIJA18DSQM7A3gDQgS5BaIH4AjiCAAIlgc9CEwJuAlUCQ8JaAkkCn4KegpkClMK7gksCZkIdQhECHoHTQasBc0FIAbWBeEEtgOGAoQBzACMAHwA9P/V/lf96PuK+jn5+/fb9ob12PP28VvwB+/D7azsLOyS7GDtve1l7dfsjex27A7sG+v/6VjpSemQ6dzpIuqg6k3r/OuG7Abthu3Y7cfta+1E7bjtru6+72HwWfDf76nvePB58tD0evZD9/D3P/kA+2v8Rv0G/hf/VgBUASECHANXBKEFvQa8B4kIAQkxCZoJTgr1CvcKsAqdCtsK0AqSCt4KMwyhDf0NQg28DAUNgg1BDXYM4wvOC44L2AoRCqwJkwlVCc4IWAgnCBoIAQinB0wHIAdOB6IHtwdcB8EGIgacBUkFNwVRBRUFKQQaA60CCgNGA7sC7wG0AT8CnQJ3AhsC9AHEATkBwQDKACUBugBT/9X9Qv2u/Un+0/5g/xAAdABxAJAAJQHgAe4BNwFyACgAZADYAH0BPQKxArYC1gKhA+8EyQXXBZQFXAXpBOUD/gIPA9sDVAQJBMoDXQRoBRYGVgaoBhMHLwfeBqUG5QYVB+EGQAbWBc8FMAbbBo8HxgceB+8F3gQ/BNsDfAMnA6QCvwHGAGkA/gDCAdcBKAEuAEL/Yf7W/en9Uf43/oj99fw4/aL9Hv2e+xH6c/lv+Uf5lvii9+H2dPYl9q714fRp9LX05vX49hP3N/Yu9Zj0RfTj81jz7/K08o3ybfKE8t7yO/P/8ifyPPEE8ZfxJ/L+8WbxOfHa8a7yAPPn8gzzi/MS9Eb0UvSN9Of0UvXe9bX2jPf59+D3w/cu+DX5ZPpC+9L7T/zj/Fn9dP12/av9LP5t/mL+a/4J/6f/eP+4/ob+lf/CANAA2v8u/3D/3P/d//D/twD3AbwCEQN7AxEEIQRvA8sC/AKRA6ED/gJvAmsCrQLeAgADVgOiA88DzQPSA6QDQgP2AiwDpwPYA48DSQNfA8EDKQSSBPoEGgXUBIIEgQSzBIwEBQSPA3oDewNqAzUDCAOAAp8B5gD1AHkBnAEhAbIA3QBAAVoBOAFqAcEB0wGHAYQBGgLRAgcDygKVApUCswIEA7gDjgTtBNQE+ATlBQAHKAdLBkIFAwVIBXoFeQXeBcYG9AfRCJsJUwrBClIKQQlpCHkIJQm9Ce0JDgpDClsKSwprCjULVAwRDRYNvgx0DP8LOQteCiYKewqPCskJpQgFCAoI+wdOB5gGZwa9BqEGxAWZBMADUgPlAqYCywJbA7QDdAPbAkYCqQGqAGL/YP6+/S79Pfwz+7X6uvrp+rX6R/rI+UL5nPgM+Lb3fffS9rv1yvTB9Gf15/WE9YD0g/P28qnyhfJn8k7y/vFq8f3w1fDC8Evwxe/W77Hwr/Ep8lDykfLy8vvy5fI78zL05/TQ9CX07fNW9PH0I/Un9Wr1PvZ796r4OfkQ+a34yPhu+Sj6wfqR+5n8QP0L/YP8kfxF/cP92/3g/TH+X/46/jr+8f7G/wgA5P8lACcBHgKZAtgCLwNrA1sDWQPRA10EWASxA9MCOQLKAc0BMAKoAlQChgHyAEABswGdATQBQQHBAQ4C0gFwATwBJwEjAWgBsgFyAWcAdP8//2T/2v6o/eD8YP13/ij//f6f/oT+i/46/oz96Pzk/Hr9K/51/kz+Dv7g/dT9Bv7C/t//tgDCAG0AYACnANsArgCrADMBLQI+A1kETQX0BQEGDQZmBhYHbwdLBxMHFAc8B1YHaQeQB58HdwdvB7UHFQj2B3IHQwfsBxwJzgmUCdAISgh5CP8IPAnsCJUIpwgrCWEJEglyCAIIkQcBB0gG1gV2BQwFowT5BC4GiAf3B4YH6AbLBsMGUwZ4BeME8wReBYYFOgW7BDkEyQM6A9QCtQLMAucC7QIxA5IDkQO2AkoBEgBw/zr/CP/1/gn/L/9O/3L/zf8fAAcAXP9h/oL9+fzZ/LX8HvwF+zD6V/om+2P7kvqV+Zn5hPo1+yn7tPpv+hr6j/kQ+Tj5z/lR+lX6Ivrn+ZH54/gN+Hb3bPfk90r4KfiB9/b2C/eX9wb4Hvg0+Fn4Y/hN+ID4L/mc+SD5+Pcu90T3x/cC+P331/fm9xD4evj9+DH5Avnu+GH5D/pR+ib6M/qt+hj79Pq7+u/6rftN/Jv8tvzW/O789fwD/UL9ef2s/bf9nf1j/TX9Sf12/Uf9svwn/Db8pPwM/TD9Xf2z/eP9tv05/dP8rvzZ/Cf9eP17/VX9LP2I/TP+yf63/v/9K/3N/BL9bf16/Tj9bf07/iX/fP86/wX/JP9W/1v/eP/S/yYAAAC9/+L/uwCFAdoBywHuAUsCmgK3AtECAQMoA0wDtgOhBIkFxQVDBbwE/gT6BeIGIgfdBogGfwaEBoYGeQaABpoG1AY9B9gHOghHCBUIQAjtCLUJEgrpCZ4JjwmoCbAJbgkCCaoIswgQCX8JcwnpCCAIuQe5B/UHKwieCHgJewrnClYKLQkbCHoHDQfCBqIGrQaoBkAG2gWlBV4FsgSjAxcDcwMeBHAELATMA24DEQOmAqMCowJQAmQBqgDfAJ4BAAJjAVgAh/9C/0P/Iv++/hX+mP2J/fH9X/6b/qP+ef4Q/n79MP07/Tv9v/wr/Br8k/ze/JL8Avyz+537ffuB+977b/yo/Ij8Tvw8/C/8Ifx1/D391v3J/TL9u/y4/M/8oPz/+xX7Cvpw+WH53flD+mn6fPqv+tz6wPqN+pv6zvr0+qb6QvrX+Zv5bPlI+f34ffj098f3Hfil+BD5YPl8+Wz5A/ms+L74+fjg+Gz4VPgE+f/5Zvoc+qn5O/mY+Jb3DPd49334/Piu+G749PjZ+Rj6cfnT+A/5BPrr+jj7LfvT+lv60fmh+eb5H/r++b75Lfos+wr8/ft1+0H7oPsZ/FX8gfwB/YP9x/2r/aL9qf2J/RT9ifxZ/IX8Cf1v/av9a/0C/ab8qPym/Ij8fvwd/Tb+I/9i/3T/uP9UALIA0AD2ACkBMQEQAUcB/AGTApUCPwJ4AjcD3QP0AwkElgSIBTcGawZnBlcGTwZcBpcG1gbrBugGNgexBxoILgheCNkIQwk0CQcJFQlYCR4JighQCNEITQkmCZsItAhiCeQJiwn0CJwIqAh3CB8I0QesB0kHyAakBkAHDQhcCAYIsweuB5kHAwcZBrIFHwb4BoEHgQdVB1oHcAdsBzgHDgf4Br0GTAaxBS4FxwR8BFUEaASLBHoEEwSpA5UD3wMQBNQDJANLAocBBAHqABcBJQGjAMr/Q/9v/8f/rv8D/2L++v2G/cr8FfzG+5z7GPst+m75Rvl6+ab5sfnZ+SL6ZPps+in6w/lL+Q75IvmT+Qz6V/pN+hL65/n8+R/69vl4+RT5FfkU+YD4l/c399333PiB+eX5l/qK+/772fuc+8H7zftB+3T6Hfpu+rj6nPpX+m/61von+/z6evr/+cP5xfmh+XP5fPn8+Wv6Mfpy+S/5pPky+tf57Ph9+Oj4gPm1+cL5GPpp+ib6bfkC+S35gPlJ+Z74BPjR9xb4a/jC+CX5nvk1+nb6Ufrg+bX5zfnq+b/5c/l3+af5+/ke+nP6DvvG+0/8Q/z6++j7gfxs/fX95f3a/X/+Uv98/7P+CP41/uP+Vf9d/4z/y//k/7j/3/91AO8AKQGkAewCVQS6BPgDGwP7ApYDAwQiBP8DAgRNBL0ELAU3BR8FRwXmBX0GjAZPBlcG0QYmBxkH4wYTB20H3gcECAgIlgfEBucFtAX3BVEGGgbJBZkFxgUbBmUGowa9BscG/QZ3B/AHBwiuByoHxAZmBgEGqgV/BYQFngWsBbgFuwXYBQ4GVgaCBrUG/QY2B+sG8gX0BJ8ENwUTBsYGJQdvB28HIAeRBvoFUwVmBH4DJgOYA04EtwSZBJIEvgQeBTsFDQWyBF0EOgROBF0EQgTFA00DLgNoA68DpAN8A5MD6AMCBHsDiAKzAWkBXQEsAb8ATwBMAJAAzQCjABMAav8F/+b+8v7a/sP+mv5z/iH+qv1O/Sf9CP26/Dr82fvC+777bvvL+iP6xfmf+Uv5s/gJ+L/30ffV96L3N/cQ9yv3W/dr92v3e/eP92n3LPf39iD3Wfdv9z/3A/cQ91T3g/db9/b2yPYC9z33I/eM9lH2s/aJ9w/4APjt91X4IPnL+Q76OPpr+o76PPqm+Sf54/i3+Gv4a/gE+RX66vr6+qf6tPpn+078efz7+2T7d/sf/LL8wfx7/E78b/yq/OH8G/1n/Zf9gf04/QT9AP0d/VL9wv1q/hX/ev+5/w0AhADXAM0AkwCHALkAAAEsATsBVAFvAW8BXAFKAXMBsQHUAdoB3AE1Aq0C6QK7AlIC/QHdAeMBQQIOAwwEeAQVBE8D7AIAAxgDvQI6AusBCAJLAo8CqQKlAnQCMgL+AeQB+wE8ApgCwQKWAj8CNgJ9ArECjQI9AikCYAJ0AmYCfwIYA+kDPwQEBGsDQANyA/ADYwTdBGYF3AX7BcAFeQV9Ba4FvgV1BUEFcQUPBpwG1gbwBiwHjAfUB/sHLghxCI4IbghQCHUI2wgKCdcIYwjqB5MHXQdhB4AHmAdJB8IGVAYqBicG6gV6BdgESgTSA7MDzQO9AxMD/AESAckAlgD2//H+WP6A/vP+3P4I/vn8DfyD+0n7Kvv0+mn65PnO+Tb6jPpl+hb6C/pm+qX6lvpZ+iz6AvoE+lT63for++D6Ovrk+ej5H/pb+q/6LvuV+9D7LvzO/H/9xP2W/TL92PyK/EX8EPzU+6T7mPvr+1b8lfyc/LX85/zC/DH8q/vH+zz8Y/wN/LX7wvvZ+7L7Zftd+4D7bPv/+oX6P/oL+r35Wfnj+G348/e+99r3DPj599b30/cW+Bv4w/c69wP3MPeG9973Lviu+C35uPk0+sH6Hfsm+8X6RPr0+cX5s/mN+Y/5xflY+hz7B/y9/EL9lP30/T7+Lf6//Uz9WP3a/Xv+7P4x/1f/af9p/2n/PP+6/vr9vP1S/mb/HwAvAPn/4P/s/wgARwCbAJIA+P9j/3X/KQC5ALQAkACiAN0A4QD3AHwBUQLOAsICmAK6AtQCoQI7AjUCbwJuAhgC+wGYAm8DygN9Az0DhgMNBFoEXQRuBK0E3QQFBUEFtwXeBZsFLAUwBZ8F+wXUBV4F5ASpBMsEYgU4BskGxgapBuwGgAegB/oGEwaeBckFLQZvBoMGgQaIBtYGRwetB4cH+gZkBhEG9QXiBdcF6QUFBkYGmgb3BvAGXgaaBQoFygSOBDcE9QPaA8oDqQOPA5sDswO8A9ID2wO9A0YDwAJ6AksCBgKNAUgBSAE+AfIAlgCJAMkACgEQAfoAwQB/ABoAyf93/1b/Wv/K/2MA5gARAfsA1wCzAHQAFQB3/8b+Mv4i/oP+xP6K/gj+9f2a/lP/dv/m/h3+hP0d/Y/8Cfyp+8b7Dvwd/MH7Mfv0+uj64vqO+kr6Gvrl+Xb5EPkl+V/5Hfk4+HT3ofdp+BX5Lvkk+UP5aflR+fz4m/gS+G33vvZx9pb2FPem9yP4Y/ht+I746Phb+Yj5gPl4+bD5p/lA+Zz4OfhA+EP4N/gi+DD4cfiZ+Nn4AfkC+aL4HvjA9+b3Tviq+JX4Nvj69yr4qfj1+BL5SPno+Zf60vqW+ln6TPoz+sP5a/mL+R36kPrK+jb7Bfzw/DH93PxF/AL87/sL/C38mfw+/en9Wf6F/qH+5/5E/43/qf+6/9z/+v8GADUAngDxAL4AHADc/2wAVQHDAbcBtwEqAnoCbgJMAqMCMgNVA+wCkgKsAicDjwPuAzIEOQTpA5sDuAMOBCgE1AOAA24DlQPKAxYEWQRNBMsDegPNA4oE5gSsBGIEagRBBIEDtAKqAokDQQQuBKcDkwMABJcExQTaBOEE7wTKBJ0EZgQzBNMDXwMPA98CwgKnApcC1gIkA3MDXAP2AnECRgJ/AtwC1gJqAgkCEgKMAgkDcAO2A/gD/APQA3MDRAMUA+ICjwIqAs4BdAE4ATsBhgHWAQ4C+AHWAaQBkAFrAS8BqwAVAKf/rv8gAJkA4ADEAHcAEAC6/5D/jP+V/5b/d/9l/0j/Q/81/zj/N/8s/wj/0P6J/iz+2f22/dz9If4k/uf9gv14/a39Cv42/iP+zv1A/YX80vtN++f6e/o4+lj6APuq+9n7cPu/+hD6Q/l8+PD3xffi9+D37vcV+ED49fdq9xb3Y/fm9wL4tPc998z2Qfap9WT1k/X99Wb29vbD95P41/if+C/4/vfy9/T35/fs9wb4Rvi1+EP5wfkD+gz67vnP+bz5sPmP+Vr5O/lx+f75dPrF+vn6VPu9+xD8KPwh/Ob7mPuB+8T7JPxP/Cr8J/xN/G78evyF/Kr8mvxj/EH8hfy9/LT8cvx0/Kf89/xe/R7+5P41/y//HP86/wH/jP5c/sz+ev8UALEAjwETAvYBqQGpAdoBwgGkAQ4CnAJ7AhgCYAJ8Aw0EqANRA9sDRwSaA5ECgQL2AqECjwFPAVkCVgOXA8cDSARYBG0D4gKWA3cE3wNUAoYByQHwAYQBgAFRAvkCwwInAvUBoQIIBGsF8wRRAUT8Ivk0+TD6gPpN+8z9NQCbAEMA3QG+BB0G3wVaBjcIoAmSCtcMVQ+QDpYLmAz5ElkW8RDbCekL9xIOEaoEB/+cC2sdDh9HD60BZAPoDd4UaBe+GscehR7kGTUVERLuDlAM3wzADqIMQQXN/T76Bfmn9xX3gvgP+hj6yPqr/ZH/+Pwt+Pj1JPbW9CbyxvHI8n/vtOfB41Tof+0j6bzdL9f02Qfe0Nzo2dvbBeEy41/hM+C+4YTj+uM15RfoSepG6nfq9Own8KfxtPID9kb6kvuk+QT5K/3IAx8I4AhuCO4IZQrmC1sNlg5ND1sPSQ8UD5cOBw4/DiAPJw9tDW8LoAtJDnARLhNDFMAVSRfMFrQTpg/nDLwLBgvtCeoIpAiZCKYHOwWEAlwByAJtBQQHOgYiBCwCUQA+/ff4PfWv83Tz3/KV8c7w9fDH8HLvu+0/7eDtd+5x7rjuCfBV8d7wTO6q647rUO6L8VTyJfCy7ELqz+nb6/jvbfSa9hb26/Wl+Fv8zPxl+Yn2Wfcn+n/8l/+tBKwHtgNU/ccAvxL5JrEseyK+Fm0VHBtEHb4ZxhZEGAEaSBdkEQENCwuwCDQEfP8M/dD8yPvB9gjtXOI23KXcQ99S3jfZ+dS61IDWftfv2NncGeEa4nThVuQP6vTq8ePQ3rPnV/v8B+kASO1e393hrvDjANoJnAhPAPP4Gvkw/z0EYwUOBzQMAhHrERsTdRnNH/8bgg+QCBUPHxnUGasUvRZLIWQnfiM4IZwq2jVoMqoiuBocJL4wKS/rIkYdbyRGLcoszyW1IBMfUhy7F9cUYBUpF4sYTxptG0MZ3xP4D40QkRJFESINfAqwCrcKoQihBqcGDgcnBeEBQwCIAL7/hPwS+TX4YfmT+TD3gvM18QLycPU8+Sn7lPqy+ID25/P98DrvI/AZ88D1kvaW9TDzsO+g7L3svPBj9Yz2qvMe8ALvHvDq8K3vE+3M64runvTd+O71Q+11577qAPPC9RnvEObH443ome1V7rjsJuwB7ertC++38BHxh+7b6gDqgOzZ7pbugu2o7p3x/fMm9U722faQ9CfwJO4q8ZX1jPUP8fXtKPAx9fn3wPel9vL1uPTZ8/X1gvtrAMIAmv0w+yf7Svsh+un5I/1UAkAFcwRdAkAC1gMpBVUFgAWwBoUIIgo9C1ILhgmmBW0BUv/Z/9oABQBm/VX7ZPv5/PT9j/3g/LP9fQDJA+MFKAY2Bf4DKwNyA/wElgYgBkgDxQC9AZ4FvwgdCdoIRQriC0cKzQVMAosB1AC1/bn6pvum/6MBoP/Y/Cf9+P9mApIDawQmBZcFfAbkCPEKAQqgBhoFMwf1CfQJfQhjCd8MnQ8KEAAQDRFHEQUPFgzhC8AOIhJWFBsW0RfcGO4YmxlPG4wc/xuYGxAevSLQJR8l2iL7IRIityBhHe0aIBu8HLYcpxokGIsWghWZFLMUSxb0F0gXOBRWERsRGRO8FIYUJBMcEtsRvREOEZEPaw3TClsIaAbXBH8DSgKbARIB4f9B/bj5R/YA9OPym/Iq8rDw4u3g6kPpOOlN6YznQOQf4YDfF9/I3hje4dwj2xDZ3tdb2MPZctq12bvYONjT1+XWDtY81u7WWdfY19PZEt2937vgZ+FR49/lW+eI57nnw+g16vTrDu408BPxAPGM8VvzZfS98rvvb+7i7ynykPOF9Lz14/aI95L4u/rh/JH9VP1G/hcB+AM5BegEOQSwA7MDqwS9BkcIxAeGBawDogNmBBMEDAKR/1n+Pv+TAdgDdwRIA5QBFQFKAuADRAQkA+AB2wHLAmsDigIWAe7/sP9H/zf+ZvyY+ij5kvjb+G75avld+F33mfdp+YX7nfzr+w76QvjS98v43Pnj+Uj5h/kg+3f8KvxY+sb4nviW+Zv6rPqb+S/43Pdn+QT8BP7E/tD+Tv9yAEACQwSqBdEFRgW/BdEH7wlyCgoK7ApwDZYPkg8YDuQMRAyAC60KuQq5C48MXwzrC+ML+Qs4C+cJQwm3CVQK7QmtCK4Hiwe8B6oHjgcKCPMIIQnVB8gFkgSfBPQEVwQAAzMCnQLpAyEFMQZJB44IkQnqCe4JYArDC2QNZw6jDh4PZhCPEVsRJhDLDykROBNJFIgULRW5FkoYEhlYGZUZ2RkoGvoagBzqHTgeeh3MHNscOR1RHQUddRyJGwEaKxicFqQVCRWKFPETWhODEmERoQ+xDegLiQokCVMHZwVzBEgE3AP3AVr/jf0j/Qz9Yfwe+8/5Uvix9nn18vSY9JDzTvLZ8fnxf/Ey8ITvQfDo8IrvwOwc6+brfu0g7u3tcu7J78DwZvBA7yvurO3q7enu7O8O8Bzvtu7b7yvy1fOD9AH1GfYM9wL3nvbw9kb4VPld+eP4EfkT+k37P/wC/QP+8f58/0X/ov4V/i7+Pv/wAIYCKQOYAnEBgAApAPn/eP9p/mj9y/yU/Gr8Hfzq+wv8QfwB/Nz6H/l293/2BvaJ9a30m/OX8rfxEvHF8NzwufDu7+Luce7g7gbvHu667GzsYe1X7iXuU+0j7cntXe4G7mLtI+3V7f7uGvC88MnwmPCu8Cjxj/F88Rfx/fBq8Sry5fKC89bz6fMh9EP1RPdv+bL6XvtR/Pb9kP9NAD8AMwBgAJkAwgB+AQEDtgTHBRcGUwaPBnIG7QXTBZ8GdwdxB6oGhgYPB1gHjgbdBXkGygc4CDEH5gVRBeUE/gMCA+kCowMsBAQEUgOiAiMCNALGAk4DwAJtAW8AigAKAQsBsACSAMAA6gBeAXQChANNAyICmAFwAhIDDQIjAMr/QwHYArwC6wEVAqEDOAXBBZ0FowVaBk4H/Qf6B38HOQeMB04InghcCBEIjAjCCQgL0wssDGYMewxoDEYMfgxVDWIO6g6XDuINtg0RDj4OWA2bC9sJEAkxCeMJWwoxCmcJkQggCAAIsAdKBxsHNQfEBmkFzgMbA4AD7AOXA84CKALMAVYBxQBeAAQASP8M/sz85/s4+4j6D/oX+nP6f/o0+vD5HPpj+pL6rvoM+1L7MPvI+u365/v//Hf9H/23/G78O/wD/CL8cvyI/C38Ifzn/NX9lf1F/En7wvvT/Dr94PwS/Rn+FP8p/73+dv4+/pn93fzf/Hf9xv1H/Zj8Tvwp/Lr7H/vn+gL7GfsM+xX7F/vX+o36q/on+1r7Ivu6+jT66vjb9l71ffWv9jj3qvbk9bf1o/Vi9Vr1L/b89s/22/VF9av1NvZi9lz2f/aB9hz21vU39iz35PdG+IL47vg8+Yb55fmU+l37R/wr/c790v2Y/df9m/4n/wX/5P5+/5EATwHMAbQCHwT/BOYEdQS3BHUF/AXzBf8FPQaWBqwGsQbIBtgGsQZ3BjwGOAZeBs0GDAfmBloGAAYGBtMF+gTTAzcDYQPIA90DnQNAA7cCOgLzARACMgITAtwB1gEOAjMCXAKHArICVQKuAS0BTgGPAUgBZgC1/9z/yQCvAf8BwwGYAfEBlgIAA68C+AFoAUsBaAFpAUYBQQFbAWcBRgE+AYIB2wHZAW8BFAFRAbgB/wH7AS8CjAKHAgYCxAFeAjADGgMeAo4BMwI3A2IDoQLzAeYBFAIuAlgCvQISAyUDTwPiA5YEtgQ7BLIDnwP8A1wEOgSXA9kC2gKnA1cE1wOVAqoBowF9AagAvP/H/2sAjgDr/1b/Ov/z/ib+d/2T/cL9Iv0C/MT70fzi/en9MP2+/LL8Wvxv+7L6xvp1+xD8Hfze+7L7v/sC/F/80vx0/Qz+M/7F/R79Af2A/Qn+KP4O/kH+rf7L/oH+J/4Q/t79T/2k/GH8Zfws/Jb7R/uk+zX8Bvz5+tj5XPln+VD54vho+Dr4TfhP+Ff4P/gl+Lf3WPci91X3iPdw9yb3CPdY9+T3Q/hS+Cf4Ivhb+LH46/jP+Kf4jvib+Iz4P/jo97L3ufe496H3jvfD92P4QPnv+Tb6Pfpp+ub6O/v2+jT6xfkx+gT7U/vC+vP5vPkw+rH6vPpr+ij6Qfqo+jn7z/sd/A/8qfuA++f71Pyt/ez9vv2M/a/94P2i/Qr9fPx0/NT8IP0Q/eX82Pwk/Vf9T/0s/S39lP0D/lr+fP6E/oD+Pf7j/a/9yf0H/gz+8P3z/TL+Uf76/Xv9M/1R/Yb9qf3u/Vr+ov6P/mf+jf7m/uj+mf6S/hf/tv+i/xz/6P52/14A5gABAf0AOAG8AYcCTQOwA5EDCgOgAm4CgQLSAkUDtgMKBKEEqQXKBkUHDQf0BnwHJggaCHsHDwdsBwYIhgjRCDoJkgnJCRYKoQoWCwELjgpWCoYKrgqQCoQK0gpRC4ELegtjCycLpwoUChQKjQrXCmIK0QnBCWwK4grbCmUKTQqNCu8KHwv3CoIKugnyCHEIVwhpCEkIJAg0CI8IyQiGCBUI2QcXCD0IFAiyB5kHsQeoBzsH2QavBsAGfQYIBq8FzAUbBv0FMQUNBEEDKANyA58DlQOfA/8DawSBBEgEBQTFA18D4AKcAqgChALfAQ8BygD/ABEBkgDO/1T/F/+l/uL9/vxX/B78Wfzh/Cv9xPzI+wf7Aftp+537Sfvk+p/6Xfru+WD5Dfn2+Oz4+Pgc+WD5W/n4+HP4Kfgd+Pb3p/dU91H3ffe+9+z3Cvj/98z3wvcG+Ir4svhl+Ov3vvf89zr4Rfj894H3E/e+9qT2bvYq9iD2qfaN90r4u/hQ+Sr6yfrL+nr6ePqR+j36evkt+bL5ZfpL+rv5j/lI+jT7pPt2+yj7E/td+/z7dfxg/Mj7cvvM+6r8Lf1d/VX9XP02/cj8ePxJ/GD8mfw9/R3+qv6T/in+Mv6d/vb+B/8c/3j/2v/l/8//1v/h/63/Kv/J/sv+H/9p/1r/4/5L/jH+qv5F/0j/yP5i/mn+dP4P/oL9Q/1e/YH9i/3A/QT+8P2q/Zr9Hf56/gn+AP1t/Lz8jP0R/kT+iv4Q/6v////6/8z/hP8//wj/FP9+/z4AygDvAOcARwEZAs0C1wKiAr4CVAOeA0EDfAIQAjoCuQJNA9YDNgR4BKME7gQsBREFdwTBA2MDkgMHBGAEWwQwBDIErARBBXoFDgVQBLEDZQN7A9kDJAT5Az0DqAK/AjgDKgNUAogBkQEcAlYCxgECAYoAiQDPACMBRAEJAaYAtQA6AboBwAGYAdQBbgLmAugCzAKnAncCFgLXAdcBxwGBASUBJgFMAUoBIwFKAdIBTQJ/ApgC0AIGA/kC7gIGAx0DsgLwAVwBWwHCASoCeAJ0AiQCqgGQAfIBWwJDAsgBfgG+AUsCzALvApECywFAAXcBJwJGAooBtADiALMBEAJeAVoA1f/b/87/hP8Y/6D++/04/c/8uPy6/Fb8sftN+1/7wPvW+1H7f/oB+kH61PoA+5b6Bvrm+Q36D/q3+T/5tfgf+IL3GPcK9y73evcM+N34lfm9+XL5H/kS+Un5W/le+UD5ZfnE+XP6FPt2+3/7X/td+4T70/sB/Pj7xfvM+0D85/w9/TT9NP2v/V7+//5d/6//tf84/3T+LP6r/j3/Kv+I/kH+x/6f/xsA4P9s/xH/G/9A/yX/m/4d/j3+Rf9lAO4AmwAiAO3/LABsAI4ARwC5/xn/wv7J/rj+Xv7w/Sj+CP8YAJ8AgwA3APb/2P/A/6z/vP+1/5T/bv96/83/AADs/6n/tv/y/x4A2P96/2L/if+1/7P/xv8HAFYArQAaAbQBFQIoAvUB7AHyAdcBowGIAbABvgG9Ae4BawLjAuICoAKBArACwQKqAp4CvQLVApoCVwIxAi0CFAIGAlUC3gInA/kChQIlAtABTgGkAA0Ayf/3/3AABAE5AfIAcwAJAPT/yP9v/+H+b/44/k3+pP4A/yD/wf5M/hr+bv7v/i7/RP9g/8T/NwBtAHoAcACKAJEAfwBsAH8AtQDPAOYA6QAHAfgA5gDZAAEBIQEcAR4BTgGyAfUBCAL5Aa8BPQG4AKkAFAGEAXsBAgFnAPL/ov+r//7/SAAOAKX/kf8QAD0Auf8D//H+hP/U/4n/LP8+/5n/uf+e/6H/uf/C/5T/if+V/5f/Z/8j/+7+qf46/pv9uvy8+wf7Dvu6+y78+fuT+8X7c/zD/Gb8+Psd/Gn8OPx6+w77Nvuf+8L7q/uW+2H74Ppe+jv6svow+2/7i/ug+7L7pPux+wj8qfwZ/UX9Of0V/cv8dPw0/CT8Efzu+wP8VvyX/Cf8R/vB+uj6c/ud+2H7G/vj+rj6i/qo+vH6C/vm+uf6h/tb/Lr8ZPzg+7T72vvq+737Yvsr+y37h/sA/DT88vuF+7j7r/wT/uj+Af+y/q3+Kf/a/1EAjQCwAOEA0QBcANX/0v+MAHgB5gHSAaUBvAHtAcQBigGYAVQCTQP2A+QDXQO4AlYCNQI7AlYCZAJuAi0CtwErAeAADwFmAYEBOgHiAOYANQFqATAB3QDGAP0ACQHCAGgAYQCLAGgAzv8x/w3/Xv/R/wIATADAAG0BzwHKAXYBTAF0AbcB1AG2AbcB/QFHAiQCmwEQAewAEAECAd4A2gBaAQ4CnALGAuICGANyA68DwwPHA8ADugOPA2gDWgM5AwEDkwJnApkCGQNpA1MDHwMjA34DzQPyAwUEYAT+BHoFlQVeBR0F9gTCBHQEHAT0A+wD1wO1A4wDrgPKA9IDnAOHA6gD0wO3A1ADEwMAAw0DtAI5AtUBxAGyAWcB+ACoAJEAcAA1AOL/uf+d/3v/Of/U/n3+Mv4E/tj9kv1C/QP99Pzh/Nr81/wN/UP9PP0d/Sn9of37/d/9cP1C/YT9v/1t/cT8XfyI/OP85fyC/D38c/zx/AX9lPzu+637u/u0+3T7dfvk+5T87vzi/LL8aPwN/Kj7iPup+6P7YPsF+wz7VPuC+4b7Z/tz+237R/vQ+kj6Mfqu+nv7uPtN+7b6hPqK+kb6KPqd+mz7j/uf+mf5t/ir+PT4R/nY+Of23fPq8WHy2PM19MrzrvRa94j5FvqU+o/8a/5i/qH97/62AbACNQGJAHgCVQRVA44BgwIHBaIEGAGb/wYDcQeDB0wEvgKxBCQHbwgLCqQMNw3gCRkGtgYpC/INqgwfC+wN6hPYF8UWeRLwDSkKAwf6BEoEaQNPAKH7afh6+Nb5Z/kL9+f1l/ch+hT6TPdq9ILz4fMx9Bj01fO08lHwNe5P7kXwePEA8BLtXeqX6BnnTeaJ5iDn/uaV5v7nZ+vg7kLwm/AG8ib18vfa+DT4p/cs+O35g/yu/9MCxAVmCK4KkgwpDrcPKBH5EWYSMBOqFNAVmxWtFHoUbxVbFpIWiBYSF7UXsxdIF+UWhxaxFQcVfhXnFqoXDxfnFZUVthWJFaYUbxO+EScPDgyjCWsI6wd4B14H2gdqCDYI+waxBRAFQQV9BekEOgMJAQ//bv18+xv5DfcM9s71U/Wb9PbzbPNB8oTwT+9Y77HvPe8P7mjt+O10703xIfNc9En0X/Oz8g7zsPMY9OT0JPeV+qb9Z/8hAKwABQE8AZcBuAKpBOcGGAnzCvULvQuNCo8JuQneCuwLQgwMDPYL6QtvC3kK2wkmCpEKCwqXCMAHJwicCJkHdgUqBB0EDASoAugATACvAJoAn//n/jz/hf98/mH8r/oD+nf5H/hC9pv0W/NH8kLx/PBr8Qzy/fFm8QXxVPGz8TPx6u+37kjuE+6B7eDs+eyn7dLtH+107Jbs4+w57MzqAeoz6mPq0Ok66enpWutH7BDs5euK7JfttO3a7Nfr2ev87BDvRfEK89jzBPQy9AP1R/ai97b4bPnB+dH54PkV+nr67vp0+0L8fP09/ykBrgJAAxwDVAOgBKcGIwhlCBYIXQiWCS4LhwyNDXsOBQ8CD2gOJA6YDpUPUBCFELIQYRFDEosS+RFtEcwREBM2FMwUDxWEFc4VQxX8E+US8RL/Ex0VbxXFFIcTPRIbERgQJQ9oDv4N1Q28DaoN0A0LDgAOVQ1HDB0L2QmRCHMH/AbLBiMG1gS/A6UDZwQFBSsFIAX9BE8EuAKuAA7/Ev5o/aX8+fun+8z7APyi+4T6N/nL+If5j/rG+kr68vkk+gT6HPnp9zj3yfYS9l/14/WD9/D47fhE+BX4hfhi+G73o/bg9q33OPhz+OX4Vvnn+GL34fV59Tj2Vfdh+Jn51/qX+4j7f/tW/Nf90/58/n798vwr/df9kv5d//3/4P8k/4b+vv5b/6X/a/9C/2D/hv+s/xIA5wCLAbcB1QFBAsMCpwJaAqICswN8BDwEMgNBAo4B6gA4ALH/Nf9k/lf9ivxZ/Jj85PwR/f38tPxy/G38cPzE+1L66/hL+ED41vew9jv18fPo8urxAfHd71zuqey26+DrnewL7S3ttO3F7sDvKfA58GnwmPDN8C/xWvKw8530q/Sk9Af1p/XB9Tz1kvRG9EX0gfQE9Sv2mvey+Pf4zfj3+PH5cPvw/DD+Zf+hANYBrAIIAzEDiANIBEAF+AVlBswGZwf3B/0H0QcPCB0JOQqjClcKKQpxChkLpgtTDOkMOQ31DH4MawyXDIwMHgy2C6YLqgs6C00KQAmFCGMIngjnCJUInAd4BrUFkgWgBZEFLgV2BJkDDgMeA4wDlwMZA5UCkALSAtoCqgLSAnID8gPcAz8DwAKKAoYCiwJ6AkQCwQEuAdAAyADwABUBVAG7ATwCugIUA0oDOAMXAzwD2wPmBKoFLQZ0BssGIgd1B+IHmQhJCYsJYAlJCaoJGgrjCcQIYgdyBgAGpgUlBbwEkwSWBGoEYwSCBL0EnAQQBIMDOgMfAwMDKQO7A10EZQSZA6cCIQINAt0BQgEzAAP/3P09/UH9nv2f/Qf9S/z/+zT8TPz7+1v7yfp++mT6Vfoy+sr5S/nY+LL41/gQ+Un5L/mo+Jz3bfZ99eX0e/Qu9Gb0HPUE9lr2LPbz9ST2dfZB9nD1e/QI9ED0tPQQ9TP1L/Um9R/1KvVt9bP1BPY39nT2ofZy9uP1NfUg9Zb1Rval9ub2S/e/9+f30Pfq90X4Z/jV9x73HPff99f4PPlO+Wn5qfn3+Tf6d/p2+iv60/n7+YD6Dfs/+1/7rfsX/Hn8/Pyg/UH+fv59/rX+Ev82/+n+kv67/j3/sf/G/93/IgDPAJQBSgKoArMCxQIuA8YDDgS+A0sDRgO/A1gEvQT9BDsFUQU0BdgEWQTMA0ID9AIcA64DhgRUBeYFHgb0BakFgwVuBWoFGwWuBBgEigMqAxMDXgPHAzMEjQT8BHEF3wUbBjIGIgbwBbAFegVbBSwF7gTVBCgFwgU7BhgGaQWJBNwDpwP+A6MEawXTBdsFowVeBVsFggWoBX8F5AQrBNUD9wNQBHAETQQsBAwE8QPJA8AD2gPwAxAESgS0BO0E4QToBFMFHwayBtoG/wZlB/gHRggzCPAHuQelB70H7AfcB3cH5AbIBh8HpAf0BxsITAhbCC0I3Qe+B70HpAc4B/AGuAaHBv8FUAWrBCkEuQNGA+gCTwJyAWoAtf85/7v+4/33/ET8o/v7+l76Mfo/+hP6XfmK+BT4zfdn99X2dfZs9j32r/UQ9eT0JfU49bL01vMt8+ny7fL58vfy3fK/8qjytPKq8mzyEfLo8SbyqfIO81rzVPM98/ry8/IY81jzj/Pd85T0X/W+9XH1D/UF9TL1MfUg9Z71nvZt95f3tfdq+Iv5Kvr3+an5zfk5+k76Gfor+rP6ZPvm+0r81PxD/Wv9Nf0I/Qr9Lv05/Rf95PzS/Af9Xf2M/VH9GP1G/Qj+vf4N/xz/Rf9n/yr/of6Y/mD/fwARAR0BKwFqAX0BBgGSAIkAuQBxAKz/Ef8u/4z/sP9N/wH/AP9+/1wAXAEUAhUClgFUAZsBNgKEAmgCLQLzAe8BJgKwAh0DEAOZAmACpQIYA1IDkQMuBO0ELQX6BAEFuQWWBtsGiwY2Bj8Gfgb9BrsHrQgcCdkIPQgYCGUIqwhsCMEHDAeSBmgGYQZPBgkGzQX9BZgGOgeSB88HJwiBCGcI8Qd4B0cHFAe3BmYGagadBn4GFwa4BcEF8gX6Bc8FpgWjBcIFDAZxBr8GxAZzBikGKAZmBpsGgQYsBrQFPgWJBKIDyQJ+AvQCmQPmA78DqwPsA1AEWgQrBDIEjgQABfsEqgRTBE8EhQSrBJ0EaAQqBOoDZAO+AhwC3AHAAXQBBwHpAEABbwHlAPX/Y/9z/3f/5/4s/sr9rf1a/Zr8K/wp/H38dPwr/Mb7bvv7+oT6Ifra+Xz5+viN+GD4ffi7+PL4A/nX+Jr4efiH+J34sPjX+OL4pPi/99v2ePbd9l33Zff39p32lfbB9sD2qPav9tz29vbu9vH2Uvfr90n4Xfhi+Mv4ePkF+j/6VvpL+hP6i/lC+XP5HPqF+oj6QPoo+kH6f/rf+lb7ovuK+zb7A/sZ+1D7YfuA+7v7Bfwn/CH8Mvxt/KL8lvw1/M37bvs0+xb7Bfsp+4H7DvyX/Mf8kvwO/Lb7rPvj+xP8B/za+6/76/uT/Jz9lP44/4P/pf/H/7z/if9B/yv/Sv9c/2T/Xv+R/7n/6f8XAKEARwG9AcoBvAHXARECKgI8ApACLwPNA2EEDQXiBT8G4AUgBe4EaAXPBcoFtgVyBrwH1gg2CUIJbgmuCfEJLQqqChYLRQsyCz4LPwvpChIKSwnXCKsIigiuCDYJsgmTCeEIbAhhCEkIkQeyBncG5QZPByIHswZqBlkGIQbMBZcFxwU3Bp0GwwaiBlcGGAa7BSMFaAQIBGwEJgWHBU0FugQuBGQDZAKaAYYB4gEdAv0B2gEPAlUCZwJIAuYBYwHUANYAjAFdAnYCpwGtAA0Aof8F/1b+3v3f/Qf+Pf5N/jL+z/1K/d/8vPzm/C79av1Z/SD9Gv2Z/S3+AP76/ML7TPuA+7b7iPsT+5P6+/ln+Sn5cPnM+dv5s/n7+er6/fuX/F38pvvo+m/6UPp1+qb6wfqo+j/62vmR+bD5xPmQ+Tv5JPlU+ST5YfiW94v3Mfif+Ij4Qfhg+KX44fgr+bn5Q/oX+mf50/jD+Kf4F/g798X24faW95r4sPkc+qv5yPhL+FL4Z/id+FD5XPrf+pv6k/qn+7X8P/xr+k35DvqW+1H8Q/xu/M/8qfz7+7j7CPzu+wD7cPqE+2v9Wv6Z/WL8x/ux+5v7rPth/G79CP4b/kb+H/8TACUA6f5u/fz84/3O/l7+3Py2+8r7Lfwv/Ej8Nv1U/lD+df1c/W3+D/88/l/9LP4FAAIB/AC2AXcDgATLAz4DoQTzBpEHeAb8BVYH1wilCHQH/wZ/B9AHggeWB2MI/AiACGkH3wYbB3EHSAf2Bi0H8AecCHoIsAcIB/EGBgfhBu8GrgdsCNAHowWSAw8D1gN0BHsEiQQFBYwF7wVKBrYGpgYOBpMF3wX/BmsIvQklCjUJfAd3Bq0GwgaIBQgE7AMmBZwFtgS0A74DwQO5Am4BXgETAu8BGgE4AfUCbgTdA+YBmgDRAMEBLwLpAVYB1QBQADT/nf2X/Fv9Cf+s/7v+d/5IAIsCYAJbAGH/VgDmANT/Z/9xAc0DbQP9AFgAAwK4AnIAwf33/VQAsgEoAYMAtABIAHP+jfxR/EX9j/21/AX8vfwk/o3+D/0D+xz6qPos+9b6W/qZ+m/6zfjO9p32tvdH96H00fLU82X1rPRi8xf15vgD+gb3EfQ/9D/18fNg8tLz+vZS9zL1TfX7+HD7PPkB9q/2AfoP+0r57Ph4+1n9E/w++vv6iPxU+x34Nvfc+bv8ifyF+pL5Lfqz+pn6/fp4/PT9Pv6V/bH84PsC+zP6q/kp+XP4XPjh+XT8Gf7D/f38rP1D/6T/m/40/nv/WgCa/0H/igFiBLQDEgDI/tAB+gTqAzwBxgGsBOMElAGs/yUB5AGw/qz7Ov7lA4gFhAG0/Ub+VACg/xP9DfyW/B/8kPqX+r38MP6Q/DX5M/dj+K371f60/6P+DP4X//b/T/5B/Oj9RQNKBz4HuQZkCY4MHwtoBtcEWAiXC9UKYQnKC5wPHg9RCtAGcQenCFIHNwb8CNIN4w6MCo8FeAQcBiIGoQNjAhUFIwm/CT4GnwJCAcb/yfuB+D772gLSB/wF8QFsAWwCev9P+ez2pvq5/hL/wf/7BYkNsg3FBfH+4f/CBJ0GjgXIBlgLiw5XDckKdArJCqQH6QGL/0UEtQtDDjcKTwWlBFkGIgXpAKH+MgBoAcD+P/ts+yD94vqT9fL0+fuvA10EKABT/tT/C//8+RP2pfeZ+y79O/2j/44DmASLAcH+Rv8qAZwBbwEjA+YFmwZqBFECugIhBD8Dmv+z/I79LAELAwwBTP16+9X7xfsl+rn4UPgd9xDz8e3p6ufqdOxs70T0K/nh+Tz1Ve8T7dXuf/HO8sby9/GG8TTzi/dO+2/6ivW38dPypPcP/agBQgQcA8v9Xviw9rn33fdz93z6OwHEBXYDcv3f+X35Svja9JTy6fMq9u71e/Ms8Wnvc+0f7QDxlPcK+zv4IfME8sD1+/iM95vzrfIS9/L9BwNWBDgC1v1I+c33SPvHATgGPgbkA9oC7AKAAer9d/ug/NL/mQF5AfgBTwRgBlQFOAFs/Cr5Lvik+db84v7y+yTzuOrD6xP5ewl4DwgH2/pF+M4A5AmtCmwFEgL1Aw0JqQ4qE8sSJwscAVH+9gSZCw8JEwEd/mwCmAUmApz8NfuV/PH8Gf6qA+gJ4gidAQr/xgaDD5QMdP/r9Y/3uPw/+jvxhu1w9rMFSQ8IDgcHpgBe/Pr4zvi9/xUMtRU5F9kThRFdD6wIHv+b+3MCQgw3D3oKtgSxASwAov/gAekFuwf0BjIIQg29EHQN0wYiBDEHvgvjDrMQLw+7Blr4QuzJ6dHxcQDKD1YYNxMtA071TPQ6/FgBXQCPAUELoRgiIHEdqxKyBKj6F/vvBFoNwgpQAFr46vW38R3oUuH45/r5NQrjDlkLiwijCQEKdQb/AgEFeApdC9cE8Pvk83rokdlv1Znp4AnqFksEVOu36iT+Mwgv/mD1gwBDFScfFRz7FWsMHfk15l7o8f4ODhACEequ4DbmwuOw0InBvM2H8XcTCCC2GCcLeQLTAA0DCQVNBPb/Yvm2813wGusl3p7NPcm32rP1hwIC++HwjvQxAP8E0gL9BW4R2Ro3HI0aUhg2DkP6Peoo6332m/px84rro+jZ4k7VSslgyz3cmvQEELYqTjl8MEAWfAFyAUAMowyd/XTvtO9J9nLx9uA22HjjYvWJ+WXyi/WUCpYdhxtbDRQKfxWZHhMc4RZSFUIOH/zg7I3v2Ppg+SrrbeaH9FMBC/iU4jvcduyZADEJVA7tHWMyNDbkICwDLPP68nTzHe0b6W7uivJN6o/hpe4tDCMYMANB7mYAwywAQNIm+gbrBpkZNRpBBdH2Efkv+A3rm+Zi+bMNBggR8zHy6gy0Ip0Y6Pwn8mICChfoF/AGzPr3A+0ZrSO8EqPzJODM4u7uAvQw8BXtXvNCBgoihjflMtMT8ffW/fYdqjFxIoQDs/RP+84DPv9+8O/hmd1F62YIVCCvHUUFWfRw/CYP7RSEDBkGnAn6DlgNeALI7f7TAMiB3XcKiSUME1PoYNNz4kn4WPns8Bj9RyEvPxM8IB7kAB/1WPZZ+pr/cQiYD4gL9ftc7AjlkOE+3OvdCvU7HAc34DCMFm0FYwZUCJ/+/fNW910CSwIG8gzewc/ZxZzCYtLB9o8YRRzkA+nsp+zB+okEzgjoE2Amgi4sHw8CMetr4brbGtbh2njy4Q60FaT+Q+Di1lXlhPd+AOYI7xodLUosqhYK/3301/L27yjtxfFI+o35i+p416XMgMyS1Hrlkv9xGf0jjBitAH3uwe5/AL4VOx4DFYIFEv5D/q73HeOjzuzPAuoPCEcT5Qig+JTxMfYWABcJ9w73EeoTSxfsGnoXSAbZ7DvdUuQ4+CAAU/Df2I/SiuAj79DvXe3B+8UZUy3zIIz/YusK+vAbuiy7Gpn6VO7n+10GpfOi0FTDhtwABCcXFQ9EAE393wYKFc4hlyefIaIUqQ4eFVEZqAg/5+3O8dHK5u30FPEV5kbl+PJFAh8EQ/kb9QkItCZaMPgVo/Pe878Z1jeOJuD1HNlI5vf9fvgn2XLG9tdc/UgXURl8DkEG6gfhEgshdClLJ3cfkxpvGbIUpwdO9cnjRNhs2SzrHwTSDwIGdvc7+QQHJQpq/er2IgbhGVIZjwomC7ohQjFVIIf98+ol83kBgwEB9BDlD92336rtzP/DCoANPBMLIKAmwhxMEB4VRSSdIYgGd+4u7933Y+2l14zWMO4//XvweOGm7psJIAw29MLoUf8SHZQhehWOFsclCShQE/L8jfaa92z0m/OX+tj5leTPzmXWgPQPBOn6iPlVFYoyJC53FfkPhB53G378xujH+UAOCvsm0RrGZuQa/735lO7Y+VAHHvb61UzUX/Y4EXwM8gKSEDEjGBuWAAT1Q/sV91jiH9pU6/z3FeeL0cDcLPw8A8juye6TGZFBKDWuCTj8YBaKIwUEJN3l3az4h/x64RrPEdyx7+fwbu1a+vMIh/5t5xTrQg3pIsYSXP4TD6Y0qDqkFHTtQ+fC8kL0ZvBZ95f94+3S1mbd9v+VENz6kegABB0zMTu0GHgCdxOAI2QL3+Mr3Kbufu9I2ErR7epaAMD1r+dj+QkVrAyt6U7k0wsNK5EY5vSG9VsUEx/vBSXrIeeo6t7mTOho9Uv3+uBx0vHsvBf2HAX8u+6BEpg7ozejFggKORbrEyv4V+bF8nX/ie9X2YvipgEEDCP69fGXCIwgABv7CdES2TBfOSwbjPfZ8zoK/RnoE0wDpvVr7rvw/P5UDkYLafWq5zD58BysLxIjlQxsCLgY1Si8J9sWEgOi9rjyzPDA6U/emtfa3bDueABgDMQR+hHeDYkJowreEtAc5iDsGA0CDOOIz1zZMPdHByD2ttrX2o349A4tBPTpYuLJ9aQSnygzMTkm3gkY9Mv+Lx9mK/wRx/P69FkJJwr98VDhMunJ9af2V/zQFpAwUin4Ce37sA+JKZstcSE8FYkGdvB25fP5Ch3OJVMM0/dSBzwkTyLp/UffdONb/LwNmhGHEW0NUP8I8Vn1FgmyEOn+OeuR8FIDewCn4lnMitX86Wbrj+Cv5HL0Pu+t0ATCbd8KCMoJKek61xjlXO311K+5/cO66Jr8D/ZY8TX4x/Gg1XDGouBzC3gcvBSXFrwogywLFd/+1QJREYgSlg4lGOQhPA+y5yTSM9xo6b3m+ecS/REMNvlj3j3tsyE9QJwpWgPk97D2dto+s5q4AvYkNUxG8DaVKqAixg0g+RcDwyRUMqoc/AsKI09HskVZHfX9zv9vBU7xo9aw2RP2swWp+RHrWO+I+xb/jwEiDjMW0wUm7uX3AyccSwY9uRFK+P721O1f087I+eVJEasiVhg1Dt4NkAYd86jo8vVLDCwXFxmrHoUkqR39DGMDwQVmCHIEMgDu/fv0buIO0rbM98vgyU/O8N236pPo6+eaAAQnQjLdE6nsHN6D3/DVmML1ugHCW8cvzFfkkQzFH+UIpeai5BsCxxoDHkYdTSYbLlsrWSgeLPEn7RCU+mj9mg8vEoUC1v2GD4Ub9QpE8xr2Iw5pGsAUChh5LuE9jzSGKdc1DEZcNWYKkvB/9RX229yOylrjrA9IGdv5s+HP7hcINQ4xCoYSlh+ZHpQZMCXbMOUVlNmgs9XBjt0I2ZnEj86W9LsHt/mL8QMGKxSp+dLTUtkACCkn4Bgs/J/z8PLZ3lXBUrpkyjzRJcJVuYvQjveSCgcCTPV99U76AfgZ9HL5twNIBWP8z/T+8p3sadoVxzvBFsfGzBDTYOawBWsbBBrVD2ERhBoAGhYUBSBHP/VR8ECCIAAUUh5+JMAYjwn6BlsQAiCUMSQ3ISDg+WLvrBTEQx9LpS8zIM0t4Dd9Jv4O2QriC+r58OJM5ub61Pd71/rHDuh3GJUqZyBPHaEniSQHDR0AjRKGLVMwIx5NEH8MSgIj7unhXOdt8Qj0svZvAAsCtuiwwUCzGtDOAPYhQShnHv4LfPIp3NDX9eG04ybU/sju1nHs1uRAvX+eVamgzxLuRfoCAXcEB/pE57rkMPliDFoLNAQjCY8LJfNzz4PNs/YvHP4UifXV7XUDIw7M97PcHOPPCvw23lTPYyli0EuwLIAdwiSpK68eIQzjD9Am7S0vEzby+PCaDm8q7TShPfJMXE2GLtQJjQbpIXoyHCM5DBIH0weO+DDirdyA5cvmh+C+5pb21PHl0Xm7Jsq+5kruqekg+MISaBFc6wHHLcDNxcfCGcPM1EPiCdFBs4ax7MwQ3zfYPNRY5xv7vPPg2pvN2dON4un0ZgiHDOf0BtVyzlvjIPZx9o7zdvwJCUMOzA+AEMgINPyCACIblC2wINsOzyBaS1taVDtrFfgM+Ba7GJURuQy7BaP6Wf+NH+I8UjK+DWH+eg6YGT0NLQZ+G3s2NznSLJooZSaRFNf/cQB5CkP9kd9/3UMC4yE5G2AG1AZoEqEK2/OZ6ZvsPOl75vP/FCxvOGsRu+Ua57EF1gxK8evbr+wJEhMlFhbK9IrbcteC31zg89e13SMBlCpBMsAUufbS8MD0eO+h6b3wX/jp7uXgsee3/A8Aleys4oz1yQzVCQ/0O+aC5DLeANKQ0q/mO/x+AQr5ke4P5pnfPd+P5tTtQu4F7Hjvw/aA+AfxAOc85N3vmQuYLv1Ejz4qIckFOP8TCJQNdQjeBEQREikPNo4ncgfr8lf9Ih0ZN0M6qyxAH2EaqRe/DEv6y+96/MUc8jmyP9wtrxJs/PX0OQKzGwYo6xbr+tn1xgfBDE3zTNzY7QwcsjoIOWoq+hpHAs7lLuJa/7gc/B1nEYwNIQXn4Ma06qxczNfpMvHJ+ToPExPJ8eDNf8714GPaCsU61I0Mpi97EVjU37TCvAbL5M6D0qzYztXNy4PKo9Fpz7nE581O+AEmajDIF3X8O/Pd9MP1lPfq/wYLSQ9+BgnxytVZwSi/i9DC7NgIURy2ILoUZgE69ef3AQbkFmMjXyfAI3sewRk7DyT7Wen16a34bgEM/t39ogbjBD/t7tlG7HAaCTmsNGIjNBqvEd8BmPpECA0YXxJXARz+MwNf9FvRer0izKzmhfIT9YH9+QTp/e3yHvhTCcQSTxQ0HrwrnyKg/ufgwOT7/EcMCAtpAgD1luSj4DDzTwi0BGzxafLsD88n+R9rCfcA6QU9B2gGew/WGlkUgP658ZD2l/op8lXr5vLB/K34T+5A7wz5M/vI9OL1HwToEUwVohQcFt0SUQPt7cPestrJ4Sf0GwkODdj2Y9qS1fHroASdDHoLDhGgHWgl8yFNFTgDHPI/7cb66Q8zGv8TDQh8ANn7OPbM8lL2tf4nBiELuw0ACw0CQPxmBcEaVCo2KBkd0hh7HFQbqg86AxT/gv1P9NPnD+eD9ugH/QxtB9IBIP+l+3f55P9dDoEZuBj9DWv+Dex53djeufLxBosHCfgM7Uruc+1T4LLT7Nkk8aEFaAoiAk319und5ZrsXflNAuEEKwdyC8sK4P9X77fhXtvI3qnsHPwJ/M3otdhJ5ecIZyKnHJAF2fhEANsQaR1DICoYJQhh+Qv1bvo4AXEE1AX9BloGsgKc/FH0zezq7h0BEBryJf8cAg2PBgUJ7Qi4Akj9kf2EAewFjAdgAL/uSN6l3ujtePgz8wPpr+cA6wDp9udc9gwPxhnDDKT8OAHHFE0duQ5C+CTvi/iYCYQUUxKiBab4UvQN94X3H/Lb7pb1VAIoCooJega6BUIE+v4o+sP8agb6Dg4QHQvUBJL+Hvcx8L7un/S+/En/hvnM7zfpI+qz8Lz1cfJm6dznTfjQEycm6SPtFssPZxHjEYMNbgwtFBYdjhy4EmgHa/3U8hTqAurw8mn76vsQ93TzDfJ28IbvVPLj9078Z/8rBOQJogpaBAb91vtO/+P/Jfqu8o7v3PBC8ijxdO+N7zbwAe7b6DTmD+z4+QMJWBKpFFATBxGuDk8MTgsZDRMS9BccG9cY9RGqCSIC3PvH9wD4i/ti/cj5nvSJ9Db6Hv/z/iT9Xf8gBrcNKhNdFRYUkRB+DjwP+Q54CbkAK/q79tryJ+6H7JvuWu9m7TbvNPmJBDAHHAIK/9gBUQROAhkB1AbJEM4XLRmSFhgQuAVN/Ob5+f3qAJr+7vmY92P3V/cb9wT3VPb59af5XgJMCrMKsgT+//UAXARyBf4DswLNAXf/sfro9ODv0uxc7HfuXfI19lD4qfdh9cj0h/gx/2oEjgWVBFwEfgXzBu4IpAu0DfgNcg36DNoJdAGT9xb05fiv/n/+/fku9xL3wvZk9sD5HgE1B4wIQwdlBsME8wA5/QP91v5g/tL60Pbz8/DwvO5T8Gz1hvja9T3x4/AP9Vb4KPjw9wf78P7a/hH6hfXg9Xv7agJ8BsYFZQFT/CD5iPhA+bH5K/ln+C34kfjC+GH41Peo97z3TPhR+g7+BwHz/177Afhk+Yn9lv9r/uf8EP08/an7qvkB+rn8cv9tAEkAQQAPAUwCeQP8A1MERAUoBrkELAC8+8j7oQCzBkMLvg4DEbYP2AlfA5ABzwQnCVULWQvaCa0GwgJdACYAjgDzANoCegZeCJ4FlgAk/tH/kQLMA5wD0gKTAaoAAgGFAff/H/0K/fwAtwQFBHcAR/4V/nb9vfyK/mQCCAQIAggArgDGATEB2AHDBhgMBQuUA5T9cf4RA5cF9gTeA5EDBQM6AsUBEgEK/zX9hv4dAxkHGwfsA80AEQBAAecCmQNnA2sDgwSLBckEUAJhAF8AOgHTAYkCFwSKBaMF8QSLBPsD0wGg/rn8Cf1N/hf/8f72/Sf8Xvuf/dYBCwQrAkP/EP+eAH4A/v1A/Iv80Pz6+mr4W/fS92z4nPjo+BX5K/nT+aX7Rf0v/bT7rfp9+h/6Gvln+Kn4Pvmq+fP5YPp/+rb6q/sz/cn9x/wW+8n53Pgp+G74yPkg+8X7y/y3/kEA0f/y/oX/uQAHAN79Zv1Y/8oA0v+R/ib/SwAeAMn/+wAgAgwBjP/lAJQDyAJe/jn8av9gA6MCqf44/Cv81vtx+1b9WgARAAn8Xvki+7/9uPxB+ZL3oPhF+sf7iv1C/ij8MPlf+cf85f5F/aj6VPp3+8f7ifsy/DL9O/0h/dr9aP5c/ar87P5EAksCKP/v/dcAxQPwAu0A+wH3BLIF8QMTA4QDbgKb/+D+WgH3AvYA4/6uAO0DgwM/AB0AwgRVCSgJRgbKBHsFWwaGBkYG7QRlAgMBxwLIBe0FNwNzAcYCowQ3BGICoAEIAkgCVQLoAmoDtAKMAdQBFgPvAuEAZP9uAN8CkQRXBewFBwYEBYsD+AIfAxkDGQMfBJUFmgXLA2wCDgPdBMYFZQWGBLcDGANQA7AELgZCBkYFzARtBQ0G9wXlBV0GNgZJBJYBXQB5ASoDZwPQAQAAnP/zAM8CiwO8AlwBwwA8AT0C9wLbAo4Bw/8d/54A2QIwAyMB5P7b/hAAYQD6/qz9y/2q/sH+zv0c/br9T/+iAJUAav8e/p799/2k/jz/E/+M/Qr7jvnH+pf9lf53/MX51PlA/OL97vz9+gr6LvpP+of6Lvvu+9L7B/t8+mb6LPq++cL5SfqI+jf6+Pkf+tb5uvgD+Cv5fvsO/en8Pvw4/Gv8JPxn+wD7CvsZ+y77V/t5+yv7zPo1+2n8h/2v/Xf9h/3w/eX9VP0l/fH9Xv8YAKL/Sv4C/WT8a/za/Gv9tv2a/VX9rv0A/1kARABb/mX8Ffxr/aj+u/5G/un9cf2g/FT8Mf0H/h394/rK+aD6jvvf+tf5u/o5/f3+LP+z/gv+LvzY+eT5c/3mABcAEvzj+YT7hf15/L354PhT+q77UPx7/Vj/jf9f/db72f3KAWsDnAGX/4MARgPHBN4DEQLnADEAcv8y//z/XwExAnUCEgMzBKYEngM4AlICGQTnBU0GsgUmBdgEcATrA54DkgNRAz8DpANZBKAEdwR5BJ4EWQQWBPME+wYDCMUGngQdBF8FbQZBBpoFLgU2BJACXwF/AVgC6gJ4Aw4EwwMoAuoAgQHAAmcCBgENAeIC2gP6AicC4gLkAjEA4fx7/Kn+3f8S/67+1P9dANb+cP1m/kMAtgBLAGsBggP5A5wCIAKBA0MEggIQAKr/CwEyAoYCrAKDAl0BNQDVANkCEQSBA64C6wLMA4UELgXFBUQFvwPdAqkDUwTQAiEADf8dACUB1gBtAAcBgwGoAP7+E/7h/aL9Uv3B/dH+hv9+/8b+bf2k+6D6TfuC/Cn8e/qD+d35c/kx95P1Mve8+pX8uft++kz6Kvpx+ZH5N/s//J36APhj99r4E/n29r30GPUu9+n4u/l7+r/6o/nL92v3I/ns+g/7Yfq9+in84fwp/BL7KPsk/DD9qf3O/an9AP0N/JP7TfwJ/u3/CgH5ANv/Zv5D/Q/9wf3k/vj/TQDv/9D+hv2f/Fv86Pzi/e/+p/+u/yT/X/67/Un96fzU/Iv99f4zABYAnv7p/Ef8sPwq/dH8x/sl+6f7Nf2u/iP/uf5z/hr/GwA3ACP/vf1D/aP9EP4D/gv+tf7z/8wAqABw/9L92vwr/ZH+0//a/7z+vP2k/X3+gv94AB4BZQE4AW8BWQJPA7UCvAAj/1//WgA/AEv/sv/fAa8DHwPaAYcC/QTyBcgDBAHwAF8DTgUIBccDcANOBFQF2wVuBSoEpgINApUCFwOMAqIBZAHIAaMBxABAAKwAfwFnAmADSgQZBK0CeQGbAVcCPQKTAZ8BuQKZA8QDiQNXA80ClgK6A8cFLgYKBIsBqgF8A1oElAN2A/cEOgaABcID3QKkAt0B8AAdAW0CdQNPA3UCdgFYAOr/0ABDAmkCIQFfAHwB9wIlAyQCXAHfABEAv/+sAPcBFQE9/jP8Jv2W/9kACwCv/gP+mP77/z4BTAFxAFoAgQGzAUT/DPzP+8f+ZgHuAOn+1f2y/fb8mvvQ+mP6Uvko+Lv48Ppu/On7Efu7+xj9H/3N+/36pvuk/KX8r/uW+hL6Qfr9+p77Lfu6+Rb4qveR+DH6Sftx+0377vtZ/U/+2P3Z/KH8NP12/YH9r/6BALcAFP4D+3j6KPxb/Sz9Iv0S/rX+Qf7j/av+Zf8E/27+Sf+JABYA5f1v/NX82v0N/uH91f1n/Wb8MPyO/fH+hf4C/aj8Yv0M/QH7ZPki+tb7jvz7+9H7P/yP/Fj8evzL/Gb8qPrj+Gb4Z/kJ+6D8iv2L/fX8Hf1u/ub/AgBg/3T/pAApAf3/iP4E/zwBxAIfAsEADgEZA5cE5gP1AQABegHuARMB6v8eABEC8AM5BDoDjwILAykE8wTqBD4E+gLyAcABowIlA/0Bxv/F/hoAKgKRAnkB2QBxAXYBtf/e/Wf+5QCMAgkCtwAhAH//Lf5K/V3+eQBnAcoAeAANARYB0//E/oT/HQGKAekAggCpAFsAg/8l//v+QP2e+Xr2C/aZ9+X4WPlF+lH83v46AVkDEAUhBhoHeQiGCQYJCgjnCIULkAw6CqkHiAhNCyALfgdlBf0HbQvSCusHLgkGEN8V/BMnDAAG4AarDCMSBxQUE8QRZRFcEbIPBgx+COAHJArxCzQKZAVLAM78uPpK+fr4B/qo+3f8CfxA+zf76Ptg/HD7Ivn29i/21PVe843uperO6hPtO+yM5p/gVd+D4U/iqOCY4Ifk++hq6ZvmMeXu5sHoNeh25g7mGOen6B3rNO+o82n24/f2+Yz88fzR+q/51fydArEGUAe4BvIGzwe6CN4JLgs7C8UJ5giOCkIN/w3ADDgM8Q2GD6YOfQxZDDkP1BKRFAgUWRK7EMcPBw8fDScJjwR6AggE8QY4CE4HywVbBKsCaAEsAs8ErAbqBegDvQLcARD/rvrf90/4+PnT+RP4svZm9pT1pvP98ebxovK/8mnycvKD8j3xtu4d7Q/uIvDL8ILvee4z75HwjPDs70Lx0/UT+/79c/6z/gsAWQGlAZcBrQKTBGMGxgchCfEJNgmsB38HaAl7C6IL6wrGC0cOjg+ADf8JpwjZCmcOORC9D1wOng0ZDbILtQniCJoKYg2eDicN0grKCWkKJwusCu8ImAaDBA8DpwGA/5/8/frF+739aP5k/bX8Ff39/CD7cPnI+QH7QvrO95b2ufeF+BL3JfU+9Z320/Yi9sr2t/g0+d32KvRb86Dz/vKd8dLwXfAU78LtOe4S8HLwoO4r7Z/uZfFu8vzwEO8F7s/ttO5Z8br0P/bO9OzyNvNO9bT2e/Zo9sn3Svp5/MT93f2g/BL7JfvV/RsBUQI1ASUAkAB3AVkB3gBVAZECAgOoAvECmATqBbIFQwWIBrcIGgkdB6UF2QYWCSEJIAdIBoIICwwcDkYO0Q1vDTANuw2yDwISnRJREWMQehFcE8gToBLBEVUSWBOnEysTjxL0ETYReRD0Dz8PRw6gDSYOPQ9nDwIOaQxRDJENOQ7DDPwJ4AeUByUI+AfgBpMF6gQxBNwCNAH9/0j/Vv76/Kz7wvq8+Y/4/fdq+Lf4mffh9bD1kvdG+aP4S/aQ9D304vOV8nHxGPIm9Lf1mvVz9CjzAPKQ8DPva+4m7q3to+y869PrtuyH7RLuL+8S8ZnyXvIQ8d/wp/KL9MH0tfOm89/00/WA9VT1rva6+Jf5dfk7+oH8kv7H/uf96/0c/4MAZwFgAsYDIAULBtoGCwhYCVoKSwuiDBAO/g5CD4IPIhDHEN8QfxA7EJYQdREiEgMSKBGhECwRNhJkEkMRNxB8EFERvRAlDnoL/wp5DKkNtQxiCr0I5AjsCTcKXwl2CHcI0ggHCGYF7wEm/2P9/fuW+l/5lPia91P2GPVg9EzzH/Gr7vDtN+8i8FPu0urF6JzpQ+tN6zTqLeqs65XsjuvE6WPpGupa6q3p0ulz6/HsMOxE6u3pUuwd7xDwue+I8Nvy1/Tz9Fj0wfTu9Wb2A/aF9sj4k/vF/Jz8gPyR/QX/8P8wAEEAhAA7AZUCVwSuBSgGTAYJB6IItgqdDPANaw50DhAPbxBtEa8QGw/sDrgQhBJXEt4Qxw84DxcOugynDCkOrg8EENUPlw99DmoMQwuTDM0OEA+KDcsMwA0+DvsMiwuGC6cLGQoJCLIHTAjbBkED6ACmAQIDHQIdAAsAqAH/Afz/1v27/eD+hv80/2b+cP21/B79U/62/nf9dvy6/REAiACe/uP8F/3p/bb9Jv2j/Y7+cv6O/Vf9uf3w/OD6vvnK+kX82vsV+hf5ePl1+XT48fdc+fP70/1m/nX+Pv6+/Wn9Qf40AG0BuQAF/x/+aP5u/oT91/yy/Yn/mgBKAIP/2P7D/TX8rvtb/QwAJwFFAF3/FACZAUsCgAIsA+4DJwPrADT/Jf8///n9RvyC/Ln+yAD2ACcAz/8bAF0AbACNAFIAd//M/mT/lABfAEr+hfz//PL+9P9w/7X+bv6R/Zr7G/qf+mH8Z/1x/bf9oP60/nn9TPyB/F/9q/2P/dn9ev0e+6337fWm9pj3DveZ9tL3lflZ+ab3V/cr+fj69fpD+h/68Pnw+D/4Ffku+rT5kPgh+Wz71fxJ/JL7N/zt/Jn8ffz4/b3/xP/R/l//VAEsAj8B7wDJAvoETAUkBDkDfQKOAT0B1AIoBRIGDAbqBpEIHQgfBcsCwwPgBekFOATJA0YFCgYWBUkEUQW0Bp4GlQVsBdYFVgXaA/ACWAPhA9IDuAMkBFEEeAM6AswBEwJTAgICugGCAfYA0//O/nb+q/7X/r7+A/8YAMoBqAK4AVf/ef1//ZT+Af89/pP93/1h/uf9z/xv/Av9oP2K/Uz9k/3X/V79afzx+xf8Lvw2/AT9HP8JASIBav/7/RD+7v64/lv9b/wN/XX+7/5I/u79GP9CAeoCUwMxA1EDkQM3A3YCDAJcAoQCNAJmAlIEBQf6B0kG5AMqA50DjAP0Ag0EFAdlCaEIYQaVBaMG9wbPBREFRQaXB9kGpAR0A7oD1AMxA2wDYAUcB3oGGgSAApkCCQOKAtEB6QGMAj4CkQBi/hz9Jv0t/jf/8P/m/2X/nf7M/SH9UfxK+0H6APrH+tP78vvb+pH5DPli+eP5L/ow+gL61vnw+S76+fkD+f/37Peo+Ff5b/l0+Zv5k/kD+bP4Mvkn+pv6efp/+tj65/ou+iz58vjX+WD7hPx7/Fb7RvpP+nH7t/xi/ZP9Rf1q/FP77Ppj+737f/u1+0/9D//B/mH8lfr1+kT8aPx5+wT7ivsh/F38v/xH/RP9KPzT+/b8c/6p/s79V/3g/WP+z/29/E/8Ev1y/mv/mP8d/5z+YP5B/vn9sf0R/h//KwBTAGX//P0w/ZL97f4iAEMA8f9mAOkBWAOGA/wC1QJHA88DXgRYBUAGFQb0BG8EFwWnBb4EiAPqA9QF5wbwBVgEJgQWBbsFWAWxBHkEpgRBBT0G5QYpBoYEkgNZBD4FaQSaAmQC1ASRB8kHdAUHAyUCWQKOApUCtgKYAigC9wGSAuACmgE8/+79hP5Q/4T+1vw8/AP9wf3K/ej9h/7O/jX+zf1H/q/+z/2s/PL8Tf6Q/kn9Sfy8/Ev9qvwA/P/8rP4G//v9vP2r/u7+pP3R/Br++v///57+Zv7z/3MBtQHhAbwCIwPgAVYAYwDUAX8CvgESAbABAwPiAy4EYAQgBEUDGgLWAUwC0QLLApACcgKBAooCswL3AhoD3gJ2AggCvAEsAXgAn/9V/7f/SwAfAOL+vP3k/S//BgCR/4L+8v3b/a39fv20/f79iP2X/F/8Tv06/gr+Kf3A/Nz8vPwn/OX7Zvwc/WD9T/0J/Xf8S/sp+vD5pvq4+2r8+/yh/Sn+b/5n/nn+nP5X/qX9+Pzu/En9YP3r/Lf8Q/0z/pL+Ov7j/Zv94vyM+9D6a/uW/N38bPx3/Dj9Sv1P/HP72vte/ML7x/oh+1X8DvzP+Rv4Efk6++X70vo++j/7gfyL/ND7evt7+0D7AftO+yn8afzO++X6bPpP+k36Uvqu+jv79vvA/H79Gf4y/tz9Fv14/KH81/0w/6L/7f4z/uX9xv1A/fT8hv2W/ib/Rf/H/7UA9wAtALn/DAFlA/AEwwTiAz0D6wLaApED/QQHBpEFbQQbBNQEQgWNBM4DPgR8BTMG/gXfBeAFVAXAA6YCaQMpBQIGcAXuBF0FagX0AwMCrAHlArcDUQPqAmoDoQMiAjIAw/8GAesBuAGaAVMCfgIhAaX/IwDAAUICMAG8AOMB0ALBAfj/mv+wADAB7wBbAQMD0ANsAmIAIgCRAbkCvQLvAu4DpgQmBB0DxgLDAkMC4QHXArIEWwXyAxwCrQE2Ai8ClgGbAXACywIHAkEBbAG3AQ0B9v/h/xYBBgJDAmgCFQM4AyYCvgB6APUAwQBq/0T+G/5S/jn+A/5Q/n/+Sv49/iv/UADK/5H9e/tF+4f8uP1F/mn+F/4W/bP7/Pod+6b78/te/Kf8Xvwo++T5tfmQ+mT7l/uB++/71fxw/RX92PuW+v35H/o7+uv5bPlH+bH5cPqW++r80v2X/af8P/zy/K/9T/0c/Hj76/vI/Dr9XP1r/U/9xfwu/AX8TPyF/Kb80vxB/Yv9f/0j/aT8NfzS+6T7lvvD+yT8jfyU/OX76/pY+nn6JfsN/Pv8gP06/XT8J/ye/Nv8O/xo+4n7ifzo/C38b/tt+837qfuJ+0z8sP2S/qD+kf7V/r3+Jf6u/Rn+q/66/l7+hv4D//7+XP4R/o7+Iv8g/xD/t/+eAIMAHv/b/ez9b//zAL8BpAFWATYBTgFWARQBsABrAK0AXgEvAokC1wFTAO/+vv7Y/0kBLwJ9AoMCcQI9AiUCkgJWA+UD6wOJA9ICvQFyAKT/p/8pAHwAngDiAFQBoAGRAWkBYQGyAYACzwPxBPQE0QOTAhkCKwIRAgQCnQLKAz4EaAPFAW8AsP9l/8v/DQGtApgDvgOqA9gD1wN6A3oDkQQoBtkGBgZlBOgC7AGFAf0BLAMvBC8EwgP8A+MEMwU1BDgDhAPZBBoF0AMqAtsBjwIhAxID6QLLAoUCOgJvAsUC+wEEAJz+Qv/9AJoBjACV/7j/RQAFAE3/L/+s/wYAGAAHAJX/Mv7G/O/8AP/gACcBPwAJAIsAxQBXAPH/AwDu/4r/jf8fAC4A5/4//bL8Lv0//W/86vuk/On9Vv7e/U79fv3p/W7+1P5H/1b/w/7T/U39df3//Sf+xv1H/RL99/xg/Hr79vor+1377Ppa+sr6Bvyi/LD7YvpU+qz7Bv1W/QX9xPyQ/B38b/sD+6D6Efp1+aT5rfq5+7b7mPqW+W35W/p1+yP89/s2+4b6hPoA+1n7Dvuu+s/6LPvx+vb5Wvno+Sb76PvI+0j72/qV+sr6w/sR/dv9+P1Y/vD+g/5x/Fn6Z/pi/Ob9pP2A/MD7h/t1+xv8af1D/sn9Ev3V/cP/JwEqAZcA2f/f/lr+rv9eAkMD9wA0/qr+vAEhA/MAsv4fAPkDKwXrAZr+YQBGBo4JJgZmAMn/7wRkCKQEg/5f/nwEUwj3BNf/BgAcBAcFhAER/+gAcwPsAjcBhAFhAqcAkv2d/V8BnQTIBIwDOwOYAiIAJv18/F/+1gAoAs8B4f+M/Qv9If9dAdEAjf4j/voAZgR9BUgEXQIWARUBmgI4BKcDAQE6/zoALwJ6AhQCbAPWBS0GygPhAccC0QQVBUYD+gA6AFkCewfwC4QK9gKx/Hv+lwUKCdIF7gHlAvsF4QX2ArsBDQO0A1MDLwV6Ca4KbwXq/sf+WAQRB3QCc/yQ/WwFFgsxCI4A5PyxAPcGxAgABW8Aqv9bAlEEmAKi/pz8xf57AsMCJ/5v+Tj6sv+2Aif/EvnM9xr8SgB2AFn+mfxd+mX3xvar+mT+PPzQ9gn3G/7DAS36J++G7wz9HwlvBj35hvBX9Fr+sgO8ABP74vlv/vgCYgHA+tj2sfrKAWsDyf3P9xT33vnw+zX9jv+FAMr8CfeB9l781AAb/qP4x/hB/gsBm/0W+fL4MPsp++v5bfsY/xP/7fmr9Zj4gQALBlcFMAGT/Zf7+vpo/KL/8gGoAFP9JPws/tj/x/02+g36JP5QAQX/fPkF9+r5P/3a+4P3BvfJ/BID0wIN/RX5mPvlAHQC/v7z+tT60f6lA7MFuAKU/NP4u/wuBuMMHAuaBMMAmwH6AgsDnQRZCEoJwAPr/JX8wQHIAwz/hfqF/ZYE+gaXAhf+o/0M/oH7IPlB/OMCpASz/Sj1avWP/4wJGAmD/xz4gPsDBooMugk4AzUBoQTvBycItge6CBIJewbPA2UFoQmZCWQCQPrT+U0BpQcOBbH75vQC9vH6F/zY93D0cvdz/ogBZvzK80jwx/XJ/yMGXAUtAd//DgKsAjT/yP0OBoYUYBvJEu0D3/7nBl8RyBQ0E68R2g4vCCcDnweKEt4W+w4DBMwA5wLdAMX52vZA/CQC7v7V8wDqOeig7qn5CwNkAkz0ZeKR3cHsiQR2EyYTwgkW/2H3MfeZAsUUeB8HGpEMpgW6B4EJaQhcDfUaXCFdEWT2d+0vAGAWRhX7AX/2kvuA/gDx7eDA5Kz5mwX6+FXgDdFF0o7eX/H9Ay8Ga+uzxN25p97uFMgpVg324cDRvePcAO8VCCGgIrAVwP1u7nT4CxPeJDEifBabD0UKUf3Q7r7vkgPJFs4Uy/8J6+3iiOOC5TrqTPSB/Kr2GuJAzRPJIdob94YNEgsE7arMhtAgAU00UTUNBXvdeOvVGJIvaSKZE0YXnBam/zrv1AeuMvk0BgWd3THs1xBCEKzrAdq58Q8JBfo33PLcOvgvAXvoidKZ34b9hwSd7TfWOteA7PYCRg2TCcr/RfyvA/IKqQaE/34IEh6BJG0QFf1IBjsbDxW29MfnFQURJncbQPIx4L31TAqu/Xzn3+0SCAkN0PMn4RLvewjUDIb/gPtIBT0G+PPk4LPf4+pI95MKaSudRLQ0I/7u0ZjbOw9wOhc/VyqIFCABcuvS3xfxCxatKJQSmet23cHvyQJI/aHsvuz2/nsKXgFm8u3wJPpy/o77Rf8wDhEYNAx484XoaPX0Aor1nNZf0wMHS07eYt8o59Mssh3bCiC8SPRHSDHKEhTxvduJ6GsSaDF2JD353d1F6xQLkRTe+mPZL9RL8c4TTxxzCrD3zfSU+On24fipDFckQR/6+cjci+dHAnL+eN/r3bAVX1H9RiL6Kr3/y4QHYygjHP8MixZXHYMCIN5q4qwO4yh9DdHjXea0DTAam/CAwy7N1QA4IaoWWQSqCPAPivxa3oLfnATrIgsbXP/m8RrzAOu517/UzvDxE5YdCQ6x/1n/Kv9X9B/tbfurFf8fHBPWBf4JYxE0BqLw8e1tA3ATJQia8mDuF/eV8xvjreHE+lQURBSkBJL+QQIB/gTzfvUMCGoSVAXY7uTgJdot1zvjzP7pCxf0/9Yf6Lge6zSsCTbWuuC/GPEzlRocADAJ8BU4ARvlePCLFDYWuOuNz4rnUgqb/0vVPsjp6JoINwSZ8iL3pAgXBxvz7+x4/wgQNAcN8f7kwuZC7a/4AwltDIfzM9Va3lMT2j3FLl39MegjAiUhSSH0ETYQdBRbBzr1EQEbJegravqwv427E+qQDEwAKOXl5fr8bQhPASH/+guXFMsKGP8bByManxk2++nZLdjl+GkcriH+Bd/jddZU4/79ZBnWLMwt1BXY8zrpzAU8LXAy/Q0S6d7qmQpYH54SPPLz1ifMdtM/62kHWhHd/wTpc+xWDFUp7CicEs4AkAAXCloR9w/BAsLtKeOJ9boZ2SdtCfPcq9Nc8QcI0Pxv8I8LFTj8OH0FU9/O+JIr4i2V/HnccfSIGNIQwOnK1x7lleyE3z3dOfnpFFAPoPrC/tkZ7iWbFrwIqQ67FLMIcPxzBQkUsQto9tT3CxGoF7D2ptN62/UBIxS8AKbrl/cMGPEn7xkWAq73YP52CmkPfgiA+p3vru3S8CbymPCz73Pvau267LX0MwVWEgkRNgSn+FX2wflA/P/8b//rAkwB4fjX8hD5vgTnAQzqodNC2Un2kAssCDP7avaN9H7t8e/KC7cq6SOy+fTgKfhcGH0NruXQ3KMCuiRhHKoDkALIDRcBSeXe57sPBiv+Fp7y4O3FBdQSQQgU/bz9ufwq+L4GSi1FRfYr1vcU4IP0sw7zCvjzHemJ8BD3ZfCr5bHkru8x/O78EO8n4tbrVQofH2kTtvl19r4LWhbaAYblq94J56/mWt5d4XzuKO7G2kTMMtKE21zUUcaux6zajPL7Cu0hDyajCFLfZtND61oCvv8i938AEw5vBb3sPN262FfQZM8h8dApekVFL7US/xmJL+0lKQSC+dgQ/SOGHQAWbx+fITEIE+569R0N1grF8U3vWhHtLgYmqwthB80ccjGkNIEn8w4c9j/ytgmLIXkd7gn6BqkS5As87MHUP9gb4mPmhf77MtBPXiVZ3KbKpfjwFcn1wtPv8pwyd0CyE+fuVvF+8CnOm7GMxfrvYfy17pHzPw6LEJPqmM2q5rwcpTP6Gqb5EfWZCnwgNSQXEy73buMp5xL9dQ0uBdznBcz0yvbt4iC9OQgh4/NZ6moU80MWSJ8qrRo6KAI2ISyjFggGYfFU0Ju6jM17+8UVsAnF9HH0WP4w/Dn3OAqHMLxEcTPwFtAQjxySGsH+6N6105rdSOyA8jvquNDErXaZN6w34gYYSyrKGOADzAhfIyk22Cw6EiEBvwMQCeH7od1KwtG2RrXFtCi4Q8by2VrmT+j56FTv+/j0BDIYVTChO/krEw0s+X74jPjR6H7QqMHEwOjGq9Bj3AHesspGs3G9EvU1M3lGqS3kFX0fKDqbQUcsgQ1u99TrveYU5Q7fqszGtYiwMMfc6AT/7QdVEJ4Z+RiHD9sQZSh9RbVNSjzdI44UcgwkAUTvD90e1HTbc/J/DhchYyJ0FWIFNgFSFaE9PmAsZBFQ5EQsUsVfBlBCKcsJ8PqY62vVOcr10nPbcNK4x/XT2+9t//v7s/Yv9WXsYuPC9ccjqz9xJsH0CuDq61Xs/c5ntz7FnuWp84rt8eqb73DpXNaIzlnjtglXK788Qj0EMvAnjioKMS4jK/x72WnYn/BpAbj7r+wZ5LPkku4QBFIeWyxJJhYYLxN7H5I7fl5TcmVhWTOXDp8K8w8Z+/PU88nK6soUlSI6GK0N3QW09Irg8d/Z+egdnD0qVxJmml8+Rvgt9iChEZj0Q9kL1qLmTPL57hvpDOrX6xPrCfHyADgMjwba/LIGRSZtQ2JGqSy/BSTlpNiB35zoNeFzy22+kcs/6J74m+yHz2m7ZsGQ26v1lgPDDQMi2DpDQj0uNg9G+Mnm9s0asu2k6qkosr+1Z71KzLfUYNDV0OrjL/Y862TOoctr85If6yNcA9PhitEeyN+9aLsew1jGhL2zuVjN7uul9JrcZb+CvunZXPOo9Wvu9PmwHK86lDlEHj4BXO1O23jJ68OBzW/WkNa/32IAMiLGIusHQ/q8B0APlvuz7p4R200vY7o+YBEjB4MPowTj6Hbcqeft8172Nf5WE/IhnRaA/LvvgvzvFuorQzG+Kpoo1jboSOBA8hUD6C/b8+oB9ibwY+6U/ikRqRZtGX8l4yqCFEbyWOw0DDIvFjjfMfMy7DQnIzgDt/Ak88DyyuC+0Q7g6QEHE2sDIeqT41jv3fjq+VsBsxb0J+sflggDAiIWFSavEyXuyt/X8uoE/vvG65rxPANtAlr1gwFLKYs68BZz65D4xjaWXzRO+SjyHrwnviKyEk0S5h10F1P/Evz3HLw5XCo8A+f4TRcnOGQ+1DcwO8ZCzTsEKBsauhj3GZkYvhxNKx06dDs8Lv4dyhSiEg8Q0gkTBocMqxdiFwsIYf63DuIsBzYaHQn9CfUAA/oNUwr1AKH5dvHJ6M/muuoR6ObZeM2k0AbfXeqo7NToqeFo2hzZBNyj1VvBAbRIwwjhPehM0TG9DMN4zlXFPrVGug3K8L82naKQi7Eo2jDf582Oz73kheny1QXMS9wF51PRCLY9v0rjwfCJ1/m9g8U33UbjAdl62WDqzfQw7aLmifMOBmEBluMhzBjW1vZ4DKEHHfsC/kwKXQc98VHgruMp6MbZ+8x36A0mhk1CPDIUcQqPHSUhcQa+73j1YwIn/Yz0egHPFPsJiuS+0TvolQjyDYH/W/tYBigNigqWDB0XcRoXDqj+JvmD+tX8PwNDDS8N2PxB7uD0/wQaAejlstHh2974hRG1IN8rYy3xHWkKuwdpEckLEO8F2XLlrwW6EwUFc/KL8L32S/Z99Fj90An5B975KvcDCy0gzRzwBVD4eQA7Ctz/B+sv6U8CeBt7GogIPgMPD0sPE/Mb1onf9wkuKBUkCRowJ7Y42yqJByH8HhIkHcUBmeV495QkijG4E1791AyxIEIU/fyKBBIiKinCFEoPEyvyQDwtgwh9ASMXpR7ABt3tzfEHCYsZth2JH1gfTRMH/UHuEvbdEDYrzDIAJvUWlBgvJsgm/g3F7+HnEfeJCEMSkRuHJDgfhwph/aIHYBdPEsn+b/vyEHcliiJkEm0J4AYv/FHqquKs7G37tv/S+Ofv0u2B96EKOhjjDiPy690K6VYJGSFfIdAS7QDh7kTieuSx72vsq9GRuzLLl/bPEPIDf+r35Y/yYPj584X1Pf4n/ov0z/a7ChkU9vpc00HFM9bu5H/bJMxx0inrAfth9J/mw+ip/Y8ROhAa/ij2DgoBKDoughZI/L/yEexu2QPMndlw8Z/wIt665uITrTJ/HH70ffR9F6EnQBX3Cf0ceCwcGdL8w/0wDIr8p9P3w0vf1/td9o7ko+pdAGMDEfEy5+3xFP2q+7z9whLHLSU4ni6UHNEGb+xW1HPHysJpviW/Ss+F6Ff2ivOa8On3xP0q+Pj0iwRvG/wgmxWvEMEX9RIo9cDUDstGzznKEcAdyCThYe/v6BPlPPOEAEv5/+od61Dyg/Ea+iEnuGL/cexFYxSACuoPQPi/zqnAudG53SfeC/SsIa00pBIr7ML4vCSYNF0ihx7oOvlQc0aHNEMyfCfx+gfKBMUe5kP6W+wv3Lfmvf7iCkQKaQn7B/3+X/FW5zbltvEVFdxC0leQQh4foxGhEnX/U9bKvMHGrtvI4lzo6P0IEuMIu+2u5qL7Cg3yByECCROBLes1QytBIHsW9/503J/JMtN+4oHeZ9A/1PXsUwDd/iT4rvw7Af/ymtw63Or1/wsnDPMKBh8PN6Ix+xJt/88B0fyw4YbPTuLQANIA9ekY6W0GJhjJBmny2fz1FDgYPQ2dEy0qeC/7GdoFNAWLBqD4q+ca5Orm6eN14xfwQf5m/U70TPIW8rHpaOjCABUbfg0f5A7fRxPwP08oXu8d5KYLnyDiAjzk3/CtCY/+ReJB6oITLSMtA5jkRfT8GaoiqQuz/IgGZxAYCJf+IAcwFPYMnPYz7uT8IAogAdTvc/EVBVcPGwMI9c387RKZGwsMjvQN6IPqVvd7CZsW7BJOA6v9Tgs3GHsPevyE+TsG/AobBFwJtiBgKuYQt/HY9XMSCBcg91fceOdeA6ILWwEF/ucFBwh3AeYAdwhgCWQA1fsT/8n7VvE897UUzCgaFqPy8+mu+rn74OK72LD2ghmHFif/jAOqImoprgQU48LvPRMwHB0LxAliIgsvYxnu//MDUhQZChjpsdsq80oQdhQyCkgLbBbGFxoNlAe+DJoPWQgzAIr/3wP8C9Ab+yq+JHAH6PDd9qoC7PHD0KPOE/fGG3oXzwIQCdgh6yAdAP3qAPpXDdsCOu5t+J8cBC1oFsX4bvTq/k78tOul4pjo3O+G8PvzSQGODQoKOfiy6JznifAa9G7p5drZ3hH9zh6RI6sHQOqV5kvzAPNQ3UDHxMX+10TxLwlcGVoZMQkS+an4ywF3AaDz3OhI7X346P03/ywDlgQv+nvrwOoH+eoBHfp78Wr6xAw0E+AMUguUEZgNFPne6ETsxvE242LPJdkhAGwawQ7r9nj2ZwYbBl3w+d+Z4tXo8egs8hkNzSKIGzsFlv8JC4AKOvQK4lfn7PLb7ffhguh6/XMCOe0A2SffG/Tz+orv+Ocu860GTxIKFRQWWBSyCev5sPAZ7gbkGc6UwbXU4fpyDUT92+eT7TkDwwT07LPbNuPj7jDso+00CdoowiRMBBv6mReWLo0WBOse4lz8GAsC/bjz2wPCD/X57NrM3az8NAnq80PizvRjGTwroCb8InoniSOjELgAAQHUAxj24eAa4VX+VhumGDb93OxV+SUM4AfS8Fvk4e3s+o/9KQNYGY4v1Cu9FfYOEyBZKl4X3fy7+oAKLw1h/8/8NQ9RGswH0Ozh654C3Q4yAaHvKvNnCGEbWyODJW0lVyGTGmAXjxhvFUQFke3+4RTyWRPUJJ8SC/LP67kGvRuGCvHmr9vH7EP4DPJu+N0crDsxLbIH0gTyKvk/ux+n8nbxoRIbHx4I6fZZBGUSEwIE6TjtfAQuBBboUN0g/dMkzyjjEXcJ5RlHJkAdrRDLEkEXRAoG8gzmcOz+9SL3N/X+96n97gBfANb7Z/J555fh3eLN6Ev1gwvzIZMlnxTbBuQNxhiqDHHwR+Zj+EcJUQHh8W71lwJ0/CLlft178CYAJPUu5JvtjgoQGLoLbP+OBi0USRUCDsUL1Qo9/07u3Onf8tH1Xelc3nLnPP1WCMcAzvRN8+n53vyY9mjsFujW75wA/g5CEdYKEAiEDQARvwgZ+r7xafE18AvsTO5J+icDFv3M8PbvUfpQ/K7trN9o5bL3hACl+336Ugb/EPQLmf+c/YUEJgOr9S7ttvQy/0/62+iM3VnhluzY9fn6uvu+91r0vfiG/5X6fel44DvtPgEzBmT/VAKwEtwaDw/V/on6ifni7brhN+mO/qQGifq48UH70gS5+Gfiq92C7d/6Gvqj+BUCtQwEDDMFRgROBwAEDfvM9z/+4gWxBnwBuvpS9R/zvfMn8lnsg+rq9ScHFgw3AcL3qfvfAU39l/ak/foLuww6AFb/0BMQJWYZ1Psu63/wXfl3+Ef1W/jO/E/98v/oCUoR9AoE/e/3qP58BA0CW/96BFQNTxHXEPUQrBDaCiQBUfvY+2X8nfix9Xr6KwRcCZEGUQKQAnsEhwLG/1gEew+OE4oILvpc/GMPKx2tFZgEpQECEOsbuhaiCCUB/gEeAxMDjQZcCgwFf/hc9WAERxbvFU8F5fv3BucY8xyvEgkKkAtYDwsO1gygEmkZABUeBoD7Of5zBeICEvbp6xzusPmFBSwMeQ16C4oIeAXzAMb51fO69I77YAEcBIELxRuDKTMliBAH/+n8FgHK+5bsAuET4o/sh/eq/Of4au8O6hzwFPvy/PDzQe5L9REA7gHE/soCBwzjC8X/5/dk/jMGhf4t7YfmP+/Z9pLxNuj95wjvLPNg86P1DvnD9srwaPKS/bUEMf3e71bs0vLL9jP1XPn2CHkX4hYDDHwH0Q2DEqsKqvox7r/qFe8O+Nz/q/7u80rsj/PTAvkFZfYY5ZTlSfX/AXcC3v50AVoJnQ+lEWQQ4QsyBB39wfq4+8P7CPow+Yr5d/jW9aT0XPVz9AHxMfDf9a39kABN/v/8T/8wATH/9fpb9630I/Qs+pMHPxSXFnEQ3g2pFP8aehNX/lTrx+fD8RT8z/0V+l75Uf7jAiUBQPtR+NT56PnF9Rr16f9GEHMW4A1dBOwHqBJ8EyIGKPhq9ej5e/yv/M/+4AC//if9IQSLDlIMBfo/6tLueQDmCNQA6fY7+boDawlxBcT8QPW28vn27/5UAiX+oPtnBQMXvCDoG/0ROQ26C6oHgAKMAEP/5foY+SACZxC3E+QHWPwX/hoF4gFv9ifzOv6VCkcMRAjQCYwQPRMgD3cKnQiMBUL/Nftg/v4EsAfMBTYEagWPBjcFhALA/2/8dPki+nT/xwQYBfoBLAETBLoFHgLW+2/4nfk1/dsAlAM4BAUDNQM9BxULDgdT+9zyk/arAOIC6PnR8Vj2/ALzCXsF0fxs+IX4xvj49+z2pvT/77fsyPD2+1wFmAV9/+n82gGbB7wF9fwI9o/2wPpz/Pz7Pf4SA6gDp/xX9D3zwffl+ErzSO698Un7dwIABEgDugO1AwYBBf2L+hv7yf3CANYB//96/Zn9sf+//sH4iPJW8uz2+Pmk+Dr28fXn9iD4qPrb/b39Cfm99Uv5lf9X//T3X/MS+Nz/BwF0/H77zAE9CIsHAALl/mUAkwHV/jL6Vvjp+aL7U/qR9qzzHPTg9q34X/cq9CXy/PJ+9Yn3YPjs+Eb6B/xn/aX9df0y/dv8RPxF/PX91wCwAmoCyQFZA6MGTAirBTYAXvvk+Zb7Zv5s/8L95/vn/RoEkQkrCUMEYgBYAPcAHP97/NL8jQCvBM4HyAr3DdIPtA83Dz8PRA4bC3UH/gV4BngGiAWEBWwHBwkTCHAFNASaBWQHjgYMAz4ATAEOBRUH4gTzATsDiwjVCwMJxQJx/j/9o/xK/Gr+WQOWBwoJ4Qm4DNYP2Q8cDdYKBAo6CF8EgQDM/rX+pv+0AgcIkww2DWgL4gr9C44KhQQM/aj5r/suAKkDZwUfB3cKow5pEDoNKgdlA1YEpgarBZQBmf7o/u8AsgLFBHMHNQmPCLYGhAWMBJICewA4AHIBuAEmANv+Kv8/AMoAMAGbAbMAl/0F+vv3CPfT9U/1lfeN++n9Lv4vAOEFCwv2CU8Dsf3D/e4AXAH0/Bv3ZvQO9jn5cPow+Sf4cPm9+zX8o/rV+TH7jPx8+5n5rfqi/wIF0wZxBP7/bfyQ+zb9if5s/FH3j/NS9ED3a/fA83Pwr/HY9gr8Wv4y/Wn5//Rz8ivzSvU29kr2c/gl/dQAVACt/aj83fxG+qX0IPEs8z/2SfRX7+zvrPi5AScDrP+d/yEE2AWDAEn5/Pb9+B/6Kfkl+eT6Avyt+1/8Qf4U/k/6ofYP9gT2OPNO8MLytPm5/bv7cPmI/U4GSAxqCzgGKgH6/mcAAATPBckCmv1//HQBBwcCB24CCv+X/9kALP8w+0z4DPhE+XX6pfuP/SoAnQJCBEsFzwVwBeQDKgJrAU0BWwDF/tn+YgGdAw4D2gHpA1wI2wkzBmUCHQMOBk4FwQBc/pQB3Aa6CKsG4gOUAmQCdgL1Acv/q/sK90T0kfPA85PzIPOk8gLzTvV7+aj9bwC3AqQFoAdUB1AHOgvXEEwRmAt0B8oKHhCJDgoHAQPbBaEIBQbFAgsFCAo4CjgFJwHuAGYB3wHIBn0RlxtcHnob0BiIF4EU4g+mDR0OjQx3BpkAlv9CAb//tPpM98D4MfzE/Uv96/wD/bX8v/ug+lf53vds91z4nfj79fDx4++I76fs2eX13/rfDOPZ4t3eDd4l5Nnr9O046+/pNOwu7krtUOx+7fjuqe4z71TzOfgh+TP3c/gJ/uYBNACZ/XAA1AZoCfYFKwJtA54ItQ0DEdYSMRMyEvYRbBNpFFUS0A4DDjsQVhF5DisKvAjrCmoOShFWEzoUxROxEs4R4g+MC6AG1QVBCv0OWg54CT4GkQdkCX4HjAPnAiMGHQjZBMH+CfsN+nn40PRa8gzzc/Tw8urvi++S8iH1tPRF87XzovVQ9//4/vox+3/3CfNf8334f/ty96rwVe6T8bH0W/Tz8r3zBvai92n4M/nG+f75ffsR/1wCtQK7AdoCywWkBpUEswNEBvIIAAgkBkwIWw0dD7MLcwjbCUEN8Q1ADFgLpgoxB1oCqwFRBmUKRwkiBgEHKwsCDagK9QegB/gG1gPlAFQBvwLEAHf87fv8AFQG7wa2BKoEGQe/B3cEc/91+7r4kvcs+Sf91P+K/n77jfrL+7r7GPmI9uL1bPVR80jx0vG581vzCfDh7CvsgezE61DqfOkP6eTncOYi5grn1uc56NTodOmw6NrmPuZY6D7rr+zV7J/tC++i7yfvY+8p8R7zI/QZ9Qz3I/m/+SH52viK+cj6jfw7//4BEQOiAs0ChAQkBhsG7QXvB2wLig3LDZ0OcRH+E/YTaBIgEmUTFxSwE5oTfxRRFC8SdxDFEd4UFxZyFPYS/xOoFpMYnRn2GngcEx0sHVMevCBHIrwhUSB1H6seqRxaGskZ/RqlGy0aiRc2FVQTWhHtD4YPcg+kDqYNuQ1HDnkNFQsxCVQJFgqfCVYItAcgCBAI9QZXBYoD7wDV/av7gvtW/IL8ZPts+fH2lvQh8/3ytvIL8UruP+zI6zbs8ez87T7vJPDq8DTygvOm8jLvr+sR66TsX+0D7Gfq+unH6VzoZ+ZS5UblWOWQ5ZnmWOh66X/p9+jD6IPp3uu27y3zx/Om8RrwkfHJ9Gn2cPXj85TzbPRV9e71/fUV9drzDvTK9j76ivt1+sf56fue/34BUwAk/u79CgBdAkEDLwNxA1IE2gTzBKcFogfLCbsKdAo2CpQK/wojC9sLlg1CD1IPkw1uC1gKVQrRCggLiwpACYUH3gWVBFADKgJaAVUB7gHOArEDgwQnBWgFDAW5A5EB1f/W/5IBzgKmAX/+fvuh+R/4Jfak9Jz0SPWi9Ozxze447WrtLe5S7jvutO7p7+3wtfCg7yLvSvBq8gr0zvRh9V/2wvbV9SD0XfOV9Bv35Pnp+yn9sv35/Sb+2v3n/OP7WPzO/i8CfgQVBeAEGQX1BR4HdggdCukLOg0VDkcPUBGWE8AU5hRjFUIXWxnKGZMYixfsF8YYLhkjGnAcmx6THcIZyBYZF7kYcxixFiwWXxftF9UWGhb4FjYXIxXpEkMUDhh9GZ4W8xIdErgSwhHGD8YPkBF6EU4OrgvEDIoP6g+7DV8MhAxWC8gGqQFw/9v/MABx/yb/hP9I/+X95vxy/Gf6vvV+8Tbx1/ME9SjzOvHl8aHzs/Nq8vfxZ/Lp8U3wW+9c70LuTusS6afpf+uc64DqSuog66vq3OjA6EHrYu1q7IXqIusv7ePs6umv6GrrGO8a8HDvofB58yX1VfQe8wrzcvPT80r11feH+RD5fvg++kH9kP6t/dn8Fv0D/a/7sPo0+/77evuW+iH7lfwK/ff7vPrW+Y/4Zfco+Kr6I/ym+jT4k/dl+Er4Mfcu99n44fno+Hz3WPe79wj3w/Vs9bj1//RX83Ty9fI8817ym/FC8nPzuvNh85bze/T/9Cz17/VE9zT4pPin+Yf7uPxe/L77Pfz4/AD8jvnw94/4DPqZ+tX50Pjd9zX3D/fm9wb5efkG+er4Zvot/ff/DgFKAPX+K/+KAaMEIgZuBQgExAPLBPwFEgYbBQYE4wPZBO0F/AVOBfoEtwXEBjcHPwePB18IKAnXCW4KswqoCjQLHg09DxkPmAyKCmYLhw3RDbIL/wmSCjkMKg1gDZINIA2LC1kKfQsGDr0OWgynCX4JjQs6DXoNGw3ODGYMLwziDOQNWg0rC8sJTwvbDR0OgwtRCZwJEQsCC5UJ8wjSCaAKFArmCPYH1AbtBGoDDQRLBoEHXgZ4BCIECgUrBaAD4gFSAY4BcAEZAT0BpwHUAIH+XfxQ/NT9yf4Q/gb9C/2r/Uv9Q/yT/BD/NAF9AIX94Pvq/Hv+H/4F/av9DAA0AQ4A6v66/wsBPwAf/v39oQAUA/cC2AGtAh4FZAZGBcUDvANzBFQEjwNkA/0DNQTIA4oDAgQ1BDwDkwGKALMAwwEuA2sEhAQDA9cA7f/nAEsCGgI8AGz+3/00/hL+Iv0s/Mj7vvv2+jf5Z/fn9u334vg3+Gj2o/X99qD4+Pf+9FXy0vFL8sbxSfDc7/rwLPLI8Xjwnu+P73bvVu+y77jwEfHs7x/uVO1A7tjvp/As8Dfv/O50797vdu8N78vvTvHu8Y7wtO4q7jrvY/D58HzxYfIY87HzsvQ29lP2FvQs8ZrwtfL99Hj1D/Vc9SP2EvYl9eD09PWn9y75YvoW+5H6Dvke+DD5nvtm/U79/vvU+hH78/yc/0sB1gBB/5z+ZP8WADT/wf2U/fb+hgCwARAD3gSXBTME7AEaAUUClwN2Az0CIQHRAAYBwwHcAnsDqQLmAOj/1QDSAhoE7QMJA5sCcQOXBRsIVwk0CH0FqgM+BF4G8wf3B1QHegerCAwKSwrQCAgGjwMCA88EowfCCSsKVQkcCJYHCggoCc8JOwnyByUHdgcxCHYIJwi9B4MHWwd9BywIAAn5CKEHBQaQBV0G7gZkBkAFGwXEBeEFkQQBA+QCEQT0BOoE9AT4BYAGLQVzAr0AyAAVAWEAr/9mAOkBZAKlAVYB+wE4AtcAOf/5/vn/GgDw/sb9FP5p/7sAkQEHAg8CuAGNAeoBMwIeAi0CgQNCBdEFbQTNAogCRANoA7oCkALuA88FlQbFBWQEqgPwA64EPAUBBT4E1gNnBMUFhAbYBUYEMgNdA/gDxQNlApoAWv/2/hj/Zf9s/+z+B/5y/bX9U/5N/lb9afyM/JD9bf6F/vz9Kv05/HL7L/s4+9D6w/n5+Dr5Jfp5+gX6e/mL+bD5l/ms+bT6VvxZ/c78MvuU+UX5RvrW+3L8hvtN+mX6+vtZ/br8mvqn+FL4ePlU+6L8nvwJ+0z58Phb+tv7HPw++6b6DPvx+4P8Qvw6+xv6K/rY+9D97P3d+6X5Nfnr+Tj6v/nW+eD6i/vl+qv5Tvm2+cP57/hB+ML4jfql/OT9cv29+xH6l/kA+iT65fkw+jz76PtK+2L6hfp7+7n7H/vP+m/7w/sD+wH6Q/qW+9D8f/0N/oP+DP4B/Y/8f/2y/s7+Fv61/Vr+O/+F/wb/Pv7b/Vn+i//LAMkB0QLfAx0E7wKAAXUB4AIGBEcEqgQPBkIHJAebBjIHSQj2B18G4gVCB00IDgciBSoF8gbaBwUHKQaZBh0HbgZWBW8FYgaSBqcF4wRpBXkG7gb8BeoDywEJAXoCwQThBRsFQwS0BOAF9QW5BDoDPQJ8AeMALgFyAqUDpgPgAkYCFQLKAUUBawE4AhID/wKMAowCQwPjA8IDGgOzAs4CEQPlAhkCEwFrAKcA0wE/A+4DSQP7AQwBDAF2AbkB2gEcAksCGwK2AaMBgQGzAFH/wv6y/y4BbgFcACb/p/5T/qT9+vxR/aX+LADmAHYANv9L/pb+6P+2AP3/UP4a/X781vvm+nj65vpO+zX7TftO/GH9Hf2d+2D6Z/ok+x/8J/0F/pP9qPvb+Yv5Ofot+n75wPlv+5b8pfuz+RH51fkl+uz48Pe5+G/6vPpI+Sz4Lflk+6r8bPyp+2L7E/tM+ov5l/kl+ln6O/q0+hD8Q/1J/V/8svu5+yP8afxe/Cj8CPxv/CP9lv1C/Rr9yP2//m7+1Py9+wT8g/wF/N37o/0bAGoALv6V/GP9iP5b/d/6YPqN/KX+rv56/az8WPzc+7j7SPz8/CP9cP25/ioAMAAO/2T+tP4X/+f+xf6s/qH9+Pua+2z9Vf9M/3f+Wf81ASoBdf5Q/CT9W/9CAOr/VgCFAdwB/ADEANkBgQJwAQMAZQAjAtICegGb/0X/WQCGAdUB2AGNAuoD/QTRBAME5QPaBL0F0AW0BRgGMQbIBPgCIAN+BTUHVgaTBK8EagYxBz8GgwUiBowGaAXkA/wDJQVnBZcEiwTiBd4GBAZfBK4D1gOFA2ACbwFsAfIBwwIMBHoFIgbJBVEFfAVwBWME6wKoAlkDewMmAs8ACQFlAjkD2wJTAi4CAAI1AYIAsQCAAQsCTQLlAtsDVQTbAycD0AJjAlIBPwBSAHcBJgKkAd8AIQECAh4C+wDJ/5P/DgBPAEkAzQBQAuwDRQTxAhIBTgDvAKQBqAB0/v38xv2x/3kAbf9c/sn+VgBBAeYAOAATACQADQAGAIUAJAEKAVUAqP9e/57+TP0O/OX7KfwG/G77fftm/PT8Vvxf+2r7bfwX/fX86vyd/Ur+wv0b/Gb6YfnW+Gz4Ifje96H3N/fS9j/2qfWi9dH2tPjA+Uv5ePiw+Mf5Qvq/+TD5j/lc+pf6Wfrz+dL5mPlr+Yr5+flt+qz6g/rJ+Zz4G/gK+bD6mPt9++z70P21/4P/Ov0U+8763/vC/IT8o/vV+gz7MvyJ/aL9jvy1+0v8iP3y/W79TP3w/VD+uP0r/dv9Bf/t/kb90fvV+8v8KP3K/HX80vw//XP9Y/1h/Q79KfyR+zz8Lv7d/yIAqf/p/wwBmAGiAB7/j/7M/tD+k/5i/2oBxwIeAqoApAAFApgCawE2ALAAOgIDAwsDdgOUBNoE5APaAu4COQNyAsQAFADqAF0CQgPEA2oEAwXlBEMEzQPfA/cDrQNTA2kD5QMsBOQDVgPqAqsCRAK4AYgB/QGaApkCAAKnAS0CCQNhAy8DEwNLA2UDGAPcAggDMQPFAu4BhgFyAfcAl/9Q/lf+vf8SAXYB/gD/AMABwwInA8YCJwLqATcCIgMxBNIEGgRsAjIBkwHVAv8CeAEzAAMBXQOZBKcD4wFtASUCyQKZAj8CIwJbArICigODBNoESQSvA6kD0AMzAy0CkgFvAQwBRwD4/38ADwEtAUYBqgFbAZD/mv2K/Vn/eQBf/1X9rvx4/Q/+of3j/HP8Evyt++j72fxA/UH8v/oz+sv6IfvG+lL6aPpm+sb5LfmJ+bj6U/u7+pD5Ifm3+aH6w/r8+Qf55PiF+TH6U/pO+mv6fPpA+oL60/tY/Xv9L/xz+2v8y/25/VT8WftM+2P7Tfv3+1z97f3n/OH76PwY//n/o/4n/S/9BP4E/gj9Nvxj/A/9wv0K/nn9NfxA+5f7r/zu/OX70PrV+mL7cPs++8P76/y9/eT9Hv7S/uL+w/0u/N/74PzU/cL9Bf2U/KH82vwi/ab9T/7f/lT/AwCtANQADQAB/5P+JP8AAGAA6v9G/yb/y/+YAL0APgDU/xYAkgCEAO7/ev+P/63/pf8JABYBHwI1AvsBoALkAxEEfgInAacBIgMZA1YBBgBYAAkBvABYAEcBtALSAr8BdQFmAqkCagHAAI4CKwVmBQ8DiQGiAm4EGAQjAikBCAIlAxsDmQKpAu8ClwLtAe8BiQLRAmYCWgI2AzQEAgS9AskB2wGNAsACnAKEAqoCoQJrAp0ChwNqBJIE2AMxA/cCEgMnAx4DTgO1A2AE9QQZBZIE/wMSBMEEtASPAz8CbwKmA0cEeAOkAu4CxwPDA+oCngJjAxUE5AMCA4gCUQL0AVgBBQEQASgB+QC+AIMAiwDXAJABMQI8AvIBJALNAvUCwgEBADH/yf/yAGsBDAFJAOr/JQCEAAUARv5C/Jz7mfzZ/d/9BP1//NH8KP0h/ej83vyX/N77evv/+9f8uPyX+8D6Evut+0P7HPp1+eD5Zvpa+mr6VPuJ/LT87vty+977+vse+0f6DPux/CD9Hfyj+wz9lv7S/U37vPlM+jH76vpT+hT7lvwN/Vb8G/wZ/cL9xPwD+3n6Y/s8/BT8c/tY+737H/wn/Pr7hfvP+hr6tPnm+br69/sc/Vb9zPwy/Pr7rfvK+gL6Qvoe+0f7k/qZ+jn8/v3q/Vn8jPtn/GP98fzL+6X7f/wq/RH9T/1c/n3/qv8+/+X+ef6L/Zf83vxb/rT/8f9h/xf/B//7/if/4v/UAAwBmwBlAMkACwG1AGcABgH5ATcCpQFKAZcBxQF9AYABnwLrAw4EJQPfAscDhQSMA6cBxQBgATkCUwKLAtMDXwWbBXoEvQN3BLsFywWzBJcDLAPlAkECxAEWAtQCVAN1A7QDGAQkBKQDZwPsA9YESgXbBCQEvQPBA9oDkQMLA6kC9QLQA5MEugRFBIUDpAK8AUgBlgEFArEBzACgAOgBeQOxA8UCXwJGAzIEkwOrAToAWQBbASsCYAKAAtcCIQP5AloCswEmAaUAPwBzAKoBKwPXA1gDyAI4AwkECwT/AhoCMQLDAvsCywJ4Au0BHgGUANIAIgGgAJX/U/81APkA1ABWAJ0AUwGHAQQBfwAcAMz/lv/6/2gA6/+1/iv+2P4v/9T9gPtE+p76jvs+/BT97v38/fL8NPy6/J/9If1U+/b5MfpG++f7+/vs+/v7mvv1+lL6Hfoa+iD6PvqD+vH6Rfu2+0D8+vxL/cr8cfsK+mj5fvl5+Qr52vio+Rj70Ptb+0f6vPnK+RT6W/qj+vT6/vru+gL7Qfsz+1/6VfkH+Qn6g/ss/Hr7Svrw+Yz6cfvD+737evsv+8L61/pv+wf8LPyB/AP+3v9lAAL/c/0K/R/9N/wA+zv7K/3a/vv+fP6//kr/8v7X/WD9Bv60/pz+M/5p/jj/GgBiADsA4P/d/1cAdwCB//D9b/2k/iYAbAACAHMAwQE6AjsBNgCTAJIBvwFFAX8BswJ2A98C3AGkAT8CpwJvAiUCEQIPArUBRwEeAVgBuAH9AVoC6wKcAxMEGwQMBFQEjQQ9BB8DcwLRArkDzgPRAiECuwIFBIoEyAOtAl4C3AKBA6IDPAPSAu0CogN7BNoEnAQgBKcDSwPlArMCnwKbAs0ClQPmBN8FrAWyBPEDtAM+A2wCGgL2AhoEJARGA+ICbwOpA7UCpgHmAdECygKUAUIB1wK8BAkFCQS8A6oEMQVYBOcCOwIeArwBTgF3AR4COQKnATABEwGuAOn/xP+4AL8BnQHmAAoB7wFCAmMBgwCuAIIBEgKAAigDZgM+Au3/Gf7H/TT+Qf6p/UD9eP0o/ur+Sf8o/5T+0/1d/TD9ZP2J/VT9afx0+3/7lvyf/T39yvt/+gL6vPlX+Tj57fkO+wb8Tfzz+9v6nvki+b/5qfr9+g/7rvuT/LL8Ifzt+178L/y7+nL55Plw+0X8HPyN/DH+eP8J/4T9rfy7/Nf8dPz5+6b7Wvs/+/37UP0t/tT99Pyk/DX9I/7k/lD/Sv/3/ov+AP4d/er7QPuf+078W/zQ+8L7Vvxn/GL7IPrU+R364PkC+aH4QflN+h371vuY/K/8uPti+in6Ffsh/Ar8BPvZ+U/5p/m1+s77/Pv0+sr57/no+3n+6v/P/wL/6f6g/yUAlv8q/jv9r/3//gEA+v+0/xUAQwEoAv0BJwGxAPQAGwG9ALMA+AHZA2oEKwMmAloD8AUtB/UFQgT3A9UEEwVXBKgDpQO8A8QDKAQ5BRkGEgaLBSEF4gR7BHME+wRFBSsEYgL2AXADCwXfBIIDuQLlAuMCHgJrAVYBkQHFAbsCqwQLBhMFPgKOAOgBFwXjBggGQwQVBJsFiwZIBRADnQJ5BFsGHwZeBEIDZwNzA9wCcgIuAtL/SPpL9DjyVPRW9h/18/IS9LD4Vvzn+2r5b/lE/cUBuQK//7v8oP4KBjoOLRGwDoAMNw+YE+kSRgweBwsJ9w2DDfIG0gI+B+APFRQMEhcP6A6SD1APVBBzFFsYZhe6EpYP6Q+ED2QLvgW8An0CZwJfASQAFv6++V/0DvH+8NTxz/H78aTyy/E67hnr6et47zHxv+/g7ZrtcO3R7IntSPB68QruUugu5cDkJeM539TciN5k4Wjhit/k367jdOhV7OLvIvMf9MbxYO4x7V7unu9771rvO/EZ9ab4/fl7+ZD5rfsi/1kCXgXiCL0LTAu3B/oE3waNC3QO+w06DX4OLBDRD38Oyg6dEE8RqxDmEWIX1x3EHzwbORTPDzkPXxD6EMgQCBDID+sRBRhWH2EhOht1EoEPjRKsEzMOmAfLBucJtAk+BLn8LvN55WjZd9pc6Bvx1+bP02jMrdFj0UvFq77RylDZf9EbuM2tGsV+6z0DTwXDAPcAWwT3BiMKnQ13DQoICAL2/gT+Of4mAoYJoA5LDQMJdwbFBaYGyw5VIAMwCy8TIO0VgRodIoEexRMvDyoSSxNeEUQV4B83JUofXhj7Gd8c0xaCDggSjh3CHhISeQpRE6scCxOn/sX4/gagFbYVhQ5aC2QJiwPUAMMI7RAACUr1m+s38/P53u8V33zbW+Up693j59cm0AHL9sVixjbPSdfl0kPErrh6t4u7Rr7DwfbLZ9wB66Hv9ul34mTjD+/n+zb+MPWj7P7uTPpxBPEHswe+CDULDwx3Cc0F3AW1C6kSPhOtDMcHoQu7EtQS3AzXDDcWkRuyEcYCzwJ5E98geRxLD6wKRRCxE1AOcAY7A9ID7gTFBnoJjAlDBcMBMgUhDsoVRhiMF+kVIhQzEq4PPwqVASv7Lf1TBQwL4wttDnEVfhjBENkFmgS3CxIOmAcCA94GJgm9/obuV+g47hPzwe877OXwq/k1/o/+Ev+l/pf5LvMV8p30o/EY5+vepeFT64vx4fAS7VXp5uXp45vlROlZ6hPoXOch7KHziPjD+aD65PwU/hX72/Qx8HPwXPRW+OX74gHqCqISBRXgE7ETjxTmExgUABslJ68tCyhQHcQXDhaYEO0IvwgrEBQSXwdX+7T7pQStBqD9OfWE9xwB+wj3CiYHmv4h9nj13P0hBiIGZADa+zr4ZfJ37ijz0fu0+8rwBOh+6QvtHept6PXyggJxBBP3uuwl8Hb1vO9B51nri/an9E3i9dTP3OTtKPJS5ybeMeDO5aHlR+FP3nHdl94D5j/zY/oc8YbgDN6k75cCWAMp9n3uF/RZ/B3+Yv7yBAMOjBAsDdEMKhF2EpMNzgteFZ0jRynjJIch9SR6J3EhiRj8FyoftSKYHMITChCDD7gMTgkmC8UQChItDNgFxQQpBRQBCfrd9ZH0YPFC7LvqWe0A7WPmdeEP5qLtxeqR3CHSUtYG4mPnSOQm4XHhpt9p2kDatOWQ9JL3GOto22PWRt2T5g7qfOca5ETkc+dZ6TvmWOCL3iflAPDD9dvxz+g14zHlaezl8z/4LPkX+WX86AQ9DiUQDAkrA3UKcRw2KG4iYxQ+EBkZwB91GVQPsRA1HN0hrBgQCTv/V/6FBPoQNB93IhQUAgJNArwVICNZFzf/1vcDCWodjR+4ElgJqApRDakJGgalDC0ZshvRDWD98fzeCnkS8gYc9W7yYQAeC2oEdfQM7OnvHvhK/RD9ifcR8frzrwMiEYUJAfPs6r3+aRaPE138qPGY/jAK9P6V6/jq7Pp/AUX1VOpQ8X//WQEX+G30//viA1ME0wEsAc3+c/l1+ZwEdxA4DWn6Tuj94xrr4fJT817pINg6y0PPOuGb7dfnv9vm3DTqZfEt7BTpOfO4ADYEKwH6AfoDNP+i+poEkRd3HIcNrgGGCX0VABBsA+UK+CTnMBcejQR6AogUHiJxIgQhLCRlJBceHhpMHuIiQR6mEioJ5gXeBg8J6Qn+BscBwP55/nb8cfdX9Eb0d/Fn64jrmvRg9/LoGtrt4+j+wwfF8ZbaVd4u75nv4uHD32LsZPAL5UzhhfDQ+qPrp9Y122/yFfuO7oDoDfY/AJX0W+bs74gH0Q32/U/xOPY7/Zv3N+8m8yD+dQDw+Tb3OfwpACj/1P+DBccJ5AcIBYUGCAn3B5EG6QnPDqkOUQtiDCkSIBQkDusGQgWTBhUFcQKpBM8LkhBADvEH6gMJBSoKog/1EE0M7gWLBLUIAgyXChsJSgyTDykLggEq/i4FRwy0CRICsACDBfAF9f2d9qP3bvtv+DHwKOyv7uHv6Or25PnksemJ7VbuLO3q6WLlluQ36xr0L/Yv8bTtBvAu8v/vhu/A9kz/Pv699kv3/AOxDogK1f4f/LwEbAupB5MAtQCfB5ANIg+sDsQNwQsECpMLvw9AEnERsBB2EuATHRFbC8cH3giDDFUPERDsDhgMMAjRBNMDrwU8CHwIFAX8AJ0AzwSfCFwHbALQ/y4CvQXJBWcCWv8Z/y8BGAQiBrgFwwL8/xUA4wGLAer95vo2/I0ArwL6/wb7ufg0+57/fwFX/7L8jv0wAYcCIf8I+4z7bgAeBAcDJv+C/E/8uPzr+/v55/ib+kH+t//I+3D1PvNR90H8ofze+dP44fld+Uv2ovP68oLy3vF38xT3Fvjx82Dvge808qXx7e067Lrtq+0d6v/nLutR8ODxIvAm7zXwpfGf8xP3MvpW+g/5lvo1/hP/SPwj+27+eQH7/3H9jf/cBDsHzgUwBbUGnAYRBLcDbwfDCV0G1QFYA4kJtAxPCl8HxwekCL4GTATIBFYHewj4B+kHXgg4B6YEPQPPA54DvwAg/aX7nfwK/rD+3f6P/or9EfwD+7X61fo8+wH8Xfxa+2/5mvhj+in9P/6//BT7yftv/gAAv/4h/KT66/r2+3r90f8IAkQCpgD//48B6wKWAav/NQHPBWwIVQb6ApoCnQR/BbQEjwRxBQ0F5wLoAdoDTAYmBk8EBQScBT4GgASMAtMCgQTUBAAD0wBDAFYB7gJTBKYFewbgBWYDzgA0AHUBmQHC/jH74Poq/gQBZAC8/Sn8vfs8+jT46/iI/dEBQAHp/Fb6Wfyc/2T/GPxd+ur8EwGsAkIB6/8NAPP/Pv6r/Gb9G/8m//X9Gf/YAiAFhgL0/Wf8cv5kAC8AjP/Z/8P/6P5i/14C8wQ4BEACBwMkBuYG1QMNAUUCWwXuBUIDPgCn/k/+Fv9tAcMDfgOkAI7+YP+gAc0CwAJVAvMAO/77+4/8of5b/17+Bf/tAVsD5f80+rL30/m//E79XPw5/Af9gv2Y/eX9E/4F/RP7vfni+eP6Nfy6/f/+3/5Z/eX75vuw/Pj8s/zh/Jb95f2F/YD9Fv5K/hf9fvsR+6T7uvuf+uP52vrP/Kb92/ws/GP9qf8+AAr+OPu0+mT8O/13+yX5BvmE+s76Nfms+OH6s/28/W777Pmf+sD76PvX+3H87/wk/BP7zvqy+nz51vcA+Dj6T/yO/Dv7lvn79/z2Rvd8+LT4QffY9T/2e/d39472lfbE94P4pvj4+W38QP0B+674e/li/Hr9VfzE+3v9Mf8q/5H+Y//oAJ0B9QFRA/8E4QQ0A4UCIQRwBsAHWAg+CfwJ3gk3CRAJVwmgCR4K1AqvCtoIsQYbBnAGUAWuArYBGgQpBxwHdwTuAigEqAXMBEgCoQC5AG8BuwGqAccB+AFLArsCSQOXA28DvAJmAez/Of8HANcBIgMbA2cCUQJNA9EErgVGBQIENgOeA1IE6gOpApwCfQQzBlMF/wKYApwFOglWChQJLgjzCGAKAAuSCjAJ4AZJBD4DfwSYBjgH7wUaBO4C4wGkAM7/WQC2ATwCFQFd/7f+Yf8EAH7/Lf6X/Sv+7f7E/gX+5P2H/qL+gf3V+7r6NPq8+af5hvqi+4r7hvqK+nH8Pv7X/QD8LPuH+xH7bPkE+YX7vP5M/1z93Psp/Hb8W/tT+hb70vxc/Z/8hPyJ/VL+8/16/dX9Bf7Q/Dv7avuF/Zn/DQBy/wT/kf55/dP7ufq8+jP7b/s9+xH7GvtW+1776Prj+XL4Dvf19aj1Y/bj9xz5MPlP+Hn3LPcl9xj3UPcA+Hv4IvhR9zT3JPhE+Zn5bPmZ+VD63vrK+oX68Pqz+/77W/vN+o77af3W/sT+nP2T/CX8aPx//W//AAH6AM3/df+8ANMBIAHI/zkAfwIgBKoDqAL2AjgE6QS5BHEE8QOTAv4AvgCtAQIC2wATAFQBjgNjBIkDtQKxAp0CpwG1AH0AWQCE/37+jf6E/0UA/f8P/wn+Zv1g/cz9sf1J/K36rPrA/PH+nf9T/47/awCsAAcAb//j/+QA5QGPAuMCzwK7Am8DzARsBawExQN4BDcGBAfyBYMEWgRFBToGvAYhBwwHNQZSBU8FJAY+BikF/gNIBLsFKgenB3QH2Ab0BSAF0wTzBBAF5ATiBD8FiQUeBVAEvQPGAy8EoAT5BDIF0wTgA7gCNwLFAuoDdwSlA+8BngCwAJUBOgLuASQBhACQAFIBRwKLAqoBbQBuAJQBcAKKAdH/9v4l/zn/yf7o/uj/bwB1//r9s/0i/pT9p/se+iP64fpk+977vfzV/FT7j/m++Y77QPym+sf44Pgc+nL68/l/+jj84vxZ+235MPkA+qn59/e99jX3K/h6+Dn4Rfh8+DD4ivdi9+v3r/hY+fD5b/rK+oz7T/1V/xEACf/p/Uj+nP/z/+f+s/2w/XP+EP8M/5/+3P1E/aH9EP+KAMYA9/8//zD/Zv+N/9L/EACC/zj+T/3D/dX+/P7V/V78n/va+/j8f/54/+3+Zv27/Mr9Vf+z/6/+xf2Q/aT9cP0q/d78N/wu+3L6ovop+0L70vqE+oj60PpA++77Vfz4+w772/qe+4z8ofwp/BT8lPwl/W39n/2i/TP9VfwE/LD84v2f/sP+6v6i/7IAtgFKAmoCBwKWAXIBxAEWAvcBowGqAUQCDQNNAxUD3wIzA+cDnAQCBXIFsQWrBS4F7gRvBSoGNAY+BYIE0QSlBa0FgwQ0A3UCOALxAfMBdwI5A3IDJAMXA4kD9AO6AwsDpwLhApEDUASsBCQE3QKtAZYBUAKmArsBLwBK/6T/0QDVATICyQE3AU4BKgIeAxYDRwKiAakBwgF2AUoB6QGWAhoCogDX/6IAkQH8AED/lv7X/6sBUALVAXcBjgF0AecAkwD2AHIBXwEaAZgB6QLVA2QDAQL5AAMBtwFBAlkCTQJHAjQC9QHVASMCqgLiAl8ClAEKAQcBBwGIAHn/LP5O/Uj9GP4s/8z/uf9s/0f/Vv87/yD/JP9y/3P/Nv/m/v7+9f5m/lT9p/y4/Ab9uvzb+2H75fsg/RT+Yf5B/lX+dv5Y/uX9hv2M/cf9y/2Y/Yv9rP18/a38b/ud+nf6z/oz+4f71/sY/C38C/zl+6X7fvtL+yv7+/rL+sH6Avtq+5X7evsj+8r6dfol+vT5zfmI+TX5G/mI+S/6wfr7+i77d/u9+9770vu/+8v7Ivy1/Dv9Ef00/Bj7V/oJ+sr5nvmm+Qv6u/rA+z/9x/6o/3f/6v6g/rf+l/5Q/k3+2v6r/6MAuQG9AuwCMAJmAWIBzAGeAeMAjgATAbQB+AFOAlADFwTgA9oCcwKlAlUC9wDj/xwAFgEdARcAM//t/sX+Uf5i/n//vAD6AHoAWgDnAAUBQAAn/5v+aP4o/iP+2P7O/xcAjv9Q/wUAAAE/AcAAqwCMAdgCggM5A18CtAF0AbsBWgIlA9MDNwQABFwDjQIyAl4C2QIIA+ICuQLQAikDgwOwA9ADsQNkAzUDSQOvA8IDbAMBA/gCHAPvAn4CbgLQAkgDOQNRA+EDmgSuBBYE5QNDBEMEKQPGAYsBqgLhA0QEIwTgA3UDqQIOAgECGwKCAW0AFACuAJUBowEoAcoAvACPABIAv//y/4UACwEhAeMAdgBaAJoA4gDYAGUAAACv/1j/Hv9l/yUAjgAQAG7/jv9fAJ8AxP/e/vz+5f9qAEIAIwC7AEUBywBB/4T9oPxf/GT8F/zN+/H7pvx//aL9zfyR+5r6Tfoo+i36T/re+nf7uvuY+3P7kPvw+2v8svye/Cv8xfvd+1j8mvxS/BD8bPxJ/dH9nv1A/Vb90/0S/uT9h/09/fv8w/zj/E39q/2B/S79UP0f/ub+Df9Y/mf9t/yM/N78SP1//T/93/yp/MT81fxz/Lj7BPvV+g77WPtF+yr7KPt3+4z7Yvss+2b7y/sB/Pv7Svwk/ez95/1A/bT8xfwD/fb8uPy4/CX9qP0S/i3+D/6i/TL9/vwp/Vv9fP2x/Sz+uP4H/zz/0P/KAGYBBgHR/9X+tP4x/6L/rP+C/4P/wv9XAO8ATAEJASAAIP+u/gb/BADkAFYBWAFfAdsBiwLjApQCBALQAQ8CSAJCAiECGwIcAhgCTgLzAmAD+wL3AV8B0AGgAsgCOQKiAaQBHQKtAgsDEwPAAmsCngJaAw0EJwTOA1IDxwI1AgICpwKnAxgEogM8A3YD4wN4Az0CMAHmAAgB5ACQAFwAagCWANgATgGnAa0BSAHZAHYASACNAK0BOwMkBLcDlQLhAQ8CpgIeA4UD9wMpBOUDQQPRArwCvwKhAj8C6AHdAVACBgOhA6gDeANtA4sDaAOXAqsBOgGbAQYC0wHcAMv/ff/+/7kA4QBcAJb/I//q/gr/ZP/6/2UAbQCNAAYBjQEfAeL/zf7J/i3/B/9H/sT99P0b/tj9bf18/aX9R/1R/MX7Nvw2/bH9Yf30/C39t/24/df82/uJ+7X7gfsB++X6SfsJ+9z4b/Vn8hDxK/EN8jvzfvSz9Sb3Qfm7+1v9kv3k/Jn8C/3d/bT+Qv9K/9r+sP5E/zkA0gA3AXEBiQBG/gL9rf9mBCUFU/9z+SP8DwcEEPEOJQe2AVcCgASeAzYB2wHDBnMM7A4jDeYI1wRmAlsBUgA2/vz6a/fA9BT03PVx+KT5q/iV9w74T/lq+V/4tfd798713PJf8RvzWPV29Hzx1PAA9I32S/Rn7h/qo+lK6k/peOfM57Pqs+1i7mLt3Ozz7Y7vg/Dt8AfyIfQO9nL2tvXg9Zz4Uv10AfcCgALbAgYGOQuzD/kRvRI1E28TyBIqEpAS2hMdFNoSXhH6EKoQQg96DRoNVQ5YD+0PhBH0FCMY8hgNGMMXUxiMFwUUKQ9SCxYJugesBk0G+AY+CGoJoAkZCbcI+QjVCIQG6ALmAOkBzwLz/1X6A/ch+HP68/lr91r2cvdJ+LX3WPdZ+AD5t/fR9Zz15fZl9x/2lfQl9OP0UfYk+Kv5s/mc+EH47/n0+2X8ZvtW+x79df/4AP4BZwPuBAsG2wZnCGEK3Qs9DD0MswyrDZIOCA/LDt4NhwywC+wLsQy8DJULOAo2CqcLRw2RDWEMmgrVCGAHkwYRByMI7AdUBfoB3gBCAlQDxwGq/jr9EP70/vH93vt5+sT5tfhD97n2Gvf09m31HPTq9En3oPhi9+70N/On8urxi/A+73TuO+2u6uXnEOft6MTrpe2K7nHvFfD+7qrrPOjQ5m/nOOhA6FroP+kv6g3qP+k/6YnqGuw47UTuU/DR8p30D/U19d313PYc98T22fby91n5xPl2+Wb5OfoZ+zH7rvqc+k37TPwg/UH+OgDjAi4FZga9BjAHKQhRCbIJ+wjFB+sGqwa8BgEH0wc+CacKoAtWDEMN2g1KDcALmQr5CiYMCQ1mDSkOug9IEdgRbRHCEF8QLxDVDyQPOQ5qDRYNPA2nDT0OBg/SD/wPMA8MDmANRA0+DfkM+gxvDboNUA0TDKQKKwm2B5kGRwaoBgAHtgYVBpUFWAUtBdYEJgTCApcAQv6//Fr8Y/zk+7H6cfnx+Cz5h/kc+QP48vYG92f4TvqL+3v7evpH+YL4Gvia9+j2Qvb69dX1hPU69Zf1pfZf9zD3k/at9mP3e/dc9h31T/Xn9tj4Ufrf+7X9Cf/X/m79Ufxo/ET94/31/dX9wv26/bT9Nv46/2QAFAF3AUMCiAPJBH8FBgbFBm4HMgdXBgMGywa4B3gHPgaWBScGLAeBB0kHIgclB9AGOAYKBl4GWwaSBagEnwRRBXgFgATlAq8BCgHFAIcAVADL/9H+kv3F/Hz8Mvxb+1T6lfn3+Hz3qvR18VTv8u5t733vs+6o7djsTeyZ6/Lq2upG64Hrz+rY6bHp6eqN7LPtdO6F78zwXvHa8ADwse/67x7wBvDk78bvZO8Q73Pvt/D28ZDy2fK38yz1xfZ0+Jz69vx3/qn+Z/4B/18A0QGJAvcCigN0BIcFdAbUBq8GfQYKBwMIswhWCN8H/gf/CCoKLQsrDPQMCw2gDGgMNg1QDrcOEg4zDd8MAA3nDC0MGQsSCoEJcwm6CcwJPQkVCCoHNwdWCIoJHQryCaMJbwkRCWoI2AeSB1oHoAaMBQMFYgVEBscGfQbCBegEZAQ/BBEEfgNnAnsBSwF5AXMBAQHWABABXgFGASoBbAHqATQCPAJxAtUCIwMuAyMDHQP6ArwCpgKKAhoCZgEUAZ8BXgLNAvsCbwPlA5cD/ALmAskDZgTyA0UDhAObBDEF8gSrBPEEJgWYBAkEIQTJBMQEBgReA1gDYwMlAxUDAgRlBUEGHwaRBQkFUQSRA20DfATvBUQGEQU5AxcC6AHtAZsBCwG3ALEA5AAMASEBKAEmAVABqQEBAtkB8wCN/0/+c/3k/CT8XPvE+pj6TPqB+S74EPew9vb2WPdw90f3BfeD9rH1qPT2867zyPPe8wH0J/QX9ILzePKM8TXxYvGK8WrxGfHA8JLwY/BT8DXwFPDo7zrw7vCw8b3xJfHU8HvxAPNF9ML0jfRE9BX0//P/83z0gPXZ9gX48PiW+Sr6Wfoc+rL5ufma+uz7Av16/c79fP6J/2kA+wDEAQIDbATqBKYEHQQpBFMEGQR4A1kDCgQwBe8FPAZ2BsEG5QbLBsEG1wawBuAF3wRsBMQEPgV5BckFrgbOB1gIFAi4B3oH1gZKBZEDFwMHBEQFnQVQBT8FoQW+BVgFwASUBI8EdQQ8BDgELQTIAwQDqQLLAjQDSgNTA6oDCATOA8MClQHZAJoAPADD/1v/Iv/d/nr+mP6R/zABIALdAbMA/v87AMkAlwCd/9v+cv8AAY8CNwNZA1oDsgP3AzQEFASJA7MCHgJIAtgC/gKWAngCXQMIBYQGjgdlCAkJLgnGCM8I0QkvC/EL8wsqDCUNIQ5oDtgNEw1fDHQLkgr1CbYJWwm1CCEIBAjwB44HAgcOB7UHNQjoBwMHRQYJBikGUwZOBtMFtwRsA4kCQwINAmkBjgAJAND/Qv/1/WX8Xfst+2j7hfs6+7b6Qvob+kv6S/qm+VT4/vZk9oP2xvaW9hH2ovV19X31fPV09Vb1y/Sr8zzyLPH88GbxwvG78Y7xnfHK8cXxVvHy8NjwI/Gs8V7yJ/On87nzt/NW9Jn1\"\n                            },\n                            {\n                                \"description\": \"letsgo3\",\n                                \"lastUploaded\": \"2019-11-05T11:08:28.246-05:00\",\n                                \"usage\": [],\n                                \"fileSize\": 88,\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"letsgo3\",\n                                \"mediaType\": \"WAV\",\n                                \"content\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 12,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Dns\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Dns\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"dns\": [\n                            {\n                                \"assigned\": true,\n                                \"activated\": false,\n                                \"min\": \"+1-8594004001\",\n                                \"max\": \"+1-8594004005\"\n                            },\n                            {\n                                \"assigned\": false,\n                                \"activated\": false,\n                                \"min\": \"+1-8594005001\",\n                                \"max\": \"+1-8594005005\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Dns\"\n                },\n                {\n                    \"id\": 13,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"useGroupCLIDSetting\": false,\n                        \"useGroupMediaSetting\": false,\n                        \"useGroupCallLimitsSetting\": false,\n                        \"useGroupTranslationRoutingSetting\": false,\n                        \"useGroupDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"networkUsageSelection\": \"Do Not Force Enterprise and Group Calls\",\n                        \"enforceGroupCallingLineIdentityRestriction\": false,\n                        \"allowEnterpriseGroupCallTypingForPrivateDialingPlan\": false,\n                        \"allowEnterpriseGroupCallTypingForPublicDialingPlan\": false,\n                        \"overrideCLIDRestrictionForPrivateCallCategory\": false,\n                        \"useEnterpriseCLIDForPrivateCallCategory\": false,\n                        \"enableEnterpriseExtensionDialing\": true,\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": true,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": true,\n                        \"enterpriseCallsCLIDPolicy\": \"Use Location Code plus Extension\",\n                        \"groupCallsCLIDPolicy\": \"Use Extension\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 14,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"useDefaultServiceProviderProfile\": true,\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 15,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"codes\": [\n                            {\n                                \"code\": \"1001\",\n                                \"description\": \"1001\"\n                            },\n                            {\n                                \"code\": \"1002\",\n                                \"description\": \"1002\"\n                            },\n                            {\n                                \"code\": \"1003\",\n                                \"description\": \"1003\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 16,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.CommonPhoneList\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommonPhoneList\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"entries\": [\n                            {\n                                \"phoneNumber\": \"123456789\",\n                                \"name\": \"mark\"\n                            },\n                            {\n                                \"phoneNumber\": \"123456789\",\n                                \"name\": \"mark12\"\n                            },\n                            {\n                                \"phoneNumber\": \"123456789\",\n                                \"name\": \"mark2\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.CommonPhoneList\"\n                },\n                {\n                    \"id\": 17,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Domains\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Domains\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"default\": \"parkbenchsolutions.com\",\n                        \"domains\": [\n                            \"parkbenchsolutions.com\"\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Domains\"\n                },\n                {\n                    \"id\": 18,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Departments\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Departments\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"departments\": [\n                            {\n                                \"callingLineIdName\": \"audit.department.1\",\n                                \"callingLineIdPhoneNumber\": 8594005001,\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"audit.department.1\",\n                                \"availableParents\": [\n                                    {\n                                        \"serviceProviderId\": \"ent.odin.audit\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"name\": \"audit.department.2\",\n                                        \"fullPathName\": \"audit.department.2 (grp.odin.audit)\",\n                                        \"isEnterpriseDepartment\": false\n                                    }\n                                ]\n                            },\n                            {\n                                \"callingLineIdName\": \"audit.department.2\",\n                                \"callingLineIdPhoneNumber\": 8594005002,\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"audit.department.2\",\n                                \"availableParents\": [\n                                    {\n                                        \"serviceProviderId\": \"ent.odin.audit\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"name\": \"audit.department.1\",\n                                        \"fullPathName\": \"audit.department.1 (grp.odin.audit)\",\n                                        \"isEnterpriseDepartment\": false\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Departments\"\n                },\n                {\n                    \"id\": 19,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Admins\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Admins\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"admins\": [\n                            {\n                                \"lastName\": \"audit.department.1.useradmin\",\n                                \"firstName\": \"audit.department.1.useradmin\",\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\",\n                                    \"fullPathName\": \"audit.department.1 (grp.odin.audit)\"\n                                },\n                                \"language\": \"English\",\n                                \"locale\": \"en_US\",\n                                \"encoding\": \"ISO-8859-1\",\n                                \"userId\": \"audit.department.1.useradmin@parkbenchsolutions.com\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Admins\"\n                },\n                {\n                    \"id\": 20,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.DeviceTypes\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DeviceTypes\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"devices\": [\n                            {\n                                \"supportsEnhancedConfiguration\": true,\n                                \"supportsReset\": true,\n                                \"configurationType\": \"2 File Configuration\",\n                                \"configurationFileName\": \"/var/broadworks/IpDeviceConfig//1/4023/140233539/Group_grp.odin.audit_Polycom_IP5000.template\",\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"deviceType\": \"Polycom IP5000\",\n                                \"files\": [\n                                    {\n                                        \"fileSource\": \"Default\",\n                                        \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_IP5000/features%BWMACADDRESS%.cfg.template\",\n                                        \"accessUrl\": \"http://labprov.alliedtelecom.net:80/dms/ip5000/features{%25BWMACADDRESS%25}.cfg\",\n                                        \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_IP5000/features%25BWMACADDRESS%25.cfg.template\",\n                                        \"fileFormat\": \"features%BWMACADDRESS%.cfg\",\n                                        \"deviceType\": \"Polycom IP5000\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"serviceProviderId\": \"ent.odin.audit\"\n                                    },\n                                    {\n                                        \"fileSource\": \"Default\",\n                                        \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_IP5000/system%BWMACADDRESS%.cfg.template\",\n                                        \"accessUrl\": \"http://labprov.alliedtelecom.net:80/dms/ip5000/system{%25BWMACADDRESS%25}.cfg\",\n                                        \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_IP5000/system%25BWMACADDRESS%25.cfg.template\",\n                                        \"fileFormat\": \"system%BWMACADDRESS%.cfg\",\n                                        \"deviceType\": \"Polycom IP5000\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"serviceProviderId\": \"ent.odin.audit\"\n                                    },\n                                    {\n                                        \"fileSource\": \"Default\",\n                                        \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_IP5000/user%BWMACADDRESS%.cfg.template\",\n                                        \"accessUrl\": \"http://labprov.alliedtelecom.net:80/dms/ip5000/user{%25BWMACADDRESS%25}.cfg\",\n                                        \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_IP5000/user%25BWMACADDRESS%25.cfg.template\",\n                                        \"fileFormat\": \"user%BWMACADDRESS%.cfg\",\n                                        \"deviceType\": \"Polycom IP5000\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"serviceProviderId\": \"ent.odin.audit\"\n                                    }\n                                ],\n                                \"deviceTags\": [\n                                    {\n                                        \"tagName\": \"%foo%\",\n                                        \"tagValue\": \"bar\"\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.DeviceTypes\"\n                },\n                {\n                    \"id\": 21,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Devices\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Devices\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"devices\": [\n                            {\n                                \"deviceType\": \"Polycom IP5000\",\n                                \"protocol\": \"SIP 2.0\",\n                                \"numberOfPorts\": {\n                                    \"quantity\": \"1\"\n                                },\n                                \"numberOfAssignedPorts\": 0,\n                                \"status\": \"Online\",\n                                \"configurationMode\": \"Default\",\n                                \"transportProtocol\": \"UDP\",\n                                \"useCustomUserNamePassword\": false,\n                                \"deviceName\": \"PolycomIP5000_sp01\",\n                                \"deviceLevel\": \"Group\",\n                                \"accessDeviceCredentials\": {\n                                    \"userName\": null\n                                },\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"tags\": [],\n                                \"relatedServices\": [],\n                                \"files\": [\n                                    {\n                                        \"fileSource\": \"Default\",\n                                        \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_IP5000/features%BWMACADDRESS%.cfg.template\",\n                                        \"accessUrl\": \"http://labprov.alliedtelecom.net:80/dms/ip5000/features{%25BWMACADDRESS%25}.cfg\",\n                                        \"repositoryUrl\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_IP5000/featuresPolycomIP5000_sp01%20(Group%20ent.odin.audit-grp.odin.audit).cfg\",\n                                        \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_IP5000/features%25BWMACADDRESS%25.cfg.template\",\n                                        \"fileFormat\": \"features%BWMACADDRESS%.cfg\",\n                                        \"deviceName\": \"PolycomIP5000_sp01\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"serviceProviderId\": \"ent.odin.audit\"\n                                    },\n                                    {\n                                        \"fileSource\": \"Default\",\n                                        \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_IP5000/system%BWMACADDRESS%.cfg.template\",\n                                        \"accessUrl\": \"http://labprov.alliedtelecom.net:80/dms/ip5000/system{%25BWMACADDRESS%25}.cfg\",\n                                        \"repositoryUrl\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_IP5000/systemPolycomIP5000_sp01%20(Group%20ent.odin.audit-grp.odin.audit).cfg\",\n                                        \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_IP5000/system%25BWMACADDRESS%25.cfg.template\",\n                                        \"fileFormat\": \"system%BWMACADDRESS%.cfg\",\n                                        \"deviceName\": \"PolycomIP5000_sp01\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"serviceProviderId\": \"ent.odin.audit\"\n                                    },\n                                    {\n                                        \"fileSource\": \"Default\",\n                                        \"configurationFileName\": \"/var/broadworks/IpDeviceConfig/type/Polycom_IP5000/user%BWMACADDRESS%.cfg.template\",\n                                        \"accessUrl\": \"http://labprov.alliedtelecom.net:80/dms/ip5000/user{%25BWMACADDRESS%25}.cfg\",\n                                        \"repositoryUrl\": \"http://fileadmin:bwAllied!@labps.alliedtelecom.net:80/Polycom_IP5000/userPolycomIP5000_sp01%20(Group%20ent.odin.audit-grp.odin.audit).cfg\",\n                                        \"templateUrl\": \"http://device_management:d*2m*$ment@10.20.1.34:80/DeviceManagement/type/Polycom_IP5000/user%25BWMACADDRESS%25.cfg.template\",\n                                        \"fileFormat\": \"user%BWMACADDRESS%.cfg\",\n                                        \"deviceName\": \"PolycomIP5000_sp01\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"serviceProviderId\": \"ent.odin.audit\"\n                                    }\n                                ],\n                                \"deviceTags\": [],\n                                \"deviceLines\": [\n                                    {\n                                        \"line/Port\": \"1userFirstName1userFirstName@parkbenchsolutions.com\",\n                                        \"lastName\": \"1userLastName\",\n                                        \"firstName\": \"1userFirstName\",\n                                        \"phoneNumber\": null,\n                                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                                        \"userType\": \"Normal\",\n                                        \"endpointType\": \"Primary\",\n                                        \"order\": null,\n                                        \"primaryLine/Port\": false,\n                                        \"extension\": null,\n                                        \"department\": null,\n                                        \"emailAddress\": null,\n                                        \"privateIdentity\": null\n                                    },\n                                    {\n                                        \"line/Port\": \"2userFirstName2userFirstName@parkbenchsolutions.com\",\n                                        \"lastName\": \"2userLastName\",\n                                        \"firstName\": \"2userFirstName\",\n                                        \"phoneNumber\": null,\n                                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                                        \"userType\": \"Normal\",\n                                        \"endpointType\": \"Primary\",\n                                        \"order\": null,\n                                        \"primaryLine/Port\": false,\n                                        \"extension\": null,\n                                        \"department\": null,\n                                        \"emailAddress\": null,\n                                        \"privateIdentity\": null\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Devices\"\n                },\n                {\n                    \"id\": 22,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"useFeatureAccessCodeLevel\": \"Group\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n                                \"mainCode\": \"*55\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Bridge\",\n                                \"mainCode\": \"*15\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Executive Call Filtering Activation\",\n                                \"mainCode\": \"#61\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n                                \"mainCode\": \"*99\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Night Service Deactivation Manual Override\",\n                                \"mainCode\": \"#71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Cancel Call Waiting\",\n                                \"mainCode\": \"*70\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n                                \"mainCode\": \"#29\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Return\",\n                                \"mainCode\": \"*69\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n                                \"mainCode\": \"#41\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n                                \"mainCode\": \"#23\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n                                \"mainCode\": \"*78\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Deactivation\",\n                                \"mainCode\": \"*13\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n                                \"mainCode\": \"*54*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n                                \"mainCode\": \"*33*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n                                \"mainCode\": \"*31\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n                                \"mainCode\": \"#31\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n                                \"mainCode\": \"*21\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Last Number Redial\",\n                                \"mainCode\": \"*66\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Forced Forwarding Activation\",\n                                \"mainCode\": \"#72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n                                \"mainCode\": \"*40\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n                                \"mainCode\": \"*23\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Forced Forwarding Deactivation\",\n                                \"mainCode\": \"#73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n                                \"mainCode\": \"#33*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Return Number Deletion\",\n                                \"mainCode\": \"#92#\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Customer Originated Trace\",\n                                \"mainCode\": \"*57\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n                                \"mainCode\": \"*34\",\n                                \"alternateCode\": \"*3434\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Agent Escalation\",\n                                \"mainCode\": \"#83\",\n                                \"alternateCode\": \"*83\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n                                \"mainCode\": \"*51*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Make Personal Outgoing Call\",\n                                \"mainCode\": \"#81\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Retrieve\",\n                                \"mainCode\": \"*11\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Activation\",\n                                \"mainCode\": \"*12\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Flash Call Hold\",\n                                \"mainCode\": \"*22\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n                                \"mainCode\": \"*84\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n                                \"mainCode\": \"#8\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n                                \"mainCode\": \"*33\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"BroadWorks Anywhere E164 Dialing\",\n                                \"mainCode\": \"*14\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Executive-Assistant Opt-in\",\n                                \"mainCode\": \"#65\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n                                \"mainCode\": \"*29\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Night Service Activation Manual Override\",\n                                \"mainCode\": \"#70\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Executive-Assistant Initiate Call\",\n                                \"mainCode\": \"#64\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n                                \"mainCode\": \"*65\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n                                \"mainCode\": \"*56*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n                                \"mainCode\": \"#28\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n                                \"mainCode\": \"*24\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Silent Monitoring\",\n                                \"mainCode\": \"#82\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 100\",\n                                \"mainCode\": \"*75\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Monitoring Next Call\",\n                                \"mainCode\": \"#84\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Pause\",\n                                \"mainCode\": \"*48\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Start\",\n                                \"mainCode\": \"*44\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n                                \"mainCode\": \"#24\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Executive-Assistant Call Push\",\n                                \"mainCode\": \"#63\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n                                \"mainCode\": \"#43\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Executive-Assistant Opt-out\",\n                                \"mainCode\": \"#66\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n                                \"mainCode\": \"#9\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n                                \"mainCode\": \"*67\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n                                \"mainCode\": \"*28\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Stop\",\n                                \"mainCode\": \"*45\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Resume\",\n                                \"mainCode\": \"*49\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n                                \"mainCode\": \"*86\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Directed Call Pickup\",\n                                \"mainCode\": \"*97\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n                                \"mainCode\": \"#40\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Executive Call Filtering Deactivation\",\n                                \"mainCode\": \"#62\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n                                \"mainCode\": \"*53*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n                                \"mainCode\": \"*85\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n                                \"mainCode\": \"#21\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Diversion Inhibitor\",\n                                \"mainCode\": \"*80\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Portal Access\",\n                                \"mainCode\": \"*62\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n                                \"mainCode\": \"*43\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n                                \"mainCode\": \"*79\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push to Talk\",\n                                \"mainCode\": \"*50\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Make Outgoing Call as Call Center\",\n                                \"mainCode\": \"#80\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n                                \"mainCode\": \"*#33#\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n                                \"mainCode\": \"*41\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 23,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Intercept\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Intercept\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"allowOutboundLocalCalls\": false,\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"routeToVoiceMail\": false,\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Intercept\"\n                },\n                {\n                    \"id\": 24,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.GroupExtensions\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"GroupExtensions\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"minExtensionLength\": 3,\n                        \"maxExtensionLength\": 5,\n                        \"defaultExtensionLength\": 4,\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.GroupExtensions\"\n                },\n                {\n                    \"id\": 25,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.NetworkClassOfService\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"NetworkClassOfService\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"services\": []\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.NetworkClassOfService\"\n                },\n                {\n                    \"id\": 26,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"schedules\": [\n                            {\n                                \"name\": \"Holidays\",\n                                \"type\": \"Holiday\",\n                                \"level\": \"Group\",\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"events\": [\n                                    {\n                                        \"eventName\": \"Christmas\",\n                                        \"startTime\": \"2019-12-25T00:00:00\",\n                                        \"endTime\": \"2019-12-26T23:59:59\",\n                                        \"allDayEvent\": true,\n                                        \"name\": \"Holidays\",\n                                        \"type\": \"Holiday\",\n                                        \"serviceProviderId\": \"ent.odin.audit\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"rrule\": \"DTSTART:20191225T050000Z\\nRRULE:FREQ=YEARLY;BYMONTHDAY=25;BYMONTH=12\"\n                                    },\n                                    {\n                                        \"eventName\": \"Independence Day\",\n                                        \"startTime\": \"2019-07-04T00:00:00\",\n                                        \"endTime\": \"2019-07-05T23:59:59\",\n                                        \"allDayEvent\": true,\n                                        \"name\": \"Holidays\",\n                                        \"type\": \"Holiday\",\n                                        \"serviceProviderId\": \"ent.odin.audit\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"rrule\": \"DTSTART:20190704T040000Z\\nRRULE:FREQ=YEARLY;BYMONTHDAY=4;BYMONTH=7\"\n                                    },\n                                    {\n                                        \"eventName\": \"New Years Day\",\n                                        \"startTime\": \"2019-01-01T00:00:00\",\n                                        \"endTime\": \"2019-01-02T23:59:59\",\n                                        \"allDayEvent\": true,\n                                        \"name\": \"Holidays\",\n                                        \"type\": \"Holiday\",\n                                        \"serviceProviderId\": \"ent.odin.audit\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"rrule\": \"DTSTART:20190101T050000Z\\nRRULE:FREQ=YEARLY;BYMONTHDAY=1;BYMONTH=1\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"Bank Holidays\",\n                                \"type\": \"Holiday\",\n                                \"level\": \"Group\",\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"events\": [\n                                    {\n                                        \"eventName\": \"Christmas\",\n                                        \"startTime\": \"2019-12-25T00:00:00\",\n                                        \"endTime\": \"2019-12-29T00:00:00\",\n                                        \"allDayEvent\": false,\n                                        \"name\": \"Bank Holidays\",\n                                        \"type\": \"Holiday\",\n                                        \"serviceProviderId\": \"ent.odin.audit\",\n                                        \"groupId\": \"grp.odin.audit\",\n                                        \"rrule\": null\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.Schedules\"\n                },\n                {\n                    \"id\": 27,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.settings.VirtualOnNetEnterpriseExtensions\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"VirtualOnNetEnterpriseExtensions\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"users\": []\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.settings.VirtualOnNetEnterpriseExtensions\"\n                },\n                {\n                    \"id\": 28,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.services.Call Park\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Park\",\n                    \"serviceType\": \"GroupService\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"profile\": {\n                            \"recallTimerSeconds\": 45,\n                            \"displayTimerSeconds\": 5,\n                            \"enableDestinationAnnouncement\": true,\n                            \"recallRingPattern\": \"Normal\",\n                            \"recallTo\": \"Parking User Only\",\n                            \"alternateUserRecallTimerSeconds\": 45,\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\"\n                        },\n                        \"callParkGroup\": {\n                            \"instances\": [\n                                {\n                                    \"recallTo\": \"Parking User Only\",\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"groupcallpark1\",\n                                    \"users\": [\n                                        {\n                                            \"userId\": \"8594004001@parkbenchsolutions.com\",\n                                            \"lastName\": \"flastname.1\",\n                                            \"firstName\": \"firstname.1\",\n                                            \"hiraganaLastName\": \"flastname.1\",\n                                            \"hiraganaFirstName\": \"firstname.1\",\n                                            \"phoneNumber\": \"+1-8594004001\",\n                                            \"extension\": 4001,\n                                            \"department\": null,\n                                            \"emailAddress\": null\n                                        },\n                                        {\n                                            \"userId\": \"8594004002@parkbenchsolutions.com\",\n                                            \"lastName\": \"flastname.2\",\n                                            \"firstName\": \"firstname.2\",\n                                            \"hiraganaLastName\": \"flastname.2\",\n                                            \"hiraganaFirstName\": \"firstname.2\",\n                                            \"phoneNumber\": \"+1-8594004002\",\n                                            \"extension\": 4002,\n                                            \"department\": null,\n                                            \"emailAddress\": null\n                                        }\n                                    ]\n                                }\n                            ]\n                        }\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.services.Call Park\"\n                },\n                {\n                    \"id\": 29,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.services.Call Pickup\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Pickup\",\n                    \"serviceType\": \"GroupService\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"instances\": [\n                            {\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"callpickup1\",\n                                \"users\": [\n                                    {\n                                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                                        \"lastName\": \"flastname.1\",\n                                        \"firstName\": \"firstname.1\",\n                                        \"hiraganaLastName\": \"flastname.1\",\n                                        \"hiraganaFirstName\": \"firstname.1\",\n                                        \"phoneNumber\": \"+1-8594004001\",\n                                        \"extension\": 4001,\n                                        \"department\": null,\n                                        \"emailAddress\": null\n                                    },\n                                    {\n                                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                                        \"lastName\": \"flastname.2\",\n                                        \"firstName\": \"firstname.2\",\n                                        \"hiraganaLastName\": \"flastname.2\",\n                                        \"hiraganaFirstName\": \"firstname.2\",\n                                        \"phoneNumber\": \"+1-8594004002\",\n                                        \"extension\": 4002,\n                                        \"department\": null,\n                                        \"emailAddress\": null\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.services.Call Pickup\"\n                },\n                {\n                    \"id\": 30,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.services.Music On Hold\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Music On Hold\",\n                    \"serviceType\": \"GroupService\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceUserId\": \"152911473_140233539_MOH\",\n                        \"isActiveDuringCallHold\": false,\n                        \"isActiveDuringCallPark\": false,\n                        \"isActiveDuringBusyCampOn\": false,\n                        \"enableVideo\": true,\n                        \"source\": {\n                            \"audioFilePreferredCodec\": \"None\",\n                            \"messageSourceSelection\": \"System\"\n                        },\n                        \"useAlternateSourceForInternalCalls\": false,\n                        \"internalSource\": {\n                            \"audioFilePreferredCodec\": \"None\",\n                            \"messageSourceSelection\": \"System\"\n                        },\n                        \"department\": null,\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.services.Music On Hold\"\n                },\n                {\n                    \"id\": 31,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.services.Trunk Group\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Trunk Group\",\n                    \"serviceType\": \"GroupService\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"callCapacity\": {\n                            \"maxActiveCalls\": 5,\n                            \"maxAvailableActiveCalls\": 10,\n                            \"burstingMaxActiveCalls\": 5,\n                            \"burstingMaxAvailableActiveCalls\": 10,\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\"\n                        },\n                        \"instances\": [\n                            {\n                                \"accessDevice\": {\n                                    \"deviceLevel\": \"Group\",\n                                    \"deviceName\": \"PolycomIP5000_sp01\"\n                                },\n                                \"maxActiveCalls\": 2,\n                                \"maxIncomingCalls\": 2,\n                                \"maxOutgoingCalls\": 2,\n                                \"enableBursting\": false,\n                                \"capacityExceededTrapInitialCalls\": 0,\n                                \"capacityExceededTrapOffsetCalls\": 0,\n                                \"invitationTimeout\": 6,\n                                \"requireAuthentication\": false,\n                                \"allowTerminationToTrunkGroupIdentity\": false,\n                                \"allowTerminationToDtgIdentity\": false,\n                                \"includeTrunkGroupIdentity\": false,\n                                \"includeDtgIdentity\": false,\n                                \"includeTrunkGroupIdentityForNetworkCalls\": false,\n                                \"includeOtgIdentityForNetworkCalls\": false,\n                                \"enableNetworkAddressIdentity\": false,\n                                \"allowUnscreenedCalls\": false,\n                                \"allowUnscreenedEmergencyCalls\": false,\n                                \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n                                \"pilotUserChargeNumberPolicy\": \"No Calls\",\n                                \"callForwardingAlwaysForwardAddress\": 1234,\n                                \"routeToPeeringDomain\": false,\n                                \"prefixEnabled\": false,\n                                \"statefulReroutingEnabled\": true,\n                                \"sendContinuousOptionsMessage\": true,\n                                \"continuousOptionsSendingIntervalSeconds\": 30,\n                                \"failureOptionsSendingIntervalSeconds\": 10,\n                                \"failureThresholdCounter\": 1,\n                                \"successThresholdCounter\": 1,\n                                \"inviteFailureThresholdCounter\": 1,\n                                \"inviteFailureThresholdWindowSeconds\": 30,\n                                \"trunkGroupState\": \"Available\",\n                                \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n                                \"useSystemCallingLineAssertedIdentityPolicy\": true,\n                                \"totalActiveIncomingCalls\": 0,\n                                \"totalActiveOutgoingCalls\": 0,\n                                \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n                                \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n                                \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n                                \"userLookupPolicy\": \"Basic\",\n                                \"useSystemUserLookupPolicy\": true,\n                                \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n                                \"serviceProviderId\": \"ent.odin.audit\",\n                                \"groupId\": \"grp.odin.audit\",\n                                \"name\": \"grp.odin.audit.trunk.1\",\n                                \"users\": []\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.services.Trunk Group\"\n                },\n                {\n                    \"id\": 32,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.services.Voice Messaging Group\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Voice Messaging Group\",\n                    \"serviceType\": \"GroupService\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"voiceMessaging\": {\n                            \"useMailServerSetting\": \"System Mail Server\",\n                            \"warnCallerBeforeRecordingVoiceMessage\": false,\n                            \"allowUsersConfiguringAdvancedSettings\": true,\n                            \"allowComposeOrForwardMessageToEntireGroup\": false,\n                            \"mailServerProtocol\": \"POP3\",\n                            \"realDeleteForImap\": false,\n                            \"maxMailboxLengthMinutes\": 30,\n                            \"doesMessageAge\": false,\n                            \"holdPeriodDays\": 15,\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\"\n                        },\n                        \"voiceMessagingPortal\": {\n                            \"serviceUserId\": \"152911473_140233539_VMR@parkbenchsolutions.com\",\n                            \"serviceInstanceProfile\": {\n                                \"name\": \"Voice Portal\",\n                                \"callingLineIdLastName\": \"Voice Portal\",\n                                \"callingLineIdFirstName\": \"Voice Portal\",\n                                \"hiraganaLastName\": \"Voice Portal\",\n                                \"hiraganaFirstName\": \"Voice Portal\",\n                                \"language\": \"English\",\n                                \"timeZone\": \"America/New_York\",\n                                \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\"\n                            },\n                            \"isActive\": false,\n                            \"enableExtendedScope\": false,\n                            \"allowIdentificationByPhoneNumberOrVoiceMailAliasesOnLogin\": false,\n                            \"useVoicePortalWizard\": true,\n                            \"voicePortalExternalRoutingScope\": \"System\",\n                            \"useExternalRouting\": false,\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\"\n                        }\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.services.Voice Messaging Group\"\n                },\n                {\n                    \"id\": 33,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Incoming Calling Plan.Incoming Calling Plan\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Incoming Calling Plan\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"departments\": [\n                            {\n                                \"allowFromWithinGroup\": true,\n                                \"allowFromOutsideGroup\": \"Allow\",\n                                \"allowCollectCalls\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"allow\": true\n                                    }\n                                ]\n                            },\n                            {\n                                \"allowFromWithinGroup\": true,\n                                \"allowFromOutsideGroup\": \"Allow\",\n                                \"allowCollectCalls\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"allow\": true\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                },\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\"\n                            },\n                            {\n                                \"allowFromWithinGroup\": true,\n                                \"allowFromOutsideGroup\": \"Allow\",\n                                \"allowCollectCalls\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"allow\": true\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                },\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\"\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Incoming Calling Plan.Incoming Calling Plan\"\n                },\n                {\n                    \"id\": 34,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Incoming Calling Plan.Group Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"permissions\": {\n                                    \"group\": \"Allow\",\n                                    \"local\": \"Allow\",\n                                    \"tollFree\": \"Allow\",\n                                    \"toll\": \"Allow\",\n                                    \"international\": \"Disallow\",\n                                    \"operatorAssisted\": \"Allow\",\n                                    \"chargeableDirectoryAssisted\": \"Allow\",\n                                    \"specialServicesI\": \"Allow\",\n                                    \"specialServicesII\": \"Allow\",\n                                    \"premiumServicesI\": \"Disallow\",\n                                    \"premiumServicesII\": \"Disallow\",\n                                    \"casual\": \"Disallow\",\n                                    \"urlDialing\": \"Allow\",\n                                    \"unknown\": \"Allow\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"group\": \"Allow\",\n                                    \"local\": \"Allow\",\n                                    \"tollFree\": \"Allow\",\n                                    \"toll\": \"Allow\",\n                                    \"international\": \"Disallow\",\n                                    \"operatorAssisted\": \"Allow\",\n                                    \"chargeableDirectoryAssisted\": \"Allow\",\n                                    \"specialServicesI\": \"Allow\",\n                                    \"specialServicesII\": \"Allow\",\n                                    \"premiumServicesI\": \"Disallow\",\n                                    \"premiumServicesII\": \"Disallow\",\n                                    \"casual\": \"Disallow\",\n                                    \"urlDialing\": \"Allow\",\n                                    \"unknown\": \"Allow\"\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"group\": \"Allow\",\n                                    \"local\": \"Allow\",\n                                    \"tollFree\": \"Allow\",\n                                    \"toll\": \"Allow\",\n                                    \"international\": \"Disallow\",\n                                    \"operatorAssisted\": \"Allow\",\n                                    \"chargeableDirectoryAssisted\": \"Allow\",\n                                    \"specialServicesI\": \"Allow\",\n                                    \"specialServicesII\": \"Allow\",\n                                    \"premiumServicesI\": \"Disallow\",\n                                    \"premiumServicesII\": \"Disallow\",\n                                    \"casual\": \"Disallow\",\n                                    \"urlDialing\": \"Allow\",\n                                    \"unknown\": \"Allow\"\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Incoming Calling Plan.Group Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 35,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"codes\": []\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 36,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Allow\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Allow\"\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Allow\"\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 37,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": true\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": true\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": true\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 38,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"permissions\": {\n                                    \"outsideGroup\": true\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"outsideGroup\": true\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"outsideGroup\": true\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 39,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"permissions\": {\n                                    \"group\": true,\n                                    \"local\": true,\n                                    \"tollFree\": true,\n                                    \"toll\": true,\n                                    \"international\": true,\n                                    \"operatorAssisted\": true,\n                                    \"chargeableDirectoryAssisted\": true,\n                                    \"specialServicesI\": true,\n                                    \"specialServicesII\": true,\n                                    \"premiumServicesI\": false,\n                                    \"premiumServicesII\": false,\n                                    \"casual\": false,\n                                    \"urlDialing\": true,\n                                    \"unknown\": true\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"group\": true,\n                                    \"local\": true,\n                                    \"tollFree\": true,\n                                    \"toll\": true,\n                                    \"international\": true,\n                                    \"operatorAssisted\": true,\n                                    \"chargeableDirectoryAssisted\": true,\n                                    \"specialServicesI\": true,\n                                    \"specialServicesII\": true,\n                                    \"premiumServicesI\": false,\n                                    \"premiumServicesII\": false,\n                                    \"casual\": false,\n                                    \"urlDialing\": true,\n                                    \"unknown\": true\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"group\": true,\n                                    \"local\": true,\n                                    \"tollFree\": true,\n                                    \"toll\": true,\n                                    \"international\": true,\n                                    \"operatorAssisted\": true,\n                                    \"chargeableDirectoryAssisted\": true,\n                                    \"specialServicesI\": true,\n                                    \"specialServicesII\": true,\n                                    \"premiumServicesI\": false,\n                                    \"premiumServicesII\": false,\n                                    \"casual\": false,\n                                    \"urlDialing\": true,\n                                    \"unknown\": true\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 40,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"transferNumbers\": {\n                                    \"phoneNumber01\": \"123123\",\n                                    \"phoneNumber02\": \"32123\",\n                                    \"phoneNumber03\": \"123123\"\n                                }\n                            },\n                            {\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                },\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"transferNumbers\": {\n                                    \"phoneNumber01\": \"123123\",\n                                    \"phoneNumber02\": \"123123\",\n                                    \"phoneNumber03\": \"123123\"\n                                }\n                            },\n                            {\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                },\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"transferNumbers\": {\n                                    \"phoneNumber01\": \"123123123\",\n                                    \"phoneNumber02\": \"123123\",\n                                    \"phoneNumber03\": \"12312312\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Outgoing Calling Plan.Group Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 41,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": true\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": true\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": true\n                                    }\n                                ],\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 42,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"digitPatternPermissions\": {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                },\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"digitPatternPermissions\": {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                },\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 43,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"permissions\": {\n                                    \"group\": true,\n                                    \"local\": true,\n                                    \"tollFree\": false,\n                                    \"toll\": true,\n                                    \"international\": true,\n                                    \"operatorAssisted\": false,\n                                    \"chargeableDirectoryAssisted\": true,\n                                    \"specialServicesI\": false,\n                                    \"specialServicesII\": false,\n                                    \"premiumServicesI\": false,\n                                    \"premiumServicesII\": false,\n                                    \"casual\": true,\n                                    \"urlDialing\": false,\n                                    \"unknown\": false\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"group\": true,\n                                    \"local\": true,\n                                    \"tollFree\": false,\n                                    \"toll\": true,\n                                    \"international\": true,\n                                    \"operatorAssisted\": true,\n                                    \"chargeableDirectoryAssisted\": false,\n                                    \"specialServicesI\": false,\n                                    \"specialServicesII\": false,\n                                    \"premiumServicesI\": true,\n                                    \"premiumServicesII\": true,\n                                    \"casual\": false,\n                                    \"urlDialing\": false,\n                                    \"unknown\": false\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                }\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"group\": true,\n                                    \"local\": true,\n                                    \"tollFree\": false,\n                                    \"toll\": true,\n                                    \"international\": true,\n                                    \"operatorAssisted\": true,\n                                    \"chargeableDirectoryAssisted\": false,\n                                    \"specialServicesI\": false,\n                                    \"specialServicesII\": false,\n                                    \"premiumServicesI\": true,\n                                    \"premiumServicesII\": true,\n                                    \"casual\": false,\n                                    \"urlDialing\": false,\n                                    \"unknown\": false\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                }\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 44,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Pattern\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Pinhole Digit Pattern\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": [\n                        {\n                            \"name\": \"abc123\",\n                            \"digitPattern\": 123123,\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\"\n                        }\n                    ],\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Pattern\"\n                },\n                {\n                    \"id\": 45,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                },\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                },\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 46,\n                    \"parentId\": 1,\n                    \"type\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Group Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"Group\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": null,\n                    \"data\": {\n                        \"departments\": [\n                            {\n                                \"default\": true,\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.1 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"digitPatternPermissions\": {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.1\"\n                                },\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"departmentName\": \"audit.department.2 (grp.odin.audit)\",\n                                \"permissions\": {\n                                    \"digitPatternPermissions\": {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                },\n                                \"department\": {\n                                    \"serviceProviderId\": \"ent.odin.audit\",\n                                    \"groupId\": \"grp.odin.audit\",\n                                    \"name\": \"audit.department.2\"\n                                },\n                                \"digitPatterns\": [\n                                    {\n                                        \"digitPatternName\": \"abc123\",\n                                        \"permission\": \"Ignore\"\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:12\",\n                    \"description\": \"audit.group.Enhanced Outgoing Calling Plan.Group Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 47,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": \"flastname.1\",\n                        \"firstName\": \"firstname.1\",\n                        \"callingLineIdLastName\": \"flastname.1\",\n                        \"callingLineIdFirstName\": \"firstname.1\",\n                        \"hiraganaLastName\": \"flastname.1\",\n                        \"hiraganaFirstName\": \"firstname.1\",\n                        \"phoneNumber\": \"8594004001\",\n                        \"extension\": \"4001\",\n                        \"callingLineIdPhoneNumber\": \"+18594004001\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"8594004001@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 48,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": true,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": true,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": true,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"isActive\": true\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"isActive\": true\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\"\n                                }\n                            ],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 49,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 50,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 88,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [\n                            {\n                                \"description\": \"letsgo\",\n                                \"lastUploaded\": \"2019-10-22T11:54:13.682-04:00\",\n                                \"usage\": [],\n                                \"fileSize\": 88,\n                                \"userId\": \"8594004001@parkbenchsolutions.com\",\n                                \"name\": \"letsgo\",\n                                \"mediaType\": \"WAV\",\n                                \"content\": \"UklGRsxgAQBXQVZFSlVOSxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZm10IBAAAAABAAEAgD4AAAB9AAACABAARkxMUqgPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 51,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 52,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 53,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 54,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 55,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Bridge\",\n                                \"mainCode\": \"*15\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 100\",\n                                \"mainCode\": \"*75\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Deactivation\",\n                                \"mainCode\": \"*13\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Retrieve\",\n                                \"mainCode\": \"*11\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Activation\",\n                                \"mainCode\": \"*12\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 56,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 57,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 58,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 59,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"8594004001@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 60,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 61,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"8594004001@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 62,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 63,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 64,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 65,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 66,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 67,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 68,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 69,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 70,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 71,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 72,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 73,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Alternate Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Alternate Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"distinctiveRing\": true,\n                        \"alternateEntries\": [\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 1\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 2\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 3\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 4\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 5\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 6\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 7\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 8\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 9\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 10\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Alternate Numbers\"\n                },\n                {\n                    \"id\": 74,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Anonymous Call Rejection\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Anonymous Call Rejection\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": true,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Anonymous Call Rejection\"\n                },\n                {\n                    \"id\": 75,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Authentication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Authentication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userName\": 8594004001,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Authentication\"\n                },\n                {\n                    \"id\": 76,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Always\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Always\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"isRingSplashActive\": false,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Call Forwarding Always\"\n                },\n                {\n                    \"id\": 77,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Busy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Busy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 4001,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Call Forwarding Busy\"\n                },\n                {\n                    \"id\": 78,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding No Answer\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding No Answer\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"numberOfRings\": 3,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Call Forwarding No Answer\"\n                },\n                {\n                    \"id\": 79,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Not Reachable\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Call Forwarding Not Reachable\"\n                },\n                {\n                    \"id\": 80,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Selective\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Selective\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"playRingReminder\": false,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"criteria\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Call Forwarding Selective\"\n                },\n                {\n                    \"id\": 81,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Intercept User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Intercept User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"exemptInboundMobilityCalls\": false,\n                        \"disableParallelRingingToNetworkLocations\": false,\n                        \"routeToVoiceMail\": false,\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"outboundCallMode\": \"Block All\",\n                        \"exemptOutboundMobilityCalls\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Intercept User\"\n                },\n                {\n                    \"id\": 82,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Shared Call Appearance\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Shared Call Appearance\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"alertAllAppearancesForClickToDialCalls\": false,\n                        \"alertAllAppearancesForGroupPagingCalls\": false,\n                        \"maxAppearances\": 2,\n                        \"allowSCACallRetrieve\": false,\n                        \"enableMultipleCallArrangement\": false,\n                        \"multipleCallArrangementIsActive\": false,\n                        \"allowBridgingBetweenLocations\": false,\n                        \"bridgeWarningTone\": \"None\",\n                        \"enableCallParkNotification\": false,\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"endpoints\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Shared Call Appearance\"\n                },\n                {\n                    \"id\": 83,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Speed Dial 8\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Speed Dial 8\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"2\"\n                            },\n                            {\n                                \"speedCode\": \"3\"\n                            },\n                            {\n                                \"speedCode\": \"4\"\n                            },\n                            {\n                                \"speedCode\": \"5\"\n                            },\n                            {\n                                \"speedCode\": \"6\"\n                            },\n                            {\n                                \"speedCode\": \"7\"\n                            },\n                            {\n                                \"speedCode\": \"8\"\n                            },\n                            {\n                                \"speedCode\": \"9\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Speed Dial 8\"\n                },\n                {\n                    \"id\": 84,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Speed Dial 100\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Speed Dial 100\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004001@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004001@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"0\",\n                                \"phoneNumber\": \"1234\",\n                                \"description\": \"1234\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:13\",\n                    \"description\": \"audit.user.services.Speed Dial 100\"\n                },\n                {\n                    \"id\": 85,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": \"flastname.2\",\n                        \"firstName\": \"firstname.2\",\n                        \"callingLineIdLastName\": \"flastname.2\",\n                        \"callingLineIdFirstName\": \"firstname.2\",\n                        \"hiraganaLastName\": \"flastname.2\",\n                        \"hiraganaFirstName\": \"firstname.2\",\n                        \"phoneNumber\": \"8594004002\",\n                        \"extension\": \"4002\",\n                        \"callingLineIdPhoneNumber\": \"+18594004002\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"8594004002@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 86,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": true,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"isActive\": true\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\"\n                                }\n                            ],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 87,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 88,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 89,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 90,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 91,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 92,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 93,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 94,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 95,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 96,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 97,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"8594004002@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 98,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 99,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"8594004002@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 100,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 101,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 102,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 103,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 104,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 105,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 106,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 107,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 108,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 109,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 110,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 111,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Alternate Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Alternate Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"distinctiveRing\": true,\n                        \"alternateEntries\": [\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 1\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 2\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 3\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 4\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 5\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 6\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 7\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 8\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 9\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 10\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Alternate Numbers\"\n                },\n                {\n                    \"id\": 112,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Anonymous Call Rejection\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Anonymous Call Rejection\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Anonymous Call Rejection\"\n                },\n                {\n                    \"id\": 113,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Authentication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Authentication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userName\": 8594004002,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Authentication\"\n                },\n                {\n                    \"id\": 114,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Always\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Always\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"isRingSplashActive\": false,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Call Forwarding Always\"\n                },\n                {\n                    \"id\": 115,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Busy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Busy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 4001,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Call Forwarding Busy\"\n                },\n                {\n                    \"id\": 116,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding No Answer\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding No Answer\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"numberOfRings\": 3,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Call Forwarding No Answer\"\n                },\n                {\n                    \"id\": 117,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Not Reachable\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Call Forwarding Not Reachable\"\n                },\n                {\n                    \"id\": 118,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Selective\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Selective\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"playRingReminder\": false,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"criteria\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Call Forwarding Selective\"\n                },\n                {\n                    \"id\": 119,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Intercept User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Intercept User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"exemptInboundMobilityCalls\": false,\n                        \"disableParallelRingingToNetworkLocations\": false,\n                        \"routeToVoiceMail\": false,\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"outboundCallMode\": \"Block All\",\n                        \"exemptOutboundMobilityCalls\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Intercept User\"\n                },\n                {\n                    \"id\": 120,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Speed Dial 8\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Speed Dial 8\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004002@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004002@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"2\"\n                            },\n                            {\n                                \"speedCode\": \"3\"\n                            },\n                            {\n                                \"speedCode\": \"4\"\n                            },\n                            {\n                                \"speedCode\": \"5\"\n                            },\n                            {\n                                \"speedCode\": \"6\"\n                            },\n                            {\n                                \"speedCode\": \"7\"\n                            },\n                            {\n                                \"speedCode\": \"8\"\n                            },\n                            {\n                                \"speedCode\": \"9\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:14\",\n                    \"description\": \"audit.user.services.Speed Dial 8\"\n                },\n                {\n                    \"id\": 121,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": \"flastname.3\",\n                        \"firstName\": \"firstname.3\",\n                        \"callingLineIdLastName\": \"flastname.3\",\n                        \"callingLineIdFirstName\": \"firstname.3\",\n                        \"hiraganaLastName\": \"flastname.3\",\n                        \"hiraganaFirstName\": \"firstname.3\",\n                        \"phoneNumber\": \"8594004003\",\n                        \"extension\": \"4003\",\n                        \"callingLineIdPhoneNumber\": \"+18594004003\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"8594004003@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 122,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": true,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"isActive\": true\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\"\n                                }\n                            ],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 123,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 124,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 125,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 126,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 127,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 128,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 129,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 130,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 131,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 132,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 133,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"8594004003@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 134,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 135,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"8594004003@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 136,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 137,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 138,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 139,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 140,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 141,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 142,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 143,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 144,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 145,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 146,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 147,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Alternate Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Alternate Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"distinctiveRing\": true,\n                        \"alternateEntries\": [\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 1\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 2\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 3\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 4\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 5\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 6\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 7\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 8\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 9\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 10\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Alternate Numbers\"\n                },\n                {\n                    \"id\": 148,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Anonymous Call Rejection\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Anonymous Call Rejection\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Anonymous Call Rejection\"\n                },\n                {\n                    \"id\": 149,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Authentication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Authentication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userName\": 8594004003,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Authentication\"\n                },\n                {\n                    \"id\": 150,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Always\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Always\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"isRingSplashActive\": false,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Call Forwarding Always\"\n                },\n                {\n                    \"id\": 151,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Busy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Busy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 4001,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Call Forwarding Busy\"\n                },\n                {\n                    \"id\": 152,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding No Answer\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding No Answer\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"numberOfRings\": 3,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Call Forwarding No Answer\"\n                },\n                {\n                    \"id\": 153,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Not Reachable\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Call Forwarding Not Reachable\"\n                },\n                {\n                    \"id\": 154,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Selective\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Selective\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"playRingReminder\": false,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"criteria\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Call Forwarding Selective\"\n                },\n                {\n                    \"id\": 155,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Intercept User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Intercept User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"exemptInboundMobilityCalls\": false,\n                        \"disableParallelRingingToNetworkLocations\": false,\n                        \"routeToVoiceMail\": false,\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"outboundCallMode\": \"Block All\",\n                        \"exemptOutboundMobilityCalls\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Intercept User\"\n                },\n                {\n                    \"id\": 156,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Speed Dial 8\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Speed Dial 8\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004003@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004003@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"2\"\n                            },\n                            {\n                                \"speedCode\": \"3\"\n                            },\n                            {\n                                \"speedCode\": \"4\"\n                            },\n                            {\n                                \"speedCode\": \"5\"\n                            },\n                            {\n                                \"speedCode\": \"6\"\n                            },\n                            {\n                                \"speedCode\": \"7\"\n                            },\n                            {\n                                \"speedCode\": \"8\"\n                            },\n                            {\n                                \"speedCode\": \"9\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:15\",\n                    \"description\": \"audit.user.services.Speed Dial 8\"\n                },\n                {\n                    \"id\": 157,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": \"flastname.4\",\n                        \"firstName\": \"firstname.4\",\n                        \"callingLineIdLastName\": \"flastname.4\",\n                        \"callingLineIdFirstName\": \"firstname.4\",\n                        \"hiraganaLastName\": \"flastname.4\",\n                        \"hiraganaFirstName\": \"firstname.4\",\n                        \"phoneNumber\": \"8594004004\",\n                        \"extension\": \"4004\",\n                        \"callingLineIdPhoneNumber\": \"+18594004004\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"8594004004@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 158,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": true,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"isActive\": true\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\"\n                                }\n                            ],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 159,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 160,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 161,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 162,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 163,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 164,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 165,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 166,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 167,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 168,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 169,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"8594004004@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 170,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 171,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"8594004004@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 172,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 173,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 174,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 175,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 176,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 177,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 178,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 179,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 180,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 181,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 182,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 183,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Alternate Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Alternate Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"distinctiveRing\": true,\n                        \"alternateEntries\": [\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 1\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 2\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 3\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 4\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 5\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 6\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 7\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 8\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 9\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 10\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Alternate Numbers\"\n                },\n                {\n                    \"id\": 184,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Anonymous Call Rejection\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Anonymous Call Rejection\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Anonymous Call Rejection\"\n                },\n                {\n                    \"id\": 185,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Authentication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Authentication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userName\": 8594004004,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Authentication\"\n                },\n                {\n                    \"id\": 186,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Always\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Always\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"isRingSplashActive\": false,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Call Forwarding Always\"\n                },\n                {\n                    \"id\": 187,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Busy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Busy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 4001,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Call Forwarding Busy\"\n                },\n                {\n                    \"id\": 188,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding No Answer\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding No Answer\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"numberOfRings\": 3,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Call Forwarding No Answer\"\n                },\n                {\n                    \"id\": 189,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Not Reachable\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Call Forwarding Not Reachable\"\n                },\n                {\n                    \"id\": 190,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Selective\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Selective\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"playRingReminder\": false,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"criteria\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Call Forwarding Selective\"\n                },\n                {\n                    \"id\": 191,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Intercept User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Intercept User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"exemptInboundMobilityCalls\": false,\n                        \"disableParallelRingingToNetworkLocations\": false,\n                        \"routeToVoiceMail\": false,\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"outboundCallMode\": \"Block All\",\n                        \"exemptOutboundMobilityCalls\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Intercept User\"\n                },\n                {\n                    \"id\": 192,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Speed Dial 8\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Speed Dial 8\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004004@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004004@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"2\"\n                            },\n                            {\n                                \"speedCode\": \"3\"\n                            },\n                            {\n                                \"speedCode\": \"4\"\n                            },\n                            {\n                                \"speedCode\": \"5\"\n                            },\n                            {\n                                \"speedCode\": \"6\"\n                            },\n                            {\n                                \"speedCode\": \"7\"\n                            },\n                            {\n                                \"speedCode\": \"8\"\n                            },\n                            {\n                                \"speedCode\": \"9\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:16\",\n                    \"description\": \"audit.user.services.Speed Dial 8\"\n                },\n                {\n                    \"id\": 193,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": \"flastname.5\",\n                        \"firstName\": \"firstname.5\",\n                        \"callingLineIdLastName\": \"flastname.5\",\n                        \"callingLineIdFirstName\": \"firstname.5\",\n                        \"hiraganaLastName\": \"flastname.5\",\n                        \"hiraganaFirstName\": \"firstname.5\",\n                        \"phoneNumber\": \"8594004005\",\n                        \"extension\": \"4005\",\n                        \"callingLineIdPhoneNumber\": \"+18594004005\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"8594004005@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 194,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": true,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"isActive\": true\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"isActive\": false\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\"\n                                }\n                            ],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 195,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 196,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 197,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 198,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 199,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 200,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 201,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 202,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 203,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 204,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 205,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"8594004005@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 206,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 207,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"8594004005@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 208,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 209,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 210,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 211,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 212,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 213,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 214,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 215,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 216,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 217,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 218,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 219,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Alternate Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Alternate Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"distinctiveRing\": true,\n                        \"alternateEntries\": [\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 1\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 2\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 3\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 4\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 5\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 6\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 7\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 8\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 9\n                            },\n                            {\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"ringPattern\": null,\n                                \"alternateEntryId\": 10\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Alternate Numbers\"\n                },\n                {\n                    \"id\": 220,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Anonymous Call Rejection\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Anonymous Call Rejection\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Anonymous Call Rejection\"\n                },\n                {\n                    \"id\": 221,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Authentication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Authentication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userName\": 8594004005,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Authentication\"\n                },\n                {\n                    \"id\": 222,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Always\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Always\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"isRingSplashActive\": false,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Call Forwarding Always\"\n                },\n                {\n                    \"id\": 223,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Busy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Busy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 4001,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Call Forwarding Busy\"\n                },\n                {\n                    \"id\": 224,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding No Answer\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding No Answer\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"numberOfRings\": 3,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Call Forwarding No Answer\"\n                },\n                {\n                    \"id\": 225,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Not Reachable\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Call Forwarding Not Reachable\"\n                },\n                {\n                    \"id\": 226,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Call Forwarding Selective\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Call Forwarding Selective\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"playRingReminder\": false,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"criteria\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Call Forwarding Selective\"\n                },\n                {\n                    \"id\": 227,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Intercept User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Intercept User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"exemptInboundMobilityCalls\": false,\n                        \"disableParallelRingingToNetworkLocations\": false,\n                        \"routeToVoiceMail\": false,\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"outboundCallMode\": \"Block All\",\n                        \"exemptOutboundMobilityCalls\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Intercept User\"\n                },\n                {\n                    \"id\": 228,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.services.Speed Dial 8\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Speed Dial 8\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"8594004005@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"8594004005@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"2\"\n                            },\n                            {\n                                \"speedCode\": \"3\"\n                            },\n                            {\n                                \"speedCode\": \"4\"\n                            },\n                            {\n                                \"speedCode\": \"5\"\n                            },\n                            {\n                                \"speedCode\": \"6\"\n                            },\n                            {\n                                \"speedCode\": \"7\"\n                            },\n                            {\n                                \"speedCode\": \"8\"\n                            },\n                            {\n                                \"speedCode\": \"9\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:17\",\n                    \"description\": \"audit.user.services.Speed Dial 8\"\n                },\n                {\n                    \"id\": 229,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": \"1userLastName\",\n                        \"firstName\": \"1userFirstName\",\n                        \"callingLineIdLastName\": \"1userLastName\",\n                        \"callingLineIdFirstName\": \"1userFirstName\",\n                        \"hiraganaLastName\": \"1userLastName\",\n                        \"hiraganaFirstName\": \"1userFirstName\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"1userId@parkbenchsolutions.com\",\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"name\": \"grp.odin.audit.trunk.1\",\n                                \"linePort\": \"1userFirstName1userFirstName@parkbenchsolutions.com\",\n                                \"staticRegistrationCapable\": \"false\",\n                                \"useDomain\": \"true\",\n                                \"isPilotUser\": \"false\",\n                                \"contacts\": []\n                            }\n                        },\n                        \"countryCode\": \"1\",\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"callingLineIdPhoneNumber\": \"\",\n                        \"phoneNumber\": \"\",\n                        \"extension\": \"\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"trunkAddressing\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 230,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 231,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 232,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 233,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 234,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 235,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 236,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 237,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 238,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 239,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 240,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 241,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 30,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"1userId@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 242,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 243,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"1userId@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 244,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 245,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 246,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 247,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 248,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 249,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 250,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 251,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 252,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 253,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 254,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"1userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:18\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 255,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": \"2userLastName\",\n                        \"firstName\": \"2userFirstName\",\n                        \"callingLineIdLastName\": \"2userLastName\",\n                        \"callingLineIdFirstName\": \"2userFirstName\",\n                        \"hiraganaLastName\": \"2userLastName\",\n                        \"hiraganaFirstName\": \"2userFirstName\",\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"2userId@parkbenchsolutions.com\",\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"name\": \"grp.odin.audit.trunk.1\",\n                                \"linePort\": \"2userFirstName2userFirstName@parkbenchsolutions.com\",\n                                \"staticRegistrationCapable\": \"false\",\n                                \"useDomain\": \"true\",\n                                \"isPilotUser\": \"false\",\n                                \"contacts\": []\n                            }\n                        },\n                        \"countryCode\": \"1\",\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"callingLineIdPhoneNumber\": \"\",\n                        \"phoneNumber\": \"\",\n                        \"extension\": \"\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"trunkAddressing\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 256,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 257,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 258,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 259,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 260,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 261,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 262,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 263,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 264,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 265,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 266,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 267,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 30,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"2userId@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 268,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 269,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"2userId@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 270,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 271,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 272,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 273,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 274,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 275,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 276,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 277,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 278,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 279,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 280,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"2userId@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"2userId@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 281,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.User\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"lastName\": 2,\n                        \"firstName\": 1,\n                        \"callingLineIdLastName\": 2,\n                        \"callingLineIdFirstName\": 1,\n                        \"hiraganaLastName\": 2,\n                        \"hiraganaFirstName\": 1,\n                        \"language\": \"English\",\n                        \"timeZone\": \"America/New_York\",\n                        \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n                        \"defaultAlias\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"countryCode\": \"1\",\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"callingLineIdPhoneNumber\": \"\",\n                        \"phoneNumber\": \"\",\n                        \"extension\": \"\",\n                        \"domain\": \"parkbenchsolutions.com\",\n                        \"endpointType\": \"none\",\n                        \"aliases\": [],\n                        \"accessDeviceEndpoint\": {\n                            \"contacts\": []\n                        },\n                        \"trunkAddressing\": {\n                            \"trunkGroupDeviceEndpoint\": {\n                                \"contacts\": []\n                            }\n                        },\n                        \"isEnterprise\": true,\n                        \"passwordExpiresDays\": \"-2147483648\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.User\"\n                },\n                {\n                    \"id\": 282,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Authentication\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Authentication\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding No Answer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding No Answer\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Express\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Express\"\n                                },\n                                {\n                                    \"serviceName\": \"CommPilot Call Manager\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"CommPilot Call Manager\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Intercept User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Intercept User\"\n                                },\n                                {\n                                    \"serviceName\": \"Last Number Redial\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Last Number Redial\"\n                                },\n                                {\n                                    \"serviceName\": \"Outlook Integration\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Outlook Integration\"\n                                },\n                                {\n                                    \"serviceName\": \"Priority Alert\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Priority Alert\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Return\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Return\"\n                                },\n                                {\n                                    \"serviceName\": \"Remote Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Remote Office\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Service Scripts User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Service Scripts User\"\n                                },\n                                {\n                                    \"serviceName\": \"Simultaneous Ring Personal\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Simultaneous Ring Personal\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 8\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 8\"\n                                },\n                                {\n                                    \"serviceName\": \"Customer Originated Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Customer Originated Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Attendant Console\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Attendant Console\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party MWI Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party MWI Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Client Call Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client Call Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 5\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Shared Call Appearance 5\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 10\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 10\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 20\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 20\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 25\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 25\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 30\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 30\"\n                                },\n                                {\n                                    \"serviceName\": \"Shared Call Appearance 35\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Shared Call Appearance 35\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Flash Call Hold\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flash Call Hold\"\n                                },\n                                {\n                                    \"serviceName\": \"Speed Dial 100\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Speed Dial 100\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Directed Call Pickup with Barge-in\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Portal Calling\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Portal Calling\"\n                                },\n                                {\n                                    \"serviceName\": \"External Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Internal Calling Line ID Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Internal Calling Line ID Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Callback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Callback\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Blocking Override\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Blocking Override\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Barge-in Exempt\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Barge-in Exempt\"\n                                },\n                                {\n                                    \"serviceName\": \"Video Add-On\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video Add-On\"\n                                },\n                                {\n                                    \"serviceName\": \"Malicious Call Trace\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Malicious Call Trace\"\n                                },\n                                {\n                                    \"serviceName\": \"Preferred Carrier User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Preferred Carrier User\"\n                                },\n                                {\n                                    \"serviceName\": \"Push to Talk\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Push to Talk\"\n                                },\n                                {\n                                    \"serviceName\": \"Basic Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Basic Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Enhanced Call Logs\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Enhanced Call Logs\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Host\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Host\"\n                                },\n                                {\n                                    \"serviceName\": \"Hoteling Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Hoteling Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Multiple Call Arrangement\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Multiple Call Arrangement\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Automatic Hold/Retrieve\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Automatic Hold/Retrieve\"\n                                },\n                                {\n                                    \"serviceName\": \"Busy Lamp Field\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Busy Lamp Field\"\n                                },\n                                {\n                                    \"serviceName\": \"Three-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Three-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Physical Location\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Physical Location\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Supervisor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Supervisor\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Agent\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Agent\"\n                                },\n                                {\n                                    \"serviceName\": \"N-Way Call\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"N-Way Call\"\n                                },\n                                {\n                                    \"serviceName\": \"Two-Stage Dialing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Two-Stage Dialing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Not Reachable\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Not Reachable\"\n                                },\n                                {\n                                    \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Small Business\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Receptionist - Office\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Office\"\n                                },\n                                {\n                                    \"serviceName\": \"External Custom Ringback\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"External Custom Ringback\"\n                                },\n                                {\n                                    \"serviceName\": \"In-Call Service Activation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"In-Call Service Activation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Presentation\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Presentation\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Anywhere\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Anywhere\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Polycom Phone Services\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Polycom Phone Services\"\n                                },\n                                {\n                                    \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Custom Ringback User - Call Waiting\"\n                                },\n                                {\n                                    \"serviceName\": \"Music On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Music On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Video On Hold User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Video On Hold User\"\n                                },\n                                {\n                                    \"serviceName\": \"Advice Of Charge\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Advice Of Charge\"\n                                },\n                                {\n                                    \"serviceName\": \"Prepaid\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Prepaid\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Basic\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Basic\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Standard\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Standard\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center - Premium\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center - Premium\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Number Delivery\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Number Delivery\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Office Communicator Tab\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Office Communicator Tab\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Center Monitoring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Center Monitoring\"\n                                },\n                                {\n                                    \"serviceName\": \"Location-Based Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Location-Based Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Mobility\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Mobility\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Me Now\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Me Now\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Recording\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Recording\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                                },\n                                {\n                                    \"serviceName\": \"Integrated IMP\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"Integrated IMP\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive\"\n                                },\n                                {\n                                    \"serviceName\": \"Executive-Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Executive-Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 3\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Assistant - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 4\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 15\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 15\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 16\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Client License 16\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 17\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 18\",\n                                    \"assigned\": false,\n                                    \"tags\": [\n                                        \"UC-One\"\n                                    ],\n                                    \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Client License 19\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"BroadTouch MobileLink\"\n                                },\n                                {\n                                    \"serviceName\": \"Security Classification\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Security Classification\"\n                                },\n                                {\n                                    \"serviceName\": \"Flexible Seating Guest\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Flexible Seating Guest\"\n                                },\n                                {\n                                    \"serviceName\": \"Personal Assistant\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Personal Assistant\"\n                                },\n                                {\n                                    \"serviceName\": \"Route List\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Route List\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Audio\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Audio\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Collaborate - Sharing\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Collaborate - Sharing\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                },\n                                {\n                                    \"serviceName\": \"Silent Alerting\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Silent Alerting\"\n                                },\n                                {\n                                    \"serviceName\": \"Conference Room\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Conference Room\"\n                                },\n                                {\n                                    \"serviceName\": \"Sequential Ring\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Sequential Ring\"\n                                },\n                                {\n                                    \"serviceName\": \"Number Portability Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Number Portability Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Direct Route\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Direct Route\"\n                                },\n                                {\n                                    \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Terminating Alternate Trunk Identity\"\n                                }\n                            ],\n                            \"servicePackServices\": [\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Standard\",\n                                    \"serviceName\": \"Standard\",\n                                    \"alias\": \"Standard\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Basic\",\n                                    \"serviceName\": \"Basic\",\n                                    \"alias\": \"Basic\"\n                                },\n                                {\n                                    \"assigned\": false,\n                                    \"description\": \"Premium\",\n                                    \"serviceName\": \"Premium\",\n                                    \"alias\": \"Premium\"\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [],\n                            \"groupServices\": [\n                                {\n                                    \"serviceName\": \"Music On Hold\",\n                                    \"isActive\": true\n                                }\n                            ],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 283,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 284,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 285,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 286,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallProcessingPolicy\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallProcessingPolicy\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CallProcessingPolicy\"\n                },\n                {\n                    \"id\": 287,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 288,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 289,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 290,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 291,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 292,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 293,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 25,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 294,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarringAuthorizationCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarringAuthorizationCode\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.settings.CommunicationBarringAuthorizationCode\"\n                },\n                {\n                    \"id\": 295,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 296,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 297,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 298,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 299,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 300,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 301,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 302,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 303,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 304,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 305,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 306,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"User\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"1asdfasdf@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:19\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 307,\n                    \"parentId\": 1,\n                    \"type\": \"audit.service.instances.Collaborate Bridge\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"audit.service.instances.Collaborate Bridge\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"serviceInstanceProfile\": {\n                            \"name\": \"grp.odin.audit-Default\",\n                            \"callingLineIdLastName\": \"grp.odin.audit\",\n                            \"callingLineIdFirstName\": \"CollaborateBridge\",\n                            \"hiraganaLastName\": \"grp.odin.audit-Default\",\n                            \"hiraganaFirstName\": \"Collaborate - Audio\",\n                            \"language\": \"English\",\n                            \"timeZone\": \"America/New_York\",\n                            \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\"\n                        },\n                        \"maximumBridgeParticipants\": -1,\n                        \"isDefault\": true,\n                        \"maxCollaborateRoomParticipants\": 15,\n                        \"supportOutdial\": true,\n                        \"serviceUserId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"users\": []\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.service.instances.Collaborate Bridge\"\n                },\n                {\n                    \"id\": 308,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Services\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Services\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"services\": {\n                            \"userServices\": [\n                                {\n                                    \"serviceName\": \"Anonymous Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Anonymous Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Busy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Busy\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Notify\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Notify\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Line ID Delivery Blocking\"\n                                },\n                                {\n                                    \"serviceName\": \"Do Not Disturb\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Do Not Disturb\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Acceptance\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Acceptance\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Selective\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Selective\"\n                                },\n                                {\n                                    \"serviceName\": \"Selective Call Rejection\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Selective Call Rejection\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User\"\n                                },\n                                {\n                                    \"serviceName\": \"Alternate Numbers\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Alternate Numbers\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Name Retrieval\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Name Retrieval\"\n                                },\n                                {\n                                    \"serviceName\": \"Third-Party Voice Mail Support\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Third-Party Voice Mail Support\"\n                                },\n                                {\n                                    \"serviceName\": \"Calling Party Category\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Calling Party Category\"\n                                },\n                                {\n                                    \"serviceName\": \"Voice Messaging User - Video\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Voice Messaging User - Video\"\n                                },\n                                {\n                                    \"serviceName\": \"Diversion Inhibitor\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Diversion Inhibitor\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Transfer\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Transfer\"\n                                },\n                                {\n                                    \"serviceName\": \"Privacy\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Privacy\"\n                                },\n                                {\n                                    \"serviceName\": \"Fax Messaging\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Fax Messaging\"\n                                },\n                                {\n                                    \"serviceName\": \"Charge Number\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Charge Number\"\n                                },\n                                {\n                                    \"serviceName\": \"Connected Line Identification Restriction\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Connected Line Identification Restriction\"\n                                },\n                                {\n                                    \"serviceName\": \"Zone Calling Restrictions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Zone Calling Restrictions\"\n                                },\n                                {\n                                    \"serviceName\": \"Communication Barring User-Control\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Communication Barring User-Control\"\n                                },\n                                {\n                                    \"serviceName\": \"Classmark\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Classmark\"\n                                },\n                                {\n                                    \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                                },\n                                {\n                                    \"serviceName\": \"Pre-alerting Announcement\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Pre-alerting Announcement\"\n                                },\n                                {\n                                    \"serviceName\": \"Group Night Forwarding\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Group Night Forwarding\"\n                                },\n                                {\n                                    \"serviceName\": \"Call Forwarding Always Secondary\",\n                                    \"assigned\": false,\n                                    \"tags\": [],\n                                    \"alias\": \"Call Forwarding Always Secondary\"\n                                }\n                            ],\n                            \"servicePackServices\": [],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"assigned\": {\n                            \"userServices\": [],\n                            \"groupServices\": [],\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.Services\"\n                },\n                {\n                    \"id\": 309,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AlternateUserId\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AlternateUserId\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"users\": [],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.AlternateUserId\"\n                },\n                {\n                    \"id\": 310,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.AnnouncementFile\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"AnnouncementFile\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": [],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.AnnouncementFile\"\n                },\n                {\n                    \"id\": 311,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CallPolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CallPolicies\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"redirectedCallsCOLPPrivacy\": \"No Privacy\",\n                        \"callBeingForwardedResponseCallType\": \"Never\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Originating Identity\",\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.CallPolicies\"\n                },\n                {\n                    \"id\": 312,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.CommunicationBarring\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"CommunicationBarring\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.CommunicationBarring\"\n                },\n                {\n                    \"id\": 313,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.DevicePolicies\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"DevicePolicies\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.DevicePolicies\"\n                },\n                {\n                    \"id\": 314,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.FeatureAccessCode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"FeatureAccessCode\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.FeatureAccessCode\"\n                },\n                {\n                    \"id\": 315,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.OciCallControlApplication\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"OciCallControlApplication\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.OciCallControlApplication\"\n                },\n                {\n                    \"id\": 316,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PersonalPhone\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PersonalPhone\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.PersonalPhone\"\n                },\n                {\n                    \"id\": 317,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.Schedules\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"Schedules\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": null,\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.Schedules\"\n                },\n                {\n                    \"id\": 318,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.settings.PortalPasscode\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"PortalPasscode\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\"\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.settings.PortalPasscode\"\n                },\n                {\n                    \"id\": 319,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Authorization Code\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"settings\": {\n                            \"useCustomSettings\": false,\n                            \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin.audit\",\n                            \"groupId\": \"grp.odin.audit\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Authorization Code\"\n                },\n                {\n                    \"id\": 320,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Originating\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Allow\"\n                            }\n                        ],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Originating\"\n                },\n                {\n                    \"id\": 321,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Redirecting\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 322,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Originating\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Disallow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Disallow\",\n                            \"premiumServicesII\": \"Disallow\",\n                            \"casual\": \"Disallow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Originating\"\n                },\n                {\n                    \"id\": 323,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirected\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirected\"\n                },\n                {\n                    \"id\": 324,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Redirecting\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": false,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Redirecting\"\n                },\n                {\n                    \"id\": 325,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Transfer Numbers\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123123\",\n                            \"phoneNumber02\": \"32123\",\n                            \"phoneNumber03\": \"123123\"\n                        },\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Outgoing Calling Plan.User Outgoing Calling Plan Transfer Numbers\"\n                },\n                {\n                    \"id\": 326,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Call Me Now\"\n                },\n                {\n                    \"id\": 327,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Originating\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Originating\"\n                },\n                {\n                    \"id\": 328,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Pinhole Digit Plan Redirecting\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": \"Ignore\"\n                            }\n                        ],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Pinhole Digit Plan Redirecting\"\n                },\n                {\n                    \"id\": 329,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Call Me Now\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": false,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": false,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": false,\n                            \"specialServicesII\": false,\n                            \"premiumServicesI\": false,\n                            \"premiumServicesII\": false,\n                            \"casual\": true,\n                            \"urlDialing\": false,\n                            \"unknown\": false\n                        },\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Call Me Now\"\n                },\n                {\n                    \"id\": 330,\n                    \"parentId\": 1,\n                    \"type\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"status\": \"complete\",\n                    \"serviceName\": \"User Outgoing Calling Plan Digit Plan Call Me Now\",\n                    \"serviceType\": \"Collaborate Bridge\",\n                    \"resellerId\": null,\n                    \"serviceProviderId\": \"ent.odin.audit\",\n                    \"groupId\": \"grp.odin.audit\",\n                    \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                    \"data\": {\n                        \"useCustomSettings\": false,\n                        \"userPermissions\": [\n                            {\n                                \"digitPatternName\": \"abc123\",\n                                \"permission\": true\n                            }\n                        ],\n                        \"userId\": \"152911473-140233539-Default@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin.audit\",\n                        \"groupId\": \"grp.odin.audit\",\n                        \"isEnterprise\": true\n                    },\n                    \"options\": null,\n                    \"error\": null,\n                    \"sessionLoginType\": \"System\",\n                    \"sessionXsp\": \"tcp://labxsp1.alliedtelecom.net:2208\",\n                    \"sessionResellerId\": null,\n                    \"sessionServiceProviderId\": null,\n                    \"sessionGroupId\": null,\n                    \"sessionUserId\": \"pbsadmin\",\n                    \"created_at\": \"2019-11-05 16:50:20\",\n                    \"description\": \"audit.user.Enhanced Outgoing Calling Plan.User Outgoing Calling Plan Digit Plan Call Me Now\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{url}}/api/v2/imports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","imports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"95390c9e-4c4f-4a6a-9170-d89be473af9e"},{"name":"Imports","id":"345b6967-cd72-48ba-8848-1b7b13e7e5e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/imports?includeChildren=true&includeData=false","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","imports"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"2"},{"disabled":true,"key":"offset","value":"1"},{"disabled":true,"key":"startTime","value":"2019-03-01 00:00:00"},{"disabled":true,"key":"endTime","value":"2019-03-10 00:00:00"},{"disabled":true,"key":"types","value":"user.login,user.login.failure"},{"key":"includeChildren","value":"true"},{"key":"includeData","value":"false"}],"variable":[]}},"response":[{"id":"879d53fc-47dc-4bda-8228-37b5de95a59a","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"345b6967-cd72-48ba-8848-1b7b13e7e5e6"}],"id":"727402f5-2aec-43f9-9220-54f942574353","_postman_id":"727402f5-2aec-43f9-9220-54f942574353","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Exports","item":[{"name":"Export","id":"60a2ccf6-adf0-4221-a9b7-996ab0eebf89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"endpoint\": \"http://api:80/api/v2\",\n    \"auditId\": 275,\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin.audit.master\",\n    \"options\": {\n        \"serviceProviderId\": \"ent.odin\",\n        \"groupId\": \"grp.odin.audit.14\",\n        \"defaultDomain\": \"lab.tekvoice.net\",\n        \"password\": \"e3z(cjvfXx\",\n        \"sipAuthenticationPassword\": \"ujqH4}cten\",\n        \"groupMailServerPassword\": \"zUo)sky7jw\",\n        \"passcode\": \"490161\",\n        \"serviceProvider\": {\n            \"serviceProviderName\": \"ent.odin.audit.9 name\"\n        },\n        \"group\": {\n            \"groupName\": \"grp.odin.audit.7 name\",\n            \"defaultDomain\": \"lab.tekvoice.net\",\n            \"userLimit\": 5\n        },\n        \"user\": {\n            \"password\": \"e3z(cjvfXx\",\n            \"sipAuthenticationPassword\": \"ujqH4}cten\",\n            \"groupMailServerPassword\": \"zUo)sky7jw\",\n            \"passcode\": \"490161\"\n        },\n        \"users\": [\n            {\n                \"userId\": \"123@pbs.net\",\n                \"task\": \"user.move\"\n            },\n            {\n                \"userId\": \"124@pbs.net\",\n                \"task\": \"user.move\"\n            },\n            {\n                \"userId\": \"124@pbs.net\",\n                \"task\": \"user.move\"\n            }\n        ],\n        \"upsert\": true\n    },\n    \"type\": [\n        \"audit.user.services.Speed Dial 8\",\n        \"audit.group.devices\"\n    ]\n}"},"url":"{{url}}/api/v2/exports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","exports"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"60a2ccf6-adf0-4221-a9b7-996ab0eebf89"},{"name":"Exports","id":"814e712d-039b-4250-bcef-a0967a7c0633","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/imports?includeChildren=true&includeData=false","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the result set</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","imports"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"2"},{"disabled":true,"key":"offset","value":"1"},{"disabled":true,"key":"startTime","value":"2019-03-01 00:00:00"},{"disabled":true,"key":"endTime","value":"2019-03-10 00:00:00"},{"disabled":true,"key":"types","value":"user.login,user.login.failure"},{"key":"includeChildren","value":"true"},{"key":"includeData","value":"false"}],"variable":[]}},"response":[{"id":"df42b03d-c395-43b6-8bab-eaf5df2d1284","name":"Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/events?limit=2&offset=1&startTime=2019-03-01 00:00:00&endTime=2019-03-10 00:00:00&types=user.login,user.login.failure","host":["{{url}}"],"path":["api","v2","events"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"},{"key":"startTime","value":"2019-03-01 00:00:00"},{"key":"endTime","value":"2019-03-10 00:00:00"},{"key":"types","value":"user.login,user.login.failure"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 20:39:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.14"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"528"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 211,\n        \"type\": \"user.login.failure\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"error\": \"[Error 4962] Invalid password\"\n        },\n        \"createdAt\": \"2019-03-08T22:23:11+00:00\"\n    },\n    {\n        \"id\": 210,\n        \"type\": \"user.login\",\n        \"userId\": \"admin\",\n        \"before\": null,\n        \"after\": {\n            \"userId\": \"admin\",\n            \"groupId\": null,\n            \"serviceProviderId\": null,\n            \"isEnterprise\": null,\n            \"loginType\": \"Provisioning\",\n            \"userDomain\": \"example.com\",\n            \"passwordExpiresDays\": 2147483647,\n            \"locale\": \"en_US\",\n            \"encoding\": \"ISO-8859-1\"\n        },\n        \"createdAt\": \"2019-03-08T21:15:12+00:00\"\n    }\n]"}],"_postman_id":"814e712d-039b-4250-bcef-a0967a7c0633"}],"id":"2d44a0d2-31c6-4fdb-97e2-c98caa446f2e","_postman_id":"2d44a0d2-31c6-4fdb-97e2-c98caa446f2e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"XSI","item":[{"name":"User Profile","id":"d9f006b0-d698-453f-b8c9-fecdd64787ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/xsi/users/profile?userId=odin.test.user.1@hwcvoice.local","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","xsi","users","profile"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin.test.user.1@hwcvoice.local"}],"variable":[]}},"response":[],"_postman_id":"d9f006b0-d698-453f-b8c9-fecdd64787ec"},{"name":"User Devices","id":"614ad8ad-a447-4ad6-967d-54d34974dcf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v2/xsi/users/devices?userId=odin.test.user.1@hwcvoice.local","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","xsi","users","devices"],"host":["{{url}}"],"query":[{"key":"userId","value":"odin.test.user.1@hwcvoice.local"}],"variable":[]}},"response":[],"_postman_id":"614ad8ad-a447-4ad6-967d-54d34974dcf8"}],"id":"2c3c8f8c-fec2-4e8c-af9f-318b0f3c5f03","_postman_id":"2c3c8f8c-fec2-4e8c-af9f-318b0f3c5f03","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"SIP Authentication","item":[{"name":"System SIP  Authentication Password Rules","id":"4e1d8723-f4b4-44c3-89d8-c88f60110085","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/sip-authentication-password-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","system","sip-authentication-password-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ea1be203-c4de-4e04-be3a-5b663f70fdc7","name":"System SIP  Authentication Password Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/system/sip-authentication-password-rules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"disallowAuthenticationName\": true,\n    \"disallowOldPassword\": false,\n    \"disallowReversedOldPassword\": false,\n    \"restrictMinDigits\": true,\n    \"minDigits\": 1,\n    \"restrictMinUpperCaseLetters\": true,\n    \"minUpperCaseLetters\": 1,\n    \"restrictMinLowerCaseLetters\": true,\n    \"minLowerCaseLetters\": 1,\n    \"restrictMinNonAlphanumericCharacters\": false,\n    \"minNonAlphanumericCharacters\": 1,\n    \"minLength\": 10,\n    \"sendPermanentLockoutNotification\": false,\n    \"endpointAuthenticationLockoutType\": \"None\",\n    \"endpointTemporaryLockoutThreshold\": 5,\n    \"endpointWaitAlgorithm\": \"Double\",\n    \"endpointLockoutFixedMinutes\": 5,\n    \"endpointPermanentLockoutThreshold\": 5,\n    \"trunkGroupAuthenticationLockoutType\": \"None\",\n    \"trunkGroupTemporaryLockoutThreshold\": 5,\n    \"trunkGroupWaitAlgorithm\": \"Fixed\",\n    \"trunkGroupLockoutFixedMinutes\": 5,\n    \"trunkGroupPermanentLockoutThreshold\": 5\n}"}],"_postman_id":"4e1d8723-f4b4-44c3-89d8-c88f60110085"},{"name":"Service Provider SIP Authentication Password Rules","id":"bcd28a53-8dfe-4fdf-bc45-4831207be3de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/service-providers/sip-authentication-password-rules?serviceProviderId=ent.odin","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","service-providers","sip-authentication-password-rules"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"dbcf3dd5-a231-408a-b76e-a9eab8e08062","name":"Service Provider Passcode Rules","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/service-providers/passcode-rules?serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","service-providers","passcode-rules"],"query":[{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Oct 2018 22:04:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"637"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"disallowRepeatedDigits\": true,\n    \"numberOfRepeatedDigits\": 3,\n    \"disallowRepeatedPatterns\": false,\n    \"disallowContiguousSequences\": false,\n    \"numberOfAscendingDigits\": 3,\n    \"numberOfDescendingDigits\": 3,\n    \"disallowUserNumber\": true,\n    \"disallowReversedUserNumber\": true,\n    \"disallowOldPasscode\": false,\n    \"numberOfPreviousPasscodes\": 1,\n    \"disallowReversedOldPasscode\": true,\n    \"minCodeLength\": 6,\n    \"maxCodeLength\": 8,\n    \"disableLoginAfterMaxFailedLoginAttempts\": true,\n    \"maxFailedLoginAttempts\": 5,\n    \"expirePassword\": true,\n    \"passcodeExpiresDays\": 30,\n    \"sendLoginDisabledNotifyEmail\": true,\n    \"loginDisabledNotifyEmailAddress\": \"webportallockout@microv-works.com\",\n    \"serviceProviderId\": \"odin.mock.ent1\"\n}"}],"_postman_id":"bcd28a53-8dfe-4fdf-bc45-4831207be3de"}],"id":"189210c0-f853-4190-8286-c5da15f0fb99","_postman_id":"189210c0-f853-4190-8286-c5da15f0fb99","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Policy","item":[{"name":"Group Policy","id":"c7038d5e-d238-423e-8f4a-cfbbad57aac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n\t\"groupId\": \"grp.odin\",\n    \"callingPlanAccess\": \"Restricted\",\n    \"extensionAccess\": \"Full\",\n    \"ldapIntegrationAccess\": \"Full\",\n    \"voiceMessagingAccess\": \"Full\",\n    \"departmentAdminUserAccess\": \"Read-Only Profile\",\n    \"departmentAdminTrunkGroupAccess\": \"None\",\n    \"departmentAdminPhoneNumberExtensionAccess\": \"Read-Only\",\n    \"departmentAdminCallingLineIdNumberAccess\": \"Read-Only\",\n    \"userAuthenticationAccess\": \"Full\",\n    \"userGroupDirectoryAccess\": \"Full\",\n    \"userProfileAccess\": \"Full\",\n    \"userEnhancedCallLogAccess\": \"Full\",\n    \"userAutoAttendantNameDialingAccess\": \"Full\"\n}"},"url":"{{url}}/api/v2/groups/policy","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","policy"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"grp.odin"},{"disabled":true,"key":"groupId","value":"ent.odin"}],"variable":[]}},"response":[{"id":"2fd8e5b0-3d71-4560-9d85-f901581727f4","name":"Call Proccessing Policy Show","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-processing-policy?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-processing-policy"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1504","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 29 Aug 2018 22:35:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"useGroupCLIDSetting\":false,\"useGroupMediaSetting\":false,\"useGroupCallLimitsSetting\":false,\"useGroupTranslationRoutingSetting\":false,\"useGroupDCLIDSetting\":false,\"useMaxSimultaneousCalls\":true,\"maxSimultaneousCalls\":3,\"useMaxSimultaneousVideoCalls\":true,\"maxSimultaneousVideoCalls\":1,\"useMaxCallTimeForAnsweredCalls\":true,\"maxCallTimeForAnsweredCallsMinutes\":1440,\"useMaxCallTimeForUnansweredCalls\":true,\"maxCallTimeForUnansweredCallsMinutes\":2,\"mediaPolicySelection\":\"No Restrictions\",\"networkUsageSelection\":\"Do Not Force Enterprise and Group Calls\",\"enforceGroupCallingLineIdentityRestriction\":false,\"allowEnterpriseGroupCallTypingForPrivateDialingPlan\":false,\"allowEnterpriseGroupCallTypingForPublicDialingPlan\":false,\"overrideCLIDRestrictionForPrivateCallCategory\":false,\"useEnterpriseCLIDForPrivateCallCategory\":false,\"enableEnterpriseExtensionDialing\":true,\"useMaxConcurrentRedirectedCalls\":false,\"maxConcurrentRedirectedCalls\":5,\"useMaxFindMeFollowMeDepth\":true,\"maxFindMeFollowMeDepth\":3,\"maxRedirectionDepth\":5,\"useMaxConcurrentFindMeFollowMeInvocations\":true,\"maxConcurrentFindMeFollowMeInvocations\":3,\"clidPolicy\":\"Use DN\",\"emergencyClidPolicy\":\"Use DN\",\"allowAlternateNumbersForRedirectingIdentity\":true,\"useGroupName\":false,\"blockCallingNameForExternalCalls\":false,\"enableDialableCallerID\":false,\"allowConfigurableCLIDForRedirectingIdentity\":true,\"allowDepartmentCLIDNameOverride\":false,\"enterpriseCallsCLIDPolicy\":\"Use Location Code plus Extension\",\"groupCallsCLIDPolicy\":\"Use Extension\"}"}],"_postman_id":"c7038d5e-d238-423e-8f4a-cfbbad57aac4"},{"name":"GET Group Policy","id":"05701d22-2ed5-45e7-bc0a-ac528d4e639e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"serviceProviderId\": \"ent.odin\",\n\t\"groupId\": \"grp.odin\",\n    \"callingPlanAccess\": \"Restricted\",\n    \"extensionAccess\": \"Full\",\n    \"ldapIntegrationAccess\": \"Full\",\n    \"voiceMessagingAccess\": \"Full\",\n    \"departmentAdminUserAccess\": \"Read-Only Profile\",\n    \"departmentAdminTrunkGroupAccess\": \"None\",\n    \"departmentAdminPhoneNumberExtensionAccess\": \"Read-Only\",\n    \"departmentAdminCallingLineIdNumberAccess\": \"Read-Only\",\n    \"userAuthenticationAccess\": \"Full\",\n    \"userGroupDirectoryAccess\": \"Full\",\n    \"userProfileAccess\": \"Full\",\n    \"userEnhancedCallLogAccess\": \"Full\",\n    \"userAutoAttendantNameDialingAccess\": \"Full\"\n}"},"url":"{{url}}/api/v2/groups/policy?serviceProviderId=ent.odin.testxp&groupId=grpPankaj","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","groups","policy"],"host":["{{url}}"],"query":[{"key":"serviceProviderId","value":"ent.odin.testxp"},{"key":"groupId","value":"grpPankaj"}],"variable":[]}},"response":[{"id":"520500cd-2d0b-4c55-99f9-0e1a22619431","name":"Call Proccessing Policy Show","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text","disabled":false}],"url":{"raw":"{{url}}/api/v2/groups/call-processing-policy?groupId=odin.mock.grp1&serviceProviderId=odin.mock.ent1","host":["{{url}}"],"path":["api","v2","groups","call-processing-policy"],"query":[{"key":"groupId","value":"odin.mock.grp1"},{"key":"serviceProviderId","value":"odin.mock.ent1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1504","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 29 Aug 2018 22:35:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Powered-By","value":"PHP/7.1.17","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"useGroupCLIDSetting\":false,\"useGroupMediaSetting\":false,\"useGroupCallLimitsSetting\":false,\"useGroupTranslationRoutingSetting\":false,\"useGroupDCLIDSetting\":false,\"useMaxSimultaneousCalls\":true,\"maxSimultaneousCalls\":3,\"useMaxSimultaneousVideoCalls\":true,\"maxSimultaneousVideoCalls\":1,\"useMaxCallTimeForAnsweredCalls\":true,\"maxCallTimeForAnsweredCallsMinutes\":1440,\"useMaxCallTimeForUnansweredCalls\":true,\"maxCallTimeForUnansweredCallsMinutes\":2,\"mediaPolicySelection\":\"No Restrictions\",\"networkUsageSelection\":\"Do Not Force Enterprise and Group Calls\",\"enforceGroupCallingLineIdentityRestriction\":false,\"allowEnterpriseGroupCallTypingForPrivateDialingPlan\":false,\"allowEnterpriseGroupCallTypingForPublicDialingPlan\":false,\"overrideCLIDRestrictionForPrivateCallCategory\":false,\"useEnterpriseCLIDForPrivateCallCategory\":false,\"enableEnterpriseExtensionDialing\":true,\"useMaxConcurrentRedirectedCalls\":false,\"maxConcurrentRedirectedCalls\":5,\"useMaxFindMeFollowMeDepth\":true,\"maxFindMeFollowMeDepth\":3,\"maxRedirectionDepth\":5,\"useMaxConcurrentFindMeFollowMeInvocations\":true,\"maxConcurrentFindMeFollowMeInvocations\":3,\"clidPolicy\":\"Use DN\",\"emergencyClidPolicy\":\"Use DN\",\"allowAlternateNumbersForRedirectingIdentity\":true,\"useGroupName\":false,\"blockCallingNameForExternalCalls\":false,\"enableDialableCallerID\":false,\"allowConfigurableCLIDForRedirectingIdentity\":true,\"allowDepartmentCLIDNameOverride\":false,\"enterpriseCallsCLIDPolicy\":\"Use Location Code plus Extension\",\"groupCallsCLIDPolicy\":\"Use Extension\"}"}],"_postman_id":"05701d22-2ed5-45e7-bc0a-ac528d4e639e"}],"id":"52599bba-7453-4de0-9136-e1421c88c41d","_postman_id":"52599bba-7453-4de0-9136-e1421c88c41d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Password Reset","item":[{"name":"Send Reset Password Link","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","console.log('auth', jsonData)","postman.setEnvironmentVariable(\"authToken\", jsonData.token);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"226fc409-92e1-4978-9e34-90ce594d8577","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"4003-4003@lab.tekvoice.net\",\n    \"email\": \"slatsa@parkbenchsolutions.com\",\n    \"g-recaptcha-response\": \"03AGdBq26xp2tAUzytvLbREcme1bcrrbx448DpM7z0ZcFe0g6AZ2uga9qZLr8UkNuBjsDsO8SDwWeuW2oike25Y2GuzHLjzyaoLOqWL72u_6EqeqZoFgEDemw6Vl0NxddkHqHMJxnIuGciYxrHqhAzq6djWW9kNLsoYNjW-fbzDHZ2xV4jZYHh9bzichPYrnXV38tT6gK0CXfk7jcWCpSKaLwXyNH6TYF7y9klBDhUCNhc-yD_YDTxVYq0Jab3eUMVj26kSuNYpZiKOCOQGBQjivaSshTKH9sHmUcnOIeGRAnM61Mmjc41HPnQRxkjeUk_0aYmahQ5QEdfOUx-Df6z7AiTKdvbi3dJCs34JE-IpY_lVQMesK4VGfBWNhw7EXSbDudnLKf45Fow2avSrCeuIK9rdaiiXVm9f99pcl4a48bPqInjGfDm2vtomECXgE4dEBje5XhuEV7eYrmN9BylycXHhHGaujYOuw\"\n}"},"url":"{{url}}/api/v2/self-service/send-reset-password-link","description":"<p>Send a password reset email with a link in the body</p>\n","urlObject":{"path":["api","v2","self-service","send-reset-password-link"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2eac49d2-5327-4408-8b12-69d9fe804c73","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"xsp\": \"{{xsp}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQ2ODg5NDU0LCJuYnAiOjE1NDY4ODk0NTQsImV4cCI6MTU0NjkzMjY1NCwiZGF0YSI6ImV5SnBkaUk2SWpoeFpVWnhjVEZITWxwVFNtODVhV2NySzB0VlQwRTlQU0lzSW5aaGJIVmxJam9pUzJGVFZWRjJObkJDZDFjeE5WQmNMMUJUUjBWTVdHTjRWRVpoV2pNclkwSk5iVEphU2pneFVURnpNVGc1TjBwYVdrNWFjVkZDV25od1ZUUlRaMHhvY0dReE5IRlVlVGswZHpWcGNsRjJSMnB6YkdKSE5rdzNhVzFYVVZkU2EydFlhR1Z3U1d0Wk1Gd3ZLMnN6WnowaUxDSnRZV01pT2lJMFlqRmhPREk0WTJVM05tRXdOR0prWm1Kak16azVNMk0xTkRVMk5qRXpaV015TlRBNE9EVTBNelprTXpFNFpUZ3pNV0ptWWpGbE56UTVPVFl4WkdNNUluMD0ifQ.6YCC4jVoWzzIjhOjgXC8dTQd7rGkFSwZBan-UlkzUy0\"\n}"}],"_postman_id":"226fc409-92e1-4978-9e34-90ce594d8577"},{"name":"Reset Password From Link","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","console.log('auth', jsonData)","postman.setEnvironmentVariable(\"authToken\", jsonData.token);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"a55078a6-7d57-47be-9cec-604f33bb1f28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"slatsa@parkbenchsolutions.com\",\n    \"token\": \"2b8849b5df9ad160c34eefd7857aa611572c771a8923d56ca4ba089c160537fe\",\n    \"password\": \"ABCdef123!@#\",\n    \"password_confirmed\": \"ABCdef123!@#\"\n}"},"url":"{{url}}/api/v2/self-service/reset-password-from-link","urlObject":{"path":["api","v2","self-service","reset-password-from-link"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"689f99bf-ed31-473b-8474-3719f965a66c","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"xsp\": \"{{xsp}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQ2ODg5NDU0LCJuYnAiOjE1NDY4ODk0NTQsImV4cCI6MTU0NjkzMjY1NCwiZGF0YSI6ImV5SnBkaUk2SWpoeFpVWnhjVEZITWxwVFNtODVhV2NySzB0VlQwRTlQU0lzSW5aaGJIVmxJam9pUzJGVFZWRjJObkJDZDFjeE5WQmNMMUJUUjBWTVdHTjRWRVpoV2pNclkwSk5iVEphU2pneFVURnpNVGc1TjBwYVdrNWFjVkZDV25od1ZUUlRaMHhvY0dReE5IRlVlVGswZHpWcGNsRjJSMnB6YkdKSE5rdzNhVzFYVVZkU2EydFlhR1Z3U1d0Wk1Gd3ZLMnN6WnowaUxDSnRZV01pT2lJMFlqRmhPREk0WTJVM05tRXdOR0prWm1Kak16azVNMk0xTkRVMk5qRXpaV015TlRBNE9EVTBNelprTXpFNFpUZ3pNV0ptWWpGbE56UTVPVFl4WkdNNUluMD0ifQ.6YCC4jVoWzzIjhOjgXC8dTQd7rGkFSwZBan-UlkzUy0\"\n}"}],"_postman_id":"a55078a6-7d57-47be-9cec-604f33bb1f28"},{"name":"Validate Reset Password Token","event":[{"listen":"test","script":{"id":"f37e4726-3665-4bc0-a273-682290d430b5","exec":["// this runs after each request and sets the authToken variable","var jsonData = JSON.parse(responseBody);","console.log('auth', jsonData)","postman.setEnvironmentVariable(\"authToken\", jsonData.token);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"350ea728-f34b-4390-a142-6bef79fd7a5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"slatsa@parkbenchsolutions.com\",\n    \"token\": \"8302842e40812f9dd4f22aed1e975f9a70832447ef833adfeca70fb48c2366a4\"\n}"},"url":"{{url}}/api/v2/self-service/validate-token","urlObject":{"path":["api","v2","self-service","validate-token"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dfa2ddfc-48d5-42cd-95d8-7a7709364ed9","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"xsp\": \"{{xsp}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQ2ODg5NDU0LCJuYnAiOjE1NDY4ODk0NTQsImV4cCI6MTU0NjkzMjY1NCwiZGF0YSI6ImV5SnBkaUk2SWpoeFpVWnhjVEZITWxwVFNtODVhV2NySzB0VlQwRTlQU0lzSW5aaGJIVmxJam9pUzJGVFZWRjJObkJDZDFjeE5WQmNMMUJUUjBWTVdHTjRWRVpoV2pNclkwSk5iVEphU2pneFVURnpNVGc1TjBwYVdrNWFjVkZDV25od1ZUUlRaMHhvY0dReE5IRlVlVGswZHpWcGNsRjJSMnB6YkdKSE5rdzNhVzFYVVZkU2EydFlhR1Z3U1d0Wk1Gd3ZLMnN6WnowaUxDSnRZV01pT2lJMFlqRmhPREk0WTJVM05tRXdOR0prWm1Kak16azVNMk0xTkRVMk5qRXpaV015TlRBNE9EVTBNelprTXpFNFpUZ3pNV0ptWWpGbE56UTVPVFl4WkdNNUluMD0ifQ.6YCC4jVoWzzIjhOjgXC8dTQd7rGkFSwZBan-UlkzUy0\"\n}"}],"_postman_id":"350ea728-f34b-4390-a142-6bef79fd7a5b"}],"id":"ff1965a1-6984-4640-b937-557744f73c8a","description":"<p>Password Reset Feature</p>\n","_postman_id":"ff1965a1-6984-4640-b937-557744f73c8a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Partners","item":[{"name":"OAuth2 Token","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":[""],"type":"text/javascript"}}],"id":"d752866c-54a1-4ccc-b963-7271765dad45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"90d60d04-c25e-423f-9a91-2e3784d0fdd4\",\n    \"client_secret\": \"DOblL4sLVU2LBJ68CmHTvkcmbtMOzKT7Gp9amnHF\"\n}"},"url":"{{url}}/api/v2/partners/authentication","urlObject":{"path":["api","v2","partners","authentication"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6f3d3582-562b-4d15-8ec7-39d7ab1dab06","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"xsp\": \"{{xsp}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQ2ODg5NDU0LCJuYnAiOjE1NDY4ODk0NTQsImV4cCI6MTU0NjkzMjY1NCwiZGF0YSI6ImV5SnBkaUk2SWpoeFpVWnhjVEZITWxwVFNtODVhV2NySzB0VlQwRTlQU0lzSW5aaGJIVmxJam9pUzJGVFZWRjJObkJDZDFjeE5WQmNMMUJUUjBWTVdHTjRWRVpoV2pNclkwSk5iVEphU2pneFVURnpNVGc1TjBwYVdrNWFjVkZDV25od1ZUUlRaMHhvY0dReE5IRlVlVGswZHpWcGNsRjJSMnB6YkdKSE5rdzNhVzFYVVZkU2EydFlhR1Z3U1d0Wk1Gd3ZLMnN6WnowaUxDSnRZV01pT2lJMFlqRmhPREk0WTJVM05tRXdOR0prWm1Kak16azVNMk0xTkRVMk5qRXpaV015TlRBNE9EVTBNelprTXpFNFpUZ3pNV0ptWWpGbE56UTVPVFl4WkdNNUluMD0ifQ.6YCC4jVoWzzIjhOjgXC8dTQd7rGkFSwZBan-UlkzUy0\"\n}"}],"_postman_id":"d752866c-54a1-4ccc-b963-7271765dad45"},{"name":"OAuth2 Token Raw","event":[{"listen":"test","script":{"id":"30e840d6-f171-4862-a818-80a0640e57cd","exec":[""],"type":"text/javascript"}}],"id":"2ea1f713-1c89-4244-9112-571d09f4a79d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"grant_type\": \"client_credentials\",\n    \"client_id\": \"90d60d04-c25e-423f-9a91-2e3784d0fdd4\",\n    \"client_secret\": \"DOblL4sLVU2LBJ68CmHTvkcmbtMOzKT7Gp9amnHF\",\n    \"scope\": \"*\"\n}"},"url":"{{url}}/oauth/token","urlObject":{"path":["oauth","token"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"39e1a8c5-18ec-491d-a9d5-dab4cdc8b763","name":"Session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\",\n    \"encryption\": \"{{encryption}}\",\n    \"xsp\": \"{{xsp}}\"\n}"},"url":"{{url}}/api/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTQ2ODg5NDU0LCJuYnAiOjE1NDY4ODk0NTQsImV4cCI6MTU0NjkzMjY1NCwiZGF0YSI6ImV5SnBkaUk2SWpoeFpVWnhjVEZITWxwVFNtODVhV2NySzB0VlQwRTlQU0lzSW5aaGJIVmxJam9pUzJGVFZWRjJObkJDZDFjeE5WQmNMMUJUUjBWTVdHTjRWRVpoV2pNclkwSk5iVEphU2pneFVURnpNVGc1TjBwYVdrNWFjVkZDV25od1ZUUlRaMHhvY0dReE5IRlVlVGswZHpWcGNsRjJSMnB6YkdKSE5rdzNhVzFYVVZkU2EydFlhR1Z3U1d0Wk1Gd3ZLMnN6WnowaUxDSnRZV01pT2lJMFlqRmhPREk0WTJVM05tRXdOR0prWm1Kak16azVNMk0xTkRVMk5qRXpaV015TlRBNE9EVTBNelprTXpFNFpUZ3pNV0ptWWpGbE56UTVPVFl4WkdNNUluMD0ifQ.6YCC4jVoWzzIjhOjgXC8dTQd7rGkFSwZBan-UlkzUy0\"\n}"}],"_postman_id":"2ea1f713-1c89-4244-9112-571d09f4a79d"},{"name":"{{url}}/api/v2/oauth2/token","id":"5cac6d8e-ab81-4bce-bd0f-6149e27a6e21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"91e3fa2a-5f84-4edb-8713-fe421f1abecc","type":"text"},{"key":"client_secret","value":"b232OAwglYsfVBZRlMNqeHQ5gbeEUlghX3z1Qjmy","type":"text"},{"key":"scope","value":"*","type":"text"}]},"url":"{{url}}/api/v2/oauth2/token","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","oauth2","token"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cac6d8e-ab81-4bce-bd0f-6149e27a6e21"}],"id":"d4328d4f-e677-49d9-92fb-0673dd657d05","_postman_id":"d4328d4f-e677-49d9-92fb-0673dd657d05","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"User Utilities","item":[{"name":"User Call To Numbers","id":"e262480f-9f25-4a96-a334-70072885d837","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/users/call-to-numbers?userId=5134004006@lab.tekvoice.net\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","users","call-to-numbers"],"host":["{{url}}"],"query":[{"key":"userId","value":"5134004006@lab.tekvoice.net\n"}],"variable":[]}},"response":[{"id":"d53f670f-1d0d-44bc-ae70-a8b82af02b00","name":"User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/users?userId=4001@parkbenchsolutions.com","host":["{{url}}"],"path":["api","v2","users"],"query":[{"key":"userId","value":"4001@parkbenchsolutions.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceProviderId\": \"ent.odin\",\n    \"groupId\": \"grp.odin\",\n    \"lastName\": 4001,\n    \"firstName\": 4001,\n    \"callingLineIdLastName\": \"4001-lastname\",\n    \"callingLineIdFirstName\": \"4001-firstname\",\n    \"nameDialingName\": {\n        \"nameDialingLastName\": \"4001-lastname\",\n        \"nameDialingFirstName\": \"4001-firstname\"\n    },\n    \"hiraganaLastName\": 4001,\n    \"hiraganaFirstName\": 4001,\n    \"phoneNumber\": \"8595551414\",\n    \"extension\": \"1414\",\n    \"language\": \"English\",\n    \"timeZone\": \"America/New_York\",\n    \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n    \"defaultAlias\": \"4001@parkbenchsolutions.com\",\n    \"accessDeviceEndpoint\": {\n        \"accessDevice\": {\n            \"deviceType\": \"Polycom IP670\",\n            \"protocol\": \"SIP 2.0\",\n            \"numberOfPorts\": {\n                \"quantity\": \"34\"\n            },\n            \"numberOfAssignedPorts\": 2,\n            \"status\": \"Online\",\n            \"transportProtocol\": \"Unspecified\",\n            \"useCustomUserNamePassword\": true,\n            \"version\": \"PolycomSoundPointIP-SPIP_670-UA/4.0.7.2514\",\n            \"deviceName\": \"0004F23B47AC\",\n            \"deviceLevel\": \"System\",\n            \"accessDeviceCredentials\": {\n                \"userName\": \"aiousdhlaiudfhv9834!\"\n            },\n            \"tags\": [],\n            \"relatedServices\": []\n        },\n        \"linePort\": \"4001@parkbenchsolutions.com\",\n        \"staticRegistrationCapable\": \"false\",\n        \"useDomain\": \"true\",\n        \"supportVisualDeviceManagement\": \"false\",\n        \"contacts\": []\n    },\n    \"title\": \"Programmer\",\n    \"pagerPhoneNumber\": \"100-555-1414\",\n    \"mobilePhoneNumber\": \"100-444-1414\",\n    \"emailAddress\": \"developer@parkbenchsolutions.com\",\n    \"yahooId\": \"developer@yahoo.com\",\n    \"addressLocation\": \"Main Building\",\n    \"address\": {\n        \"addressLine1\": \"123 main street\",\n        \"addressLine2\": \"suite 100\",\n        \"city\": \"disney\",\n        \"stateOrProvince\": \"Florida\",\n        \"zipOrPostalCode\": \"12345\",\n        \"country\": \"US\"\n    },\n    \"countryCode\": \"1\",\n    \"userId\": \"4001@parkbenchsolutions.com\",\n    \"callingLineIdPhoneNumber\": \"\",\n    \"domain\": \"parkbenchsolutions.com\",\n    \"endpointType\": \"accessDeviceEndpoint\",\n    \"aliases\": [],\n    \"trunkAddressing\": {\n        \"trunkGroupDeviceEndpoint\": {\n            \"contacts\": []\n        }\n    },\n    \"isEnterprise\": true,\n    \"passwordExpiresDays\": 2147483647\n}"}],"_postman_id":"e262480f-9f25-4a96-a334-70072885d837"}],"id":"a434b426-4714-479d-8d95-752e379e5fea","_postman_id":"a434b426-4714-479d-8d95-752e379e5fea","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Tasks Copy","item":[{"name":"Webex","item":[{"name":"Task Webex Verify User Email TEST","id":"7159edbd-2c4d-445b-8677-a4ce0cf1fc22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"webex.verify.user.email\",\n    \"data\": [\n        {\n            \"task\": \"webex.verify.user.email\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"webex.verify.user.email\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"index\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7159edbd-2c4d-445b-8677-a4ce0cf1fc22"}],"id":"f800fe73-f2f9-4e7f-9c79-16e12b278688","_postman_id":"f800fe73-f2f9-4e7f-9c79-16e12b278688","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Tasks","id":"497bd497-121b-4127-8034-456e9c609fb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/tasks?limit=2&status=completed&type=user.services.update","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the size returned</li>\n<li>status: filter by status (pending, completed, or error)</li>\n<li>type: filter by type or types (user.create,user.services.update)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[{"key":"limit","value":"2"},{"key":"status","value":"completed"},{"key":"type","value":"user.services.update"}],"variable":[]}},"response":[{"id":"8f3523a0-aad3-4e61-a63a-2c0ce666fecd","name":"Odin  Tasks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/tasks?limit=2&status=completed&type=user.services.update","host":["{{url}}"],"path":["api","v2","tasks"],"query":[{"key":"limit","value":"2"},{"key":"status","value":"completed"},{"key":"type","value":"user.services.update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 18:16:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 78,\n        \"type\": \"user.services.update\",\n        \"status\": \"completed\",\n        \"userId\": \"sysprov.odin\",\n        \"delay\": null,\n        \"data\": [\n            {\n                \"task\": \"user.services.update\",\n                \"userId\": \"9709580001@microv-works.com\",\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"userServices\": [\n                    {\n                        \"serviceName\": \"Authentication\",\n                        \"assigned\": \"true\"\n                    }\n                ],\n                \"index\": 1,\n                \"status\": \"completed\",\n                \"error\": \"\"\n            }\n        ],\n        \"error\": null,\n        \"description\": \"1 Users\",\n        \"serviceProviderId\": null,\n        \"createdAt\": \"2018-10-19T18:14:11+00:00\",\n        \"updatedAt\": \"2018-10-19T18:14:14+00:00\"\n    },\n    {\n        \"id\": 74,\n        \"type\": \"user.services.update\",\n        \"status\": \"completed\",\n        \"userId\": \"sysprov.odin\",\n        \"delay\": null,\n        \"data\": [\n            {\n                \"task\": \"user.services.update\",\n                \"userId\": \"9709580001@microv-works.com\",\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"userServices\": [\n                    {\n                        \"serviceName\": \"Anonymous Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Authentication\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Always\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Busy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding No Answer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Notify\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Express\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Call Manager\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Do Not Disturb\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Intercept User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Last Number Redial\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Outlook Integration\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Priority Alert\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Return\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Remote Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Acceptance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Selective\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Service Scripts User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Simultaneous Ring Personal\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Alternate Numbers\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 8\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Customer Originated Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Attendant Console\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party MWI Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client Call Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 5\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 10\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 15\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 20\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 25\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 30\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 35\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Retrieval\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Flash Call Hold\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 100\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party Voice Mail Support\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Portal Calling\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Internal Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Callback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Blocking Override\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Party Category\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Barge-in Exempt\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"SMDI Message Desk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video Add-On\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Malicious Call Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Preferred Carrier User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Push to Talk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Basic Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Enhanced Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Host\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Guest\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Diversion Inhibitor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Multiple Call Arrangement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Hold/Retrieve\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Busy Lamp Field\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Three-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Transfer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Privacy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Fax Messaging\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Physical Location\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Charge Number\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Supervisor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Agent\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"N-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directory Number Hunting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Two-Stage Dialing\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Not Reachable\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Custom Ringback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"In-Call Service Activation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Presentation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Restriction\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Anywhere\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Zone Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Polycom Phone Services\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Music On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Prepaid\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Basic\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Standard\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Premium\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Communication Barring User-Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Classmark\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Number Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Pre-alerting Announcement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center Monitoring\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Location-Based Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Mobility\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Me Now\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Recording\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Integrated IMP\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Group Night Forwarding\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 3\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 4\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 17\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 18\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 19\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Sequential Ring\",\n                        \"assigned\": \"true\"\n                    }\n                ],\n                \"index\": 1,\n                \"status\": \"completed\",\n                \"error\": \"UserService#store: SMDI Message Desk: Service is not assignable.\\nEnhanced Call Logs: Service license is violated.\\nBroadWorks Supervisor: Service license is violated.\\nDirectory Number Hunting: Service is not assignable.\"\n            },\n            {\n                \"task\": \"user.services.update\",\n                \"userId\": \"9709580002@microv-works.com\",\n                \"serviceProviderId\": \"odin.mock.ent1\",\n                \"groupId\": \"odin.mock.grp1\",\n                \"userServices\": [\n                    {\n                        \"serviceName\": \"Anonymous Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Authentication\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Always\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Busy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding No Answer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Notify\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Express\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"CommPilot Call Manager\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Do Not Disturb\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Intercept User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Last Number Redial\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Outlook Integration\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Priority Alert\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Return\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Remote Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Acceptance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Selective\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Selective Call Rejection\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Service Scripts User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Simultaneous Ring Personal\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Alternate Numbers\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 8\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Customer Originated Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Attendant Console\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party MWI Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client Call Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 5\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 10\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 15\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 20\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 25\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 30\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Shared Call Appearance 35\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Retrieval\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Flash Call Hold\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Speed Dial 100\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Third-Party Voice Mail Support\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Portal Calling\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Internal Calling Line ID Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Callback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Line ID Blocking Override\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Party Category\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Barge-in Exempt\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"SMDI Message Desk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video Add-On\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Malicious Call Trace\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Preferred Carrier User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Push to Talk\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Basic Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Enhanced Call Logs\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Host\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Hoteling Guest\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Voice Messaging User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Diversion Inhibitor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Multiple Call Arrangement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Automatic Hold/Retrieve\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Busy Lamp Field\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Three-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Transfer\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Privacy\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Fax Messaging\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Physical Location\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Charge Number\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Supervisor\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Agent\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"N-Way Call\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Directory Number Hunting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Two-Stage Dialing\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Forwarding Not Reachable\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Receptionist - Office\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"External Custom Ringback\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"In-Call Service Activation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Presentation\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Connected Line Identification Restriction\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Anywhere\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Zone Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Polycom Phone Services\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Music On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Video On Hold User\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Prepaid\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Basic\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Standard\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center - Premium\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Communication Barring User-Control\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Classmark\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Name Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Calling Number Delivery\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Pre-alerting Announcement\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Center Monitoring\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Location-Based Calling Restrictions\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadWorks Mobility\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Me Now\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Call Recording\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Integrated IMP\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Group Night Forwarding\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 3\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 4\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 17\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 18\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Client License 19\",\n                        \"assigned\": \"true\"\n                    },\n                    {\n                        \"serviceName\": \"Sequential Ring\",\n                        \"assigned\": \"true\"\n                    }\n                ],\n                \"index\": 2,\n                \"status\": \"completed\",\n                \"error\": \"UserService#store: SMDI Message Desk: Service is not assignable.\\nEnhanced Call Logs: Service license is violated.\\nBroadWorks Supervisor: Service license is violated.\\nDirectory Number Hunting: Service is not assignable.\"\n            }\n        ],\n        \"error\": null,\n        \"description\": \"2 Users\",\n        \"serviceProviderId\": null,\n        \"createdAt\": \"2018-10-01T21:05:41+00:00\",\n        \"updatedAt\": \"2018-10-01T21:05:47+00:00\"\n    }\n]"}],"_postman_id":"497bd497-121b-4127-8034-456e9c609fb2"},{"name":"Task","id":"2f26743c-4c2c-427a-a713-a3296a387771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":"{{url}}/api/v2/tasks?id=1","description":"<p>Optional Params</p>\n<ul>\n<li>limit: limit the size returned</li>\n<li>status: filter by status (pending, completed, or error)</li>\n<li>type: filter by type or types (user.create,user.services.update)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[{"id":"1fc72f8e-f6ab-48ed-8110-709a7432bc80","name":"Odin  Task","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"url":{"raw":"{{url}}/api/v2/tasks?id=1","host":["{{url}}"],"path":["api","v2","tasks"],"query":[{"key":"id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 18:18:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"482"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"type\": \"user.services.update\",\n    \"status\": \"completed\",\n    \"userId\": \"sysprov.odin\",\n    \"delay\": null,\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9546073090@microv-works.com\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"group.odin\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1,\n            \"status\": \"completed\",\n            \"error\": \"\"\n        }\n    ],\n    \"error\": null,\n    \"description\": \"1 Users\",\n    \"serviceProviderId\": null,\n    \"createdAt\": \"2018-07-07T19:40:31+00:00\",\n    \"updatedAt\": \"2018-07-07T19:40:33+00:00\"\n}"}],"_postman_id":"2f26743c-4c2c-427a-a713-a3296a387771"},{"name":"Task Group Bulk Clone","id":"021ea03a-da4b-4490-aaeb-3f22c6d54e9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.bulk.clone\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.bulk.clone\",\r\n            \"source\": {\r\n                \"serviceProviderId\": \"ent.odin\",\r\n                \"groupId\": \"grp.odin\"\r\n            },\r\n            \"destination\": {\r\n                \"serviceProviderId\": \"ent.odin.call-capacity\",\r\n                \"groupId\": \"grp.odin.call-capacity\",\r\n                \"userLimit\": 30\r\n            },\r\n            \"options\": {\r\n                \"featureAccessCode\": true,\r\n                \"callProcessingPolicy\": true,\r\n                \"networkClassOfService\": false,\r\n                \"extensionLength\": true,\r\n                \"services\": true,\r\n                \"policy\": true,\r\n                \"schedule\": true,\r\n                \"outgoingCallingPlan\": true,\r\n                \"routingProfile\": false,\r\n                \"passwordRules\": false,\r\n                \"trunkGroupCallCapacity\": true\r\n            },\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"021ea03a-da4b-4490-aaeb-3f22c6d54e9b"},{"name":"Task Group Device Tag Modify","id":"a987e7bc-df44-480f-a57f-1317a168646a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.tag.modify\",\n    \"data\": [\n        {\n            \"task\": \"group.device.tag.modify\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"deviceName\": \"5134004006@lab.tekvoice.net\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"tags\": [\n                {\n                    \"tagName\": \"%tagName1%\",\n                    \"tagValue\": \"tagValue1\"\n                },\n                {\n                    \"tagName\": \"%tagName2%\",\n                    \"tagValue\": \"tagValue2\"\n                },\n                {\n                    \"tagName\": \"%tagName3%\",\n                    \"tagValue\": \"tagValue3\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a987e7bc-df44-480f-a57f-1317a168646a"},{"name":"Task Group Device Create","id":"d1195a61-8241-4d60-9179-3af4236ced5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.create\",\n    \"data\": [\n        {\n            \"task\": \"group.device.create\",\n            \"allowAccessDeviceUpdate\": false,\n            \"serviceProviderId\": \"reseler-sp\",\n            \"groupId\": \"test007R\",\n            \"deviceName\": \"testAPI002\",\n            \"accessDeviceEndpoint\": {\n                \"linePort\": \"\",\n                \"accessDevice\": {\n                    \"deviceType\": \"2Wire HomePortal\",\n                    \"deviceName\": \"testAPI002\",\n                    \"deviceLevel\": \"group\",\n                    \"protocol\": \"\",\n                    \"netAddress\": \"\",\n                    \"port\": \"\",\n                    \"outboundProxyServerNetAddress\": \"\",\n                    \"stunServerNetAddress\": \"\",\n                    \"macAddress\": \"\",\n                    \"serialNumber\": \"\",\n                    \"description\": \"\",\n                    \"physicalLocation\": \"\",\n                    \"transportProtocol\": \"\",\n                    \"useCustomUserNamePassword\": false,\n                    \"accessDeviceCredentials\": {\n                        \"userName\": \"\",\n                        \"password\": \"\"\n                    }\n                }\n            },\n            \"index\": \"1\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<p>Task Group Device Create</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d1195a61-8241-4d60-9179-3af4236ced5c"},{"name":"Task Group Device Type Tag Upsert","id":"bec0fc4e-616e-4489-8e57-2a11899cbbd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.device.type.tag.upsert\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.device.type.tag.upsert\",\r\n            \"serviceProviderId\": \"ent.odin\",\r\n            \"groupId\": \"grp.odin\",\r\n            \"deviceType\": \"Business Communicator - Mobile\",\r\n            \"rebuildDevice\": false,\r\n            \"resetDevice\": false,\r\n            \"tags\": [\r\n                {\r\n                    \"tagName\": \"%tagName1%\",\r\n                    \"tagValue\": \"tagValue1\"\r\n                },\r\n                {\r\n                    \"tagName\": \"%tagName2%\",\r\n                    \"tagValue\": \"tagValue2\"\r\n                },\r\n                {\r\n                    \"tagName\": \"%tagName3%\",\r\n                    \"tagValue\": \"tagValue3\"\r\n                }\r\n\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bec0fc4e-616e-4489-8e57-2a11899cbbd9"},{"name":"Task Group Device Upsert","id":"a08bc041-8804-48c3-914d-9fd980dc5ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.device.upsert\",\n    \"data\": [\n        {\n            \"task\": \"group.device.upsert\",\n            \"allowAccessDeviceUpdate\": false,\n            \"deviceLevel\": \"group\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"deviceName\": \"groupDeviceUpsert!\",\n            \"deviceType\": \"2Wire HomePortal\",\n            \"protocol\": \"\",\n            \"netAddress\": \"\",\n            \"port\": \"\",\n            \"outboundProxyServerNetAddress\": \"\",\n            \"stunServerNetAddress\": \"\",\n            \"macAddress\": \"\",\n            \"serialNumber\": \"\",\n            \"description\": \"\",\n            \"physicalLocation\": \"\",\n            \"transportProtocol\": \"\",\n            \"mobilityManagerProvisioningURL\": \"\",\n            \"mobilityManagerProvisioningUserName\": \"\",\n            \"mobilityManagerProvisioningPassword\": \"\",\n            \"mobilityManagerDefaultOriginatingServiceKey\": \"\",\n            \"mobilityManagerDefaultTerminatingServiceKey\": \"\",\n            \"useCustomUserNamePassword\": false,\n            \"accessDeviceCredentials\": {\n                \"userName\": \"\",\n                \"password\": \"\"\n            },\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": \"1\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<p>Task Group Device Create</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a08bc041-8804-48c3-914d-9fd980dc5ae8"},{"name":"Task Group Dns Unassign","id":"63feaadc-df0e-4521-9a50-accbedb5858b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.dns.unassign\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.dns.unassign\",\r\n            \"serviceProviderId\": \"ent.odin\",\r\n            \"groupId\": \"grp.odin.copy\",\r\n            \"dns\": [\r\n                {\r\n                    \"min\": \"9719580011\",\r\n                    \"max\": \"9719580011\"\r\n                },\r\n                {\r\n                    \"min\": \"9719580012\",\r\n                    \"max\": \"9719580019\"\r\n                },\r\n                {\r\n                    \"min\": \"9719580020\"\r\n                }\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63feaadc-df0e-4521-9a50-accbedb5858b"},{"name":"Task Group  Services Assign","id":"898f4442-805f-4194-8483-91b3e9d080fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"group.services.update\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"group.services.update\",\r\n            \"serviceProviderId\": \"ent.odin.testxp\",\r\n            \"groupId\": \"grpPankaj\",\r\n            \"userServices\": [\r\n                {\r\n                    \"serviceName\": \"Advice Of Charge\",\r\n                    \"authorized\": true,\r\n                    \"quantity\": 30,\r\n                    \"licensed\": true,\r\n                    \"userAssignable\": true,\r\n                    \"isUnlimited\": false\r\n                }\r\n            ],\r\n            \"groupServices\": [\r\n                {\r\n                    \"serviceName\": \"Auto Attendant\",\r\n                    \"authorized\": true,\r\n                    \"quantity\": 30,\r\n                    \"licensed\": true,\r\n                    \"userAssignable\": true,\r\n                    \"isUnlimited\": false\r\n                }\r\n            ],\r\n            \"servicePackServices\": [\r\n                {\r\n                    \"serviceName\": \"Basic\",\r\n                    \"authorized\": true,\r\n                    \"quantity\": 30,\r\n                    \"licensed\": true,\r\n                    \"userAssignable\": true,\r\n                    \"isUnlimited\": false\r\n                }\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v2/task","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","task"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"898f4442-805f-4194-8483-91b3e9d080fb"},{"name":"Task Group  Services Assign Copy","id":"f7250924-c5f2-491d-9e1c-5105694d2517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.services.update\",\n    \"data\": [\n        {\n            \"task\": \"group.services.update\",\n            \"serviceProviderId\": \"ent.odin.testxp\",\n            \"groupId\": \"grpPankaj\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Advice Of Charge\",\n                    \"authorized\": true,\n                    \"assigned\": true,\n                    \"quantity\": 30,\n                    \"licensed\": true,\n                    \"userAssignable\": true,\n                    \"isUnlimited\": false\n                }\n            ],\n            \"groupServices\": [\n                {\n                    \"serviceName\": \"Auto Attendant\",\n                    \"authorized\": true,\n                    \"assigned\": true,\n                    \"quantity\": 30,\n                    \"licensed\": true,\n                    \"userAssignable\": true,\n                    \"isUnlimited\": false\n                }\n            ],\n            \"servicePackServices\": [\n                {\n                    \"serviceName\": \"Basic\",\n                    \"authorized\": true,\n                    \"assigned\": true,\n                    \"quantity\": 30,\n                    \"licensed\": true,\n                    \"userAssignable\": true,\n                    \"isUnlimited\": false\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f7250924-c5f2-491d-9e1c-5105694d2517"},{"name":"Task Group Trunk Group Bulk","id":"3d68040e-f6ac-45a2-bc30-a5e47c5b57cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","name":"Content-Type","type":"text","value":"application/json;charset=utf-8"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"bulk.group.trunk.group.create\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"bulk.group.trunk.group.create\",\r\n            \"serviceProviderId\": \"dest.ent.odin\",\r\n            \"groupId\": \"dest.grp.odin\",\r\n            \"serviceProvider\": {},\r\n            \"group\": {\r\n                \"userLimit\": 10\r\n            },\r\n            \"clone\": {\r\n                \"serviceProviderId\": \"ent-generic-sip-gateway\",\r\n                \"groupId\": \"grp-generic-sip-gateway\",\r\n                \"options\": {\r\n                    \"services\": true,\r\n                    \"servicePacks\": true,\r\n                    \"networkClassOfService\": false,\r\n                    \"enterpriseVoiceVPN\": true,\r\n                    \"callProcessingPolicy\": false,\r\n                    \"featureAccessCode\": true,\r\n                    \"extensionLength\": true,\r\n                    \"policy\": true,\r\n                    \"schedule\": true,\r\n                    \"outgoingCallingPlan\": true,\r\n                    \"routingProfile\": false,\r\n                    \"deviceType\": true\r\n                }\r\n            },\r\n            \"serviceProviderTrunkGroupCallCapacity\": {\r\n                \"maxActiveCalls\": 10,\r\n                \"burstingMaxActiveCalls\": -1\r\n            },\r\n            \"device\": {\r\n                \"allowAccessDeviceUpdate\": \"false\",\r\n                \"deviceType\": \"Generic SIP Gateway - Trusted\",\r\n                \"deviceName\": \"generic-sip-gateway-trusted-new\",\r\n                \"deviceLevel\": \"Group\",\r\n                \"accessDeviceCredentials\": {\r\n                    \"userName\": \"ThisHasToBeUnique\",\r\n                    \"password\": \"?a$*gQBS6s\"\r\n                },\r\n                \"protocol\": \"SIP 2.0\",\r\n                \"netAddress\": \"216.196.254.201\",\r\n                \"port\": 1025,\r\n                \"outboundProxyServerNetAddress\": \"216.196.254.202\",\r\n                \"stunServerNetAddress\": \"216.196.254.203\",\r\n                \"macAddress\": \"B3945BE783CB\",\r\n                \"serialNumber\": \"B3-94-5B-E7-83-CB\",\r\n                \"description\": \"description\",\r\n                \"numberOfPorts\": {\r\n                    \"unlimited\": \"true\"\r\n                },\r\n                \"numberOfAssignedPorts\": 0,\r\n                \"status\": \"Online\",\r\n                \"physicalLocation\": \"office building\",\r\n                \"transportProtocol\": \"UDP\",\r\n                \"useCustomUserNamePassword\": true,\r\n                \"tags\": [],\r\n                \"relatedServices\": []\r\n            },\r\n            \"groupTrunkGroup\": {\r\n                \"maxActiveCalls\": 5,\r\n                \"burstingMaxActiveCalls\": 0,\r\n                \"name\": \"dest.grp.odin.trunk\",\r\n                \"allowTerminationToDtgIdentity\": false,\r\n                \"allowTerminationToTrunkGroupIdentity\": false,\r\n                \"allowUnscreenedCalls\": false,\r\n                \"allowUnscreenedEmergencyCalls\": false,\r\n                \"capacityExceededTrapInitialCalls\": 0,\r\n                \"capacityExceededTrapOffsetCalls\": 0,\r\n                \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\r\n                \"continuousOptionsSendingIntervalSeconds\": 30,\r\n                \"enableBursting\": false,\r\n                \"enableNetworkAddressIdentity\": false,\r\n                \"failureOptionsSendingIntervalSeconds\": 10,\r\n                \"failureThresholdCounter\": 1,\r\n                \"includeDtgIdentity\": false,\r\n                \"includeOtgIdentityForNetworkCalls\": false,\r\n                \"includeTrunkGroupIdentity\": false,\r\n                \"includeTrunkGroupIdentityForNetworkCalls\": false,\r\n                \"invitationTimeout\": 6,\r\n                \"inviteFailureThresholdCounter\": 1,\r\n                \"inviteFailureThresholdWindowSeconds\": 30,\r\n                \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\r\n                \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\r\n                \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\r\n                \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\r\n                \"pilotUserChargeNumberPolicy\": \"No Calls\",\r\n                \"prefixEnabled\": false,\r\n                \"requireAuthentication\": true,\r\n                \"routeToPeeringDomain\": false,\r\n                \"sendContinuousOptionsMessage\": false,\r\n                \"statefulReroutingEnabled\": false,\r\n                \"successThresholdCounter\": 1,\r\n                \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\r\n                \"useSystemCallingLineAssertedIdentityPolicy\": true,\r\n                \"useSystemUserLookupPolicy\": true,\r\n                \"userLookupPolicy\": \"Basic\",\r\n                \"maxIncomingCalls\": 2,\r\n                \"maxOutgoingCalls\": 2,\r\n                \"accessDevice\": {\r\n                    \"staticRegistrationCapable\": \"false\",\r\n                    \"useDomain\": \"true\",\r\n                    \"staticLineOrdering\": \"false\",\r\n                    \"deviceName\": \"generic-sip-gateway-trusted-new\",\r\n                    \"deviceLevel\": \"Group\"\r\n                },\r\n                \"sipAuthenticationUserName\": \"dest.grp.odin.trunk\",\r\n                \"sipAuthenticationPassword\": \"2hyar=wW![%d8Ye<6G\",\r\n                \"trunkGroupIdentity\": \"dest.grp.odin.trunk@parkbenchsolutions.com\",\r\n                \"otgDtgIdentity\": \"dest.grp.odin.trunk\"\r\n            },\r\n            \"dns\": [\r\n                {\r\n                    \"min\": \"5133621460\"\r\n                },\r\n                {\r\n                    \"min\": \"5133621461\",\r\n                    \"max\": \"5133621463\"\r\n                },\r\n                {\r\n                    \"min\": \"5133621465\",\r\n                    \"max\": \"5133621466\"\r\n                }\r\n            ],\r\n            \"users\": [\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": true,\r\n                    \"userId\": \"5133621460@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621460\",\r\n                    \"firstName\": \"5133621460\",\r\n                    \"callingLineIdLastName\": \"5133621460\",\r\n                    \"callingLineIdFirstName\": \"5133621460\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621460\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621460@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621461@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621461\",\r\n                    \"firstName\": \"5133621461\",\r\n                    \"callingLineIdLastName\": \"5133621461\",\r\n                    \"callingLineIdFirstName\": \"5133621461\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621461\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621461@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621462@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621462\",\r\n                    \"firstName\": \"5133621462\",\r\n                    \"callingLineIdLastName\": \"5133621462\",\r\n                    \"callingLineIdFirstName\": \"5133621462\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621462\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621462@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621463@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621463\",\r\n                    \"firstName\": \"5133621463\",\r\n                    \"callingLineIdLastName\": \"5133621463\",\r\n                    \"callingLineIdFirstName\": \"5133621463\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621463\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621463@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621465@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621465\",\r\n                    \"firstName\": \"5133621465\",\r\n                    \"callingLineIdLastName\": \"5133621465\",\r\n                    \"callingLineIdFirstName\": \"5133621465\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621465\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621465@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"isDnAssigned\": true,\r\n                    \"isPilotUserId\": false,\r\n                    \"userId\": \"5133621466@parkbenchsolutions.com\",\r\n                    \"lastName\": \"5133621466\",\r\n                    \"firstName\": \"5133621466\",\r\n                    \"callingLineIdLastName\": \"5133621466\",\r\n                    \"callingLineIdFirstName\": \"5133621466\",\r\n                    \"password\": \"2hyar=wW![%d8Ye<6G\",\r\n                    \"passcode\": \"170562\",\r\n                    \"phoneNumber\": \"5133621466\",\r\n                    \"activatePhoneNumber\": true,\r\n                    \"extension\": \"\",\r\n                    \"callingLineIdPhoneNumber\": \"\",\r\n                    \"timeZone\": \"\",\r\n                    \"language\": \"English\",\r\n                    \"networkClassOfService\": \"\",\r\n                    \"mobilePhoneNumber\": \"\",\r\n                    \"pagerPhoneNumber\": \"\",\r\n                    \"emailAddress\": \"\",\r\n                    \"addressLocation\": \"123 Main St\",\r\n                    \"department\": \"\",\r\n                    \"endpointType\": \"trunkAddressing\",\r\n                    \"trunkAddressing\": {\r\n                        \"trunkGroupDeviceEndpoint\": {\r\n                            \"name\": \"dest.grp.odin.trunk\",\r\n                            \"linePort\": \"5133621466@parkbenchsolutions.com\"\r\n                        }\r\n                    },\r\n                    \"address\": {\r\n                        \"city\": \"Tampa\",\r\n                        \"stateOrProvince\": \"Florida\",\r\n                        \"zipOrPostalCode\": \"33556\",\r\n                        \"country\": \"United States\"\r\n                    },\r\n                    \"domain\": \"parkbenchsolutions.com\",\r\n                    \"userServices\": [\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Always\",\r\n                            \"assigned\": true\r\n                        },\r\n                        {\r\n                            \"serviceName\": \"Call Forwarding Busy\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ],\r\n                    \"servicePackServices\": [\r\n                        {\r\n                            \"serviceName\": \"sip-trunk\",\r\n                            \"assigned\": true\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<p>only one deviceType per sip trunk group that that will be assigned to the group device</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d68040e-f6ac-45a2-bc30-a5e47c5b57cc"},{"name":"Task Group Trunk Group Create","id":"2440e23e-c1b0-475e-b8d0-8451c2869525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.trunk.group.create\",\n    \"data\": [\n        {\n            \"task\": \"group.trunk.group.create\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"name\": \"trunk1.grp.odin.audit\",\n            \"allowTerminationToDtgIdentity\": false,\n            \"allowTerminationToTrunkGroupIdentity\": false,\n            \"allowUnscreenedCalls\": false,\n            \"allowUnscreenedEmergencyCalls\": false,\n            \"capacityExceededTrapInitialCalls\": 0,\n            \"capacityExceededTrapOffsetCalls\": 0,\n            \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n            \"continuousOptionsSendingIntervalSeconds\": 30,\n            \"enableBursting\": false,\n            \"enableNetworkAddressIdentity\": false,\n            \"failureOptionsSendingIntervalSeconds\": 10,\n            \"failureThresholdCounter\": 1,\n            \"includeDtgIdentity\": false,\n            \"includeOtgIdentityForNetworkCalls\": false,\n            \"includeTrunkGroupIdentity\": false,\n            \"includeTrunkGroupIdentityForNetworkCalls\": false,\n            \"invitationTimeout\": 6,\n            \"inviteFailureThresholdCounter\": 1,\n            \"inviteFailureThresholdWindowSeconds\": 30,\n            \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n            \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n            \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n            \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n            \"pilotUserChargeNumberPolicy\": \"No Calls\",\n            \"prefixEnabled\": false,\n            \"requireAuthentication\": true,\n            \"routeToPeeringDomain\": false,\n            \"sendContinuousOptionsMessage\": false,\n            \"statefulReroutingEnabled\": false,\n            \"successThresholdCounter\": 1,\n            \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n            \"useSystemCallingLineAssertedIdentityPolicy\": true,\n            \"useSystemUserLookupPolicy\": true,\n            \"userLookupPolicy\": \"Basic\",\n            \"maxActiveCalls\": 2,\n            \"maxIncomingCalls\": 2,\n            \"maxOutgoingCalls\": 2,\n            \"accessDevice\": {\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"staticLineOrdering\": \"false\",\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.audit\",\n                \"deviceName\": \"1004F23B47AC\",\n                \"deviceLevel\": \"System\"\n            },\n            \"sipAuthenticationUserName\": \"trunk1.grp.odin.audit\",\n            \"sipAuthenticationPassword\": \"zlpdmZb)q3\",\n            \"trunkGroupIdentity\": \"trunk1.grp.odin.audit@parkbenchsolutions.com\",\n            \"otgDtgIdentity\": \"trunk1.grp.odin.audit\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c3fa727d-c07b-4ba2-bcfd-bdea8e087655","name":"Task Group Dns Assign","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-01-24T13:35:09+00:00\",\n    \"createdAt\": \"2020-01-24T13:35:09+00:00\",\n    \"id\": 10\n}"}],"_postman_id":"2440e23e-c1b0-475e-b8d0-8451c2869525"},{"name":"Task Group Trunk Group Create Copy","id":"bf6e4b44-0fcf-4bf9-9010-7dba76a6dc41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.trunk.group.create\",\n    \"data\": [\n        {\n            \"task\": \"group.trunk.group.create\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"name\": \"trunk1.grp.odin.audit\",\n            \"allowTerminationToDtgIdentity\": false,\n            \"allowTerminationToTrunkGroupIdentity\": false,\n            \"allowUnscreenedCalls\": false,\n            \"allowUnscreenedEmergencyCalls\": false,\n            \"capacityExceededTrapInitialCalls\": 0,\n            \"capacityExceededTrapOffsetCalls\": 0,\n            \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n            \"continuousOptionsSendingIntervalSeconds\": 30,\n            \"enableBursting\": false,\n            \"enableNetworkAddressIdentity\": false,\n            \"failureOptionsSendingIntervalSeconds\": 10,\n            \"failureThresholdCounter\": 1,\n            \"includeDtgIdentity\": false,\n            \"includeOtgIdentityForNetworkCalls\": false,\n            \"includeTrunkGroupIdentity\": false,\n            \"includeTrunkGroupIdentityForNetworkCalls\": false,\n            \"invitationTimeout\": 6,\n            \"inviteFailureThresholdCounter\": 1,\n            \"inviteFailureThresholdWindowSeconds\": 30,\n            \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n            \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n            \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n            \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n            \"pilotUserChargeNumberPolicy\": \"No Calls\",\n            \"prefixEnabled\": false,\n            \"requireAuthentication\": true,\n            \"routeToPeeringDomain\": false,\n            \"sendContinuousOptionsMessage\": false,\n            \"statefulReroutingEnabled\": false,\n            \"successThresholdCounter\": 1,\n            \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n            \"useSystemCallingLineAssertedIdentityPolicy\": true,\n            \"useSystemUserLookupPolicy\": true,\n            \"userLookupPolicy\": \"Basic\",\n            \"maxActiveCalls\": 2,\n            \"maxIncomingCalls\": 2,\n            \"maxOutgoingCalls\": 2,\n            \"accessDevice\": {\n                \"staticRegistrationCapable\": \"false\",\n                \"useDomain\": \"true\",\n                \"staticLineOrdering\": \"false\",\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.audit\",\n                \"deviceName\": \"1004F23B47AC\",\n                \"deviceLevel\": \"System\"\n            },\n            \"sipAuthenticationUserName\": \"trunk1.grp.odin.audit\",\n            \"sipAuthenticationPassword\": \"zlpdmZb)q3\",\n            \"trunkGroupIdentity\": \"trunk1.grp.odin.audit@parkbenchsolutions.com\",\n            \"otgDtgIdentity\": \"trunk1.grp.odin.audit\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c2d7e60e-70e4-4e4f-8933-6748f7d3dd12","name":"Task Group Dns Assign","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-01-24T13:35:09+00:00\",\n    \"createdAt\": \"2020-01-24T13:35:09+00:00\",\n    \"id\": 10\n}"}],"_postman_id":"bf6e4b44-0fcf-4bf9-9010-7dba76a6dc41"},{"name":"Task Group Trunk Group Update","id":"ee8dee73-e231-46eb-b731-abd71c3b726c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.trunk.group.update\",\n    \"data\": [\n        {\n            \"task\": \"group.trunk.group.update\",\n            \"pilotUserId\": \"5138993001@parkbenchsolutions.com\",\n            \"department\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.audit\",\n                \"name\": \"engineering\"\n            },\n            \"accessDevice\": {\n                \"deviceLevel\": \"System\",\n                \"deviceName\": \"0004F2AE4EFE\"\n            },\n            \"maxActiveCalls\": 3,\n            \"maxIncomingCalls\": 2,\n            \"maxOutgoingCalls\": 1,\n            \"enableBursting\": false,\n            \"capacityExceededTrapInitialCalls\": 0,\n            \"capacityExceededTrapOffsetCalls\": 0,\n            \"invitationTimeout\": 6,\n            \"requireAuthentication\": true,\n            \"sipAuthenticationUserName\": \"sipauditusername\",\n            \"trunkGroupIdentity\": \"trunk.odin.identity@parkbenchsolutions.com\",\n            \"allowTerminationToTrunkGroupIdentity\": false,\n            \"allowTerminationToDtgIdentity\": false,\n            \"includeTrunkGroupIdentity\": false,\n            \"includeDtgIdentity\": false,\n            \"includeTrunkGroupIdentityForNetworkCalls\": false,\n            \"includeOtgIdentityForNetworkCalls\": false,\n            \"enableNetworkAddressIdentity\": false,\n            \"allowUnscreenedCalls\": false,\n            \"allowUnscreenedEmergencyCalls\": false,\n            \"pilotUserCallingLineIdentityForExternalCallsPolicy\": \"No Calls\",\n            \"pilotUserChargeNumberPolicy\": \"No Calls\",\n            \"routeToPeeringDomain\": false,\n            \"prefixEnabled\": false,\n            \"statefulReroutingEnabled\": false,\n            \"sendContinuousOptionsMessage\": false,\n            \"continuousOptionsSendingIntervalSeconds\": 30,\n            \"failureOptionsSendingIntervalSeconds\": 10,\n            \"failureThresholdCounter\": 1,\n            \"successThresholdCounter\": 1,\n            \"inviteFailureThresholdCounter\": 1,\n            \"inviteFailureThresholdWindowSeconds\": 30,\n            \"trunkGroupState\": \"Available\",\n            \"pilotUserCallingLineAssertedIdentityPolicy\": \"Unscreened Originating Calls\",\n            \"useSystemCallingLineAssertedIdentityPolicy\": true,\n            \"totalActiveIncomingCalls\": 0,\n            \"totalActiveOutgoingCalls\": 0,\n            \"pilotUserCallOptimizationPolicy\": \"Optimize For User Services\",\n            \"clidSourceForScreenedCallsPolicy\": \"Profile Name Profile Number\",\n            \"useSystemCLIDSourceForScreenedCallsPolicy\": true,\n            \"userLookupPolicy\": \"Basic\",\n            \"useSystemUserLookupPolicy\": true,\n            \"pilotUserCallingLineIdentityForEmergencyCallsPolicy\": \"No Calls\",\n            \"implicitRegistrationSetSupportPolicy\": \"Disabled\",\n            \"useSystemImplicitRegistrationSetSupportPolicy\": true,\n            \"sipIdentityForPilotAndProxyTrunkModesPolicy\": \"User\",\n            \"useSystemSIPIdentityForPilotAndProxyTrunkModesPolicy\": true,\n            \"useSystemSupportConnectedIdentityPolicy\": true,\n            \"supportConnectedIdentityPolicy\": \"Disabled\",\n            \"useSystemOptionsMessageResponseStatusCodes\": true,\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"name\": \"trunk.odin.audit\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0d6bdfff-43aa-453a-8392-0e0e9046a775","name":"Task Group Dns Assign","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"group.dns.assign\",\n    \"data\": [\n        {\n            \"task\": \"group.dns.assign\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"dns\": [\n                {\n                    \"min\": \"9719580011\",\n                    \"max\": \"9719580011\"\n                },\n                {\n                    \"min\": \"9719580012\",\n                    \"max\": \"9719580019\"\n                },\n                {\n                    \"min\": \"9719580020\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-01-24T13:35:09+00:00\",\n    \"createdAt\": \"2020-01-24T13:35:09+00:00\",\n    \"id\": 10\n}"}],"_postman_id":"ee8dee73-e231-46eb-b731-abd71c3b726c"},{"name":"Task Service Provider Bulk Clone","id":"0060c7bf-83e0-4046-ac31-53252f0a2b3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json;charset=utf-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"service.provider.bulk.clone\",\r\n    \"data\": [\r\n        {\r\n            \"task\": \"service.provider.bulk.clone\",\r\n            \"source\": {\r\n                \"serviceProviderId\": \"ent.odin\"\r\n            },\r\n            \"destination\": {\r\n                \"serviceProviderId\": \"ent.odin.call-capacity\"\r\n            },\r\n            \"options\": {\r\n                \"services\": true,\r\n                \"servicePacks\": true,\r\n                \"networkClassOfService\": false,\r\n                \"enterpriseVoiceVPN\": true,\r\n                \"callProcessingPolicy\": true,\r\n                \"domains\": true,\r\n                \"passwordRules\": true,\r\n                \"schedule\": true,\r\n                \"trunkGroupCallCapacity\": true\r\n            },\r\n            \"index\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0060c7bf-83e0-4046-ac31-53252f0a2b3e"},{"name":"Task Trunk Call Capacity","id":"ca67e770-3b41-44e2-a6da-89519f9574c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 1\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 2\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5b127dae-113f-4df0-9e3b-684267045085","name":"Task Trunk Call Capacity","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-02-04T17:30:26+00:00\",\n    \"createdAt\": \"2020-02-04T17:30:26+00:00\",\n    \"id\": 102\n}"}],"_postman_id":"ca67e770-3b41-44e2-a6da-89519f9574c1"},{"name":"Task Trunk Call Capacity Copy","id":"f63b84e4-07a0-4c7b-8b93-7d2141ec3042","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 1\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 2\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8f04d013-03b5-4178-a9f9-8d99dfa9676e","name":"Task Trunk Call Capacity","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"trunk.group.call.capacity\",\n    \"data\": [\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.audit\",\n            \"serviceProvider\": {\n                \"maxActiveCalls\": 15,\n                \"burstingMaxActiveCalls\": 5\n            },\n            \"group.maxActiveCalls\": 5,\n            \"group.burstingMaxActiveCalls\": 0,\n            \"index\": 2\n        },\n        {\n            \"task\": \"trunk.group.call.capacity\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin.copy\",\n            \"group\": {\n                \"maxActiveCalls\": 7,\n                \"burstingMaxActiveCalls\": 0\n            },\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"pbsadmin\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-02-04T17:30:26+00:00\",\n    \"createdAt\": \"2020-02-04T17:30:26+00:00\",\n    \"id\": 102\n}"}],"_postman_id":"f63b84e4-07a0-4c7b-8b93-7d2141ec3042"},{"name":"Task User Audit","id":"f542b266-9082-4e41-8c0b-d10a85eba1c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"audit.user\",\n    \"data\": [\n        {\n            \"task\": \"audit.user\",\n            \"userId\": \"4003@parkbenchsolutions.com\"\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f542b266-9082-4e41-8c0b-d10a85eba1c4"},{"name":"Task User Authentication Modify","id":"d5cee9fe-92cf-4d2a-8999-d9dcb6f656f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.authentication.update\",\n    \"data\": [\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"userName\": \"9871515000\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"userName\": \"9871515001\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"resetDevice\": true,\n            \"index\": 2\n        },\n        {\n            \"task\": \"user.authentication.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"userName\": \"9871515003\",\n            \"newPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"resetDevice\": true,\n            \"index\": 3\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<p><strong>userId:</strong> <em>is required</em><br />\n<strong>userName:</strong> <em>is required</em><br />\n<strong>newPassword:</strong> * is required*<br /></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5cee9fe-92cf-4d2a-8999-d9dcb6f656f2"},{"name":"Task User Copy","id":"bf999eac-a6d1-4c31-9cae-03691dc4104d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.copy\",\n    \"data\": [\n        {\n            \"task\": \"user.copy\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"odin-bulk@parkbenchsolutions.com\",\n                \"lastName\": \"pbs\",\n                \"firstName\": \"odin-bulk\",\n                \"callingLineIdLastName\": \"pbs\",\n                \"callingLineIdFirstName\": \"odin-bulk\",\n                \"password\": \"VeryL0ngP@ssw0rd\",\n                \"phoneNumber\": \"+1-5134004008\",\n                \"extension\": \"4008\",\n                \"linePort\": \"5134004008@parkbenchsolutions.com\",\n                \"macAddress\": \"0004F2B3B848\",\n                \"passcode\": \"12345\"\n            },\n            \"options\": {\n                \"featureAccessCode\": true,\n                \"callProcessingPolicy\": true,\n                \"networkClassOfService\": true,\n                \"extensionLength\": true,\n                \"services\": true,\n                \"policy\": true,\n                \"schedule\": true,\n                \"outgoingCallingPlan\": true,\n                \"routingProfile\": true\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf999eac-a6d1-4c31-9cae-03691dc4104d"},{"name":"Task User Create","id":"0df68d83-e70d-4f36-ba55-a045a60df7ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5OTcyNzc1LCJuYnAiOjE1Mzk5NzI3NzUsImV4cCI6MTU0MDAxNTk3NSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa2RIUlRaSVdtcHJTMDEzVkhGVGNWSmhhRGhxUmxFOVBTSXNJblpoYkhWbElqb2lRWFI0VjFCclFteEdNSFZaWWxkRGVuaFNaa05aT0RnNGJXZExVell4VFhoVlRsaFdUVGhIVDBzeFNUMGlMQ0p0WVdNaU9pSm1OakF6TTJJeFlUQmxZV05tTVdWa05qUm1NelU1TkdRMlpqUTNOV0ZsWVRoa09XWmxNR1pqTVRWaE5UWmxZbUkxWVRNNVpUTTNNakV6TVRVNVkySXlJbjA9IiwicCI6ImV5SnBkaUk2SW5kRWVFOW9jMlpyTjFwS2RVNXZlazFMTnpVeGVFRTlQU0lzSW5aaGJIVmxJam9pVVdad2EwWjRaSGR6WlZ3dlYwdFFkbWwzUTFkSk56bDNZbkJIUzF3dlJsUlZWVTUyU2xOeWVXdzJZM2xrVEZKT2FqZGtRVGd5TUVGYU4yVnFVSGt3YmpsalYxTmlZMjlVYVhwdVkzRm5WamxHVDNOelZYZEtkejA5SWl3aWJXRmpJam9pT0dZNU16a3dOelV5WkRjNU16TmtaVE14WmpKbE5EWmtObVV4T1ROaU9ETm1aRFprTW1Jd1lqZGlPRGhtT0dSa01EWmxaV1ptTkdZMVpqY3pZakF6TWlKOSIsImUiOiJleUpwZGlJNklqQXdVemxNZFV3NFl6RXlSbnBGU0ZOYVRUQnRNV2M5UFNJc0luWmhiSFZsSWpvaVNGVTRRbk5xYUd0blZHb3hWa05UVGxNNU5XNVdaejA5SWl3aWJXRmpJam9pWTJSbVpqVTVOR1ZrTTJVd1pqZGhaak5tT1RJNE1qRm1aVGMzWW1NNE56RTVNRGd4TVRVd01tTTFOamd4TkdRMFptTTFNR1V3WTJNd01HUTRPR1ZtWkNKOSJ9fQ.brCqtjYHeJmQRGQSZtiLqXMo7cSJ0m_H-BzVzlm7ZJ8"},{"key":"connection","value":"keep-alive"},{"key":"content-length","value":"253"},{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:62.0) Gecko/20100101 Firefox/62.0"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.create\",\n    \"data\": [\n        {\n            \"task\": \"user.create\",\n            \"isDnAssigned\": true,\n            \"isPilotUserId\": true,\n            \"serviceProviderId\": \"P&G-SIP-Prod_ent\",\n            \"groupId\": \"CINGRP5769363\",\n            \"userId\": \"5133621460@as.voip.fuse.net\",\n            \"lastName\": \"5133621460\",\n            \"firstName\": \"5133621460\",\n            \"callingLineIdLastName\": \"5133621460\",\n            \"callingLineIdFirstName\": \"5133621460\",\n            \"password\": \"le3prf\",\n            \"passcode\": \"170562\",\n            \"phoneNumber\": \"5133621460\",\n            \"activatePhoneNumber\": true,\n            \"extension\": \"\",\n            \"callingLineIdPhoneNumber\": \"\",\n            \"timeZone\": \"\",\n            \"language\": \"English\",\n            \"networkClassOfService\": \"\",\n            \"mobilePhoneNumber\": \"\",\n            \"pagerPhoneNumber\": \"\",\n            \"emailAddress\": \"\",\n            \"addressLocation\": \"123 Main St\",\n            \"department\": \"\",\n            \"address\": {\n                \"city\": \"Tampa\",\n                \"stateOrProvince\": \"Florida\",\n                \"zipOrPostalCode\": \"33556\",\n                \"country\": \"United States\"\n            },\n            \"domain\": \"as.voip.fuse.net\",\n            \"endpointType\": \"trunkAddressing\",\n            \"allowAccessDeviceUpdate\": false,\n            \"accessDeviceEndpoint\": {\n                \"accessDevice\": {\n                    \"deviceType\": \"Polycom Soundpoint IP 600\",\n                    \"deviceName\": \"8135551500\",\n                    \"protocol\": \"SIP 2.0\",\n                    \"netAddress\": \"\",\n                    \"port\": \"\",\n                    \"outboundProxyServerNetAddress\": \"\",\n                    \"stunServerNetAddress\": \"\",\n                    \"macAddress\": \"\",\n                    \"serialNumber\": \"\",\n                    \"description\": \"\",\n                    \"physicalLocation\": \"\",\n                    \"transportProtocol\": \"TCP\",\n                    \"useCustomUserNamePassword\": false,\n                    \"accessDeviceCredentials\": {\n                        \"userName\": \"\",\n                        \"password\": \"\"\n                    },\n                    \"deviceLevel\": \"Group\"\n                },\n                \"linePort\": \"8135551500@odinapi.net\"\n            },\n            \"trunkAddressing\": {\n                \"trunkGroupDeviceEndpoint\": {\n                    \"name\": \"5136260100\",\n                    \"linePort\": \"+15133621460@as.voip.fuse.net\"\n                }\n            },\n            \"servicePackServices\": [\n                {\n                    \"serviceName\": \"Esip-t\",\n                    \"assigned\": true\n                },\n                {\n                    \"serviceName\": \"Esip-t2\",\n                    \"assigned\": true\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-08-03T21:55:37+00:00\",\n    \"createdAt\": \"2020-08-03T21:55:37+00:00\",\n    \"id\": 12\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0df68d83-e70d-4f36-ba55-a045a60df7ff"},{"name":"Task User Create Copy","id":"2dc5c677-64bc-4add-8bbf-e92871acf5a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5OTcyNzc1LCJuYnAiOjE1Mzk5NzI3NzUsImV4cCI6MTU0MDAxNTk3NSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa2RIUlRaSVdtcHJTMDEzVkhGVGNWSmhhRGhxUmxFOVBTSXNJblpoYkhWbElqb2lRWFI0VjFCclFteEdNSFZaWWxkRGVuaFNaa05aT0RnNGJXZExVell4VFhoVlRsaFdUVGhIVDBzeFNUMGlMQ0p0WVdNaU9pSm1OakF6TTJJeFlUQmxZV05tTVdWa05qUm1NelU1TkdRMlpqUTNOV0ZsWVRoa09XWmxNR1pqTVRWaE5UWmxZbUkxWVRNNVpUTTNNakV6TVRVNVkySXlJbjA9IiwicCI6ImV5SnBkaUk2SW5kRWVFOW9jMlpyTjFwS2RVNXZlazFMTnpVeGVFRTlQU0lzSW5aaGJIVmxJam9pVVdad2EwWjRaSGR6WlZ3dlYwdFFkbWwzUTFkSk56bDNZbkJIUzF3dlJsUlZWVTUyU2xOeWVXdzJZM2xrVEZKT2FqZGtRVGd5TUVGYU4yVnFVSGt3YmpsalYxTmlZMjlVYVhwdVkzRm5WamxHVDNOelZYZEtkejA5SWl3aWJXRmpJam9pT0dZNU16a3dOelV5WkRjNU16TmtaVE14WmpKbE5EWmtObVV4T1ROaU9ETm1aRFprTW1Jd1lqZGlPRGhtT0dSa01EWmxaV1ptTkdZMVpqY3pZakF6TWlKOSIsImUiOiJleUpwZGlJNklqQXdVemxNZFV3NFl6RXlSbnBGU0ZOYVRUQnRNV2M5UFNJc0luWmhiSFZsSWpvaVNGVTRRbk5xYUd0blZHb3hWa05UVGxNNU5XNVdaejA5SWl3aWJXRmpJam9pWTJSbVpqVTVOR1ZrTTJVd1pqZGhaak5tT1RJNE1qRm1aVGMzWW1NNE56RTVNRGd4TVRVd01tTTFOamd4TkdRMFptTTFNR1V3WTJNd01HUTRPR1ZtWkNKOSJ9fQ.brCqtjYHeJmQRGQSZtiLqXMo7cSJ0m_H-BzVzlm7ZJ8"},{"key":"connection","value":"keep-alive"},{"key":"content-length","value":"253"},{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:62.0) Gecko/20100101 Firefox/62.0"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.update\",\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9709580001@microv-works.com\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"http://127.0.0.1:8080/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","tasks"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"2dc5c677-64bc-4add-8bbf-e92871acf5a6"},{"name":"Task User Update","id":"0b1adf6a-1111-45e9-8450-46c29f0a978a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"content-type","value":"application/json;charset=utf-8"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.update\",\n    \"data\": [\n        {\n            \"task\": \"user.update\",\n            \"serviceProviderId\": \"ent.odin\",\n            \"groupId\": \"grp.odin\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"lastName\": \"Reverman\",\n            \"firstName\": \"Mark\",\n            \"callingLineIdLastName\": \"Reverman\",\n            \"callingLineIdFirstName\": \"Mark\",\n            \"hiraganaLastName\": \"Reverman\",\n            \"hiraganaFirstName\": \"Mark\",\n            \"phoneNumber\": \"9871515000\",\n            \"extension\": \"5000\",\n            \"department\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"name\": \"department1\"\n            },\n            \"departmentFullPath\": \"department1 (grp.odin)\",\n            \"language\": \"English\",\n            \"timeZone\": \"America\\/New_York\",\n            \"timeZoneDisplayName\": \"(GMT-05:00) (US) Eastern Time\",\n            \"defaultAlias\": \"9871515000@odinapi.net\",\n            \"trunkAddressing\": {\n                \"trunkGroupDeviceEndpoint\": {\n                    \"name\": \"9871515000\",\n                    \"linePort\": \"9871515000_trunk@odinapi.net\",\n                    \"staticRegistrationCapable\": \"true\",\n                    \"useDomain\": \"true\",\n                    \"isPilotUser\": \"false\",\n                    \"contacts\": []\n                }\n            },\n            \"title\": \"Title Here\",\n            \"pagerPhoneNumber\": 9871515000,\n            \"mobilePhoneNumber\": 9871515000,\n            \"emailAddress\": \"mreverman@parkbenchsolutions.com\",\n            \"addressLocation\": \"1234 Main Street\",\n            \"address\": {\n                \"addressLine1\": \"Bldg 2\",\n                \"addressLine2\": \"Suite 2\",\n                \"city\": \"Cincinnati\",\n                \"stateOrProvince\": \"Ohio\",\n                \"zipOrPostalCode\": \"45204\",\n                \"country\": \"US\"\n            },\n            \"countryCode\": \"1\",\n            \"alternateUserId\": [\n                {\n                    \"alternateUserId\": \"mreverman@parkbenchsolutions.com\",\n                    \"description\": \"mreverman@parkbenchsolutions.com\"\n                }\n            ],\n            \"allowVideo\": true,\n            \"callingLineIdPhoneNumber\": \"9871515000\",\n            \"domain\": \"odinapi.net\",\n            \"endpointType\": \"trunkAddressing\",\n            \"aliases\": [],\n            \"accessDeviceEndpoint\": {\n                \"contacts\": []\n            },\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b1adf6a-1111-45e9-8450-46c29f0a978a"},{"name":"Task User Integrated IMP","id":"3bdd5638-5f34-477e-9f88-edb280c37666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.integrated.imp.update\",\n    \"data\": [\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 2\n        },\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 3\n        },\n        {\n            \"task\": \"user.integrated.imp.update\",\n            \"userId\": \"4003-4003@lab.tekvoice.net\",\n            \"isActive\": true,\n            \"index\": 4\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3bdd5638-5f34-477e-9f88-edb280c37666"},{"name":"Task User Load","id":"53d9cf59-66b8-4d40-83e6-b552115fe117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.load\",\n    \"data\": [\n        {\n            \"task\": \"user.load\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n            \t\"tenant\": \"odin.paas2.instance\",\n            \t\"token\": \"121231asdfasdfoiu121u23123\",\n            \t\"loginId\": \"\",\n            \t\"password\": \"\",\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                \"user\": {\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin.copy\",\n                    \"lastName\": \"parkbenchsolutions\",\n                    \"firstName\": \"load\",\n                    \"callingLineIdLastName\": \"parkbenchsolutions\",\n                    \"callingLineIdFirstName\": \"load\",\n                    \"hiraganaLastName\": \"parkbenchsolutions\",\n                    \"hiraganaFirstName\": \"parkbenchsolutions\",\n                    \"phoneNumber\": \"8595551501\",\n                    \"extension\": \"1501\",\n                    \"language\": \"English\",\n                    \"timeZone\": \"America/New_York\",\n                    \"timeZoneDisplayName\": \"(GMT-04:00) (US) Eastern Time\",\n                    \"defaultAlias\": \"odin-load1@parkbenchsolutions.com\",\n                    \"accessDeviceEndpoint\": {\n                        \"accessDevice\": {\n                            \"deviceType\": \"Polycom IP550\",\n                            \"protocol\": \"SIP 2.0\",\n                            \"macAddress\": \"0004F2B31501\",\n                            \"numberOfPorts\": {\n                                \"quantity\": \"4\"\n                            },\n                            \"numberOfAssignedPorts\": 1,\n                            \"status\": \"Online\",\n                            \"configurationMode\": \"Default\",\n                            \"transportProtocol\": \"UDP\",\n                            \"useCustomUserNamePassword\": false,\n                            \"deviceName\": \"0004F2B31501\",\n                            \"deviceLevel\": \"Group\",\n                            \"accessDeviceCredentials\": {\n                                \"userName\": null\n                            },\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin.copy\",\n                            \"tags\": [],\n                            \"relatedServices\": []\n                        },\n                        \"linePort\": \"odin-load1@parkbenchsolutions.com\",\n                        \"staticRegistrationCapable\": \"false\",\n                        \"useDomain\": \"true\",\n                        \"supportVisualDeviceManagement\": \"false\",\n                        \"contacts\": []\n                    },\n                    \"title\": \"Programmer\",\n                    \"pagerPhoneNumber\": \"100-555-1414\",\n                    \"mobilePhoneNumber\": \"100-444-1414\",\n                    \"emailAddress\": \"developer@parkbenchsolutions.com\",\n                    \"yahooId\": \"developer@yahoo.com\",\n                    \"addressLocation\": \"Main Building\",\n                    \"address\": {\n                        \"addressLine1\": \"123 main street\",\n                        \"addressLine2\": \"suite 100\",\n                        \"city\": \"disney\",\n                        \"stateOrProvince\": \"Florida\",\n                        \"zipOrPostalCode\": \"12345\",\n                        \"country\": \"US\"\n                    },\n                    \"countryCode\": \"1\",\n                    \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                    \"callingLineIdPhoneNumber\": \"\",\n                    \"domain\": \"parkbenchsolutions.com\",\n                    \"endpointType\": \"accessDeviceEndpoint\",\n                    \"aliases\": [],\n                    \"trunkAddressing\": {\n                        \"trunkGroupDeviceEndpoint\": {\n                            \"contacts\": []\n                        }\n                    },\n                    \"isEnterprise\": true,\n                    \"passwordExpiresDays\": 2147483647\n                },\n                \"outgoingCallingPlans\": {\n                    \"outgoingCallingPlanAuthorizationCode\": {\n                        \"settings\": {\n                            \"useCustomSettings\": true,\n                            \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                            \"serviceProviderId\": \"ent.odin\",\n                            \"groupId\": \"grp.odin.copy\",\n                            \"isEnterprise\": true\n                        },\n                        \"codes\": [\n                            {\n                                \"code\": \"1001\",\n                                \"description\": \"1001\"\n                            },\n                            {\n                                \"code\": \"1002\",\n                                \"description\": \"1002\"\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanCallMeNow\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": true,\n                            \"premiumServicesII\": true,\n                            \"casual\": true,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanDigitPlanCallMeNow\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanDigitPlanOriginating\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanDigitPlanRedirecting\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanOriginating\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"group\": \"Allow\",\n                            \"local\": \"Allow\",\n                            \"tollFree\": \"Allow\",\n                            \"toll\": \"Allow\",\n                            \"international\": \"Allow\",\n                            \"operatorAssisted\": \"Allow\",\n                            \"chargeableDirectoryAssisted\": \"Allow\",\n                            \"specialServicesI\": \"Allow\",\n                            \"specialServicesII\": \"Allow\",\n                            \"premiumServicesI\": \"Allow\",\n                            \"premiumServicesII\": \"Allow\",\n                            \"casual\": \"Allow\",\n                            \"urlDialing\": \"Allow\",\n                            \"unknown\": \"Allow\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanRedirected\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"outsideGroup\": true\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanRedirecting\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": {\n                            \"group\": true,\n                            \"local\": true,\n                            \"tollFree\": true,\n                            \"toll\": true,\n                            \"international\": true,\n                            \"operatorAssisted\": true,\n                            \"chargeableDirectoryAssisted\": true,\n                            \"specialServicesI\": true,\n                            \"specialServicesII\": true,\n                            \"premiumServicesI\": true,\n                            \"premiumServicesII\": true,\n                            \"casual\": true,\n                            \"urlDialing\": true,\n                            \"unknown\": true\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanTransferNumbers\": {\n                        \"useCustomSettings\": true,\n                        \"userNumbers\": {\n                            \"phoneNumber01\": \"123\",\n                            \"phoneNumber02\": \"123\",\n                            \"phoneNumber03\": \"123\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanPinholeDigitPlanCallMeNow\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanPinholeDigitPlanOriginating\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"outgoingCallingPlanPinholeDigitPlanRedirecting\": {\n                        \"useCustomSettings\": true,\n                        \"userPermissions\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    }\n                },\n                \"assignedServices\": {\n                    \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                    \"userServices\": [\n                        {\n                            \"serviceName\": \"Advice Of Charge\"\n                        },\n                        {\n                            \"serviceName\": \"Anonymous Call Rejection\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Attendant Console\"\n                        },\n                        {\n                            \"serviceName\": \"Authentication\"\n                        },\n                        {\n                            \"serviceName\": \"Automatic Callback\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Automatic Hold/Retrieve\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Barge-in Exempt\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Mobility\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Busy Lamp Field\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always Secondary\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Busy\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding No Answer\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Not Reachable\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Selective\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Notify\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Recording\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Call Transfer\"\n                        },\n                        {\n                            \"serviceName\": \"Call Waiting\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Blocking Override\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Retrieval\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Number Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Calling Party Category\"\n                        },\n                        {\n                            \"serviceName\": \"Charge Number\"\n                        },\n                        {\n                            \"serviceName\": \"Classmark\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Call Manager\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Express\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Communication Barring User-Control\"\n                        },\n                        {\n                            \"serviceName\": \"Connected Line Identification Restriction\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Direct Route\"\n                        },\n                        {\n                            \"serviceName\": \"Directed Call Pickup with Barge-in\"\n                        },\n                        {\n                            \"serviceName\": \"Do Not Disturb\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"External Calling Line ID Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"External Custom Ringback\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Fax Messaging\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Group Night Forwarding\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Guest\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Host\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"In-Call Service Activation\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Integrated IMP\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Intercept User\",\n                            \"isActive\": false\n                        },\n                        {\n                            \"serviceName\": \"Internal Calling Line ID Delivery\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Malicious Call Trace\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Number Portability Announcement\",\n                            \"isActive\": false\n                        },\n                        {\n                            \"serviceName\": \"Outlook Integration\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Physical Location\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Prepaid\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Priority Alert\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Privacy\"\n                        },\n                        {\n                            \"serviceName\": \"Push to Talk\"\n                        },\n                        {\n                            \"serviceName\": \"Route List\"\n                        },\n                        {\n                            \"serviceName\": \"Security Classification\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Acceptance\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Rejection\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Sequential Ring\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance\"\n                        },\n                        {\n                            \"serviceName\": \"Silent Alerting\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Simultaneous Ring Personal\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 100\"\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 8\"\n                        },\n                        {\n                            \"serviceName\": \"Terminating Alternate Trunk Identity\"\n                        },\n                        {\n                            \"serviceName\": \"Third-Party Voice Mail Support\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Two-Stage Dialing\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Video Add-On\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Voice Portal Calling\",\n                            \"isActive\": true\n                        },\n                        {\n                            \"serviceName\": \"Zone Calling Restrictions\"\n                        }\n                    ],\n                    \"groupServices\": [\n                        {\n                            \"serviceName\": \"Music On Hold\",\n                            \"isActive\": true\n                        }\n                    ],\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin.copy\",\n                    \"isEnterprise\": true\n                },\n                \"serviceAssignment\": {\n                    \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                    \"userServices\": [\n                        {\n                            \"serviceName\": \"Anonymous Call Rejection\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Anonymous Call Rejection\"\n                        },\n                        {\n                            \"serviceName\": \"Authentication\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Authentication\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Always\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Busy\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Busy\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding No Answer\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding No Answer\"\n                        },\n                        {\n                            \"serviceName\": \"Call Notify\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Notify\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Delivery Blocking\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Line ID Delivery Blocking\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Express\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"CommPilot Express\"\n                        },\n                        {\n                            \"serviceName\": \"CommPilot Call Manager\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"CommPilot Call Manager\"\n                        },\n                        {\n                            \"serviceName\": \"Do Not Disturb\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Do Not Disturb\"\n                        },\n                        {\n                            \"serviceName\": \"Intercept User\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Intercept User\"\n                        },\n                        {\n                            \"serviceName\": \"Last Number Redial\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Last Number Redial\"\n                        },\n                        {\n                            \"serviceName\": \"Outlook Integration\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Outlook Integration\"\n                        },\n                        {\n                            \"serviceName\": \"Priority Alert\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Priority Alert\"\n                        },\n                        {\n                            \"serviceName\": \"Call Return\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Return\"\n                        },\n                        {\n                            \"serviceName\": \"Remote Office\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Remote Office\"\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Acceptance\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Selective Call Acceptance\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Selective\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Selective\"\n                        },\n                        {\n                            \"serviceName\": \"Selective Call Rejection\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Selective Call Rejection\"\n                        },\n                        {\n                            \"serviceName\": \"Service Scripts User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Service Scripts User\"\n                        },\n                        {\n                            \"serviceName\": \"Simultaneous Ring Personal\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Simultaneous Ring Personal\"\n                        },\n                        {\n                            \"serviceName\": \"Voice Messaging User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Voice Messaging User\"\n                        },\n                        {\n                            \"serviceName\": \"Alternate Numbers\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Alternate Numbers\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance\",\n                            \"assigned\": true,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Shared Call Appearance\"\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 8\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Speed Dial 8\"\n                        },\n                        {\n                            \"serviceName\": \"Customer Originated Trace\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Customer Originated Trace\"\n                        },\n                        {\n                            \"serviceName\": \"Attendant Console\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Attendant Console\"\n                        },\n                        {\n                            \"serviceName\": \"Third-Party MWI Control\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Third-Party MWI Control\"\n                        },\n                        {\n                            \"serviceName\": \"Client Call Control\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Client Call Control\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 5\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Shared Call Appearance 5\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 10\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 10\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 15\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 15\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 20\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 20\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 25\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 25\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 30\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 30\"\n                        },\n                        {\n                            \"serviceName\": \"Shared Call Appearance 35\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Shared Call Appearance 35\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Retrieval\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Name Retrieval\"\n                        },\n                        {\n                            \"serviceName\": \"Flash Call Hold\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Flash Call Hold\"\n                        },\n                        {\n                            \"serviceName\": \"Speed Dial 100\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Speed Dial 100\"\n                        },\n                        {\n                            \"serviceName\": \"Directed Call Pickup\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Directed Call Pickup\"\n                        },\n                        {\n                            \"serviceName\": \"Third-Party Voice Mail Support\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Third-Party Voice Mail Support\"\n                        },\n                        {\n                            \"serviceName\": \"Directed Call Pickup with Barge-in\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Directed Call Pickup with Barge-in\"\n                        },\n                        {\n                            \"serviceName\": \"Voice Portal Calling\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Voice Portal Calling\"\n                        },\n                        {\n                            \"serviceName\": \"External Calling Line ID Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"External Calling Line ID Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Internal Calling Line ID Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Internal Calling Line ID Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Automatic Callback\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Automatic Callback\"\n                        },\n                        {\n                            \"serviceName\": \"Call Waiting\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Waiting\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Line ID Blocking Override\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Line ID Blocking Override\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Party Category\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Party Category\"\n                        },\n                        {\n                            \"serviceName\": \"Barge-in Exempt\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Barge-in Exempt\"\n                        },\n                        {\n                            \"serviceName\": \"Video Add-On\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Video Add-On\"\n                        },\n                        {\n                            \"serviceName\": \"Malicious Call Trace\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Malicious Call Trace\"\n                        },\n                        {\n                            \"serviceName\": \"Preferred Carrier User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Preferred Carrier User\"\n                        },\n                        {\n                            \"serviceName\": \"Push to Talk\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Push to Talk\"\n                        },\n                        {\n                            \"serviceName\": \"Basic Call Logs\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Basic Call Logs\"\n                        },\n                        {\n                            \"serviceName\": \"Enhanced Call Logs\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Enhanced Call Logs\"\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Host\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Hoteling Host\"\n                        },\n                        {\n                            \"serviceName\": \"Hoteling Guest\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Hoteling Guest\"\n                        },\n                        {\n                            \"serviceName\": \"Voice Messaging User - Video\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Voice Messaging User - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Diversion Inhibitor\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Diversion Inhibitor\"\n                        },\n                        {\n                            \"serviceName\": \"Multiple Call Arrangement\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Multiple Call Arrangement\"\n                        },\n                        {\n                            \"serviceName\": \"Custom Ringback User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Custom Ringback User\"\n                        },\n                        {\n                            \"serviceName\": \"Custom Ringback User - Video\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Custom Ringback User - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Automatic Hold/Retrieve\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Automatic Hold/Retrieve\"\n                        },\n                        {\n                            \"serviceName\": \"Busy Lamp Field\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Busy Lamp Field\"\n                        },\n                        {\n                            \"serviceName\": \"Three-Way Call\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Three-Way Call\"\n                        },\n                        {\n                            \"serviceName\": \"Call Transfer\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Transfer\"\n                        },\n                        {\n                            \"serviceName\": \"Privacy\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Privacy\"\n                        },\n                        {\n                            \"serviceName\": \"Fax Messaging\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Fax Messaging\"\n                        },\n                        {\n                            \"serviceName\": \"Physical Location\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Physical Location\"\n                        },\n                        {\n                            \"serviceName\": \"Charge Number\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Charge Number\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Supervisor\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Supervisor\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Agent\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Agent\"\n                        },\n                        {\n                            \"serviceName\": \"N-Way Call\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"N-Way Call\"\n                        },\n                        {\n                            \"serviceName\": \"Two-Stage Dialing\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Two-Stage Dialing\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Not Reachable\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Not Reachable\"\n                        },\n                        {\n                            \"serviceName\": \"MWI Delivery to Mobile Endpoint\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"MWI Delivery to Mobile Endpoint\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Receptionist - Small Business\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Receptionist - Small Business\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Receptionist - Office\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Receptionist - Office\"\n                        },\n                        {\n                            \"serviceName\": \"External Custom Ringback\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"External Custom Ringback\"\n                        },\n                        {\n                            \"serviceName\": \"In-Call Service Activation\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"In-Call Service Activation\"\n                        },\n                        {\n                            \"serviceName\": \"Connected Line Identification Presentation\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Connected Line Identification Presentation\"\n                        },\n                        {\n                            \"serviceName\": \"Connected Line Identification Restriction\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Connected Line Identification Restriction\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Anywhere\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Anywhere\"\n                        },\n                        {\n                            \"serviceName\": \"Zone Calling Restrictions\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Zone Calling Restrictions\"\n                        },\n                        {\n                            \"serviceName\": \"Polycom Phone Services\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Polycom Phone Services\"\n                        },\n                        {\n                            \"serviceName\": \"Custom Ringback User - Call Waiting\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Custom Ringback User - Call Waiting\"\n                        },\n                        {\n                            \"serviceName\": \"Music On Hold User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Music On Hold User\"\n                        },\n                        {\n                            \"serviceName\": \"Video On Hold User\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Video On Hold User\"\n                        },\n                        {\n                            \"serviceName\": \"Advice Of Charge\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Advice Of Charge\"\n                        },\n                        {\n                            \"serviceName\": \"Prepaid\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Prepaid\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center - Basic\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center - Basic\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center - Standard\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center - Standard\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center - Premium\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center - Premium\"\n                        },\n                        {\n                            \"serviceName\": \"Communication Barring User-Control\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Communication Barring User-Control\"\n                        },\n                        {\n                            \"serviceName\": \"Classmark\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Classmark\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Name Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Name Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Calling Number Delivery\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Calling Number Delivery\"\n                        },\n                        {\n                            \"serviceName\": \"Virtual On-Net Enterprise Extensions\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Virtual On-Net Enterprise Extensions\"\n                        },\n                        {\n                            \"serviceName\": \"Office Communicator Tab\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Office Communicator Tab\"\n                        },\n                        {\n                            \"serviceName\": \"Pre-alerting Announcement\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Pre-alerting Announcement\"\n                        },\n                        {\n                            \"serviceName\": \"Call Center Monitoring\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Center Monitoring\"\n                        },\n                        {\n                            \"serviceName\": \"Location-Based Calling Restrictions\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Location-Based Calling Restrictions\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Mobility\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Mobility\"\n                        },\n                        {\n                            \"serviceName\": \"Call Me Now\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Call Me Now\"\n                        },\n                        {\n                            \"serviceName\": \"Call Recording\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Recording\"\n                        },\n                        {\n                            \"serviceName\": \"BroadWorks Connector for Lotus Sametime\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Connector for Lotus Sametime\"\n                        },\n                        {\n                            \"serviceName\": \"Integrated IMP\",\n                            \"assigned\": true,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"Integrated IMP\"\n                        },\n                        {\n                            \"serviceName\": \"Group Night Forwarding\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Group Night Forwarding\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Desktop\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Desktop\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Desktop - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Desktop - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Mobile\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Mobile\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Mobile - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Mobile - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Tablet\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Tablet\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Tablet - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch Business Communicator Tablet - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"BroadTouch Business Communicator Tablet - Video\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"BroadTouch Business Communicator Tablet - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Executive\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Executive\"\n                        },\n                        {\n                            \"serviceName\": \"Executive-Assistant\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Executive-Assistant\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 3\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Assistant - Enterprise\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 4\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadWorks Receptionist - Enterprise\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 15\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Client License 15\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 16\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Client License 16\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 17\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"BroadTouch Business Communicator Mobile - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 18\",\n                            \"assigned\": false,\n                            \"tags\": [\n                                \"UC-One\"\n                            ],\n                            \"alias\": \"BroadTouch Business Communicator Destop - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Client License 19\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"BroadTouch MobileLink\"\n                        },\n                        {\n                            \"serviceName\": \"Security Classification\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Security Classification\"\n                        },\n                        {\n                            \"serviceName\": \"Flexible Seating Guest\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Flexible Seating Guest\"\n                        },\n                        {\n                            \"serviceName\": \"Personal Assistant\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Personal Assistant\"\n                        },\n                        {\n                            \"serviceName\": \"Route List\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Route List\"\n                        },\n                        {\n                            \"serviceName\": \"Collaborate - Audio\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Collaborate - Audio\"\n                        },\n                        {\n                            \"serviceName\": \"Collaborate - Video\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Collaborate - Video\"\n                        },\n                        {\n                            \"serviceName\": \"Collaborate - Sharing\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Collaborate - Sharing\"\n                        },\n                        {\n                            \"serviceName\": \"Call Forwarding Always Secondary\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Call Forwarding Always Secondary\"\n                        },\n                        {\n                            \"serviceName\": \"Silent Alerting\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Silent Alerting\"\n                        },\n                        {\n                            \"serviceName\": \"Conference Room\",\n                            \"assigned\": false,\n                            \"tags\": [],\n                            \"alias\": \"Conference Room\"\n                        },\n                        {\n                            \"serviceName\": \"Sequential Ring\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Sequential Ring\"\n                        },\n                        {\n                            \"serviceName\": \"Number Portability Announcement\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Number Portability Announcement\"\n                        },\n                        {\n                            \"serviceName\": \"Direct Route\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Direct Route\"\n                        },\n                        {\n                            \"serviceName\": \"Terminating Alternate Trunk Identity\",\n                            \"assigned\": true,\n                            \"tags\": [],\n                            \"alias\": \"Terminating Alternate Trunk Identity\"\n                        }\n                    ],\n                    \"servicePackServices\": [\n                        {\n                            \"assigned\": false,\n                            \"description\": \"Standard\",\n                            \"serviceName\": \"Standard\",\n                            \"alias\": \"Standard\"\n                        },\n                        {\n                            \"assigned\": false,\n                            \"description\": \"Premium\",\n                            \"serviceName\": \"Premium\",\n                            \"alias\": \"Premium\"\n                        },\n                        {\n                            \"assigned\": false,\n                            \"description\": \"Basic\",\n                            \"serviceName\": \"Basic\",\n                            \"alias\": \"Basic\"\n                        }\n                    ],\n                    \"serviceProviderId\": \"ent.odin\",\n                    \"groupId\": \"grp.odin.copy\",\n                    \"isEnterprise\": true\n                },\n                \"serviceSettings\": {\n                    \"Advice Of Charge\": {\n                        \"isActive\": true,\n                        \"aocType\": \"During Call\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Anonymous Call Rejection\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Attendant Console\": {\n                        \"launchOnLogin\": true,\n                        \"allowUserConfigCallDetails\": true,\n                        \"allowUserViewCallDetails\": true,\n                        \"users\": [\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"displayColumns\": [\n                            \"Status\",\n                            \"Name\",\n                            \"Phone Number\",\n                            \"Extension\",\n                            \"Action\",\n                            \"Department\",\n                            \"Email\",\n                            \"Mobile\",\n                            \"Pager\",\n                            \"Title\"\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Automatic Callback\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Automatic Hold/Retrieve\": {\n                        \"isActive\": true,\n                        \"recallTimerSeconds\": 120,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Barge-in Exempt\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"BroadWorks Mobility\": {\n                        \"isActive\": true,\n                        \"phonesToRing\": \"Fixed\",\n                        \"mobilePhoneNumber\": 5131114444,\n                        \"alertClickToDialCalls\": true,\n                        \"alertGroupPagingCalls\": true,\n                        \"enableDiversionInhibitor\": true,\n                        \"requireAnswerConfirmation\": true,\n                        \"broadworksCallControl\": true,\n                        \"useSettingLevel\": \"Group\",\n                        \"denyCallOriginations\": true,\n                        \"denyCallTerminations\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Busy Lamp Field\": {\n                        \"listURI\": \"blf_odin-load1@parkbenchsolutions.com\",\n                        \"enableCallParkNotification\": true,\n                        \"users\": [\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            },\n                            {\n                                \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                \"lastName\": \"odin-user-2\",\n                                \"firstName\": \"odin-user-2\",\n                                \"hiraganaLastName\": null,\n                                \"hiraganaFirstName\": null,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Always\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"isRingSplashActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Always Secondary\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"isRingSplashActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Busy\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding No Answer\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"numberOfRings\": 4,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Not Reachable\": {\n                        \"isActive\": true,\n                        \"forwardToPhoneNumber\": 1111,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Forwarding Selective\": {\n                        \"isActive\": true,\n                        \"defaultForwardToPhoneNumber\": 1111,\n                        \"playRingReminder\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"forwardTo\": 1111,\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"callsFrom\": [\n                                    \"All calls\"\n                                ],\n                                \"forwardToNumberSelection\": \"Forward To Specified Number\",\n                                \"forwardToPhoneNumber\": 1111,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Notify\": {\n                        \"callNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": null,\n                                \"callFrom\": \"All calls\",\n                                \"blacklisted\": true,\n                                \"holidaySchedule\": null,\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Recording\": {\n                        \"recordingOption\": \"Always\",\n                        \"pauseResumeNotification\": \"Beep\",\n                        \"enableCallRecordingAnnouncement\": true,\n                        \"enableRecordCallRepeatWarningTone\": true,\n                        \"recordCallRepeatWarningToneTimerSeconds\": 15,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Transfer\": {\n                        \"isRecallActive\": true,\n                        \"recallNumberOfRings\": 4,\n                        \"useDiversionInhibitorForBlindTransfer\": true,\n                        \"useDiversionInhibitorForConsultativeCalls\": true,\n                        \"enableBusyCampOn\": true,\n                        \"busyCampOnSeconds\": 120,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Call Waiting\": {\n                        \"isActive\": true,\n                        \"disableCallingLineIdDelivery\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Line ID Blocking Override\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Line ID Delivery Blocking\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Name Delivery\": {\n                        \"isActiveForExternalCalls\": true,\n                        \"isActiveForInternalCalls\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Name Retrieval\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Number Delivery\": {\n                        \"isActiveForExternalCalls\": true,\n                        \"isActiveForInternalCalls\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Calling Party Category\": {\n                        \"category\": \"Special\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Charge Number\": {\n                        \"phoneNumber\": 8135551001,\n                        \"useChargeNumberForEnhancedTranslations\": true,\n                        \"sendChargeNumberToNetwork\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Classmark\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"CommPilot Call Manager\": {\n                        \"launchOnLogin\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"CommPilot Express\": {\n                        \"profile\": \"Available In Office\",\n                        \"availableInOffice\": {\n                            \"busySetting\": {\n                                \"action\": \"Transfer To Voice Mail\"\n                            },\n                            \"noAnswerSetting\": {\n                                \"action\": \"Transfer To Voice Mail\"\n                            }\n                        },\n                        \"availableOutOfOffice\": {\n                            \"incomingCalls\": {\n                                \"action\": \"Transfer To Voice Mail\"\n                            },\n                            \"incomingCallNotify\": {\n                                \"sendEmail\": \"false\"\n                            }\n                        },\n                        \"busy\": {\n                            \"incomingCalls\": {\n                                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                            },\n                            \"voiceMailNotify\": {\n                                \"sendEmail\": \"false\"\n                            }\n                        },\n                        \"unavailable\": {\n                            \"incomingCalls\": {\n                                \"sendCallsToVoiceMailExceptExcludedNumbers\": \"false\"\n                            },\n                            \"voiceMailGreeting\": \"No Answer\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Communication Barring User-Control\": {\n                        \"lockoutStatus\": false,\n                        \"profileTable\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Connected Line Identification Restriction\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Direct Route\": {\n                        \"outgoingDTGPolicy\": \"Trunk Group DTG\",\n                        \"outgoingTrunkIdentityPolicy\": \"Trunk Group Trunk Identity\",\n                        \"routes\": {\n                            \"dtgIdentity\": [\n                                \"1111\"\n                            ],\n                            \"trunkIdentity\": []\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Directed Call Pickup with Barge-in\": {\n                        \"enableBargeInWarningTone\": true,\n                        \"enableAutomaticTargetSelection\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Do Not Disturb\": {\n                        \"isActive\": true,\n                        \"ringSplash\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"External Calling Line ID Delivery\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"External Custom Ringback\": {\n                        \"isActive\": true,\n                        \"useSettingLevel\": \"User\",\n                        \"sipRequestURI\": \"developer@parkbenchsolutions.com\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Fax Messaging\": {\n                        \"isActive\": true,\n                        \"phoneNumber\": 8135551002,\n                        \"extension\": 1002,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"aliases\": [\n                            {\n                                \"phoneNumber\": \"developer\",\n                                \"domain\": \"parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Group Night Forwarding\": {\n                        \"nightForwarding\": \"On\",\n                        \"groupNightForwarding\": \"Off\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Hoteling Guest\": {\n                        \"isActive\": true,\n                        \"enableAssociationLimit\": true,\n                        \"associationLimitHours\": 12,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Hoteling Host\": {\n                        \"isActive\": true,\n                        \"enforceAssociationLimit\": true,\n                        \"associationLimitHours\": 24,\n                        \"accessLevel\": \"Group\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"In-Call Service Activation\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Integrated IMP\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Intercept User\": {\n                        \"isActive\": false,\n                        \"announcementSelection\": \"Default\",\n                        \"inboundCallMode\": \"Intercept All\",\n                        \"alternateBlockingAnnouncement\": false,\n                        \"exemptInboundMobilityCalls\": false,\n                        \"disableParallelRingingToNetworkLocations\": false,\n                        \"routeToVoiceMail\": false,\n                        \"playNewPhoneNumber\": false,\n                        \"transferOnZeroToPhoneNumber\": false,\n                        \"outboundCallMode\": \"Block All\",\n                        \"exemptOutboundMobilityCalls\": false,\n                        \"rerouteOutboundCalls\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Internal Calling Line ID Delivery\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Malicious Call Trace\": {\n                        \"isActive\": true,\n                        \"traceTypeSelection\": \"All Incoming\",\n                        \"traceForTimePeriod\": true,\n                        \"traceTimePeriod\": {\n                            \"startDateTime\": \"2019-04-30T08:54:00.321-04:00\",\n                            \"stopDateTime\": \"2019-05-01T08:54:00.321-04:00\"\n                        },\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Number Portability Announcement\": {\n                        \"enable\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Outlook Integration\": {\n                        \"isActive\": true,\n                        \"contactRetrievalSelection\": \"Retrieve Default Contact Folder Only\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Physical Location\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Prepaid\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Priority Alert\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"isActive\": true,\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": true,\n                                \"holidaySchedule\": \"None\",\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"callsFrom\": [\n                                    \"1111\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Specified Only\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": [\n                                        \"1111\"\n                                    ]\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Privacy\": {\n                        \"enableDirectoryPrivacy\": true,\n                        \"enableAutoAttendantExtensionDialingPrivacy\": true,\n                        \"enableAutoAttendantNameDialingPrivacy\": true,\n                        \"enablePhoneStatusPrivacy\": true,\n                        \"permittedMonitors\": [\n                            {\n                                \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                \"lastName\": \"odin-user-2\",\n                                \"firstName\": \"odin-user-2\",\n                                \"hiraganaLastName\": null,\n                                \"hiraganaFirstName\": null,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            },\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Push to Talk\": {\n                        \"allowAutoAnswer\": false,\n                        \"outgoingConnectionSelection\": \"One Way\",\n                        \"accessListSelection\": \"Allow Calls From Everyone Except Selected Users\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"users\": [\n                            {\n                                \"userId\": \"odin-user-2@parkbenchsolutions.com\",\n                                \"lastName\": \"odin-user-2\",\n                                \"firstName\": \"odin-user-2\",\n                                \"hiraganaLastName\": null,\n                                \"hiraganaFirstName\": null,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            },\n                            {\n                                \"userId\": \"4002@parkbenchsolutions.com\",\n                                \"lastName\": 4002,\n                                \"firstName\": 4002,\n                                \"hiraganaLastName\": 4002,\n                                \"hiraganaFirstName\": 4002,\n                                \"phoneNumber\": null,\n                                \"extension\": null,\n                                \"department\": null,\n                                \"emailAddress\": null,\n                                \"iMPId\": null\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Route List\": {\n                        \"treatOriginationsAndPBXRedirectionsAsScreened\": true,\n                        \"useRouteListIdentityForNonEmergencyCalls\": true,\n                        \"useRouteListIdentityForEmergencyCalls\": true,\n                        \"dns\": [\n                            {\n                                \"min\": \"+1-2123135000\",\n                                \"max\": \"+1-2123135999\",\n                                \"isActive\": true\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Security Classification\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Selective Call Acceptance\": {\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"callFrom\": \"All calls\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": false,\n                                    \"includeUnavailableCallers\": false,\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ]\n                    },\n                    \"Selective Call Rejection\": {\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"callsFrom\": 1111,\n                                \"blacklisted\": true,\n                                \"holidaySchedule\": \"None\",\n                                \"callsToType\": null,\n                                \"callsToNumber\": null,\n                                \"callsToExtension\": null,\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Specified Only\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": [\n                                        \"1111\"\n                                    ]\n                                },\n                                \"private\": false,\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Sequential Ring\": {\n                        \"ringBaseLocationFirst\": true,\n                        \"baseLocationNumberOfRings\": 4,\n                        \"continueIfBaseLocationIsBusy\": true,\n                        \"callerMayStopSearch\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"locations\": [\n                            {\n                                \"phoneNumber\": \"1111\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"2222\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"3333\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"4444\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"5555\",\n                                \"numberOfRings\": 3,\n                                \"answerConfirmationRequired\": false\n                            }\n                        ],\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": {\n                                    \"name\": \"Holidays\",\n                                    \"level\": \"Group\",\n                                    \"type\": \"Holiday\"\n                                },\n                                \"callsFrom\": [\n                                    \"All calls\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": \"false\",\n                                    \"includeUnavailableCallers\": \"false\",\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Shared Call Appearance\": {\n                        \"alertAllAppearancesForClickToDialCalls\": true,\n                        \"alertAllAppearancesForGroupPagingCalls\": true,\n                        \"maxAppearances\": 2,\n                        \"allowSCACallRetrieve\": true,\n                        \"enableMultipleCallArrangement\": false,\n                        \"multipleCallArrangementIsActive\": false,\n                        \"allowBridgingBetweenLocations\": true,\n                        \"bridgeWarningTone\": \"Barge-In\",\n                        \"enableCallParkNotification\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"endpoints\": [],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Silent Alerting\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Simultaneous Ring Personal\": {\n                        \"isActive\": true,\n                        \"doNotRingIfOnCall\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"criteria\": [\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria1\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"callsFrom\": [\n                                    \"All calls\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Any\",\n                                    \"includeAnonymousCallers\": false,\n                                    \"includeUnavailableCallers\": false,\n                                    \"phoneNumbers\": []\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            },\n                            {\n                                \"isActive\": true,\n                                \"criteriaName\": \"criteria2\",\n                                \"timeSchedule\": \"Every Day All Day\",\n                                \"blacklisted\": false,\n                                \"holidaySchedule\": \"None\",\n                                \"callsFrom\": [\n                                    \"1111\",\n                                    \"2222\",\n                                    \"3333...\"\n                                ],\n                                \"fromDnCriteria\": {\n                                    \"fromDnCriteriaSelection\": \"Specified Only\",\n                                    \"includeAnonymousCallers\": false,\n                                    \"includeUnavailableCallers\": false,\n                                    \"phoneNumbers\": [\n                                        \"1111\",\n                                        \"2222\",\n                                        \"3333\",\n                                        \"4444\"\n                                    ]\n                                },\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"locations\": [\n                            {\n                                \"phoneNumber\": \"1111\",\n                                \"answerConfirmationRequired\": true\n                            },\n                            {\n                                \"phoneNumber\": \"2222\",\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"3333\",\n                                \"answerConfirmationRequired\": false\n                            },\n                            {\n                                \"phoneNumber\": \"4444\",\n                                \"answerConfirmationRequired\": true\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Speed Dial 100\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"0\",\n                                \"phoneNumber\": \"0000\",\n                                \"description\": \"0000\"\n                            },\n                            {\n                                \"speedCode\": \"1\",\n                                \"phoneNumber\": \"1111\",\n                                \"description\": \"1111\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Speed Dial 8\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"speedCodes\": [\n                            {\n                                \"speedCode\": \"2\",\n                                \"phoneNumber\": \"222\"\n                            },\n                            {\n                                \"speedCode\": \"3\",\n                                \"phoneNumber\": \"333\"\n                            },\n                            {\n                                \"speedCode\": \"4\",\n                                \"phoneNumber\": \"444\"\n                            },\n                            {\n                                \"speedCode\": \"5\"\n                            },\n                            {\n                                \"speedCode\": \"6\"\n                            },\n                            {\n                                \"speedCode\": \"7\"\n                            },\n                            {\n                                \"speedCode\": \"8\"\n                            },\n                            {\n                                \"speedCode\": \"9\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Terminating Alternate Trunk Identity\": {\n                        \"terminatingTrunkIdentity\": 1111,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Third-Party Voice Mail Support\": {\n                        \"isActive\": true,\n                        \"busyRedirectToVoiceMail\": true,\n                        \"noAnswerRedirectToVoiceMail\": true,\n                        \"serverSelection\": \"Group Mail Server\",\n                        \"mailboxIdType\": \"User Or Group Phone Number\",\n                        \"noAnswerNumberOfRings\": 4,\n                        \"alwaysRedirectToVoiceMail\": true,\n                        \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Two-Stage Dialing\": {\n                        \"isActive\": true,\n                        \"allowActivationWithUserAddresses\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Video Add-On\": {\n                        \"isActive\": true,\n                        \"maxOriginatingCallDelaySeconds\": 5,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Voice Portal Calling\": {\n                        \"isActive\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"Zone Calling Restrictions\": {\n                        \"homeZoneName\": \"Office\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    }\n                },\n                \"utilities\": {\n                    \"alternateUserId\": {\n                        \"users\": [],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"announcementFile\": {\n                        \"totalFileSize\": 0,\n                        \"maxFileSize\": 1000,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"announcementType\": \"\",\n                        \"announcements\": []\n                    },\n                    \"callPolicies\": {\n                        \"redirectedCallsCOLPPrivacy\": \"Privacy For All Calls\",\n                        \"callBeingForwardedResponseCallType\": \"All Calls\",\n                        \"callingLineIdentityForRedirectedCalls\": \"Redirecting User Identity For All Redirections\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"callProcessingPolicy\": {\n                        \"useUserCLIDSetting\": false,\n                        \"useUserMediaSetting\": false,\n                        \"useUserCallLimitsSetting\": false,\n                        \"useUserDCLIDSetting\": false,\n                        \"useMaxSimultaneousCalls\": true,\n                        \"maxSimultaneousCalls\": 3,\n                        \"useMaxSimultaneousVideoCalls\": true,\n                        \"maxSimultaneousVideoCalls\": 1,\n                        \"useMaxCallTimeForAnsweredCalls\": true,\n                        \"maxCallTimeForAnsweredCallsMinutes\": 1440,\n                        \"useMaxCallTimeForUnansweredCalls\": false,\n                        \"maxCallTimeForUnansweredCallsMinutes\": 2,\n                        \"mediaPolicySelection\": \"No Restrictions\",\n                        \"useMaxConcurrentRedirectedCalls\": false,\n                        \"maxConcurrentRedirectedCalls\": 5,\n                        \"useMaxFindMeFollowMeDepth\": true,\n                        \"maxFindMeFollowMeDepth\": 3,\n                        \"maxRedirectionDepth\": 5,\n                        \"useMaxConcurrentFindMeFollowMeInvocations\": true,\n                        \"maxConcurrentFindMeFollowMeInvocations\": 3,\n                        \"clidPolicy\": \"Use DN\",\n                        \"emergencyClidPolicy\": \"Use DN\",\n                        \"allowAlternateNumbersForRedirectingIdentity\": true,\n                        \"useGroupName\": false,\n                        \"blockCallingNameForExternalCalls\": false,\n                        \"enableDialableCallerID\": false,\n                        \"allowConfigurableCLIDForRedirectingIdentity\": true,\n                        \"allowDepartmentCLIDNameOverride\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"communicationBarring\": {\n                        \"useGroupSetting\": true,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"communicationBarringAuthorizationCode\": {\n                        \"codes\": [\n                            {\n                                \"code\": \"1234\",\n                                \"description\": \"1234\",\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"devicePolicies\": {\n                        \"lineMode\": \"Single User Private and Shared\",\n                        \"enableDeviceFeatureSynchronization\": true,\n                        \"enableDnd\": false,\n                        \"enableCallForwardingAlways\": false,\n                        \"enableCallForwardingBusy\": false,\n                        \"enableCallForwardingNoAnswer\": false,\n                        \"enableAcd\": false,\n                        \"enableExecutive\": false,\n                        \"enableExecutiveAssistant\": false,\n                        \"enableSecurityClassification\": false,\n                        \"enableCallRecording\": false,\n                        \"enableCallDecline\": false,\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"featureAccessCode\": {\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"featureAccessCodes\": [\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation Per Call\",\n                                \"mainCode\": \"*29\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Deactivation\",\n                                \"mainCode\": \"*95\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Direct Voice Mail Transfer\",\n                                \"mainCode\": \"*55\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Bridge\",\n                                \"mainCode\": \"*15\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery per Call\",\n                                \"mainCode\": \"*65\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park\",\n                                \"mainCode\": \"*68\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Connected Line Identification Restriction Interrogation\",\n                                \"mainCode\": \"*56*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Group Call Park\",\n                                \"mainCode\": \"#58\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation Per Call\",\n                                \"mainCode\": \"*24\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Activation\",\n                                \"mainCode\": \"#28\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Mail Clear MWI\",\n                                \"mainCode\": \"*99\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 100\",\n                                \"mainCode\": \"*75\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Cancel Call Waiting\",\n                                \"mainCode\": \"*70\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Deactivation\",\n                                \"mainCode\": \"#41\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Deactivation\",\n                                \"mainCode\": \"#29\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Activation\",\n                                \"mainCode\": \"*90\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Pause\",\n                                \"mainCode\": \"*48\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Start\",\n                                \"mainCode\": \"*44\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Activation\",\n                                \"mainCode\": \"#23\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Deactivation\",\n                                \"mainCode\": \"#24\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Do Not Disturb Activation\",\n                                \"mainCode\": \"*78\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Speed Dial 8\",\n                                \"mainCode\": \"*74\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Deactivation\",\n                                \"mainCode\": \"*87\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Interrogation\",\n                                \"mainCode\": \"*54*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Deactivation\",\n                                \"mainCode\": \"*13\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Activation\",\n                                \"mainCode\": \"*31\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Activation\",\n                                \"mainCode\": \"*33*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Persistent Deactivation\",\n                                \"mainCode\": \"#43\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking Persistent Deactivation\",\n                                \"mainCode\": \"#31\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"No Answer Timer\",\n                                \"mainCode\": \"*610\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Activation\",\n                                \"mainCode\": \"*21\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Interrogation\",\n                                \"mainCode\": \"*61*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Interrogation\",\n                                \"mainCode\": \"*67*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Per-Call Account Code\",\n                                \"mainCode\": \"*71\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Activation\",\n                                \"mainCode\": \"*92\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Activation\",\n                                \"mainCode\": \"*40\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Call Anchoring Activation Per Call\",\n                                \"mainCode\": \"*23\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Automatic Callback Menu Access\",\n                                \"mainCode\": \"#9\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Interrogation\",\n                                \"mainCode\": \"*52*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Unlock\",\n                                \"mainCode\": \"*47\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Calling Line ID Delivery Blocking per Call\",\n                                \"mainCode\": \"*67\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Mobility Calling Line ID Activation Per Call\",\n                                \"mainCode\": \"*28\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Deactivation\",\n                                \"mainCode\": \"#33*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Stop\",\n                                \"mainCode\": \"*45\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Activation\",\n                                \"mainCode\": \"*72\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Interrogation\",\n                                \"mainCode\": \"*63*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Recording - Resume\",\n                                \"mainCode\": \"*49\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Interrogation\",\n                                \"mainCode\": \"#53\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Advice Of Charge Activation\",\n                                \"mainCode\": \"*34\",\n                                \"alternateCode\": \"*3434\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Mail Retrieval\",\n                                \"mainCode\": \"*86\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy To Voice Mail Deactivation\",\n                                \"mainCode\": \"#40\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer Deactivation\",\n                                \"mainCode\": \"*93\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Activation\",\n                                \"mainCode\": \"#76\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Rejection Interrogation\",\n                                \"mainCode\": \"*51*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Anonymous Call Rejection Activation\",\n                                \"mainCode\": \"*77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Interrogation\",\n                                \"mainCode\": \"*21*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Deactivation\",\n                                \"mainCode\": \"#52\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Retrieve\",\n                                \"mainCode\": \"*11\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"EOCP Sustained Authorization Code Lock\",\n                                \"mainCode\": \"*37\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Hunt Group Busy Activation\",\n                                \"mainCode\": \"#51\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Location Control Activation\",\n                                \"mainCode\": \"*12\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Selective Call Forwarding Deactivation\",\n                                \"mainCode\": \"#77\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Interrogation\",\n                                \"mainCode\": \"*53*\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Number Portability Announcement Activation\",\n                                \"mainCode\": \"*84\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always To Voice Mail Deactivation\",\n                                \"mainCode\": \"#21\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Number Portability Announcement Deactivation\",\n                                \"mainCode\": \"*85\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Voice Portal Access\",\n                                \"mainCode\": \"*62\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Park Retrieve\",\n                                \"mainCode\": \"*88\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Waiting Persistent Activation\",\n                                \"mainCode\": \"*43\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Do Not Disturb Deactivation\",\n                                \"mainCode\": \"*79\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push Notification Retrieval\",\n                                \"mainCode\": \"#0322\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Automatic Callback Deactivation\",\n                                \"mainCode\": \"#8\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Push to Talk\",\n                                \"mainCode\": \"*50\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Music On Hold Per-Call Deactivation\",\n                                \"mainCode\": \"*60\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Always Deactivation\",\n                                \"mainCode\": \"*73\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Pickup\",\n                                \"mainCode\": \"*98\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Busy Deactivation\",\n                                \"mainCode\": \"*91\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Communication Barring User-Control Query\",\n                                \"mainCode\": \"*#33#\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Directed Call Pickup with Barge-in\",\n                                \"mainCode\": \"*33\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"FMFM Call Push\",\n                                \"mainCode\": \"*26\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding Not Reachable Activation\",\n                                \"mainCode\": \"*94\",\n                                \"enableFAC\": \"true\"\n                            },\n                            {\n                                \"featureAccessCodeName\": \"Call Forwarding No Answer To Voice Mail Activation\",\n                                \"mainCode\": \"*41\",\n                                \"enableFAC\": \"true\"\n                            }\n                        ],\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    },\n                    \"portalPasscode\": {\n                        \"isLoginDisabled\": false,\n                        \"expirationDays\": 16,\n                        \"passcode\": \"*****\",\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\"\n                    },\n                    \"userSchedules\": {\n                        \"schedules\": [\n                            {\n                                \"name\": \"user schedule 1\",\n                                \"type\": \"Time\",\n                                \"level\": \"User\",\n                                \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                                \"events\": [\n                                    {\n                                        \"eventName\": \"event 1\",\n                                        \"startTime\": \"2019-04-30T00:00:00\",\n                                        \"endTime\": \"2019-04-30T23:59:59\",\n                                        \"allDayEvent\": true,\n                                        \"name\": \"user schedule 1\",\n                                        \"type\": \"Time\",\n                                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                                        \"rrule\": null\n                                    }\n                                ]\n                            }\n                        ],\n                        \"userId\": \"odin-load1@parkbenchsolutions.com\",\n                        \"serviceProviderId\": \"ent.odin\",\n                        \"groupId\": \"grp.odin.copy\",\n                        \"isEnterprise\": true\n                    }\n                },\n                \"_eventId\": 87\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"53d9cf59-66b8-4d40-83e6-b552115fe117"},{"name":"Task User Move TEST","id":"e0cd6d6a-7727-4ae4-a34f-942009f2c0ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.move\",\n    \"data\": [\n        {\n            \"task\": \"user.move\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"4003@parkbenchsolutions.com\",\n                \"password\": \"VeryL0ngP@ssw0rd\"\n            },\n            \"options\": {\n                \"featureAccessCode\": true,\n                \"callProcessingPolicy\": true,\n                \"networkClassOfService\": true,\n                \"extensionLength\": true,\n                \"services\": true,\n                \"policy\": true,\n                \"schedule\": true,\n                \"outgoingCallingPlan\": true,\n                \"routingProfile\": true\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0cd6d6a-7727-4ae4-a34f-942009f2c0ea"},{"name":"Task User Password Modify","id":"541ae272-8919-4ab2-a9fb-ae07de496474","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.password.update\",\n    \"data\": [\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993000@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993002@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 2\n        },\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993003@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 3\n        },\n        {\n            \"task\": \"user.password.update\",\n            \"userId\": \"5138993004@parkbenchsolutions.com\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"index\": 4\n        }\n\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"541ae272-8919-4ab2-a9fb-ae07de496474"},{"name":"Task User Passwords Modify","id":"da186ba0-123e-4c33-a352-11812e414974","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.passwords.update\",\n    \"data\": [\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514001\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514002\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2be8ed5e-3744-48c2-bc9c-feeff9ff2128","name":"Task User Passwords Modify","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.passwords.update\",\n    \"data\": [\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514001\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514002\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 2\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Jun 2020 13:17:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"705"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"user.passwords.update\",\n    \"data\": [\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514001\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.passwords.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"newPassword\": \"newP@ssw0rdId1\",\n            \"newPasscode\": \"5361\",\n            \"userName\": \"19871514002\",\n            \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n            \"rebuildDevice\": true,\n            \"resetDevice\": true,\n            \"index\": 2\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-06-25T13:17:27+00:00\",\n    \"createdAt\": \"2020-06-25T13:17:27+00:00\",\n    \"id\": 5\n}"}],"_postman_id":"da186ba0-123e-4c33-a352-11812e414974"},{"name":"Task User Portal Passcode Modify","id":"19c3ca4c-c3b7-4399-9168-76f2a27e6662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.portal.passcode.update\",\n    \"data\": [\n        {\n            \"task\": \"user.portal.passcode.update\",\n            \"userId\": \"19871514001@odinapi.net\",\n            \"passcode\": \"5361\",\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.portal.passcode.update\",\n            \"userId\": \"19871514002@odinapi.net\",\n            \"passcode\": \"5361\",\n            \"index\": 2\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"19c3ca4c-c3b7-4399-9168-76f2a27e6662"},{"name":"Task User Services Assign","id":"bfb4a596-99a7-48fe-b6e8-0244df5eb2a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.update\",\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9709580001@microv-works.com\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfb4a596-99a7-48fe-b6e8-0244df5eb2a3"},{"name":"Task User Services Assign Copy","id":"60eebc7d-d014-4f6d-bb6d-6a2d7bbc8f6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.update\",\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9709580001@microv-works.com\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"60eebc7d-d014-4f6d-bb6d-6a2d7bbc8f6f"},{"name":"Task User Services Update","id":"b7e15f2d-4843-44c4-8247-abf91805cabc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-encoding","value":"gzip, deflate"},{"key":"accept-language","value":"en-US,en;q=0.5"},{"key":"authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJwYXJrYmVuY2hzb2x1dGlvbnMuY29tIiwiaWF0IjoxNTM5OTcyNzc1LCJuYnAiOjE1Mzk5NzI3NzUsImV4cCI6MTU0MDAxNTk3NSwiZGF0YSI6eyJ1IjoiZXlKcGRpSTZJa2RIUlRaSVdtcHJTMDEzVkhGVGNWSmhhRGhxUmxFOVBTSXNJblpoYkhWbElqb2lRWFI0VjFCclFteEdNSFZaWWxkRGVuaFNaa05aT0RnNGJXZExVell4VFhoVlRsaFdUVGhIVDBzeFNUMGlMQ0p0WVdNaU9pSm1OakF6TTJJeFlUQmxZV05tTVdWa05qUm1NelU1TkdRMlpqUTNOV0ZsWVRoa09XWmxNR1pqTVRWaE5UWmxZbUkxWVRNNVpUTTNNakV6TVRVNVkySXlJbjA9IiwicCI6ImV5SnBkaUk2SW5kRWVFOW9jMlpyTjFwS2RVNXZlazFMTnpVeGVFRTlQU0lzSW5aaGJIVmxJam9pVVdad2EwWjRaSGR6WlZ3dlYwdFFkbWwzUTFkSk56bDNZbkJIUzF3dlJsUlZWVTUyU2xOeWVXdzJZM2xrVEZKT2FqZGtRVGd5TUVGYU4yVnFVSGt3YmpsalYxTmlZMjlVYVhwdVkzRm5WamxHVDNOelZYZEtkejA5SWl3aWJXRmpJam9pT0dZNU16a3dOelV5WkRjNU16TmtaVE14WmpKbE5EWmtObVV4T1ROaU9ETm1aRFprTW1Jd1lqZGlPRGhtT0dSa01EWmxaV1ptTkdZMVpqY3pZakF6TWlKOSIsImUiOiJleUpwZGlJNklqQXdVemxNZFV3NFl6RXlSbnBGU0ZOYVRUQnRNV2M5UFNJc0luWmhiSFZsSWpvaVNGVTRRbk5xYUd0blZHb3hWa05UVGxNNU5XNVdaejA5SWl3aWJXRmpJam9pWTJSbVpqVTVOR1ZrTTJVd1pqZGhaak5tT1RJNE1qRm1aVGMzWW1NNE56RTVNRGd4TVRVd01tTTFOamd4TkdRMFptTTFNR1V3WTJNd01HUTRPR1ZtWkNKOSJ9fQ.brCqtjYHeJmQRGQSZtiLqXMo7cSJ0m_H-BzVzlm7ZJ8"},{"key":"connection","value":"keep-alive"},{"key":"content-length","value":"253"},{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"dnt","value":"1"},{"key":"host","value":"127.0.0.1:8080"},{"key":"referer","value":"http://127.0.0.1:8080/"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:62.0) Gecko/20100101 Firefox/62.0"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.update\",\n    \"data\": [\n        {\n            \"task\": \"user.services.update\",\n            \"userId\": \"9709580001@microv-works.com\",\n            \"serviceProviderId\": \"odin.mock.ent1\",\n            \"groupId\": \"odin.mock.grp1\",\n            \"userServices\": [\n                {\n                    \"serviceName\": \"Authentication\",\n                    \"assigned\": \"true\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"http://127.0.0.1:8080/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","tasks"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7e15f2d-4843-44c4-8247-abf91805cabc"},{"name":"Task User Speed Dial 100","id":"ac0bcd9a-20b4-45e2-88a3-5596fbf9d1c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.speedDial100.update\",\n    \"data\": [\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","description":"<h5 id=\"bulk-user-speed-dial-100\">Bulk User Speed Dial 100</h5>\n<blockquote>\n<p>this bulk task will upsert speed dial 100 codes to the user.  If the speed code 0 exists it will first delete the speed code and readd as a new speed code and descpription.</p>\n</blockquote>\n<blockquote>\n<p>if the service Speed Diall 100 is not assigned to the user the speed dial 100 codes will not be created for the user</p>\n</blockquote>\n<blockquote>\n<p>if the attribute assignUserService: true is passed for the user it will assign Speed Code 100 if it isn't already assigned</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fd9804f7-a706-4cf7-a3ca-a374bfedcb33","name":"Task User Speed Dial 100 (test)","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json;charset=utf-8"},{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.speedDial100.update\",\n    \"data\": [\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"user.speedDial100.update\",\n    \"data\": [\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        },\n        {\n            \"task\": \"user.speedDial100.update\",\n            \"userId\": \"9871515003@odinapi.net\",\n            \"assignUserService\": true,\n            \"speedCodes\": [\n                {\n                    \"speedCode\": \"0\",\n                    \"phoneNumber\": \"1000\",\n                    \"description\": \"1000 description\"\n                },\n                {\n                    \"speedCode\": \"3\",\n                    \"phoneNumber\": \"1003\",\n                    \"description\": \"1003 description\"\n                }\n            ],\n            \"index\": 1\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2020-10-14T17:08:04+00:00\",\n    \"createdAt\": \"2020-10-14T17:08:04+00:00\",\n    \"id\": 48\n}"}],"_postman_id":"ac0bcd9a-20b4-45e2-88a3-5596fbf9d1c6"},{"name":"Task User Service Clone","id":"1b5096a1-804a-4580-9df2-213304526bf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.services.clone\",\n    \"data\": [\n        {\n            \"task\": \"user.services.clone\",\n            \"source\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin\",\n                \"userId\": \"4003@parkbenchsolutions.com\"\n            },\n            \"destination\": {\n                \"serviceProviderId\": \"ent.odin\",\n                \"groupId\": \"grp.odin.copy\",\n                \"userId\": \"odin-bulk@parkbenchsolutions.com\"\n            }\n        }\n    ]\n}"},"url":"{{url}}/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b5096a1-804a-4580-9df2-213304526bf4"},{"name":"Task User Voice Messaging","id":"cf46222a-b04c-4695-8485-331c7504f7f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.voice.messaging.update\",\n    \"data\": [\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        },\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks","description":"<h6 id=\"bulk-reset-user-broadworks-passwordspasscodessip-authentication\">Bulk Reset User BroadWorks Passwords/Passcodes/SIP Authentication</h6>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  \"task\": \"user.passwords.update\",\n  \"userId\": \"19871514001@odinapi.net\",\n  \"newPassword\": \"newP@ssw0rdId1\",\n  \"newPasscode\": \"5361\",\n  \"userName\": \"19871514001\",\n  \"newAuthenticationPassword\": \"?6uF7~hQ?6uF7~hQ\",\n  \"rebuildDevice\": true,\n  \"resetDevice\": true,\n  \"index\": 1\n   \n</code></pre>\n<ul>\n<li>{task} : user.passwords.update<ul>\n<li>required</li>\n<li>string</li>\n<li>user.passwords.update</li>\n</ul>\n</li>\n<li>{userId} : user id<ul>\n<li>required</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPassword} : user password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newPasscode} : user passcode<ul>\n<li>optional</li>\n<li>digits</li>\n</ul>\n</li>\n<li>{userName} : username for authentication<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{newAuthenticationPassword} : sip authentication password<ul>\n<li>optional</li>\n<li>string</li>\n</ul>\n</li>\n<li>{rebuildDevice} option rebuild the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{resetDevice} optional reset the device<ul>\n<li>optional</li>\n<li>true or false</li>\n</ul>\n</li>\n<li>{index} index increment<ul>\n<li>i++</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b10c3f0d-b52f-4659-a308-7033a0da17b8","name":"Task User Voice Messaging","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.voice.messaging.update\",\n    \"data\": [\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        },\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        }\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/tasks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"user.voice.messaging.update\",\n    \"data\": [\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515000@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        },\n        {\n            \"task\": \"user.voice.messaging.update\",\n            \"userId\": \"9871515001@odinapi.net\",\n            \"voiceMessaging\": {\n                \"isActive\": true,\n                \"processing\": \"Unified Voice and Email Messaging\",\n                \"voiceMessageDeliveryEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"usePhoneMessageWaitingIndicator\": true,\n                \"sendVoiceMessageNotifyEmail\": true,\n                \"voiceMessageNotifyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"sendCarbonCopyVoiceMessage\": true,\n                \"voiceMessageCarbonCopyEmailAddress\": \"developer@parkbenchsolutions.com\",\n                \"transferOnZeroToPhoneNumber\": true,\n                \"transferPhoneNumber\": 1005551414,\n                \"alwaysRedirectToVoiceMail\": false,\n                \"busyRedirectToVoiceMail\": true,\n                \"noAnswerRedirectToVoiceMail\": true,\n                \"outOfPrimaryZoneRedirectToVoiceMail\": false,\n                \"isEnterprise\": true\n            },\n            \"voiceMessagingAdvanced\": {\n                \"mailServerSelection\": \"Group Mail Server\",\n                \"groupMailServerEmailAddress\": \"9871515000@mail.odinapi.net\",\n                \"groupMailServerPassword\": \"npT3ul$yVI\",\n                \"groupMailServerUserId\": 9871515000,\n                \"personalMailServerProtocol\": \"POP3\",\n                \"personalMailServerRealDeleteForImap\": false,\n                \"useGroupDefaultMailServerFullMailboxLimit\": true\n            }\n        }\n    ],\n    \"error\": null,\n    \"status\": \"pending\",\n    \"userId\": \"mreverman\",\n    \"serviceProviderId\": null,\n    \"groupId\": null,\n    \"updatedAt\": \"2021-01-07T23:46:40+00:00\",\n    \"createdAt\": \"2021-01-07T23:46:40+00:00\",\n    \"id\": 80\n}"}],"_postman_id":"cf46222a-b04c-4695-8485-331c7504f7f6"},{"name":"TEST Task User Clone TEST","id":"08330020-daa7-4dbe-acb1-1a8d7cbaab7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"user.clone\",\n    \"data\": [\n        {\n            \"task\": \"user.clone\",\n            \"sourceBroadworks\": \"sourceBroadworks\",\n            \"sourceServiceProviderId\": \"ent.odin\",\n            \"sourceGroupId\": \"grp.odin\",\n            \"sourceUserId\": \"4001@parkbenchsolutions.com\",\n            \"destBroadworks\": \"destBroadworks\",\n            \"destServiceProviderId\": \"ent.odin\",\n            \"destGroupId\": \"grp.odin.copy\",\n            \"destUserId\": \"4001-copy@parkbenchsolutions.com\",\n            \"audioUrl\": \"https://labxsp1.alliedtelecom.net\",\n            \"index\": 1\n        }\n    ]\n}"},"url":"http://127.0.0.1:8080/api/v2/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"protocol":"http","port":"8080","path":["api","v2","tasks"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"08330020-daa7-4dbe-acb1-1a8d7cbaab7c"}],"id":"cf5f8ca0-5eab-49cc-991e-e1c68aa3ce51","_postman_id":"cf5f8ca0-5eab-49cc-991e-e1c68aa3ce51","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Odin Connectors","item":[{"name":"E911","item":[{"name":"Tn Url","id":"644a74f2-8372-48fb-8960-eac17af97b0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/url?tn=9132000062","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","url"],"host":["{{url}}"],"query":[{"key":"tn","value":"9132000062"}],"variable":[]}},"response":[{"id":"e7f350c3-c211-4386-99a0-68c76e43fdea","name":"Tn Url","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/connectors/e911/url?tn=9132000062","host":["{{url}}"],"path":["api","v2","connectors","e911","url"],"query":[{"key":"tn","value":"9132000062"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://staging-service.dashcs.com/dash-board/UpdateMyAddress.action?tn=9132000062&date=202105121325&cid=1062&kn=0&auth=LaQtOedcKUN8CwDlnkeshA%3D%3D\"\n}"}],"_postman_id":"644a74f2-8372-48fb-8960-eac17af97b0d"},{"name":"Authentication Check","id":"9980e75d-76d7-402e-9f89-eed4db8110fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/bandwidth/authentication-check","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","authentication-check"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5a3c3354-826f-457f-9c9a-34f4c66e9a0b","name":"Authentication Check","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/bandwidth/authentication-check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"AuthValid\": true\n}"}],"_postman_id":"9980e75d-76d7-402e-9f89-eed4db8110fb"},{"name":"Location By URI","id":"7f525c07-9ede-41c8-9595-10b14bc4ad8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/bandwidth/location-by-uri?uri=13032288888","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","location-by-uri"],"host":["{{url}}"],"query":[{"key":"uri","value":"13032288888"}],"variable":[]}},"response":[{"id":"a071e559-84a6-4c43-b3b4-0d0fe74ef62d","name":"Location By URI","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/connectors/e911/bandwidth/location-by-uri?uri=13032288888","host":["{{url}}"],"path":["api","v2","connectors","e911","bandwidth","location-by-uri"],"query":[{"key":"uri","value":"13032288888"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"Locations\": {\n        \"activatedtime\": \"2022-09-16T19:06:37.153Z\",\n        \"address1\": \"2040 LARIMER ST\",\n        \"address2\": {},\n        \"callername\": \"Bandwidth Support\",\n        \"comments\": {},\n        \"community\": \"DENVER\",\n        \"customerorderid\": {},\n        \"latitude\": \"39.753526\",\n        \"legacydata\": {\n            \"housenumber\": \"2040\",\n            \"predirectional\": {},\n            \"streetname\": \"LARIMER ST\",\n            \"suite\": {}\n        },\n        \"locationid\": \"2661468266671\",\n        \"longitude\": \"-104.9916\",\n        \"plusfour\": \"2015\",\n        \"postalcode\": \"80205\",\n        \"state\": \"CO\",\n        \"status\": {\n            \"code\": \"PROVISIONED\",\n            \"description\": \"Location is currently provisioned for URI\"\n        },\n        \"type\": \"ADDRESS\",\n        \"updatetime\": \"2022-09-16T19:06:37.153Z\"\n    }\n}"}],"_postman_id":"7f525c07-9ede-41c8-9595-10b14bc4ad8b"},{"name":"Provisioned Location By URI","id":"b4d55014-752d-4a48-b0b4-c1692897cd39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/bandwidth/provisioned-location-by-uri?uri=13032288888","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","provisioned-location-by-uri"],"host":["{{url}}"],"query":[{"key":"uri","value":"13032288888"}],"variable":[]}},"response":[{"id":"3c0f02db-0f35-41c2-82e8-e4945c73130a","name":"Provisioned Location By URI","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/connectors/e911/bandwidth/provisioned-location-by-uri?uri=13032288888","host":["{{url}}"],"path":["api","v2","connectors","e911","bandwidth","provisioned-location-by-uri"],"query":[{"key":"uri","value":"13032288888"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"Location\": {\n        \"activatedtime\": \"2022-09-16T19:06:06.720Z\",\n        \"address1\": \"2040 LARIMER ST\",\n        \"address2\": {},\n        \"callername\": \"Bandwidth Support\",\n        \"comments\": {},\n        \"community\": \"DENVER\",\n        \"customerorderid\": {},\n        \"latitude\": \"39.753526\",\n        \"legacydata\": {\n            \"housenumber\": \"2040\",\n            \"predirectional\": {},\n            \"streetname\": \"LARIMER ST\",\n            \"suite\": {}\n        },\n        \"locationid\": \"2661468266671\",\n        \"longitude\": \"-104.9916\",\n        \"plusfour\": \"2015\",\n        \"postalcode\": \"80205\",\n        \"state\": \"CO\",\n        \"status\": {\n            \"code\": \"PROVISIONED\",\n            \"description\": \"Location is currently provisioned for URI\"\n        },\n        \"type\": \"ADDRESS\",\n        \"updatetime\": \"2022-09-16T19:06:37.153Z\"\n    }\n}"}],"_postman_id":"b4d55014-752d-4a48-b0b4-c1692897cd39"},{"name":"Provisioned Location History By URI","id":"2e9f3747-182f-4d91-be78-71602e06b063","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/bandwidth/provisioned-location-history-by-uri?uri=13032288888","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","provisioned-location-history-by-uri"],"host":["{{url}}"],"query":[{"key":"uri","value":"13032288888"}],"variable":[]}},"response":[{"id":"37a6911e-5d3d-460f-80f6-9a085969e1ce","name":"Provisioned Location History By URI","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":{"raw":"{{url}}/api/v2/connectors/e911/bandwidth/provisioned-location-history-by-uri?uri=13032288888","host":["{{url}}"],"path":["api","v2","connectors","e911","bandwidth","provisioned-location-history-by-uri"],"query":[{"key":"uri","value":"13032288888"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"ProvisionedLocations\": [\n        {\n            \"activatedtime\": \"2021-06-01T01:21:16.072Z\",\n            \"address1\": \"2040 LARIMER ST\",\n            \"address2\": {},\n            \"callername\": \"Bandwidth Support\",\n            \"comments\": {},\n            \"community\": \"DENVER\",\n            \"customerorderid\": {},\n            \"latitude\": \"39.753591\",\n            \"legacydata\": {\n                \"housenumber\": \"2040\",\n                \"predirectional\": {},\n                \"streetname\": \"LARIMER ST\",\n                \"suite\": {}\n            },\n            \"locationid\": {},\n            \"longitude\": \"-104.991771\",\n            \"plusfour\": \"2015\",\n            \"postalcode\": \"80205\",\n            \"state\": \"CO\",\n            \"status\": {},\n            \"type\": \"ADDRESS\",\n            \"updatetime\": \"2021-06-01T01:21:16.072Z\"\n        },\n        {\n            \"activatedtime\": \"2022-09-16T18:50:13.606Z\",\n            \"address1\": \"2040 LARIMER ST\",\n            \"address2\": {},\n            \"callername\": \"Bandwidth Support\",\n            \"comments\": {},\n            \"community\": \"DENVER\",\n            \"customerorderid\": {},\n            \"latitude\": \"39.753543\",\n            \"legacydata\": {\n                \"housenumber\": \"2040\",\n                \"predirectional\": {},\n                \"streetname\": \"LARIMER ST\",\n                \"suite\": {}\n            },\n            \"locationid\": {},\n            \"longitude\": \"-104.991836\",\n            \"plusfour\": \"2015\",\n            \"postalcode\": \"80205\",\n            \"state\": \"CO\",\n            \"status\": {},\n            \"type\": \"ADDRESS\",\n            \"updatetime\": \"2022-09-16T18:50:13.606Z\"\n        },\n        {\n            \"activatedtime\": \"2022-09-16T19:05:47.694Z\",\n            \"address1\": \"2040 LARIMER ST\",\n            \"address2\": {},\n            \"callername\": \"Bandwidth Support\",\n            \"comments\": {},\n            \"community\": \"DENVER\",\n            \"customerorderid\": {},\n            \"latitude\": \"39.753526\",\n            \"legacydata\": {\n                \"housenumber\": \"2040\",\n                \"predirectional\": {},\n                \"streetname\": \"LARIMER ST\",\n                \"suite\": {}\n            },\n            \"locationid\": {},\n            \"longitude\": \"-104.9916\",\n            \"plusfour\": \"2015\",\n            \"postalcode\": \"80205\",\n            \"state\": \"CO\",\n            \"status\": {},\n            \"type\": \"ADDRESS\",\n            \"updatetime\": \"2022-09-16T19:05:47.694Z\"\n        },\n        {\n            \"activatedtime\": \"2022-09-16T19:06:37.153Z\",\n            \"address1\": \"2040 LARIMER ST\",\n            \"address2\": {},\n            \"callername\": \"Bandwidth Support\",\n            \"comments\": {},\n            \"community\": \"DENVER\",\n            \"customerorderid\": {},\n            \"latitude\": \"39.753526\",\n            \"legacydata\": {\n                \"housenumber\": \"2040\",\n                \"predirectional\": {},\n                \"streetname\": \"LARIMER ST\",\n                \"suite\": {}\n            },\n            \"locationid\": {},\n            \"longitude\": \"-104.9916\",\n            \"plusfour\": \"2015\",\n            \"postalcode\": \"80205\",\n            \"state\": \"CO\",\n            \"status\": {},\n            \"type\": \"ADDRESS\",\n            \"updatetime\": \"2022-09-16T19:06:37.153Z\"\n        }\n    ]\n}"}],"_postman_id":"2e9f3747-182f-4d91-be78-71602e06b063"},{"name":"URIs","id":"8be3b354-908e-4206-b3aa-8c62748d2da2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/bandwidth/uris","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","uris"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3ffee904-e93f-4b46-8436-bf8cb5ab75ce","name":"URIs","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/connectors/e911/bandwidth/uris"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"URIs\": {\n        \"uris\": [\n            {\n                \"callername\": \"HERNANDEZ ROSA\",\n                \"uri\": \"tel:12134131026\"\n            },\n            {\n                \"callername\": \"HERNANDEZ ROSA\",\n                \"uri\": \"tel:12134131215\"\n            },\n            {\n                \"callername\": \"HERNANDEZ ROSA\",\n                \"uri\": \"tel:12134132602\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:12135842480\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:12135842481\"\n            },\n            {\n                \"callername\": \"EAGLE AWARDS  TROPHIES LLC\",\n                \"uri\": \"tel:12137430891\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:12137467776\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:12145155505\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:12145155506\"\n            },\n            {\n                \"callername\": \"Teledynamics Test\",\n                \"uri\": \"tel:12145735800\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:12148214448\"\n            },\n            {\n                \"callername\": \"Bandwidth Support\",\n                \"uri\": \"tel:13032288888\"\n            },\n            {\n                \"callername\": \"CALIFORNIA TELECOM\",\n                \"uri\": \"tel:13102021026\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:13236756702\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:13236756703\"\n            },\n            {\n                \"callername\": \"Teledynamics Test\",\n                \"uri\": \"tel:13239314034\"\n            },\n            {\n                \"callername\": \"HERNANDEZ ROSA\",\n                \"uri\": \"tel:13239337393\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:14082259003\"\n            },\n            {\n                \"callername\": \"Continuing Life Communities LLC\",\n                \"uri\": \"tel:14242140709\"\n            },\n            {\n                \"callername\": \"Continuing Life Communities LLC\",\n                \"uri\": \"tel:14242140807\"\n            },\n            {\n                \"callername\": \"Continuing Life Communities LLC\",\n                \"uri\": \"tel:14242140809\"\n            },\n            {\n                \"callername\": \"Continuing Life Communities LLC\",\n                \"uri\": \"tel:14242140921\"\n            },\n            {\n                \"callername\": \"Nippon Shokken USA Inc\",\n                \"uri\": \"tel:14242143307\"\n            },\n            {\n                \"callername\": \"Continuing Life Communities LLC\",\n                \"uri\": \"tel:14242145499\"\n            },\n            {\n                \"callername\": \"Teledynamics Test\",\n                \"uri\": \"tel:14693990081\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:15123821189\"\n            },\n            {\n                \"callername\": \"Sarvai\",\n                \"uri\": \"tel:16036235882\"\n            },\n            {\n                \"callername\": \"David\",\n                \"uri\": \"tel:16036683660\"\n            },\n            {\n                \"callername\": \"Teledynamics Test\",\n                \"uri\": \"tel:16194499990\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:17022727559\"\n            },\n            {\n                \"callername\": \"HERNANDEZ ROSA\",\n                \"uri\": \"tel:17023599982\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:17023876366\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:17028958885\"\n            },\n            {\n                \"callername\": \"California Telecom\",\n                \"uri\": \"tel:17147404202\"\n            },\n            {\n                \"callername\": \"THE JEWELERS OF LAS VEGAS\",\n                \"uri\": \"tel:17753487049\"\n            },\n            {\n                \"callername\": \"DSCI_TEST\",\n                \"uri\": \"tel:17816525082\"\n            },\n            {\n                \"callername\": \"DSCI_TEST\",\n                \"uri\": \"tel:17816525800\"\n            },\n            {\n                \"callername\": \"DSCI_TEST\",\n                \"uri\": \"tel:17817615800\"\n            },\n            {\n                \"callername\": \"DSCI Corp\",\n                \"uri\": \"tel:17818614675\"\n            }\n        ]\n    }\n}"}],"_postman_id":"8be3b354-908e-4206-b3aa-8c62748d2da2"},{"name":"Add Location","id":"03e3f12b-ccf2-42a2-b8b9-c8bf5820165c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"uri\": {\n        \"callerName\": \"Bandwidth Support\",\n        \"uri\": \"13032288888\"\n    },\n    \"location\": {\n        \"address1\": \"2040 Larimer\",\n        \"callerName\": \"Bandwidth Support\",\n        \"community\": \"Denver\",\n        \"state\": \"CO\",\n        \"postalcode\": \"80205\",\n        \"type\": \"ADDRESS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/add-location","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","add-location"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aadfd6b3-56e9-4d22-8a79-43357ad5c0cd","name":"Add Location","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"uri\": {\n        \"callerName\": \"Bandwidth Support\",\n        \"uri\": \"13032288888\"\n    },\n    \"location\": {\n        \"address1\": \"2040 Larimer\",\n        \"callerName\": \"Bandwidth Support\",\n        \"community\": \"Denver\",\n        \"state\": \"CO\",\n        \"postalcode\": \"80205\",\n        \"type\": \"ADDRESS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/add-location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"Location\": {\n        \"activatedtime\": \"2022-09-16T19:06:06.720Z\",\n        \"address1\": \"2040 LARIMER ST\",\n        \"address2\": {},\n        \"callername\": \"Bandwidth Support\",\n        \"comments\": {},\n        \"community\": \"DENVER\",\n        \"customerorderid\": {},\n        \"latitude\": \"39.753526\",\n        \"legacydata\": {\n            \"housenumber\": \"2040\",\n            \"predirectional\": {},\n            \"streetname\": \"LARIMER ST\",\n            \"suite\": {}\n        },\n        \"locationid\": \"2661468266671\",\n        \"longitude\": \"-104.9916\",\n        \"plusfour\": \"2015\",\n        \"postalcode\": \"80205\",\n        \"state\": \"CO\",\n        \"status\": {\n            \"code\": \"GEOCODED\",\n            \"description\": \"Location is geocoded\"\n        },\n        \"type\": \"ADDRESS\",\n        \"updatetime\": \"2022-09-16T19:05:57.739Z\"\n    }\n}"}],"_postman_id":"03e3f12b-ccf2-42a2-b8b9-c8bf5820165c"},{"name":"Validate Location","id":"7e50d5b4-c629-4474-92bc-c804dcbd84c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"location\": {\n        \"address1\": \"2041 Larimer\",\n        \"community\": \"Denver\",\n        \"state\": \"CO\",\n        \"postalcode\": \"80205\",\n        \"type\": \"ADDRESS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/validate-location","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","validate-location"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9b03debe-ec64-49f1-932a-c6e21d841e0b","name":"Validate Location","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n    \"location\": {\n        \"address1\": \"2041 Larimer\",\n        \"community\": \"Denver\",\n        \"state\": \"CO\",\n        \"postalcode\": \"80205\",\n        \"type\": \"ADDRESS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/validate-location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"Location\": {\n        \"activatedtime\": {},\n        \"address1\": \"2041 LARIMER ST\",\n        \"address2\": {},\n        \"callername\": {},\n        \"comments\": {},\n        \"community\": \"DENVER\",\n        \"customerorderid\": {},\n        \"latitude\": \"39.753723\",\n        \"legacydata\": {\n            \"housenumber\": \"2041\",\n            \"predirectional\": {},\n            \"streetname\": \"LARIMER ST\",\n            \"suite\": {}\n        },\n        \"locationid\": {},\n        \"longitude\": \"-104.991848\",\n        \"plusfour\": \"2014\",\n        \"postalcode\": \"80205\",\n        \"state\": \"CO\",\n        \"status\": {\n            \"code\": \"GEOCODED\",\n            \"description\": \"Location is geocoded\"\n        },\n        \"type\": \"ADDRESS\",\n        \"updatetime\": {}\n    }\n}"}],"_postman_id":"7e50d5b4-c629-4474-92bc-c804dcbd84c8"},{"name":"Provision Location","id":"c8b7e09c-d8d8-4877-85cd-2a86bea087a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"locationId\": \"2660954359071\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/provision-location","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","provision-location"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"68302e91-6229-4f12-8624-7794ddd401a2","name":"Provision Location","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"locationId\": \"2661468266671\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/provision-location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"LocationStatus\": {\n        \"code\": \"PROVISIONED\",\n        \"description\": \"Location is currently provisioned for URI\"\n    }\n}"}],"_postman_id":"c8b7e09c-d8d8-4877-85cd-2a86bea087a2"},{"name":"Remove Location","id":"3e578916-4367-41e1-b05c-75c081c670c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"locationId\": \"2661856954015\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/remove-location","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","remove-location"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9ed97b23-6316-4d07-82f2-c2c262e48b75","name":"Remove Location","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"locationId\": \"2661468190447\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/remove-location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"LocationStatus\": {\n        \"code\": \"REMOVED\",\n        \"description\": \"Location removed from the system\"\n    }\n}"}],"_postman_id":"3e578916-4367-41e1-b05c-75c081c670c0"},{"name":"Remove Uri","id":"b9ce939b-1567-4eb9-b32e-c05cffd45d17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"uri\": \"13032288888\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/remove-uri","description":"<p>Get the settings for a key</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","connectors","e911","bandwidth","remove-uri"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"74476d4c-79df-4588-bd1c-33a1c18705ca","name":"Remove Uri","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"uri\": \"13032288888\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/connectors/e911/bandwidth/remove-uri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Sep 2022 18:52:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.18"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Length","value":"72"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"URIStatus\": {\n        \"code\": \"REMOVED\",\n        \"description\": \"URI removed from system\"\n    }\n}"}],"_postman_id":"b9ce939b-1567-4eb9-b32e-c05cffd45d17"}],"id":"6e3642f9-c3be-4e1c-a129-c73765c3ba3a","_postman_id":"6e3642f9-c3be-4e1c-a129-c73765c3ba3a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}}],"id":"25d18dac-6a79-407a-bffc-f73def3842dc","_postman_id":"25d18dac-6a79-407a-bffc-f73def3842dc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}},{"name":"Locales","item":[{"name":"Locales by ns","id":"e9f22028-d837-4e6f-9d1d-d730b1508129","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/locales-api?lng=en&ns=reseller","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","locales-api"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"},{"key":"lng","value":"en"},{"key":"ns","value":"reseller"}],"variable":[]}},"response":[],"_postman_id":"e9f22028-d837-4e6f-9d1d-d730b1508129"},{"name":"Locales by ns","id":"71878263-d09c-4e1d-a0fd-5a9e8848a267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/locales-login?lng=en&ns=reseller","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","locales-login"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"},{"key":"lng","value":"en"},{"key":"ns","value":"reseller"}],"variable":[]}},"response":[],"_postman_id":"71878263-d09c-4e1d-a0fd-5a9e8848a267"},{"name":"languages","id":"1fe6abff-e7f5-47ca-9bf7-286937024660","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/locales-api/languages","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","locales-api","languages"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"},{"disabled":true,"key":"lng","value":"en"},{"disabled":true,"key":"ns","value":"reseller"}],"variable":[]}},"response":[],"_postman_id":"1fe6abff-e7f5-47ca-9bf7-286937024660"},{"name":"licenses","id":"3940d161-9690-456e-8005-55debf8ad6bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/locales-api/licenses","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","locales-api","licenses"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"}],"variable":[]}},"response":[],"_postman_id":"3940d161-9690-456e-8005-55debf8ad6bd"},{"name":"licenses count","id":"3030c6e4-2b9b-4d77-bf73-aa9453b4886f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"url":"{{url}}/api/v2/locales-api/licenses/count","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","locales-api","licenses","count"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"}],"variable":[]}},"response":[],"_postman_id":"3030c6e4-2b9b-4d77-bf73-aa9453b4886f"},{"name":"Locales old?","id":"2561814b-256b-4ef3-97ad-cf85cc4ae94a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"namespace\": \"common\",\n  \"languageCode\": \"en-US\",\n  \"addOdin\": true,\n  \"data\": [\n          \"Trunk Name {abc}: Trunk Name {{abc}}-ODIN\",\n          \"Max Reroute Attempts\",\n          \"Exhaustion Action\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/locales","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","locales"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"}],"variable":[]}},"response":[],"_postman_id":"2561814b-256b-4ef3-97ad-cf85cc4ae94a"},{"name":"Locales","id":"50997bf1-115e-45cc-9adf-268444d33103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authToken}}"}],"body":{"mode":"raw","raw":"{\n  \"namespace\": \"common\",\n  \"languageCode\": \"en-US\",\n  \"addOdin\": true,\n  \"data\": [\n          \"Trunk Name {abc}: Trunk Name {{abc}}-ODIN\",\n          \"Max Reroute Attempts\",\n          \"Exhaustion Action\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v2/locales","description":"<p><em>RESTRICTIONS</em></p>\n<ul>\n<li>limit: limit the search results*</li>\n<li>serviceProviderId: restrict to serviceProviderId</li>\n<li>groupId: restrict to serviceProviderId and groupId</li>\n</ul>\n<p><em>FILTERS</em></p>\n<ul>\n<li>macAddress: search by device</li>\n<li>lastName: filter by lastName</li>\n<li>firstName: filter by firstName</li>\n<li>dn: filter by dn</li>\n<li>emailAddress: filter by emailAddress</li>\n<li>userId: filter by userId</li>\n<li>extension: filter by extension</li>\n</ul>\n<p><em>SEARCH CRITERIA</em></p>\n<ul>\n<li>filter=something   | Equal To</li>\n<li>filter=something*  | Starts With</li>\n<li>filter=*something* | Contains</li>\n</ul>\n<p><em>ENHANCEMENTS</em></p>\n<ul>\n<li>extended: return the full user profile if set to true*</li>\n</ul>\n<p>*<em>WARNINGS</em></p>\n<ul>\n<li>If the result size is larger than BW allows an error will be thrown.</li>\n<li>Extended is an n+1 query, use with caution</li>\n</ul>\n<p><em>EXAMPLES</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># Get all users in Enterprise ent1\nGET /api/v2/users?serviceProviderId=ent1\n\n# Get all users in Group grp1\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1\n\n# Get up to 10 users in the system with a last name that contains smith\nGET /api/v2/users?lastName=*smith*&amp;limit=10\n\n# Get the users in grp1 that have a phone number that starts with 513333\nGET /api/v2/users?serviceProviderId=ent1&amp;groupId=grp1&amp;dn=513333*\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}},"urlObject":{"path":["api","v2","locales"],"host":["{{url}}"],"query":[{"disabled":true,"key":"serviceProviderId","value":"ent.odin"},{"disabled":true,"key":"groupId","value":"grp.odin"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"extended","value":"true"}],"variable":[]}},"response":[],"_postman_id":"50997bf1-115e-45cc-9adf-268444d33103"}],"id":"24176427-f3ab-492f-8a11-a573223bd122","_postman_id":"24176427-f3ab-492f-8a11-a573223bd122","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]},"isInherited":true,"source":{"_postman_id":"da03ee56-5026-472f-93e2-30592520338a","id":"da03ee56-5026-472f-93e2-30592520338a","name":"Odin API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{authToken}}"}]}},"event":[{"listen":"prerequest","script":{"id":"c6697f7b-2bc8-4e66-ac44-50bda45561e2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6837f83d-1285-4f07-9da3-4162886b40ef","type":"text/javascript","exec":[""]}}]}